00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include <config-kleopatra.h>
00034 #include <version-kleopatra.h>
00035
00036 #include "aboutdata.h"
00037
00038 #include <klocale.h>
00039
00040 static const char kleopatra_version[] = KLEOPATRA_VERSION_STRING;
00041 static const char description[] = I18N_NOOP("Certificate Manager and Unified Crypto GUI");
00042
00043 struct about_data {
00044 const char * name;
00045 const char * desc;
00046 const char * email;
00047 const char * web;
00048 };
00049
00050 static const about_data authors[] = {
00051 { "Marc Mutz", I18N_NOOP("Current Maintainer"), "mutz@kde.org", 0 },
00052 { "Steffen Hansen", I18N_NOOP("Former Maintainer"), "hansen@kde.org", 0 },
00053 { "Matthias Kalle Dalheimer", I18N_NOOP("Original Author"), "kalle@kde.org", 0 },
00054 };
00055
00056
00057 static const about_data credits[] = {
00058 { I18N_NOOP("David Faure"),
00059 I18N_NOOP("Backend configuration framework, KIO integration"),
00060 "faure@kde.org", 0 },
00061 { I18N_NOOP("Michel Boyer de la Giroday"),
00062 I18N_NOOP("Key-state dependant colors and fonts in the key list"),
00063 "michel@klaralvdalens-datakonsult.se", 0 },
00064 { I18N_NOOP("Thomas Moenicke"),
00065 I18N_NOOP("Artwork"),
00066 "tm@php-qt.org", 0 },
00067 { I18N_NOOP("Frank Osterfeld"),
00068 I18N_NOOP("Resident gpgme/win wrangler, UI Server commands and dialogs"),
00069 "osterfeld@kde.org", 0 },
00070 { I18N_NOOP("Karl-Heinz Zimmer"),
00071 I18N_NOOP("DN display ordering support, infrastructure"),
00072 "khz@kde.org", 0 },
00073 };
00074
00075
00076 AboutData::AboutData()
00077 : KAboutData( "kleopatra", 0, ki18n("Kleopatra"),
00078 kleopatra_version, ki18n(description), License_GPL,
00079 ki18n("(c) 2002 Steffen Hansen, Matthias Kalle Dalheimer, Klar\xC3\xA4lvdalens Datakonsult AB\n"
00080 "(c) 2004, 2007, 2008 Marc Mutz, Klar\xC3\xA4lvdalens Datakonsult AB") )
00081 {
00082 using ::authors;
00083 using ::credits;
00084 for ( unsigned int i = 0 ; i < sizeof authors / sizeof *authors ; ++i )
00085 addAuthor( ki18n(authors[i].name), ki18n(authors[i].desc),
00086 authors[i].email, authors[i].web );
00087 for ( unsigned int i = 0 ; i < sizeof credits / sizeof *credits ; ++i )
00088 addCredit( ki18n(credits[i].name), ki18n(credits[i].desc),
00089 credits[i].email, credits[i].web );
00090 }