kitchensync
aboutdata.cpp00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #include "aboutdata.h"
00026
00027 using namespace KSync;
00028
00029 AboutData *AboutData::mSelf = 0;
00030
00031 AboutData::AboutData()
00032 : KAboutData( "kitchensync", I18N_NOOP("KitchenSync"),
00033 "0.8",
00034 I18N_NOOP("Synchronize Data with KDE"),
00035 KAboutData::License_GPL,
00036 "(c) 2001-2002,2003,2004 Holger Freyther\n"
00037 "(c) 2002 Maximilian Reiss\n"
00038 "(c) 2003 Cornelius Schumacher",
00039 0,
00040 "http://pim.kde.org" )
00041 {
00042 addAuthor( "Cornelius Schumacher", "", "schumacher@kde.org" );
00043 addAuthor( "Maximilian Reiss", I18N_NOOP("Current Maintainer"),
00044 "harlekin@handhelds.org" );
00045 addAuthor( "Holger Freyther", I18N_NOOP("Current Maintainer"),
00046 "zecke@handhelds.org" );
00047 addCredit( "Alexandra Chalupka",
00048 I18N_NOOP("For her understanding that I'm an addict."), 0 );
00049 addCredit( "HP ( former Compaq )",
00050 I18N_NOOP("For all the support HP is giving OpenSource projects "
00051 "at handhelds.org. Thanks a lot."), 0 );
00052 addCredit( "Bipolar and the rest of the Opie TEAM!",
00053 I18N_NOOP("Testing, testing, testing" ),
00054 "opie@handhelds.org" );
00055 addCredit( "Philib Blundell",
00056 I18N_NOOP("For being such a nice guy." ),
00057 "pb@gnu.org" );
00058 }
00059
00060 AboutData *AboutData::self()
00061 {
00062 if ( !mSelf ) mSelf = new AboutData;
00063 return mSelf;
00064 }
|