Fix typo
[kdepim.git] / kjots / aboutdata.cpp
blob99a04a7ac77df8ef8af58556f0fb5b62b7458c68
1 /*
2 This file is part of KJots.
4 Copyright (c) 2008 Stephen Kelly <steveire@gmail.com>
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 #ifdef KJOTSKONTACTPLUGIN
27 #include <kdepim-version.h>
28 #endif
29 #include <klocale.h>
31 AboutData::AboutData()
32 : KAboutData( "kjots", 0, ki18n( "KJots" ),
33 #ifdef KJOTSKONTACTPLUGIN
34 KDEPIM_VERSION,
35 #else
36 "trunk",
37 #endif
38 ki18n( "KDE note taking utility" ),
39 KAboutData::License_GPL,
40 ki18n("Copyright © 1997–2010 KJots authors" ),
41 KLocalizedString() )
44 addAuthor(ki18n("Stephen Kelly"), ki18n("Current maintainer"), "steveire@gmail.com");
45 addAuthor(ki18n("Pradeepto K. Bhattacharya"), KLocalizedString(), "pradeepto@kde.org");
46 addAuthor(ki18n("Jaison Lee"), KLocalizedString(), "lee.jaison@gmail.com");
47 addAuthor(ki18n("Aaron J. Seigo"), KLocalizedString(), "aseigo@kde.org");
48 addAuthor(ki18n("Stanislav Kljuhhin"), KLocalizedString(), "crz@starman.ee");
49 addAuthor(ki18n("Christoph Neerfeld"), ki18n("Original author"), "chris@kde.org");
50 addAuthor(ki18n("Laurent Montel"), KLocalizedString(), "montel@kde.org");