kitchensync

aboutdata.cpp

00001 /*
00002     This file is part of KitchenSync.
00003     
00004     Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org>
00005 
00006     This program is free software; you can redistribute it and/or modify
00007     it under the terms of the GNU General Public License as published by
00008     the Free Software Foundation; either version 2 of the License, or
00009     (at your option) any later version.
00010 
00011     This program is distributed in the hope that it will be useful,
00012     but WITHOUT ANY WARRANTY; without even the implied warranty of
00013     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00014     GNU General Public License for more details.
00015 
00016     You should have received a copy of the GNU General Public License
00017     along with this program; if not, write to the Free Software
00018     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
00019 
00020     As a special exception, permission is given to link this program
00021     with any edition of Qt, and distribute the resulting executable,
00022     without including the source code for Qt in the source distribution.
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 }
KDE Home | KDE Accessibility Home | Description of Access Keys