Bug 74333 - i18n missing for list with possible size of photo id
Summary: i18n missing for list with possible size of photo id
Status: RESOLVED FIXED
Alias: None
Product: kgpg
Classification: Applications
Component: general (show other bugs)
Version: 1.1
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: bj
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-02-06 12:13 UTC by Sebastian Stein
Modified: 2004-02-06 14:13 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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);