forked from KDE/okular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutdata.h
48 lines (40 loc) · 2.28 KB
/
aboutdata.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/***************************************************************************
* Copyright (C) 2007 by Pino Toscano <[email protected]> *
* *
* 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.h>
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("[email protected]"));
about.addAuthor(QStringLiteral("Tobias Koenig"), i18n("Lots of framework work, ODT and FictionBook backends"), QStringLiteral("[email protected]"));
about.addAuthor(QStringLiteral("Albert Astals Cid"), i18n("Developer"), QStringLiteral("[email protected]"));
about.addAuthor(QStringLiteral("Piotr Szymanski"), i18n("Created Okular from KPDF codebase"), QStringLiteral("[email protected]"));
about.addAuthor(QStringLiteral("Enrico Ros"), i18n("KPDF developer"), QStringLiteral("[email protected]"));
about.addCredit(QStringLiteral("Eugene Trounev"), i18n("Annotations artwork"), QStringLiteral("[email protected]"));
about.addCredit(QStringLiteral("Jiri Baum - NICTA"), i18n("Table selection tool"), QStringLiteral("[email protected]"));
about.addCredit(QStringLiteral("Fabio D'Urso"), i18n("Annotation improvements"), QStringLiteral("[email protected]"));
return about;
}
#endif