Git commit cbd176f18e83a8c7cf5e2f23bf8eb53275272031 by Matthieu Gallien. Committed on 09/10/2017 at 15:18. Pushed by mgallien into branch 'master'.
add much needed cradit to Andrew Lake M +2 -0 doc/index.docbook M +2 -1 src/upnpControl.cpp https://commits.kde.org/elisa/cbd176f18e83a8c7cf5e2f23bf8eb53275272031 diff --git a/doc/index.docbook b/doc/index.docbook index 8d63cc9..c77e0ed 100644 --- a/doc/index.docbook +++ b/doc/index.docbook @@ -151,6 +151,8 @@ Program copyright 2015-2017 Matthieu Gallien <email>[email protected]</e <para> Contributors: <itemizedlist> +<listitem><para>Andrew Lake (concept and design work)<email>[email protected]</email></para> +</listitem> <listitem><para>Luigi Toscano (localizations)<email>[email protected]</email></para> </listitem> <listitem><para>Safa Alfulaij (right-to-left support in interface)<email>[email protected]</email></para> diff --git a/src/upnpControl.cpp b/src/upnpControl.cpp index 2c4fd46..dfab598 100644 --- a/src/upnpControl.cpp +++ b/src/upnpControl.cpp @@ -193,8 +193,9 @@ int main(int argc, char *argv[]) aboutData.addAuthor(QStringLiteral("Matthieu Gallien"),i18n("Author"), QStringLiteral("[email protected]")); + aboutData.addCredit(QStringLiteral("Andrew Lake"), i18n("Concept and design work"), QStringLiteral("[email protected]")); aboutData.addCredit(QStringLiteral("Luigi Toscano"), i18n("Localization support"), QStringLiteral("[email protected]")); - aboutData.addCredit(QStringLiteral("Safa Alfulaij"), i18n("Right to left support"), QStringLiteral("[email protected]")); + aboutData.addCredit(QStringLiteral("Safa Alfulaij"), i18n("Right to left support in interface"), QStringLiteral("[email protected]")); KAboutData::setApplicationData(aboutData); #else
