diff --git a/src/core/DialogAbout.qml b/src/core/DialogAbout.qml index 759ab3f7e..96246c46f 100644 --- a/src/core/DialogAbout.qml +++ b/src/core/DialogAbout.qml @@ -1,129 +1,129 @@ /* GCompris - DialogAbout.qml * - * Copyright (C) 2014 Bruno Coudoin + * Copyright (C) 2015 Bruno Coudoin * * Authors: * Bruno Coudoin * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ import GCompris 1.0 /** * GCompris' full screen about dialog. * @ingroup infrastructure * * @sa DialogBackground */ DialogBackground { visible: false title: qsTr("About GCompris") //: Replace this string with your names, one name per line. property string translators: qsTr("translator-credits") === "translator-credits" ? "" : qsTr("translator-credits") + "
" // Let's try to maitain here the contributor list sorted by number of commits // git shortlog -se | sort -nr | cut -c8- | sed 's/ <.*>/,/' | xargs property string developers: "Bruno Coudoin, Johnny Jazeix, Holger Kaelberer, Aruna Sankaranarayanan, Stephane Mankowski, Thibaut ROMAIN, Manuel Tondeur, Bharath M S, Yuri Chornoivan, JB BUTET, Emmanuel Charruau, Arkit Vora, Luigi Toscano, Amit Tomar" property string gcVersion: ApplicationInfo.GCVersion property string qtVersion: ApplicationInfo.QTVersion property string gcVersionTxt: qsTr("GCompris %1").arg(gcVersion) property string qtVersionTxt: qsTr("Based on Qt %1").arg(qtVersion) content: "
" + "" + qsTr("GCompris Home Page: http://gcompris.net") + "" + "
" + "
" + gcVersionTxt + " " + qtVersionTxt + "
" + "
" + "" + qsTr("GCompris is a Free Software developed within the KDE community.") + "

" + qsTr("KDE is a world-wide network of software engineers, artists, writers, translators and facilitators " + "who are committed to Free Software development. " + "This community has created hundreds of Free Software applications as part of the KDE " + "frameworks, workspaces and applications.

" + "KDE is a cooperative enterprise in which no single entity controls the " + "efforts or products of KDE to the exclusion of others. Everyone is welcome to join and " + "contribute to KDE, including you.

" + "Visit %2 for " + "more information about the KDE community and the software we produce.") .arg("http://www.gnu.org/philosophy/free-sw.html") .arg("http://www.kde.org/") + "" + "

" + qsTr("Software can always be improved, and the KDE team is ready to " + "do so. However, you - the user - must tell us when " + "something does not work as expected or could be done better.

" + "KDE has a bug tracking system. Visit " + "%1 to report a bug.

" + "If you have a suggestion for improvement then you are welcome to use " + "the bug tracking system to register your wish. Make sure you use the " + "severity called \"Wishlist\".") .arg("https://bugs.kde.org/") + "

" + qsTr("You do not have to be a software developer to be a member of the " + "KDE team. You can join the national teams that translate " + "program interfaces. You can provide graphics, themes, sounds, and " + "improved documentation. You decide!" + "

" + "Visit " + "%1 " + "for information on some projects in which you can participate." + "

" + "If you need more information or documentation, then a visit to " + "%2 " + "will provide you with what you need.") .arg("http://www.kde.org/community/getinvolved/") .arg("http://techbase.kde.org/") + "

" + qsTr("To support development the KDE community has formed the KDE e.V., a non-profit organization " + "legally founded in Germany. KDE e.V. represents the KDE community in legal and financial matters. " + "See %1" + " for information on KDE e.V.

" + "KDE benefits from many kinds of contributions, including financial. " + "We use the funds to reimburse members and others for expenses " + "they incur when contributing. Further funds are used for legal " + "support and organizing conferences and meetings.

" + "We would like to encourage you to support our efforts with a " + "financial donation, using one of the ways described at " + "%2." + "

Thank you very much in advance for your support.") .arg("http://ev.kde.org/") .arg("http://www.kde.org/community/donations/") + "

" + qsTr("A big thanks to the development team: %1").arg(developers) + "

" + qsTr("A big thanks to the translation team: %1") .arg(translators) + - "
" + "Copyright 2000-2014 Bruno Coudoin and Others" + "
" + "
" + "
" + "Copyright 2000-2015 Bruno Coudoin and Others" + "
" + "
" }