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
|
/***************************************************************************
* Copyright (C) 2004-2005 by Albert Astals Cid *
* tsdgeos@terra.es *
* *
* 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. *
***************************************************************************/
#include <tdeaboutdata.h>
#include <tdeapplication.h>
#include <tdecmdlineargs.h>
#include "kgeography.h"
int main(int argc, char *argv[])
{
TDEAboutData about("kgeography", I18N_NOOP("KGeography"), "0.4.4", I18N_NOOP("A geography learning program"), TDEAboutData::License_GPL, "© 2004-2005 Albert Astals Cid", 0, "http://kgeography.berlios.de");
about.addAuthor("Albert Astals Cid", I18N_NOOP("Programmer and designer"), "tsdgeos@terra.es");
about.addCredit("Danny Allen", I18N_NOOP("Small refinements"), "danny@dannyallen.co.uk");
about.addCredit("Giuseppe Caruso", I18N_NOOP("Italy flags and Italy by provinces map"), "caruso@pietrobo.com");
about.addCredit("Melody Fink", I18N_NOOP("Map contributor"));
about.addCredit("Mikolaj Machowski", I18N_NOOP("Map contributor"));
about.addCredit("Ed Montgomery", I18N_NOOP("Map contributor"));
about.addCredit("Justin Morgan", I18N_NOOP("Map contributor"));
about.addCredit("Frank Mutsaers", I18N_NOOP("Map contributor"));
about.addCredit("Maurizio Paolini", I18N_NOOP("Map contributor"));
about.addCredit("Yann Verley", I18N_NOOP("Contributed some maps and map generation tools"), "yann.verley@free.fr");
about.addCredit(I18N_NOOP("Sodipodi flags collection"), I18N_NOOP("Got some flags from it"), 0, "http://www.sodipodi.com/index.php3?section=clipart/flags");
TDECmdLineArgs::init(argc, argv, &about);
TDEApplication app;
app.setTopWidget(new kgeography());
return app.exec();
}
|