lkml.org 
[lkml]   [2005]   [Jul]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH 16/19] Kconfig I18n: xconfig: answering
From
Date

I18N support for answering in xconfig. This patch useful for non-latin based languages.

Signed-off-by: Egry Gabor <gaboregry@t-online.hu>

---

scripts/kconfig/qconf.cc | 40 +++++++++++++++++++---------------------
1 files changed, 19 insertions(+), 21 deletions(-)

diff -puN scripts/kconfig/qconf.cc~kconfig-i18n-16-qconfig-key-i18n scripts/kconfig/qconf.cc
--- linux-2.6.13-rc3-i18n-kconfig/scripts/kconfig/qconf.cc~kconfig-i18n-16-qconfig-key-i18n 2005-07-13 18:32:19.000000000 +0200
+++ linux-2.6.13-rc3-i18n-kconfig-gabaman/scripts/kconfig/qconf.cc 2005-07-13 18:36:39.000000000 +0200
@@ -224,7 +224,7 @@ void ConfigItem::updateMenu(void)
switch (type) {
case S_BOOLEAN:
case S_TRISTATE:
- char ch;
+ const char *ch;

if (!sym_is_changable(sym) && !list->showAll) {
setPixmap(promptColIdx, 0);
@@ -240,21 +240,21 @@ void ConfigItem::updateMenu(void)
setPixmap(promptColIdx, list->choiceYesPix);
else
setPixmap(promptColIdx, list->symbolYesPix);
- setText(yesColIdx, "Y");
- ch = 'Y';
+ setText(yesColIdx, _("Y"));
+ ch = _("Y");
break;
case mod:
setPixmap(promptColIdx, list->symbolModPix);
- setText(modColIdx, "M");
- ch = 'M';
+ setText(modColIdx, _("M"));
+ ch = _("M");
break;
default:
if (sym_is_choice_value(sym) && type == S_BOOLEAN)
setPixmap(promptColIdx, list->choiceNoPix);
else
setPixmap(promptColIdx, list->symbolNoPix);
- setText(noColIdx, "N");
- ch = 'N';
+ setText(noColIdx, _("N"));
+ ch = _("N");
break;
}
if (expr != no)
@@ -264,7 +264,7 @@ void ConfigItem::updateMenu(void)
if (expr != yes)
setText(yesColIdx, sym_tristate_within_range(sym, yes) ? "_" : 0);

- setText(dataColIdx, QChar(ch));
+ setText(dataColIdx, ch);
break;
case S_INT:
case S_HEX:
@@ -431,9 +431,9 @@ void ConfigList::reinit(void)
if (showName)
addColumn(nameColIdx, _("Name"));
if (showRange) {
- addColumn(noColIdx, "N");
- addColumn(modColIdx, "M");
- addColumn(yesColIdx, "Y");
+ addColumn(noColIdx, _("N"));
+ addColumn(modColIdx, _("M"));
+ addColumn(yesColIdx, _("Y"));
}
if (showData)
addColumn(dataColIdx, _("Value"));
@@ -641,17 +641,15 @@ void ConfigList::keyPressEvent(QKeyEvent
case Key_Space:
changeValue(item);
break;
- case Key_N:
- setValue(item, no);
- break;
- case Key_M:
- setValue(item, mod);
- break;
- case Key_Y:
- setValue(item, yes);
- break;
default:
- Parent::keyPressEvent(ev);
+ if ((ev->text() == _("y")) || (ev->text() == _("Y")))
+ setValue(item, yes);
+ else if ((ev->text() == _("m")) || (ev->text() == _("M")))
+ setValue(item, mod);
+ else if ((ev->text() == _("n")) || (ev->text() == _("N")))
+ setValue(item, no);
+ else
+ Parent::keyPressEvent(ev);
return;
}
ev->accept();
_

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-07-13 19:39    [W:0.302 / U:0.168 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site