moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kig / kig / aboutdata.h
blob09473289dc33a48005066bb86a56a73e9aa7aa0d
1 // Copyright (C) 2002 Dominique Devriese <devriese@kde.org>
3 // This program is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU General Public License
5 // as published by the Free Software Foundation; either version 2
6 // of the License, or (at your option) any later version.
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 // GNU General Public License for more details.
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
16 // 02111-1307, USA.
18 #include <kaboutdata.h>
19 #include <klocale.h>
21 #include "config.h"
23 inline KAboutData* kigAboutData( const char* name, const char* iname )
25 const char* version = "v" KIGVERSION;
26 const char* description = I18N_NOOP( "KDE Interactive Geometry" );
28 KAboutData* tmp = new KAboutData( name, iname, version,
29 description, KAboutData::License_GPL,
30 I18N_NOOP( "(C) 2002-2004, The Kig developers" ),
31 0, "http://edu.kde.org/kig" );
32 tmp->addAuthor("Dominique Devriese",
33 I18N_NOOP("Original author, long time maintainer, design and lots of code."),
34 "devriese@kde.org" );
36 tmp->addAuthor("Maurizio Paolini",
37 I18N_NOOP( "Did a lot of important work all around Kig, "
38 "including, but not limited to conics, cubics, "
39 "transformations and property tests support." ),
40 "paolini@dmf.bs.unicatt.it");
42 tmp->addAuthor( "Franco Pasquarelli",
43 I18N_NOOP( "Helped a lot with the implementation of the Locus object, "
44 "there's quite some math involved in doing it right, and "
45 "Franco wrote the most difficult parts." ),
46 "pasqui@dmf.bs.unicatt.it" );
48 tmp->addAuthor( "Pino Toscano",
49 I18N_NOOP( "Worked on the Dr. Geo import filter, point and "
50 "line styles and the Italian translations, "
51 "also gave me lots of useful feedback, "
52 "like feature requests and bug reports." ),
53 "toscano.pino@tiscali.it" );
55 tmp->addCredit( "Eric Depagne",
56 I18N_NOOP( "The French translator, who also sent me some useful "
57 "feedback, like feature requests and bug reports." ),
58 "edepagne@eso.org" );
60 tmp->addCredit("Marc Bartsch",
61 I18N_NOOP("Author of KGeo, where I got inspiration, "
62 "some source, and most of the artwork from"),
63 "marc.bartsch@web.de");
65 tmp->addCredit("Christophe Devriese",
66 I18N_NOOP( "Domi's brother, who he got to write the algorithm for "
67 "calculating the center of the circle with three "
68 "points given." ),
69 "oelewapperke@ulyssis.org" );
71 tmp->addCredit("Christophe Prud'homme",
72 I18N_NOOP( "Sent me a patch for some bugs." ),
73 "prudhomm@mit.edu" );
75 tmp->addCredit("Robert Gogolok",
76 I18N_NOOP("Gave me some good feedback on Kig, some feature "
77 "requests, cleanups and style fixes, and someone "
78 "to chat with on irc :)" ),
79 "robertgogolok@gmx.de");
81 tmp->addCredit("David Vignoni",
82 I18N_NOOP("Responsible for the nice SVG Icon" ),
83 "david80v@tin.it");
85 return tmp;