korganizer

aboutdata.cpp

00001 /*
00002     This file is part of KOrganizer.
00003 
00004     Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org>
00005 
00006     This program is free software; you can redistribute it and/or modify
00007     it under the terms of the GNU General Public License as published by
00008     the Free Software Foundation; either version 2 of the License, or
00009     (at your option) any later version.
00010 
00011     This program is distributed in the hope that it will be useful,
00012     but WITHOUT ANY WARRANTY; without even the implied warranty of
00013     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00014     GNU General Public License for more details.
00015 
00016     You should have received a copy of the GNU General Public License
00017     along with this program; if not, write to the Free Software
00018     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
00019 
00020     As a special exception, permission is given to link this program
00021     with any edition of TQt, and distribute the resulting executable,
00022     without including the source code for TQt in the source distribution.
00023 */
00024 
00025 #include "aboutdata.h"
00026 
00027 #include "version.h"
00028 
00029 using namespace KOrg;
00030 
00031 AboutData::AboutData()
00032   : TDEAboutData( "korganizer", I18N_NOOP("KOrganizer"), korgVersion,
00033                 I18N_NOOP("A Personal Organizer for TDE"),
00034                 TDEAboutData::License_GPL,
00035                 "(c) 1997-1999 Preston Brown\n"
00036                 "(c) 2000-2004 Cornelius Schumacher\n"
00037                 "(c) 2004-2005 Reinhold Kainhofer\n"
00038                 "(c) 2009-2010 Timothy Pearson", 0,
00039                 "http://www.trinitydesktop.org" )
00040 {
00041   addAuthor("Timothy Pearson",I18N_NOOP("Current Developer/Maintainer"),
00042             "kb9vqf@pearsoncomputing.net");
00043   addAuthor("Reinhold Kainhofer",I18N_NOOP("Previous maintainer"),
00044             "reinhold@kainhofer.com");
00045   addAuthor("Cornelius Schumacher",I18N_NOOP("Co-Maintainer"),
00046             "schumacher@kde.org");
00047   addAuthor("Preston Brown",I18N_NOOP("Original Author"),
00048             "pbrown@kde.org");
00049   addCredit("Richard Apodaca");
00050   addCredit("Jan-Pascal van Best");
00051   addCredit("Laszlo Boloni");
00052   addCredit("Barry Benowitz");
00053   addCredit("Christopher Beard");
00054   addCredit("Ian Dawes");
00055   addCredit("Thomas Eitzenberger");
00056   addCredit("Neil Hart");
00057   addCredit("Declan Houlihan");
00058   addCredit("Hans-Jürgen Husel");
00059   addCredit("Tim Jansen");
00060   addCredit("Christian Kirsch");
00061   addCredit("Tobias König");
00062   addCredit("Martin Koller");
00063   addCredit("Uwe Koloska");
00064   addCredit("Glen Parker");
00065   addCredit("Dan Pilone");
00066   addCredit("Roman Rohr");
00067   addCredit("Don Sanders");
00068   addCredit("Bram Schoenmakers");
00069   addCredit("Günter Schwann");
00070   addCredit("Herwin Jan Steehouwer");
00071   addCredit("Mario Teijeiro");
00072   addCredit("Nick Thompson");
00073   addCredit("Bo Thorsen");
00074   addCredit("Allen Winter");
00075   addCredit("Larry Wright");
00076   addCredit("Thomas Zander");
00077   addCredit("Fester Zigterman");
00078 }