okular
aboutdata.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef _ABOUTDATA_H_
00011 #define _ABOUTDATA_H_
00012
00013 #include <kaboutdata.h>
00014
00015 #include "core/version.h"
00016
00017 inline KAboutData okularAboutData( const char* name, const char* iname )
00018 {
00019 KAboutData about(
00020 name,
00021 "okular",
00022 ki18n(iname),
00023 OKULAR_VERSION_STRING,
00024 ki18n("okular, a universal document viewer"),
00025 KAboutData::License_GPL,
00026 ki18n("(C) 2002 Wilco Greven, Christophe Devriese\n"
00027 "(C) 2004-2005 Albert Astals Cid, Enrico Ros\n"
00028 "(C) 2005 Piotr Szymanski"),
00029 KLocalizedString(),
00030 "http://okular.kde.org"
00031 );
00032
00033 about.addAuthor(ki18n("Pino Toscano"), ki18n("Current maintainer"), "pino@kde.org");
00034 about.addAuthor(ki18n("Tobias Koenig"), ki18n("Lots of framework work, ODT and FictionBook backends"), "tokoe@kde.org");
00035 about.addAuthor(ki18n("Albert Astals Cid"), ki18n("Former maintainer"), "aacid@kde.org");
00036 about.addAuthor(ki18n("Piotr Szymanski"), ki18n("Created okular from KPDF codebase"), "djurban@pld-dc.org");
00037 about.addAuthor(ki18n("Enrico Ros"), ki18n("KPDF developer"), "eros.kde@email.it");
00038
00039 return about;
00040 }
00041
00042 #endif