Bug 74333

Summary: i18n missing for list with possible size of photo id
Product: [Applications] kgpg Reporter: Sebastian Stein <seb.kde>
Component: generalAssignee: bj
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 1.1   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description Sebastian Stein 2004-02-06 12:13:14 UTC
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.
Comment 1 bj 2004-02-06 14:13:27 UTC
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);