00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include <kaboutdata.h>
00019 #include <klocale.h>
00020
00021 #include <config-kig.h>
00022
00023 inline KAboutData kigAboutData( const char* name, const char* iname )
00024 {
00025 const char* version = "v" KIGVERSION;
00026 const char* description = I18N_NOOP( "KDE Interactive Geometry" );
00027
00028 KAboutData tmp( name, 0, ki18n(iname), version,
00029 ki18n(description), KAboutData::License_GPL,
00030 ki18n( "(C) 2002-2005, The Kig developers" ),
00031 KLocalizedString(), "http://edu.kde.org/kig" );
00032 tmp.addAuthor(ki18n("Dominique Devriese"),
00033 ki18n("Original author, long time maintainer, design and lots of code."),
00034 "devriese@kde.org" );
00035
00036 tmp.addAuthor(ki18n("Maurizio Paolini"),
00037 ki18n( "Did a lot of important work all around Kig, "
00038 "including, but not limited to conics, cubics, "
00039 "transformations and property tests support." ),
00040 "paolini@dmf.unicatt.it");
00041
00042 tmp.addAuthor( ki18n("Pino Toscano"),
00043 ki18n( "Actual maintainer, Dr. Geo import filter, point and "
00044 "line styles, Italian translation, "
00045 "miscellaneous stuff here and there." ),
00046 "toscano.pino@tiscali.it" );
00047
00048 tmp.addAuthor( ki18n("Franco Pasquarelli"),
00049 ki18n( "Helped a lot with the implementation of the Locus object, "
00050 "there's quite some math involved in doing it right, and "
00051 "Franco wrote the most difficult parts." ),
00052 "pasqui@dmf.unicatt.it" );
00053
00054 tmp.addCredit( ki18n("Eric Depagne"),
00055 ki18n( "The French translator, who also sent me some useful "
00056 "feedback, like feature requests and bug reports." ),
00057 "edepagne@eso.org" );
00058
00059 tmp.addCredit(ki18n("Marc Bartsch"),
00060 ki18n("Author of KGeo, where I got inspiration, "
00061 "some source, and most of the artwork from." ),
00062 "marc.bartsch@web.de");
00063
00064 tmp.addCredit(ki18n("Christophe Devriese"),
00065 ki18n( "Domi's brother, who he got to write the algorithm for "
00066 "calculating the center of the circle with three "
00067 "points given." ),
00068 "oelewapperke@ulyssis.org" );
00069
00070 tmp.addCredit(ki18n("Christophe Prud'homme"),
00071 ki18n( "Sent me a patch for some bugs." ),
00072 "prudhomm@mit.edu" );
00073
00074 tmp.addCredit(ki18n("Robert Gogolok"),
00075 ki18n("Gave me some good feedback on Kig, some feature "
00076 "requests, cleanups and style fixes, and someone "
00077 "to chat with on irc :)" ),
00078 "robertgogolok@gmx.de");
00079
00080 tmp.addCredit(ki18n("David Vignoni"),
00081 ki18n("Responsible for the nice application SVG Icon." ),
00082 "david80v@tin.it");
00083
00084 tmp.addCredit( ki18n("Danny Allen"),
00085 ki18n( "Responsible for the new object action icons." ),
00086 "danny@dannyallen.co.uk" );
00087
00088 return tmp;
00089 }