diff --git a/karbon/ui/KarbonAboutData.h b/karbon/ui/KarbonAboutData.h index aa96ee18e3c..b2f7b4533b1 100644 --- a/karbon/ui/KarbonAboutData.h +++ b/karbon/ui/KarbonAboutData.h @@ -1,94 +1,97 @@ /* This file is part of the KDE project Copyright (C) 2004 Rob Buis This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifndef KARBON_ABOUTDATA_H #define KARBON_ABOUTDATA_H #include #include #include #include // This is all implemented here so that the executable and the part can share it // without sharing an object file. KAboutData * newKarbonAboutData() { KAboutData *aboutData = new KAboutData( QStringLiteral("karbon"), i18n("Karbon"), QStringLiteral(CALLIGRA_VERSION_STRING), i18n("A Vector Graphics Drawing Application."), KAboutLicense::LGPL, - i18n("(c) 2001-2013, The Karbon Developers"), - i18n("Unmaintained at the time of release of this version. The Calligra community welcomes interested persons to take over maintainership."), + i18n("(c) 2001-2018, The Karbon Developers"), QStringLiteral("https://www.calligra.org/karbon/")); aboutData->setProductName("karbon"); // for bugs.kde.org aboutData->setOrganizationDomain("kde.org"); #if KCOREADDONS_VERSION >= 0x051600 aboutData->setDesktopFileName(QStringLiteral("org.kde.karbon")); #endif + aboutData->addAuthor( + i18n("Anthony Fieroni"), + i18n("Maintainer"), + QString()); aboutData->addAuthor( i18n("Rob Buis"), QString(), "buis@kde.org"); aboutData->addAuthor( i18n("Tomislav Lukman"), QString(), "tomislav.lukman@ck.t-com.hr"); aboutData->addAuthor( i18n("BenoƮt Vautrin"), QString(), "benoit.vautrin@free.fr"); aboutData->addCredit( i18n("Jan Hambrecht"), i18n("Bug fixes and improvements"), "jaham@gmx.net"); aboutData->addCredit( i18n("Peter Simonsson"), i18n("Bug fixes and improvements"), "psn@linux.se"); aboutData->addCredit( i18n("Tim Beaulen"), i18n("Bug fixes and improvements"), "tbscope@gmail.com"); aboutData->addCredit( i18n("Boudewijn Rempt"), i18n("Bug fixes and improvements"), "boud@valdyas.org"); aboutData->addCredit( i18n("Pierre Stirnweiss"), i18n("Bug fixes and improvements"), "pierre.stirnweiss_kde@gadz.org"); aboutData->addCredit( i18n("Inge Wallin"), i18n("Bug fixes"), "inge@lysator.liu.se"); aboutData->addCredit( i18n("Alan Horkan"), i18n("Helpful patches and advice")); // TODO: add the names of some helpful souls // standard ki18n translator strings aboutData->setTranslator(i18nc("NAME OF TRANSLATORS", "Your names"), i18nc("EMAIL OF TRANSLATORS", "Your emails")); return aboutData; } #endif /* KARBON_ABOUTDATA_H */