kchart
kchart_aboutdata.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KCHART_ABOUTDATA
00021 #define KCHART_ABOUTDATA
00022
00023 #include <kaboutdata.h>
00024 #include <klocale.h>
00025 #include <config.h>
00026
00027 namespace KChart
00028 {
00029
00030 static const char* description=I18N_NOOP("KOffice Chart Generator");
00031 static const char* version=VERSION;
00032
00033
00034 KAboutData * newKChartAboutData()
00035 {
00036 KAboutData * aboutData= new KAboutData("kchart", I18N_NOOP("KChart"),
00037 version, description, KAboutData::License_GPL,
00038 I18N_NOOP("(c) 1998-2006, Kalle Dalheimer and Klarälvdalens Datakonsult AB"),
00039 I18N_NOOP("The drawing engine which forms the base of KChart\nis also available as a commercial product\nfrom Klarälvdalens Datakonsult AB.\nContact info@klaralvdalens-datakonsult.se\nfor more information."),
00040 "http://www.koffice.org/kchart/");
00041 aboutData->addAuthor("Kalle Dalheimer", 0, "kalle@kde.org");
00042 aboutData->addAuthor("Laurent Montel", 0, "lmontel@mandrakesoft.com");
00043 aboutData->addAuthor("Karl-Heinz Zimmer", 0, "khz@kde.org");
00044 aboutData->addAuthor("Inge Wallin", 0, "inge@lysator.liu.se");
00045 aboutData->addCredit("Danny Allen", I18N_NOOP("Created chart preview images, toolbar icons"), "danny@dannyallen.co.uk");
00046 return aboutData;
00047 }
00048
00049 }
00050
00051 #endif
|