Version: 1.1 (using KDE 3.2.0, compiled sources) Compiler: gcc version 3.2.3 OS: Linux (i686) release 2.4.24 In the menu View -> Photo-IDs -> ... there are 4 strings (Disabled, small, medium, big), which don't show up in the i18n po file. Maybe just a i18n() call around the strings is missing.
Subject: kdeutils/kgpg CVS commit by mardelle: fix #74333 (missing i18n) CCMAIL:74333-done@bugs.kde.org M +4 -4 listkeys.cpp 1.171 --- kdeutils/kgpg/listkeys.cpp #1.170:1.171 @@ -579,8 +579,8 @@ listKeys::listKeys(QWidget *parent, cons // Keep the list in kgpg.kcfg in sync with this one! QStringList list; - list.append("Disable"); - list.append("Small"); - list.append("Medium"); - list.append("Big"); + list.append(i18n("Disable")); + list.append(i18n("Small")); + list.append(i18n("Medium")); + list.append(i18n("Big")); photoProps->setItems(list);