File indexing completed on 2024-04-14 05:38:45

0001 /***************************************************************************
0002  *   Copyright (C) 2008-2009 by Pino Toscano <pino@kde.org>                *
0003  *   Copyright (C) 2008 by Armin Berres <armin@space-based.de>             *
0004  *                                                                         *
0005  *   This program is free software; you can redistribute it and/or modify  *
0006  *   it under the terms of the GNU General Public License as published by  *
0007  *   the Free Software Foundation; either version 2 of the License, or     *
0008  *   (at your option) any later version.                                   *
0009  ***************************************************************************/
0010 
0011 #ifndef ABOUTDATA_H
0012 #define ABOUTDATA_H
0013 
0014 #include <kaboutdata.h>
0015 
0016 #define KALT_VERSION "0.13"
0017 
0018 inline KAboutData aboutData(const QString &name, const char* iname)
0019 {
0020     KAboutData about(
0021         name,
0022         i18n(iname),
0023         KALT_VERSION,
0024         i18n("KDE manager for the distribution alternatives system."),
0025         KAboutLicense::GPL,
0026         i18n("© 2004 Juanjo Álvarez Martinez\n"
0027              "© 2004 Mario Bensi\n"
0028              "© 2008-2009 Pino Toscano")
0029     );
0030 
0031     about.addAuthor(i18n("Pino Toscano"), i18n("Current maintainer"), "pino@kde.org");
0032     about.addAuthor(i18n("Juanjo Alvarez Martinez"), i18n("Original author"), "juanjo@juanjoalvarez.net", "http://juanjoalvarez.net");
0033     about.addAuthor(i18n("Mario Bensi"), i18n("Original author"), "nef@ipsquad.net", "http://ipsquad.net");
0034 
0035     return about;
0036 }
0037 
0038 #endif