diff options
-rw-r--r-- | gui/predictivedialog.cpp | 3 |
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); } |