File indexing completed on 2024-04-28 17:08:12

0001 /*
0002     This file is part of the Okteta program, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2006-2014 Friedrich W. H. Kossebau <kossebau@kde.org>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 */
0008 
0009 #include "about.hpp"
0010 
0011 // KF
0012 #include <KLocalizedString>
0013 
0014 OktetaAboutData::OktetaAboutData()
0015     : KAboutData(QStringLiteral("okteta"),
0016                  i18n("Okteta"), // name
0017                  QStringLiteral(OKTETA_VERSION),
0018                  i18n("Hex editor"), // description
0019                  KAboutLicense::GPL_V2,
0020                  i18n("2006-%1 Friedrich W. H. Kossebau", QStringLiteral("2024")), // copyright
0021                  i18n("Edit the raw data of files"), // comment
0022                  QStringLiteral("https://userbase.kde.org/Okteta"))
0023 {
0024     addLicense(KAboutLicense::GPL_V3);
0025     setOrganizationDomain("kde.org");
0026     addAuthor(i18n("Friedrich W. H. Kossebau"), // name
0027               i18n("Author"), // task
0028               QStringLiteral("kossebau@kde.org"));
0029     addAuthor(i18nc("Author", "Alexander Richardson"), // name
0030               i18nc("Task description", "Structures tool"), // task
0031               QStringLiteral("alex.richardson@gmx.de"));
0032     setDesktopFileName(QStringLiteral("org.kde.okteta"));
0033 }