2007-03-10 23:45:12 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2007 by Pino Toscano <pino@kde.org> *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _ABOUTDATA_H_
|
|
|
|
#define _ABOUTDATA_H_
|
|
|
|
|
|
|
|
#include <kaboutdata.h>
|
|
|
|
|
2008-01-27 16:31:02 +00:00
|
|
|
#include "core/version.h"
|
|
|
|
|
2007-09-30 16:52:27 +00:00
|
|
|
inline KAboutData okularAboutData( const char* name, const char* iname )
|
2007-03-10 23:45:12 +00:00
|
|
|
{
|
2007-09-30 16:52:27 +00:00
|
|
|
KAboutData about(
|
2007-03-10 23:45:12 +00:00
|
|
|
name, //"okular",
|
2007-10-02 22:42:59 +00:00
|
|
|
"okular",
|
2007-07-02 08:52:55 +00:00
|
|
|
ki18n(iname), //I18N_NOOP("okular"),
|
2008-01-27 16:31:02 +00:00
|
|
|
OKULAR_VERSION_STRING,
|
2008-01-20 15:35:19 +00:00
|
|
|
ki18n("Okular, a universal document viewer"),
|
2007-03-10 23:45:12 +00:00
|
|
|
KAboutData::License_GPL,
|
2007-07-02 08:52:55 +00:00
|
|
|
ki18n("(C) 2002 Wilco Greven, Christophe Devriese\n"
|
2008-01-04 21:49:24 +00:00
|
|
|
"(C) 2004-2005 Enrico Ros\n"
|
|
|
|
"(C) 2005 Piotr Szymanski\n"
|
2009-02-01 14:52:20 +00:00
|
|
|
"(C) 2004-2009 Albert Astals Cid\n"
|
2011-10-12 13:54:09 +00:00
|
|
|
"(C) 2006-2009 Pino Toscano"),
|
2007-07-10 13:31:55 +00:00
|
|
|
KLocalizedString(),
|
|
|
|
"http://okular.kde.org"
|
2007-03-10 23:45:12 +00:00
|
|
|
);
|
|
|
|
|
2009-11-25 19:10:55 +00:00
|
|
|
about.addAuthor(ki18n("Pino Toscano"), ki18n("Former maintainer"), "pino@kde.org");
|
2007-09-30 16:52:27 +00:00
|
|
|
about.addAuthor(ki18n("Tobias Koenig"), ki18n("Lots of framework work, ODT and FictionBook backends"), "tokoe@kde.org");
|
2010-08-11 22:32:09 +00:00
|
|
|
about.addAuthor(ki18n("Albert Astals Cid"), ki18n("Current maintainer"), "aacid@kde.org");
|
2008-01-20 15:35:19 +00:00
|
|
|
about.addAuthor(ki18n("Piotr Szymanski"), ki18n("Created Okular from KPDF codebase"), "djurban@pld-dc.org");
|
2007-09-30 16:52:27 +00:00
|
|
|
about.addAuthor(ki18n("Enrico Ros"), ki18n("KPDF developer"), "eros.kde@email.it");
|
2009-01-06 21:54:43 +00:00
|
|
|
about.addCredit(ki18n("Eugene Trounev"), ki18n("Annotations artwork"), "eugene.trounev@gmail.com");
|
2011-10-12 13:54:09 +00:00
|
|
|
about.addCredit(ki18n("Jiri Baum - NICTA"), ki18n("Table selection tool"), "jiri@baum.com.au");
|
2012-06-13 22:12:16 +00:00
|
|
|
about.addCredit(ki18n("Fabio D'Urso"), ki18n("Annotation improvements"), "fabiodurso@hotmail.it");
|
2007-03-10 23:45:12 +00:00
|
|
|
|
|
|
|
return about;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|