diff --git a/kcms/lookandfeel/autotests/lookandfeel/metadata.desktop b/kcms/lookandfeel/autotests/lookandfeel/metadata.desktop --- a/kcms/lookandfeel/autotests/lookandfeel/metadata.desktop +++ b/kcms/lookandfeel/autotests/lookandfeel/metadata.desktop @@ -1,5 +1,5 @@ [Desktop Entry] -Comment=Test Look and Feel package +Comment=Test global Look and Feel theme Comment[ast]=Paquete d'aspeutu y sentir de prueba Comment[bs]=Test paketa Pogledaj i Osjeti Comment[ca]=Prova el paquet d'aspecte i comportament diff --git a/kcms/lookandfeel/kcm.cpp b/kcms/lookandfeel/kcm.cpp --- a/kcms/lookandfeel/kcm.cpp +++ b/kcms/lookandfeel/kcm.cpp @@ -73,7 +73,7 @@ qApp->setAttribute(Qt::AA_DontCreateNativeWidgetSiblings); qmlRegisterType(); qmlRegisterType(); - KAboutData* about = new KAboutData(QStringLiteral("kcm_lookandfeel"), i18n("Look and Feel"), + KAboutData* about = new KAboutData(QStringLiteral("kcm_lookandfeel"), i18n("Global Theme"), QStringLiteral("0.1"), QString(), KAboutLicense::LGPL); about->addAuthor(i18n("Marco Martin"), QString(), QStringLiteral("mart@kde.org")); setAboutData(about); @@ -109,7 +109,7 @@ { if (!m_newStuffDialog) { m_newStuffDialog = new KNS3::DownloadDialog( QLatin1String("lookandfeel.knsrc") ); - m_newStuffDialog.data()->setWindowTitle(i18n("Download New Look and Feel Themes")); + m_newStuffDialog.data()->setWindowTitle(i18n("Download New Global Themes")); m_newStuffDialog->setWindowModality(Qt::WindowModal); m_newStuffDialog->winId(); // so it creates the windowHandle(); connect(m_newStuffDialog.data(), &KNS3::DownloadDialog::accepted, this, &KCMLookandFeel::loadModel); diff --git a/kcms/lookandfeel/kcm_lookandfeel.desktop b/kcms/lookandfeel/kcm_lookandfeel.desktop --- a/kcms/lookandfeel/kcm_lookandfeel.desktop +++ b/kcms/lookandfeel/kcm_lookandfeel.desktop @@ -11,7 +11,7 @@ X-KDE-System-Settings-Parent-Category=appearance X-KDE-Weight=1 -Name=Look and Feel +Name=Global Theme Name[ca]=Aspecte i comportament Name[ca@valencia]=Aspecte i comportament Name[cs]=Vzhled a dojem @@ -51,7 +51,7 @@ Name[x-test]=xxLook and Feelxx Name[zh_CN]=观感 Name[zh_TW]=外觀與感覺 -Comment=Choose Look and Feel theme +Comment=Choose global Look and Feel theme Comment[ca]=Trieu el tema d'aspecte i comportament Comment[ca@valencia]=Trieu el tema d'aspecte i comportament Comment[de]=Erscheinungsbild-Design auswählen diff --git a/kcms/lookandfeel/lnftool.cpp b/kcms/lookandfeel/lnftool.cpp --- a/kcms/lookandfeel/lnftool.cpp +++ b/kcms/lookandfeel/lnftool.cpp @@ -39,7 +39,7 @@ const char version[] = "1.0"; // About data - KAboutData aboutData("lookandfeeltool", i18n("Look and feel tool"), version, i18n("Command line tool to apply look and feel packages."), KAboutLicense::GPL, i18n("Copyright 2017, Marco Martin")); + KAboutData aboutData("lookandfeeltool", i18n("Global Look and Feel theme tool"), version, i18n("Command line tool to apply global Look and Feel theme packages."), KAboutLicense::GPL, i18n("Copyright 2017, Marco Martin")); aboutData.addAuthor(i18n("Marco Martin"), i18n("Maintainer"), QStringLiteral("mart@kde.org")); aboutData.setDesktopFileName("org.kde.lookandfeeltool"); KAboutData::setApplicationData(aboutData); @@ -49,9 +49,9 @@ const static auto _r = QStringLiteral("resetLayout"); QCommandLineOption _list = QCommandLineOption(QStringList() << QStringLiteral("l") << _l, - i18n("List available Look and feel packages")); + i18n("List available global Look and Feel packages")); QCommandLineOption _apply = QCommandLineOption(QStringList() << QStringLiteral("a") << _a, - i18n("Apply a look and feel package"), i18n("packagename")); + i18n("Apply a global Look and Feel package"), i18n("packagename")); QCommandLineOption _resetLayout = QCommandLineOption(QStringList() << _r, i18n("Reset the Plasma Desktop layout")); @@ -81,7 +81,7 @@ //can't use package.isValid as lnf packages always fallback, even when not existing if (p.metadata().pluginId() != parser.value(_apply)) { - std::cout << "Unable to find the look and feel package named " << parser.value(_apply).toStdString() << std::endl; + std::cout << "Unable to find the Look and Feel package named " << parser.value(_apply).toStdString() << std::endl; return 1; } diff --git a/kcms/lookandfeel/lookandfeel.knsrc b/kcms/lookandfeel/lookandfeel.knsrc --- a/kcms/lookandfeel/lookandfeel.knsrc +++ b/kcms/lookandfeel/lookandfeel.knsrc @@ -1,5 +1,5 @@ [KNewStuff3] -Name=Look and Feel +Name=Global Themes Name[ca]=Aspecte i comportament Name[ca@valencia]=Aspecte i comportament Name[cs]=Vzhled a dojem diff --git a/kcms/lookandfeel/package/contents/ui/main.qml b/kcms/lookandfeel/package/contents/ui/main.qml --- a/kcms/lookandfeel/package/contents/ui/main.qml +++ b/kcms/lookandfeel/package/contents/ui/main.qml @@ -25,7 +25,7 @@ import org.kde.kcm 1.1 as KCM KCM.GridViewKCM { - KCM.ConfigModule.quickHelp: i18n("This module lets you choose the Look and Feel theme.") + KCM.ConfigModule.quickHelp: i18n("This module lets you choose the global Look and Feel theme.") view.model: kcm.lookAndFeelModel view.currentIndex: kcm.selectedPluginIndex @@ -81,7 +81,7 @@ Layout.fillWidth: true } QtControls.Button { - text: i18n("Get New Look and Feel Themes...") + text: i18n("Get New Global Look and Feel Themes...") icon.name: "get-hot-new-stuff" onClicked: kcm.getNewStuff(this); visible: KAuthorized.authorize("ghns") diff --git a/kcms/lookandfeel/package/metadata.desktop b/kcms/lookandfeel/package/metadata.desktop --- a/kcms/lookandfeel/package/metadata.desktop +++ b/kcms/lookandfeel/package/metadata.desktop @@ -1,5 +1,5 @@ [Desktop Entry] -Name=Look and Feel +Name=Global Theme Name[ca]=Aspecte i comportament Name[ca@valencia]=Aspecte i comportament Name[cs]=Vzhled a dojem @@ -39,7 +39,7 @@ Name[x-test]=xxLook and Feelxx Name[zh_CN]=观感 Name[zh_TW]=外觀與感覺 -Comment=Choose Look and Feel theme +Comment=Choose global Look and Feel theme Comment[ca]=Trieu el tema d'aspecte i comportament Comment[ca@valencia]=Trieu el tema d'aspecte i comportament Comment[de]=Erscheinungsbild-Design auswählen