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 #ifdef HAVE_CONFIG_H
00034 #include <config.h>
00035 #endif
00036
00037 #include "aboutdata.h"
00038
00039 #include <klocale.h>
00040
00041 static const char kleopatra_version[] = "0.40";
00042 static const char description[] = I18N_NOOP("KDE Key Manager");
00043
00044 struct about_data {
00045 const char * name;
00046 const char * desc;
00047 const char * email;
00048 const char * web;
00049 };
00050
00051 static const about_data authors[] = {
00052 { "Marc Mutz", I18N_NOOP("Current Maintainer"), "mutz@kde.org", 0 },
00053 { "Steffen Hansen", I18N_NOOP("Former Maintainer"), "hansen@kde.org", 0 },
00054 { "Kalle Dalheimer", I18N_NOOP("Original Author"), "kalle@kde.org", 0 },
00055 { "Jesper Petersen", I18N_NOOP("Original Author"), "blackie@kde.org", 0 },
00056 };
00057
00058
00059 static const about_data credits[] = {
00060 { "David Faure",
00061 I18N_NOOP("Backend configuration framework, KIO integration"),
00062 "faure@kde.org", 0 },
00063 { "Michel Boyer de la Giroday",
00064 I18N_NOOP("Key-state dependant colors and fonts in the key list"),
00065 "michel@klaralvdalens-datakonsult.se", 0 },
00066 { "Daniel Molkentin",
00067 I18N_NOOP("Certificate Wizard KIOSK integration, infrastructure"),
00068 "molkentin@kde.org", 0 },
00069 { "Ralf Nolden",
00070 I18N_NOOP("Support for obsolete EMAIL RDN in Certificate Wizard"),
00071 "nolden@kde.org", 0 },
00072 { "Karl-Heinz Zimmer",
00073 I18N_NOOP("DN display ordering support, infrastructure"),
00074 "khz@kde.org", 0 },
00075 };
00076
00077
00078 AboutData::AboutData()
00079 : KAboutData( "kleopatra", I18N_NOOP("Kleopatra"),
00080 kleopatra_version, description, License_GPL,
00081 "(c) 2002 Steffen Hansen, Jesper Pedersen,\n"
00082 "Kalle Dalheimer, Klar\xC3\xA4lvdalens Datakonsult AB\n\n"
00083 "(c) 2004 Marc Mutz, Klar\xC3\xA4lvdalens Datakonsult AB" )
00084 {
00085 using ::authors;
00086 using ::credits;
00087 for ( unsigned int i = 0 ; i < sizeof authors / sizeof *authors ; ++i )
00088 addAuthor( authors[i].name, authors[i].desc,
00089 authors[i].email, authors[i].web );
00090 for ( unsigned int i = 0 ; i < sizeof credits / sizeof *credits ; ++i )
00091 addCredit( credits[i].name, credits[i].desc,
00092 credits[i].email, credits[i].web );
00093 }