1/* This file is part of the KDE project
2 Copyright (C) 1998 - 2001 Reginald Stadlbauer <reggie@kde.org>
3 Copyright (C) 2004 - 2011 Dag Andersen <danders@get2net.dk>
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19*/
20
21#ifndef KPTABOUTDATA_H
22#define KPTABOUTDATA_H
23
24#include <kaboutdata.h>
25#include <klocale.h>
26
27#include <calligraversion.h>
28
29namespace KPlato
30{
31
32static const char PLAN_DESCRIPTION[] = I18N_NOOP("Project Planning and Management Tool");
33static const char PLAN_VERSION[] = CALLIGRA_VERSION_STRING;
34
35KAboutData * newAboutData()
36{
37 KAboutData * aboutData=new KAboutData( "plan", QByteArray(), ki18nc("application name", "Plan"),
38 PLAN_VERSION, ki18n(PLAN_DESCRIPTION), KAboutData::License_GPL,
39 ki18n("© 1998-%1, The Plan Team").subs(CALLIGRA_YEAR),
40 KLocalizedString(),
41 "http://www.calligra.org/plan/" );
42 aboutData->addAuthor(ki18n("Thomas Zander")); // please don't re-add, I don't like getting personal emails :)
43 aboutData->addAuthor(ki18n("Bo Thorsen"), KLocalizedString(), "bo@sonofthor.dk");
44 aboutData->addAuthor(ki18n("Dag Andersen"), KLocalizedString(), "danders@get2net.dk");
45 aboutData->addAuthor(ki18n("Raphael Langerhorst"),KLocalizedString(),"raphael.langerhorst@kdemail.net");
46
47 aboutData->setProgramIconName( "calligraplan" );
48
49 aboutData->setProductName( "calligraplan" ); // for bugs.kde.org
50
51 return aboutData;
52}
53
54} //KPlato namespace
55
56#endif
57