mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
19d98d6a74
find . \( -name "*.cpp" -or -name "*.h" -or -name "*.c" -or -name "*.cc" \) -exec clang-format -i {} \; If you reached this file doing a git blame, please see README.clang-format (added 2 commits in the future of this one)
46 lines
2.4 KiB
C
46 lines
2.4 KiB
C
/***************************************************************************
|
|
* 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>
|
|
|
|
#include "core/version.h"
|
|
|
|
#include <KLocalizedString>
|
|
|
|
inline KAboutData okularAboutData()
|
|
{
|
|
KAboutData about(QStringLiteral("okular"),
|
|
i18n("Okular"),
|
|
QStringLiteral(OKULAR_VERSION_STRING),
|
|
i18n("Okular, a universal document viewer"),
|
|
KAboutLicense::GPL,
|
|
i18n("(C) 2002 Wilco Greven, Christophe Devriese\n"
|
|
"(C) 2004-2005 Enrico Ros\n"
|
|
"(C) 2005 Piotr Szymanski\n"
|
|
"(C) 2004-2017 Albert Astals Cid\n"
|
|
"(C) 2006-2009 Pino Toscano"),
|
|
QString(),
|
|
QStringLiteral("https://okular.kde.org"));
|
|
|
|
about.addAuthor(QStringLiteral("Pino Toscano"), i18n("Former maintainer"), QStringLiteral("pino@kde.org"));
|
|
about.addAuthor(QStringLiteral("Tobias Koenig"), i18n("Lots of framework work, ODT and FictionBook backends"), QStringLiteral("tokoe@kde.org"));
|
|
about.addAuthor(QStringLiteral("Albert Astals Cid"), i18n("Developer"), QStringLiteral("aacid@kde.org"));
|
|
about.addAuthor(QStringLiteral("Piotr Szymanski"), i18n("Created Okular from KPDF codebase"), QStringLiteral("djurban@pld-dc.org"));
|
|
about.addAuthor(QStringLiteral("Enrico Ros"), i18n("KPDF developer"), QStringLiteral("eros.kde@email.it"));
|
|
about.addCredit(QStringLiteral("Eugene Trounev"), i18n("Annotations artwork"), QStringLiteral("eugene.trounev@gmail.com"));
|
|
about.addCredit(QStringLiteral("Jiri Baum - NICTA"), i18n("Table selection tool"), QStringLiteral("jiri@baum.com.au"));
|
|
about.addCredit(QStringLiteral("Fabio D'Urso"), i18n("Annotation improvements"), QStringLiteral("fabiodurso@hotmail.it"));
|
|
|
|
return about;
|
|
}
|
|
|
|
#endif
|