2021-05-24 07:25:56 +00:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2007 Pino Toscano <pino@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2007-03-10 23:45:12 +00:00
|
|
|
|
|
|
|
#ifndef _ABOUTDATA_H_
|
|
|
|
#define _ABOUTDATA_H_
|
|
|
|
|
2014-09-18 20:17:10 +00:00
|
|
|
#include <KAboutData>
|
2007-03-10 23:45:12 +00:00
|
|
|
|
2008-01-27 16:31:02 +00:00
|
|
|
#include "core/version.h"
|
|
|
|
|
2020-07-08 11:54:37 +00:00
|
|
|
#include <KLocalizedString>
|
2014-09-17 22:30:39 +00:00
|
|
|
|
2014-08-09 11:44:29 +00:00
|
|
|
inline KAboutData okularAboutData()
|
2007-03-10 23:45:12 +00:00
|
|
|
{
|
2014-08-09 11:44:29 +00:00
|
|
|
KAboutData about(QStringLiteral("okular"),
|
|
|
|
i18n("Okular"),
|
|
|
|
QStringLiteral(OKULAR_VERSION_STRING),
|
|
|
|
i18n("Okular, a universal document viewer"),
|
2014-08-08 22:20:47 +00:00
|
|
|
KAboutLicense::GPL,
|
2014-08-09 11:44:29 +00:00
|
|
|
i18n("(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"
|
2017-09-11 14:30:30 +00:00
|
|
|
"(C) 2004-2017 Albert Astals Cid\n"
|
2011-10-12 13:54:09 +00:00
|
|
|
"(C) 2006-2009 Pino Toscano"),
|
2014-08-09 11:44:29 +00:00
|
|
|
QString(),
|
2019-11-21 15:39:26 +00:00
|
|
|
QStringLiteral("https://okular.kde.org"));
|
2007-03-10 23:45:12 +00:00
|
|
|
|
2022-05-29 08:37:24 +00:00
|
|
|
about.addAuthor(i18n("Pino Toscano"), i18n("Former maintainer"), QStringLiteral("pino@kde.org"));
|
|
|
|
about.addAuthor(i18n("Tobias Koenig"), i18n("Lots of framework work, FictionBook backend and former ODT backend"), QStringLiteral("tokoe@kde.org"));
|
|
|
|
about.addAuthor(i18n("Albert Astals Cid"), i18n("Developer"), QStringLiteral("aacid@kde.org"));
|
|
|
|
about.addAuthor(i18n("Piotr Szymanski"), i18n("Created Okular from KPDF codebase"), QStringLiteral("djurban@pld-dc.org"));
|
|
|
|
about.addAuthor(i18n("Enrico Ros"), i18n("KPDF developer"), QStringLiteral("eros.kde@email.it"));
|
|
|
|
about.addCredit(i18n("Eugene Trounev"), i18n("Annotations artwork"), QStringLiteral("eugene.trounev@gmail.com"));
|
|
|
|
about.addCredit(i18n("Jiri Baum - NICTA"), i18n("Table selection tool"), QStringLiteral("jiri@baum.com.au"));
|
|
|
|
about.addCredit(i18n("Fabio D'Urso"), i18n("Annotation improvements"), QStringLiteral("fabiodurso@hotmail.it"));
|
2007-03-10 23:45:12 +00:00
|
|
|
|
|
|
|
return about;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|