Warning, file /office/calligra/braindump/src/AboutData.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002  *  Copyright (c) 2009 Cyrille Berger <cberger@cberger.net>
0003  *
0004  * This library is free software; you can redistribute it and/or
0005  * modify it under the terms of the GNU Lesser General Public
0006  * License as published by the Free Software Foundation;
0007  * either version 2, or (at your option) any later version of the License.
0008  *
0009  * This library is distributed in the hope that it will be useful,
0010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0012  * Lesser General Public License for more details.
0013  *
0014  * You should have received a copy of the GNU Lesser General Public License
0015  * along with this library; see the file COPYING.  If not, write to
0016  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0017  * Boston, MA 02110-1301, USA.
0018  */
0019 
0020 #ifndef BRAINDUMPABOUTDATA_H
0021 #define BRAINDUMPABOUTDATA_H
0022 
0023 #include <KAboutData>
0024 #include <KLocalizedString>
0025 #include <kcoreaddons_version.h>
0026 
0027 #define BRAINDUMP_VERSION "0.10.9"
0028 
0029 inline KAboutData newBrainDumpAboutData()
0030 {
0031     KAboutData aboutData(QStringLiteral("braindump"), i18n("Braindump"), QStringLiteral(BRAINDUMP_VERSION),
0032                          i18n("Braindump: directly from your brain to the computer.")
0033                          + QLatin1String("\n\n")
0034                          + i18n("Unmaintained at the time of release of this version. The Calligra community welcomes interested persons to take over maintainership."),
0035                          KAboutLicense::LGPL, i18n("(c) 2009, 2010, 2011, 2012, 2013 Cyrille Berger"));
0036 #if KCOREADDONS_VERSION >= 0x051600
0037     aboutData.setDesktopFileName(QStringLiteral("org.kde.braindump"));
0038 #endif
0039     aboutData.addAuthor(i18n("Somsubhra Bairi"), i18n("Former maintainer"), QStringLiteral("somsubhra.bairi@gmail.com"), QStringLiteral("https://www.somsubhra.com"));
0040     aboutData.addAuthor(i18n("Cyrille Berger"), i18n("Former maintainer"), QStringLiteral("cberger@cberger.net"));
0041     // standard ki18n translator strings
0042     aboutData.setTranslator(i18nc("NAME OF TRANSLATORS", "Your names"),
0043                             i18nc("EMAIL OF TRANSLATORS", "Your emails"));
0044     return aboutData;
0045 }
0046 
0047 #endif