kspread

AboutData.h

Go to the documentation of this file.
00001 /* This file is part of the KDE project
00002    Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
00003 
00004    This library is free software; you can redistribute it and/or
00005    modify it under the terms of the GNU Library General Public
00006    License as published by the Free Software Foundation; either
00007    version 2 of the License, or (at your option) any later version.
00008 
00009    This library is distributed in the hope that it will be useful,
00010    but WITHOUT ANY WARRANTY; without even the implied warranty of
00011    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012    Library General Public License for more details.
00013 
00014    You should have received a copy of the GNU Library General Public License
00015    along with this library; see the file COPYING.LIB.  If not, write to
00016    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00017    Boston, MA 02110-1301, USA.
00018 */
00019 
00020 #ifndef KSPREAD_ABOUTDATA
00021 #define KSPREAD_ABOUTDATA
00022 
00023 #include <kaboutdata.h>
00024 #include <klocale.h>
00025 #include <kofficeversion.h>
00026 
00027 namespace KSpread
00028 {
00029 
00030 static const char* description=I18N_NOOP("KOffice Spreadsheet Application");
00031 
00032 // Always the same as the KOffice version
00033 static const char* version=KOFFICE_VERSION_STRING;
00034 
00035 KAboutData * newAboutData()
00036 {
00037     KAboutData * aboutData = new KAboutData( "kspread", 0, ki18n("KSpread"),
00038                                              version, ki18n(description), KAboutData::License_LGPL,
00039                                              ki18n("(c) 1998-2008, The KSpread Team"), KLocalizedString(),
00040                "http://www.koffice.org/kspread/");
00041     aboutData->addAuthor(ki18n("Torben Weis"), ki18n("Original Author"), "weis@kde.org");
00042     aboutData->addAuthor(ki18n("Laurent Montel"), ki18n("Maintainer"), "montel@kde.org");
00043     aboutData->addAuthor(ki18n("John Dailey"), KLocalizedString(), "dailey@vt.edu");
00044     aboutData->addAuthor(ki18n("Philipp Müller"), KLocalizedString(), "philipp.mueller@gmx.de");
00045     aboutData->addAuthor(ki18n("Ariya Hidayat"), KLocalizedString(), "ariya@kde.org");
00046     aboutData->addAuthor(ki18n("Norbert Andres"), KLocalizedString(), "nandres@web.de");
00047     aboutData->addAuthor(ki18n("Shaheed Haque"),
00048                          ki18n("Import/export filter developer"),
00049                          "srhaque@iee.org");
00050     aboutData->addAuthor(ki18n("Werner Trobin"),
00051                          ki18n("Import/export filter developer"),
00052                          "trobin@kde.org");
00053     aboutData->addAuthor(ki18n("Nikolas Zimmermann"),
00054                          ki18n("Import/export filter developer"),
00055                          "wildfox@kde.org");
00056     aboutData->addAuthor(ki18n("David Faure"), KLocalizedString(), "faure@kde.org");
00057     aboutData->addAuthor(ki18n("Helge Deller"),
00058                          ki18n("Import/export filter developer"),
00059                          "deller@gmx.de");
00060     aboutData->addAuthor(ki18n("Percy Leonhart"),
00061                          ki18n("Import/export filter developer"),
00062                          "percy@eris23.org");
00063     aboutData->addAuthor(ki18n("Eva Brucherseifer"),
00064                          ki18n("Import/export filter developer"),
00065                          "eva@kde.org");
00066     aboutData->addAuthor(ki18n("Phillip Ezolt"),
00067                          ki18n("Import/export filter developer"),
00068                          "phillipezolt@hotmail.com");
00069     aboutData->addAuthor(ki18n("Enno Bartels"),
00070                          ki18n("Import/export filter developer"),
00071                          "ebartels@nwn.de");
00072     aboutData->addAuthor(ki18n("Graham Short"),
00073                          ki18n("Import/export filter developer"),
00074                          "grahshrt@netscape.net");
00075     aboutData->addAuthor(ki18n("Lukáš Tinkl"), KLocalizedString(), "lukas@kde.org");
00076     aboutData->addAuthor(ki18n("Tomas Mecir"), KLocalizedString(), "mecirt@gmail.com");
00077     aboutData->addAuthor(ki18n("Raphael Langerhorst"), KLocalizedString(), "raphael.langerhorst@kdemail.net");
00078     aboutData->addAuthor(ki18n("John Tapsell"), KLocalizedString(), "john.tapsell@kdemail.net");
00079     aboutData->addAuthor(ki18n("Robert Knight"), KLocalizedString() , "robertknight@gmail.com");
00080     aboutData->addAuthor(ki18n("Stefan Nikolaus"), KLocalizedString(), "stefan.nikolaus@kdemail.net");
00081     aboutData->addAuthor(ki18n("Sascha Pfau"), ki18n("Developer (functions)"), "mrpeacock@gmail.com");
00082     aboutData->addAuthor(ki18n("Sebastian Sauer"),ki18n("Scripting Plugin"), "mail@dipe.org");
00083     // "Thanks to" section
00084     aboutData->addCredit(ki18n("Brad Hards"),
00085                          ki18n("Implemented, reviewed and tested various functions"),
00086                          "bradh@frogmouth.net");
00087     return aboutData;
00088 }
00089 
00090 } // namespace KSpread
00091 
00092 #endif