aboutdata.cpp
00001 /* 00002 aboutdata.cpp 00003 00004 This file is part of Kleopatra, the KDE keymanager 00005 Copyright (c) 2001,2002,2004 Klarälvdalens Datakonsult AB 00006 00007 Kleopatra is free software; you can redistribute it and/or modify 00008 it under the terms of the GNU General Public License as published by 00009 the Free Software Foundation; either version 2 of the License, or 00010 (at your option) any later version. 00011 00012 Kleopatra is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 General Public License for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with this program; if not, write to the Free Software 00019 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00020 00021 In addition, as a special exception, the copyright holders give 00022 permission to link the code of this program with any edition of 00023 the TQt library by Trolltech AS, Norway (or with modified versions 00024 of TQt that use the same license as TQt), and distribute linked 00025 combinations including the two. You must obey the GNU General 00026 Public License in all respects for all of the code used other than 00027 TQt. If you modify this file, you may extend this exception to 00028 your version of the file, but you are not obligated to do so. If 00029 you do not wish to do so, delete this exception statement from 00030 your version. 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 }