From 25b6627ce811034ba6cfb975ef4d70dfbdcc9584 Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Tue, 4 Nov 2008 12:54:19 +0000 Subject: [PATCH] give context the the i18n string "Miscellaneous" svn path=/trunk/KDE/kdelibs/; revision=879986 --- applet.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/applet.cpp b/applet.cpp index d6fdd1cf4..1b8b8bfaf 100644 --- a/applet.cpp +++ b/applet.cpp @@ -588,7 +588,7 @@ bool Applet::shouldConserveResources() const QString Applet::category() const { if (!d->appletDescription.isValid()) { - return i18n("Miscellaneous"); + return i18nc("misc category", "Miscellaneous"); } return d->appletDescription.category(); @@ -1406,8 +1406,8 @@ QStringList Applet::listCategories(const QString &parentApp, bool visibleOnly) //kDebug() << " and we have " << appletCategory; if (appletCategory.isEmpty()) { - if (!categories.contains(i18n("Miscellaneous"))) { - categories << i18n("Miscellaneous"); + if (!categories.contains(i18nc("misc category", "Miscellaneous"))) { + categories << i18nc("misc category", "Miscellaneous"); } } else if (!categories.contains(appletCategory)) { categories << appletCategory;