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