kpresenter
KPrAboutData.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KPRESENTER_ABOUTDATA
00021 #define KPRESENTER_ABOUTDATA
00022
00023 #include <kaboutdata.h>
00024 #include <klocale.h>
00025 #include <kofficeversion.h>
00026
00027 static const char* description=I18N_NOOP("KOffice Presentation Tool");
00028 static const char* version=KOFFICE_VERSION_STRING;
00029
00030 KAboutData * newKPresenterAboutData()
00031 {
00032 KAboutData * aboutData=new KAboutData( "kpresenter", I18N_NOOP("KPresenter"),
00033 version, description, KAboutData::License_LGPL,
00034 I18N_NOOP("(c) 1998-2006, The KPresenter Team"), 0,
00035 "http://www.koffice.org/kpresenter/");
00036 aboutData->addAuthor("Laurent Montel", I18N_NOOP("current maintainer"), "montel@kde.org");
00037 aboutData->addAuthor("Werner Trobin", 0, "trobin@kde.org");
00038 aboutData->addAuthor("David Faure", 0, "faure@kde.org");
00039 aboutData->addAuthor("Toshitaka Fujioka", 0, "fujioka@kde.org");
00040 aboutData->addAuthor("Lukáš Tinkl", 0, "lukas@kde.org");
00041 aboutData->addAuthor("Thorsten Zachmann", 0, "t.zachmann@zagge.de");
00042 aboutData->addAuthor("Ariya Hidayat", 0, "ariya@kde.org");
00043 aboutData->addAuthor("Percy Leonhardt", 0, "percy@eris23.de");
00044 aboutData->addAuthor("Thomas Zander", 0, "");
00045 aboutData->addAuthor("Reginald Stadlbauer",I18N_NOOP("original author"), "reggie@kde.org");
00046 return aboutData;
00047 }
00048
00049 #endif
|