aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2012-03-29 02:23:44 +0200
committerJohannes Schickel2012-03-29 02:23:44 +0200
commitb8065a4392c2be51983d68f5631814a572d2c975 (patch)
tree36fddca8c7c4262118bc23176ab728d047fcfe71
parent388e04bb6dcdf33ee26c2efe5163642fa17189c0 (diff)
downloadscummvm-rg350-b8065a4392c2be51983d68f5631814a572d2c975.tar.gz
scummvm-rg350-b8065a4392c2be51983d68f5631814a572d2c975.tar.bz2
scummvm-rg350-b8065a4392c2be51983d68f5631814a572d2c975.zip
GUI: Move "I18N" tagged comment to matching strings.
The strings are not marked for translation, so I am not sure why the comments are tagged with I18N though.
-rw-r--r--gui/predictivedialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/predictivedialog.cpp b/gui/predictivedialog.cpp
index 238a832b10..9cd18b81ba 100644
--- a/gui/predictivedialog.cpp
+++ b/gui/predictivedialog.cpp
@@ -505,10 +505,11 @@ void PredictiveDialog::processBtnActive(ButtonId button) {
_mode = kModePre;
// I18N: Pre means 'Predictive', leave '*' as is
_modebutton->setLabel("* Pre");
- // I18N: 'Num' means Numbers, 'Abc' means Latin alphabet input
} else if (_mode == kModeNum) {
+ // I18N: 'Num' means Numbers
_modebutton->setLabel("* Num");
} else {
+ // I18N: 'Abc' means Latin alphabet input
_modebutton->setLabel("* Abc");
_addBtn->setEnabled(true);
}