1/***************************************************************************
2 * Copyright (C) 2007 by Pino Toscano <pino@kde.org> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 ***************************************************************************/
9
10#ifndef _ABOUTDATA_H_
11#define _ABOUTDATA_H_
12
13#include <kaboutdata.h>
14
15#include "core/version.h"
16
17inline KAboutData okularAboutData( const char* name, const char* iname )
18{
19 KAboutData about(
20 name, //"okular",
21 "okular",
22 ki18n(iname), //I18N_NOOP("okular"),
23 OKULAR_VERSION_STRING,
24 ki18n("Okular, a universal document viewer"),
25 KAboutData::License_GPL,
26 ki18n("(C) 2002 Wilco Greven, Christophe Devriese\n"
27 "(C) 2004-2005 Enrico Ros\n"
28 "(C) 2005 Piotr Szymanski\n"
29 "(C) 2004-2009 Albert Astals Cid\n"
30 "(C) 2006-2009 Pino Toscano"),
31 KLocalizedString(),
32 "http://okular.kde.org"
33 );
34
35 about.addAuthor(ki18n("Pino Toscano"), ki18n("Former maintainer"), "pino@kde.org");
36 about.addAuthor(ki18n("Tobias Koenig"), ki18n("Lots of framework work, ODT and FictionBook backends"), "tokoe@kde.org");
37 about.addAuthor(ki18n("Albert Astals Cid"), ki18n("Current maintainer"), "aacid@kde.org");
38 about.addAuthor(ki18n("Piotr Szymanski"), ki18n("Created Okular from KPDF codebase"), "djurban@pld-dc.org");
39 about.addAuthor(ki18n("Enrico Ros"), ki18n("KPDF developer"), "eros.kde@email.it");
40 about.addCredit(ki18n("Eugene Trounev"), ki18n("Annotations artwork"), "eugene.trounev@gmail.com");
41 about.addCredit(ki18n("Jiri Baum - NICTA"), ki18n("Table selection tool"), "jiri@baum.com.au");
42 about.addCredit(ki18n("Fabio D'Urso"), ki18n("Annotation improvements"), "fabiodurso@hotmail.it");
43
44 return about;
45}
46
47#endif
48