00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include "aboutdata.h"
00016
00017 #include "resource.h"
00018
00019 #include <klocale.h>
00020
00021 namespace KNode
00022 {
00023 struct about_authors {
00024 const char* name;
00025 const char* desc;
00026 const char* email;
00027 };
00028
00029 static const about_authors authors[] = {
00030 { "Volker Krause", I18N_NOOP("Maintainer"), "volker.krause@rwth-aachen.de" },
00031 { "Roberto Selbach Teixeira", I18N_NOOP("Former maintainer"), "roberto@kde.org" },
00032 { "Christian Gebauer", 0, "gebauer@kde.org" },
00033 { "Christian Thurner", 0, "cthurner@web.de" },
00034 { "Dirk Mueller", 0, "mueller@kde.org" },
00035 { "Marc Mutz", 0, "mutz@kde.org" },
00036 { "Mathias Waack", 0, "mathias@atoll-net.de" },
00037 { "Laurent Montel", 0, "montel@kde.org" },
00038 { "Stephan Johach", 0, "lucardus@onlinehome.de" },
00039 { "Matthias Kalle Dalheimer", 0, "kalle@kde.org" },
00040 { "Zack Rusin", 0, "zack@kde.org" }
00041 };
00042
00043 AboutData::AboutData()
00044 : KAboutData( "knode", 0,
00045 ki18n("KNode"),
00046 KNODE_VERSION,
00047 ki18n("A newsreader for KDE"),
00048 KAboutData::License_GPL,
00049 ki18n("Copyright (c) 1999-2005 the KNode authors"),
00050 KLocalizedString(),
00051 "http://kontact.kde.org/knode/" )
00052 {
00053 setOrganizationDomain( "kde.org" );
00054 using KNode::authors;
00055 for ( unsigned int i = 0 ; i < sizeof authors / sizeof *authors ; ++i )
00056 addAuthor( ki18n(authors[i].name), ki18n(authors[i].desc), authors[i].email );
00057
00058 addCredit( ki18n("Jakob Schroeter"), KLocalizedString(), "js@camaya.net" );
00059 }
00060
00061 AboutData::~AboutData()
00062 {
00063 }
00064
00065 }