doc fixes found while translating
[kdepim.git] / knode / aboutdata.cpp
blob2f9dc322ba362169c315a4fc770275793df6f438
1 /*
2 KNode, the KDE newsreader
3 Copyright (c) 1999-2010 the KNode authors.
4 See file AUTHORS for details
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10 You should have received a copy of the GNU General Public License
11 along with this program; if not, write to the Free Software Foundation,
12 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
15 #include "aboutdata.h"
17 #include "resource.h"
19 #include <klocale.h>
21 namespace KNode
23 struct about_authors {
24 const char* name;
25 const char* desc;
26 const char* email;
29 static const about_authors authors[] = {
30 { "Olivier Trichet", I18N_NOOP("Maintainer"), "nive@nivalis.org" },
31 { "Volker Krause", I18N_NOOP("Former maintainer"), "vkrause@kde.org" },
32 { "Roberto Selbach Teixeira", I18N_NOOP("Former maintainer"), "roberto@kde.org" },
33 { "Christian Gebauer", 0, "gebauer@kde.org" },
34 { "Christian Thurner", 0, "cthurner@web.de" },
35 { "Dirk Mueller", 0, "mueller@kde.org" },
36 { "Marc Mutz", 0, "mutz@kde.org" },
37 { "Mathias Waack", 0, "mathias@atoll-net.de" },
38 { "Laurent Montel", 0, "montel@kde.org" },
39 { "Stephan Johach", 0, "lucardus@onlinehome.de" },
40 { "Matthias Kalle Dalheimer", 0, "kalle@kde.org" },
41 { "Zack Rusin", 0, "zack@kde.org" }
44 AboutData::AboutData()
45 : KAboutData( "knode", 0,
46 ki18n("KNode"),
47 KNODE_VERSION,
48 ki18n("A newsreader for KDE"),
49 KAboutData::License_GPL,
50 ki18n("Copyright © 1999–2010 KNode authors"),
51 KLocalizedString(),
52 "http://userbase.kde.org/KNode" )
54 setOrganizationDomain( "kde.org" );
55 using KNode::authors;
56 for ( unsigned int i = 0 ; i < sizeof authors / sizeof *authors ; ++i )
57 addAuthor( ki18n(authors[i].name), ki18n(authors[i].desc), authors[i].email );
59 addCredit( ki18n("Jakob Schroeter"), KLocalizedString(), "js@camaya.net" );
62 AboutData::~AboutData()
66 } // namespace KNode