Fix url
[kdepim.git] / korganizer / src / aboutdata.cpp
blobfa332090e9282c412b1a2d8e1418ce0f22855a63
1 /*
2 This file is part of KOrganizer.
4 Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 As a special exception, permission is given to link this program
21 with any edition of Qt, and distribute the resulting executable,
22 without including the source code for Qt in the source distribution.
25 #include "aboutdata.h"
26 #include "korganizer-version.h"
28 #include <KLocalizedString>
30 using namespace KOrg;
32 AboutData::AboutData()
33 : KAboutData(QStringLiteral("korganizer"),
34 i18n("KOrganizer"),
35 QStringLiteral(KDEPIM_VERSION),
36 i18n("A Personal Organizer"),
37 KAboutLicense::GPL,
38 i18n("Copyright © 1997–1999 Preston Brown\n"
39 "Copyright © 2000–2004, 2007 Cornelius Schumacher\n"
40 "Copyright © 2004–2005 Reinhold Kainhofer\n"
41 "Copyright © 2006–2012 Allen Winter\n"
42 "Copyright © 2012–2016 KOrganizer authors"),
43 QString(),
44 QStringLiteral("https://userbase.kde.org/KOrganizer"))
46 addAuthor(i18n("Allen Winter"), i18n("Maintainer"),
47 QStringLiteral("winter@kde.org"));
48 addAuthor(i18n("Reinhold Kainhofer"), i18n("Former Maintainer"),
49 QStringLiteral("reinhold@kainhofer.com"));
50 addAuthor(i18n("Cornelius Schumacher"), i18n("Former Maintainer"),
51 QStringLiteral("schumacher@kde.org"));
52 addAuthor(i18n("Preston Brown"), i18n("Original Author"),
53 QStringLiteral("pbrown@kde.org"));
54 addAuthor(i18n("Laurent Montel"), i18n("Developer"),
55 QStringLiteral("montel@kde.org"));
56 addCredit(i18n("Richard Apodaca"));
57 addCredit(i18n("Björn Balazs"));
58 addCredit(i18n("Jan-Pascal van Best"));
59 addCredit(i18n("Bertjan Broeksema"));
60 addCredit(i18n("Laszlo Boloni"));
61 addCredit(i18n("Barry Benowitz"));
62 addCredit(i18n("Christopher Beard"));
63 addCredit(i18n("Kalle Dalheimer"));
64 addCredit(i18n("Ian Dawes"));
65 addCredit(i18n("Thomas Eitzenberger"));
66 addCredit(i18n("Neil Hart"));
67 addCredit(i18n("Declan Houlihan"));
68 addCredit(i18n("Hans-Jürgen Husel"));
69 addCredit(i18n("Tim Jansen"));
70 addCredit(i18n("Christian Kirsch"));
71 addCredit(i18n("Tobias König"));
72 addCredit(i18n("Martin Koller"));
73 addCredit(i18n("Uwe Koloska"));
74 addCredit(i18n("Sergio Luis Martins"));
75 addCredit(i18n("Mike McQuaid"));
76 addCredit(i18n("Glen Parker"));
77 addCredit(i18n("Dan Pilone"));
78 addCredit(i18n("Roman Rohr"));
79 addCredit(i18n("Rafał Rzepecki"),
80 i18n("Part of work sponsored by Google with Summer of Code 2005"));
81 addCredit(i18n("Don Sanders"));
82 addCredit(i18n("Bram Schoenmakers"));
83 addCredit(i18n("Günter Schwann"));
84 addCredit(i18n("Herwin Jan Steehouwer"));
85 addCredit(i18n("Mario Teijeiro"));
86 addCredit(i18n("Nick Thompson"));
87 addCredit(i18n("Bo Thorsen"));
88 addCredit(i18n("Larry Wright"));
89 addCredit(i18n("Thomas Zander"));
90 addCredit(i18n("Fester Zigterman"));