korganizer

aboutdata.cpp
1 /*
2  This file is part of KOrganizer.
3 
4  Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org>
5 
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.
10 
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.
15 
16  You should have received a copy of the GNU General Public License
17  along with this program; if not, write to the Free Software
18  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 
20  As a special exception, permission is given to link this program
21  with any edition of TQt, and distribute the resulting executable,
22  without including the source code for TQt in the source distribution.
23 */
24 
25 #include "aboutdata.h"
26 
27 #include "version.h"
28 
29 using namespace KOrg;
30 
31 AboutData::AboutData()
32  : TDEAboutData( "korganizer", I18N_NOOP("KOrganizer"), korgVersion,
33  I18N_NOOP("A Personal Organizer for TDE"),
34  TDEAboutData::License_GPL,
35  "(c) 1997-1999 Preston Brown\n"
36  "(c) 2000-2004 Cornelius Schumacher\n"
37  "(c) 2004-2005 Reinhold Kainhofer\n"
38  "(c) 2009-2010 Timothy Pearson", 0,
39  "http://www.trinitydesktop.org" )
40 {
41  addAuthor("Timothy Pearson",I18N_NOOP("Current Developer/Maintainer"),
42  "kb9vqf@pearsoncomputing.net");
43  addAuthor("Reinhold Kainhofer",I18N_NOOP("Previous maintainer"),
44  "reinhold@kainhofer.com");
45  addAuthor("Cornelius Schumacher",I18N_NOOP("Co-Maintainer"),
46  "schumacher@kde.org");
47  addAuthor("Preston Brown",I18N_NOOP("Original Author"),
48  "pbrown@kde.org");
49  addCredit("Richard Apodaca");
50  addCredit("Jan-Pascal van Best");
51  addCredit("Laszlo Boloni");
52  addCredit("Barry Benowitz");
53  addCredit("Christopher Beard");
54  addCredit("Ian Dawes");
55  addCredit("Thomas Eitzenberger");
56  addCredit("Neil Hart");
57  addCredit("Declan Houlihan");
58  addCredit("Hans-Jürgen Husel");
59  addCredit("Tim Jansen");
60  addCredit("Christian Kirsch");
61  addCredit("Tobias König");
62  addCredit("Martin Koller");
63  addCredit("Uwe Koloska");
64  addCredit("Glen Parker");
65  addCredit("Dan Pilone");
66  addCredit("Roman Rohr");
67  addCredit("Don Sanders");
68  addCredit("Bram Schoenmakers");
69  addCredit("Günter Schwann");
70  addCredit("Herwin Jan Steehouwer");
71  addCredit("Mario Teijeiro");
72  addCredit("Nick Thompson");
73  addCredit("Bo Thorsen");
74  addCredit("Allen Winter");
75  addCredit("Larry Wright");
76  addCredit("Thomas Zander");
77  addCredit("Fester Zigterman");
78 }