00001 #ifndef KARBON_ABOUTDATA_H
00002 #define KARBON_ABOUTDATA_H
00003
00004 #include <kaboutdata.h>
00005 #include <klocale.h>
00006 #include <config.h>
00007
00008 static const char* description=I18N_NOOP( "A Vector Graphics Drawing Application." );
00009 static const char* version=VERSION;
00010
00011
00012
00013 KAboutData * newKarbonAboutData()
00014 {
00015 KAboutData * aboutData = new KAboutData(
00016 "karbon",
00017 I18N_NOOP( "Karbon14" ),
00018 version,
00019 description,
00020 KAboutData::License_GPL,
00021 I18N_NOOP( "(c) 2001-2006, The Karbon Developers" ),
00022 I18N_NOOP( "You are invited to participate in any way." ),
00023 "http://www.koffice.org/karbon/");
00024 aboutData->addAuthor(
00025 "Rob Buis",
00026 0,
00027 "buis@kde.org",
00028 0 );
00029 aboutData->addAuthor(
00030 "Tomislav Lukman",
00031 0,
00032 "tomislav.lukman@ck.t-com.hr",
00033 0 );
00034 aboutData->addAuthor(
00035 "BenoƮt Vautrin",
00036 0,
00037 "benoit.vautrin@free.fr",
00038 0 );
00039 aboutData->addCredit(
00040 "Jan Hambrecht",
00041 I18N_NOOP( "Bug fixes and improvements" ),
00042 "jaham@gmx.net",
00043 0 );
00044 aboutData->addCredit(
00045 "Peter Simonsson",
00046 I18N_NOOP( "Bug fixes and improvements" ),
00047 "psn@linux.se",
00048 0 );
00049 aboutData->addCredit(
00050 "Tim Beaulen",
00051 I18N_NOOP( "Bug fixes and improvements" ),
00052 "tbscope@gmail.com",
00053 0 );
00054 aboutData->addCredit(
00055 "Boudewijn Rempt",
00056 I18N_NOOP( "Bug fixes and improvements" ),
00057 "boud@valdyas.org",
00058 0 );
00059 aboutData->addCredit(
00060 "Pierre Stirnweiss",
00061 I18N_NOOP( "Bug fixes and improvements" ),
00062 "pierre.stirnweiss_kde@gadz.org",
00063 0 );
00064 aboutData->addCredit(
00065 "Inge Wallin",
00066 I18N_NOOP( "Bug fixes" ),
00067 "inge@lysator.liu.se",
00068 0 );
00069 aboutData->addCredit(
00070 "Alan Horkan",
00071 I18N_NOOP( "Helpfull patches and advice" ),
00072 0,
00073 0 );
00074
00075 return aboutData;
00076 }
00077
00078 #endif
00079