[smsapp] Switch displayName and shortDescription
The former is used as the window title and as title in the about page. I think 'KDE Connect SMS' is more appropriate there.
This commit is contained in:
parent
b1276795a1
commit
1315d9b9eb
1 changed files with 2 additions and 2 deletions
|
@ -40,9 +40,9 @@ int main(int argc, char *argv[])
|
||||||
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
|
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
|
||||||
QApplication app(argc, argv);
|
QApplication app(argc, argv);
|
||||||
KAboutData aboutData(QStringLiteral("kdeconnect.sms"),
|
KAboutData aboutData(QStringLiteral("kdeconnect.sms"),
|
||||||
i18n("SMS Instant Messaging"),
|
|
||||||
QStringLiteral(KDECONNECT_VERSION_STRING),
|
|
||||||
i18n("KDE Connect SMS"),
|
i18n("KDE Connect SMS"),
|
||||||
|
QStringLiteral(KDECONNECT_VERSION_STRING),
|
||||||
|
i18n("SMS Instant Messaging"),
|
||||||
KAboutLicense::GPL_V3,
|
KAboutLicense::GPL_V3,
|
||||||
i18n("(C) 2018-2019, KDE Connect Team"));
|
i18n("(C) 2018-2019, KDE Connect Team"));
|
||||||
aboutData.addAuthor(i18n("Simon Redman"), {}, QStringLiteral("simon@ergotech.com"));
|
aboutData.addAuthor(i18n("Simon Redman"), {}, QStringLiteral("simon@ergotech.com"));
|
||||||
|
|
Loading…
Reference in a new issue