From cba42992add9f7c2550b48d0dbb9d0bd9bf39e76 Mon Sep 17 00:00:00 2001 From: "Friedrich W. H. Kossebau" Date: Wed, 16 Sep 2020 00:47:35 +0200 Subject: [PATCH] No more need for I18N_NOOP string juggling GIT_SILENT --- main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index 092602e..4d23a80 100644 --- a/main.cpp +++ b/main.cpp @@ -35,8 +35,6 @@ #include "highscores.h" #include "mainwindow.h" -static const char description[] = I18N_NOOP("KDE Reversi Board Game"); - int main(int argc, char **argv) { // Fixes blurry icons with fractional scaling @@ -49,7 +47,9 @@ int main(int argc, char **argv) KLocalizedString::setApplicationDomain("kreversi"); KAboutData aboutData(QStringLiteral("kreversi"), i18n("KReversi"), - QStringLiteral("2.1"), i18n(description), KAboutLicense::GPL, + QStringLiteral("2.1"), + i18n("KDE Reversi Board Game"), + KAboutLicense::GPL, i18n("(c) 1997-2000, Mario Weilguni\n(c) 2004-2006, Inge Wallin\n(c) 2006, Dmitry Suzdalev"), QString(), i18n("https://kde.org/applications/games/org.kde.kreversi")); aboutData.addAuthor(i18n("Mario Weilguni"), i18n("Original author"), QStringLiteral("mweilguni@sime.com")); -- GitLab