From ab0dbadc144700f56a56470c019a876f6ed0884e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burkhard=20L=C3=BCck?= Date: Tue, 10 May 2016 22:40:20 +0200 Subject: [PATCH] removed text + make description translated in the about dialog, ack'ed by aacid --- main.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/main.cpp b/main.cpp index ffd46053..10497232 100644 --- a/main.cpp +++ b/main.cpp @@ -20,9 +20,6 @@ #include #include "toplevel.h" -static const QString description = i18n("Potato game for kids"); -static const KLocalizedString text = ki18n("A program original by Éric Bischoff\nand John Calhoun.\n\nThis program is dedicated to my daughter Sunniva.").subs(QStringLiteral("ebischoff@nerim.net")); - static const char version[] = "1.0.0"; // Main function @@ -33,7 +30,7 @@ int main(int argc, char *argv[]) KLocalizedString::setApplicationDomain("ktuberling"); KAboutData aboutData( QStringLiteral("ktuberling"), i18n("KTuberling"), - version, description, KAboutLicense::GPL, + version, i18n("Potato game for kids"), KAboutLicense::GPL, i18n("(c) 1999-2009, The KTuberling Developers")); aboutData.addAuthor(i18n("Albert Astals Cid"), i18n("Maintainer"), QStringLiteral("aacid@kde.org")); aboutData.addAuthor(i18n("Éric Bischoff"), i18n("Former Developer"), QStringLiteral("ebischoff@nerim.net"));