1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*
* kis_aboutdata.h - part of Krayon
*
* Copyright (c) 1999-2000 Matthias Elter <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef KIS_ABOUT_DATA_H_
#define KIS_ABOUT_DATA_H_
#include <tdeaboutdata.h>
#include <tdelocale.h>
#include <kofficeversion.h>
#include <config.h>
TDEAboutData * newChalkAboutData()
{
TDEAboutData * aboutData = new TDEAboutData( "chalk",
I18N_NOOP("Chalk"),
KOFFICE_VERSION_STRING,
I18N_NOOP("KOffice image manipulation application"),
TDEAboutData::License_GPL,
I18N_NOOP("(c) 1999-2006 The Chalk team.\n"),
"",
"bugs.trinitydesktop.org");
aboutData->addAuthor("Adrian Page", 0, "[email protected]");
aboutData->addAuthor("Alan Horkan", 0, "", "http://www.openclipart.org");
aboutData->addAuthor("Bart Coppens", 0, "[email protected]");
aboutData->addAuthor("Boudewijn Rempt", 0, "[email protected]", "http://www.valdyas.org/fading/index.cgi");
aboutData->addAuthor("Carsten Pfeiffer", 0, "[email protected]");
aboutData->addAuthor("Casper Boemann", 0, "[email protected]");
aboutData->addAuthor("Clarence Dang", 0, "[email protected]");
aboutData->addAuthor("Cyrille Berger", 0, "[email protected]");
aboutData->addAuthor("Dirk Schoenberger", 0, "[email protected]");
aboutData->addAuthor("Danny Allen", 0 , "[email protected]");
aboutData->addAuthor("Emanuele Tamponi", 0, "[email protected]");
aboutData->addAuthor("Gábor Lehel", 0, "<[email protected]>");
aboutData->addAuthor("John Califf",0, "[email protected]");
aboutData->addAuthor("Laurent Montel",0, "[email protected]");
aboutData->addAuthor("Matthias Elter", 0, "[email protected]");
aboutData->addAuthor("Melchior Franz", 0, "[email protected]");
aboutData->addAuthor("Michael Koch", 0, "[email protected]");
aboutData->addAuthor("Michael Thaler", 0, "[email protected]");
aboutData->addAuthor("Patrick Julien", 0, "[email protected]");
aboutData->addAuthor("Roger Larsson", 0, "[email protected]");
aboutData->addAuthor("Sven Langkamp", 0, "[email protected]");
aboutData->addAuthor("Toshitaka Fujioka", 0, "[email protected]");
aboutData->addAuthor("Thomas Zander", 0, "[email protected]");
aboutData->addAuthor("Sander Koning", 0, "[email protected]");
aboutData->addAuthor("Ronan Zeegers",/*"icons"*/ 0,0);
aboutData->addAuthor("Frédéric Coiffier", 0, "[email protected]");
return aboutData;
}
#endif // KIS_ABOUT_DATA_H_
|