File indexing completed on 2024-05-12 16:39:35

0001 /* This file is part of the KDE project
0002    Copyright (C) 2002, 2003 Lucijan Busch <lucijan@gmx.at>
0003    Copyright (C) 2002, 2003 Joseph Wenninger <jowenn@kde.org>
0004    Copyright (C) 2003-2015 Jarosław Staniek <staniek@kde.org>
0005 
0006    This library is free software; you can redistribute it and/or
0007    modify it under the terms of the GNU Library General Public
0008    License as published by the Free Software Foundation; either
0009    version 2 of the License, or (at your option) any later version.
0010 
0011    This library is distributed in the hope that it will be useful,
0012    but WITHOUT ANY WARRANTY; without even the implied warranty of
0013    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0014    Library General Public License for more details.
0015 
0016    You should have received a copy of the GNU Library General Public License
0017    along with this library; see the file COPYING.LIB.  If not, write to
0018    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0019  * Boston, MA 02110-1301, USA.
0020 */
0021 
0022 #include "kexiaboutdata.h"
0023 #include <KexiVersion.h>
0024 
0025 #include <KLocalizedString>
0026 
0027 static const char description[] =
0028     I18N_NOOP("Visual database applications creator");
0029 
0030 KexiAboutData::KexiAboutData()
0031  : KAboutData(
0032         "kexi",
0033         KEXI_APP_NAME,
0034         Kexi::fullVersionString(),
0035         xi18n(description),
0036         KAboutLicense::LGPL_V2,
0037         xi18n("© 2002-%1, The Kexi Team", QLatin1String(KEXI_YEAR)),
0038         xi18n("This software is developed by Kexi Team - an international group "
0039               "of independent developers. They form a part of the Calligra Project."),
0040         "https://www.kexi-project.org",
0041         "submit@bugs.kde.org"
0042     )
0043 {
0044     setOrganizationDomain("kde.org"); // right dbus prefix == org.kde.
0045 
0046     // authors sorted by last nontrivial contribution date * size
0047     addAuthor(
0048         xi18n("Jarosław Staniek"), xi18n("Project maintainer & developer, overall design"), "staniek@kde.org");
0049     addAuthor(
0050         xi18n("OpenOffice Polska LLC"), xi18n("Sponsoring and support (employer of Jarosław Staniek in 2003-2007)"), "info@openoffice.com.pl");
0051     addAuthor(
0052         xi18n("Adam Pigg"), xi18n("PostgreSQL database driver, Migration and Reporting modules, numerous bug fixes"), "adam@piggz.co.uk");
0053     addAuthor(
0054         xi18n("Radosław Wicik"), xi18n("Map elements for forms and reports, map flake shape"), "radoslaw@wicik.pl");
0055     addAuthor(
0056         xi18n("Wojciech Kosowicz"), xi18n("Features and bug fixes"), "pcellix@gmail.com");
0057     addAuthor(
0058         xi18n("Roman Shtemberko"), xi18n("Features and bug fixes"), "shtemberko@gmail.com");
0059     addAuthor(
0060         xi18n("Dimitrios T. Tanis"), xi18n("Users Manual for Kexi 2, main window improvements, numerous bug reports"),  "dimitrios.tanis@kdemail.net");
0061     addAuthor(
0062         xi18n("Oleg Kukharchuk"), xi18n("Several form widgets, porting to Qt 4, stabilization"), "oleg.kuh@gmail.com");
0063     addAuthor(
0064         xi18n("Shreya Pandit"), xi18n("Web elements for forms and reports"), "shreya.pandit25@gmail.com");
0065     addAuthor(
0066         xi18n("Sebastian Sauer"), xi18n("Scripting module (KROSS), Python language bindings, design"), "mail@dipe.org");
0067     addAuthor(
0068         xi18n("Lorenzo Villani"), xi18n("Web Forms module"), "lvillani@binaryhelix.net");
0069     addAuthor(
0070         xi18n("Sharan Rao"), xi18n("Sybase/MS SQL Server/ODBC database drivers, xBase migration plugin, improvements for KexiDB"), "sharanrao@gmail.com");
0071     addAuthor(
0072         xi18n("Cédric Pasteur"), xi18n("First version of Property Editor and Form Designer"), "cedric.pasteur@free.fr");
0073     addAuthor(
0074         xi18n("Martin Ellis"), xi18n("Contributions for MySQL and KexiDB, fixes, Migration module, MS Access file format support"), "martin.ellis@kdemail.net");
0075     addAuthor(
0076         xi18n("Julia Sanchez-Simon"), xi18n("Oracle database driver"), "hithwen@gmail.com");
0077     addAuthor(
0078         xi18n("Christian Nitschkowski"), xi18n("Graphics effects, helper dialogs"), "segfault_ii@web.de");
0079     addAuthor(
0080         xi18n("Matt Rogers"), xi18n("ODBC database driver"), "mattr@kde.org");
0081     addAuthor(
0082         xi18n("Lucijan Busch"), xi18n("Former project maintainer & developer"), "lucijan@kde.org");
0083     addAuthor(
0084         xi18n("Peter Simonsson"), xi18n("Former developer"), "psn@linux.se");
0085     addAuthor(
0086         xi18n("Joseph Wenninger"), xi18n("Original Form Designer, original user interface & much more"), "jowenn@kde.org");
0087     addAuthor(
0088         xi18n("Seth Kurzenberg"), xi18n("CQL++, SQL assistance"),  "seth@cql.com");
0089     addAuthor(
0090         xi18n("Laurent Montel"), xi18n("Original code cleanings"), "montel@kde.org");
0091     addAuthor(
0092         xi18n("Till Busch"), xi18n("Bugfixes, original Table Widget"), "till@bux.at");
0093 
0094     addCredit(
0095         xi18n("Ian Whitfield"), xi18n("Numerous bug reports and tests"), "whitfield@telkomsa.net");
0096     addCredit(
0097         xi18n("Scarlett Gately Clark"), xi18n("AppImage packages for Linux"), "scarlett.gately.clark@gmail.com");
0098     addCredit(
0099         xi18n("Ian Balchin"), xi18n("Numerous bug reports and tests, handbook improvements"), "inksi@fables.co.za");
0100     addCredit(
0101         xi18n("Robert Leleu"), xi18n("Numerous bug reports and tests"), "robert.jean.leleu@wanadoo.fr");
0102     addCredit(
0103         xi18n("Friedrich W. H. Kossebau"), xi18n("Bug fixes, build system improvements, code cleanups"), "kossebau@kde.org");
0104     addCredit(
0105         xi18n("Boudewijn Rempt"), xi18n("Code cleanups"), "boud@valdyas.org");
0106     addCredit(
0107         xi18n("David Faure"), xi18n("Code cleanups"), "faure@kde.org");
0108     addCredit(
0109         xi18n("Daniel Molkentin"), xi18n("Initial design improvements"),  "molkentin@kde.org");
0110     addCredit(
0111         xi18n("Kristof Borrey"), xi18n("Icons and user interface research"), "kristof.borrey@skynet.be");
0112     addCredit(
0113         xi18n("Tomas Krassnig"), xi18n("Coffee sponsoring"), "tkrass05@hak1.at");
0114     addCredit(
0115         xi18n("Paweł Wirecki / OpenOffice Polska"), xi18n("Numerous bug reports, usability tests, technical support"));
0116 
0117     setTranslator(
0118         xi18nc("NAME OF TRANSLATORS", "Your names"), xi18nc("EMAIL OF TRANSLATORS", "Your emails"));
0119 }