kivio
kivio_aboutdata.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KIVIO_ABOUTDATA
00022 #define KIVIO_ABOUTDATA
00023
00024 #include <kaboutdata.h>
00025 #include <klocale.h>
00026 #include <kofficeversion.h>
00027
00028 static const char* description = I18N_NOOP("KOffice Flowchart And Diagram Tool");
00029 static const char* version = KOFFICE_VERSION_STRING;
00030
00031 KAboutData * newKivioAboutData()
00032 {
00033 KAboutData * aboutData=new KAboutData( "kivio", I18N_NOOP("Kivio"),
00034 version, description, KAboutData::License_GPL,
00035 I18N_NOOP("(C) 2000-2006, The Kivio Team"), 0,
00036 "http://www.koffice.org/kivio/");
00037 aboutData->addAuthor("Peter Simonsson", I18N_NOOP("Maintainer"), "psn@linux.se");
00038 aboutData->addAuthor("Ian Reinhart Geiser", I18N_NOOP("Development"), "geiseri@kde.org");
00039 aboutData->addAuthor("Laurent Montel", I18N_NOOP("Development"), "montel@kde.org");
00040 aboutData->addAuthor("Frauke Oster", I18N_NOOP("Development/Documentation"), "frauke@frsv.de");
00041 aboutData->addAuthor("Kristof Borrey", I18N_NOOP("Artwork (stencils and icons)"), "borrey@kde.org");
00042 aboutData->addAuthor("Joerg de la Haye", I18N_NOOP("Nassi Schneiderman stencils"), "haye@ritterstrasse.org");
00043 aboutData->addAuthor("Dave Marotti", I18N_NOOP("Initial idea, development and basic stencil sets."),"lndshark@verticaladdiction.net");
00044 aboutData->addAuthor("The Kompany.com - \"Where Open Source is at Home\"(TM)", I18N_NOOP("Development and additional stencil sets."), "info@thekompany.com");
00045 return aboutData;
00046 }
00047
00048 #endif
|