| Summary: | i18n missing for list with possible size of photo id | ||
|---|---|---|---|
| Product: | [Applications] kgpg | Reporter: | Sebastian Stein <seb.kde> |
| Component: | general | Assignee: | bj |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.1 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Sebastian Stein
2004-02-06 12:13:14 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); |