Documentation: Menus.docbook Composer menu Message and correcct formatting.
[kdepim.git] / korganizer / aboutdata.cpp
blobfc5435e3f46bd231b761025ea2c5308e5ff3d4b7
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 "version.h"
27 using namespace KOrg;
29 AboutData::AboutData()
30 : KAboutData( "korganizer", 0, ki18n( "KOrganizer" ), korgVersion,
31 ki18n( "A Personal Organizer" ),
32 KAboutData::License_GPL,
33 ki18n( "Copyright © 1997–1999 Preston Brown\n"
34 "Copyright © 2000–2004, 2007 Cornelius Schumacher\n"
35 "Copyright © 2004–2005 Reinhold Kainhofer\n"
36 "Copyright © 2006–2012 Allen Winter" ),
37 KLocalizedString(),
38 "http://korganizer.kde.org" )
40 #if defined( KDEPIM_GIT_REVISION_STRING ) && defined( KDEPIM_GIT_LAST_CHANGE )
41 const QByteArray rev( KDEPIM_GIT_REVISION_STRING );
42 const QByteArray last( KDEPIM_GIT_LAST_CHANGE );
43 if ( !rev.isEmpty() && !last.isEmpty() ) {
44 QByteArray versionInfo( korgVersion );
45 versionInfo += '-' + rev + ' ' + '(' + last + ')';
46 setVersion( versionInfo );
48 #endif
50 addAuthor( ki18n( "Allen Winter"),ki18n( "Maintainer" ),
51 "winter@kde.org" );
52 addAuthor( ki18n( "Reinhold Kainhofer"),ki18n( "Former Maintainer" ),
53 "reinhold@kainhofer.com" );
54 addAuthor( ki18n( "Cornelius Schumacher"),ki18n( "Former Maintainer" ),
55 "schumacher@kde.org" );
56 addAuthor( ki18n( "Preston Brown"),ki18n( "Original Author" ),
57 "pbrown@kde.org" );
58 addCredit( ki18n( "Richard Apodaca" ) );
59 addCredit( ki18n( "Björn Balazs" ) );
60 addCredit( ki18n( "Jan-Pascal van Best" ) );
61 addCredit( ki18n( "Bertjan Broeksema" ) );
62 addCredit( ki18n( "Laszlo Boloni" ) );
63 addCredit( ki18n( "Barry Benowitz" ) );
64 addCredit( ki18n( "Christopher Beard" ) );
65 addCredit( ki18n( "Kalle Dalheimer" ) );
66 addCredit( ki18n( "Ian Dawes" ) );
67 addCredit( ki18n( "Thomas Eitzenberger" ) );
68 addCredit( ki18n( "Neil Hart" ) );
69 addCredit( ki18n( "Declan Houlihan" ) );
70 addCredit( ki18n( "Hans-Jürgen Husel" ) );
71 addCredit( ki18n( "Tim Jansen" ) );
72 addCredit( ki18n( "Christian Kirsch" ) );
73 addCredit( ki18n( "Tobias König" ) );
74 addCredit( ki18n( "Martin Koller" ) );
75 addCredit( ki18n( "Uwe Koloska" ) );
76 addCredit( ki18n( "Sergio Luis Martins" ) );
77 addCredit( ki18n( "Mike McQuaid" ) );
78 addCredit( ki18n( "Glen Parker" ) );
79 addCredit( ki18n( "Dan Pilone" ) );
80 addCredit( ki18n( "Roman Rohr" ) );
81 addCredit( ki18n( "Rafał Rzepecki" ),
82 ki18n( "Part of work sponsored by Google with Summer of Code 2005" ) );
83 addCredit( ki18n( "Don Sanders" ) );
84 addCredit( ki18n( "Bram Schoenmakers" ) );
85 addCredit( ki18n( "Günter Schwann" ) );
86 addCredit( ki18n( "Herwin Jan Steehouwer" ) );
87 addCredit( ki18n( "Mario Teijeiro" ) );
88 addCredit( ki18n( "Nick Thompson" ) );
89 addCredit( ki18n( "Bo Thorsen" ) );
90 addCredit( ki18n( "Larry Wright" ) );
91 addCredit( ki18n( "Thomas Zander" ) );
92 addCredit( ki18n( "Fester Zigterman" ) );