aboutdata.cpp
00001 /* 00002 This file is part of Akregator. 00003 00004 Copyright (C) 2004 Teemu Rytilahti <tpr@d5k.net> 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 TQt, and distribute the resulting executable, 00022 without including the source code for TQt in the source distribution. 00023 */ 00024 00025 #include <tqstring.h> 00026 00027 #include "aboutdata.h" 00028 00029 namespace Akregator { 00030 00031 AboutData::AboutData() 00032 : TDEAboutData("akregator", I18N_NOOP("Akregator"), AKREGATOR_VERSION, I18N_NOOP("A TDE Feed Aggregator"), 00033 License_GPL, I18N_NOOP("(C) 2004, 2005 Akregator developers"), 0) 00034 { 00035 addAuthor( "Frank Osterfeld", I18N_NOOP("Maintainer"), "frank.osterfeld@kdemail.net" ); 00036 addAuthor( "Teemu Rytilahti", I18N_NOOP("Developer"), "tpr@d5k.net" ); 00037 addAuthor( "Sashmit Bhaduri", I18N_NOOP("Developer"), "sashmit@vfemail.net" ); 00038 addAuthor( "Pierre Habouzit", I18N_NOOP("Developer"), "pierre.habouzit@m4x.org" ); 00039 addAuthor( "Stanislav Karchebny", I18N_NOOP("Developer"), "Stanislav.Karchebny@kdemail.net" ); 00040 addAuthor( "Gary Cramblitt", I18N_NOOP("Contributor"), "garycramblitt@comcast.net"); 00041 addAuthor( "Stephan Binner", I18N_NOOP("Contributor"), "binner@kde.org" ); 00042 addAuthor( "Christof Musik", I18N_NOOP("Contributor"), "christof@freenet.de" ); 00043 addCredit( "Anne-Marie Mahfouf", I18N_NOOP("Handbook"), "annma@kde.org" ); 00044 addCredit( "Frerich Raabe", I18N_NOOP("Author of librss"), "raabe@kde.org" ); 00045 addCredit( "Eckhart Woerner", I18N_NOOP("Bug tracker management, Usability improvements"), "kde@ewsoftware.de"); 00046 addCredit( "Heinrich Wendel", I18N_NOOP("Tons of bug fixes"), "h_wendel@cojobo.net"); 00047 addCredit( "Eike Hein", I18N_NOOP("'Delayed mark as read' feature"), "sho@eikehein.com" ); 00048 addCredit( "Marcel Dierkes", I18N_NOOP("Icons"), "marcel.dierkes@gmx.de"); 00049 addCredit( "George Staikos", I18N_NOOP("Insomnia"), "staikos@kde.org" ); 00050 addCredit( "Philipp Droessler", I18N_NOOP("Gentoo Ebuild"), "kingmob@albert-unser.net"); 00051 } 00052 00053 AboutData::~AboutData() 00054 { 00055 } 00056 00057 }