From 4b716f3ea6d076a3ba1c975306b789cfa28bef8c Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Mon, 18 Aug 2014 12:17:13 +0200 Subject: [PATCH] About page: Fix the translation of developer names. --- src/mirall/owncloudtheme.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/mirall/owncloudtheme.cpp b/src/mirall/owncloudtheme.cpp index 8a4da8f4b..b08474130 100644 --- a/src/mirall/owncloudtheme.cpp +++ b/src/mirall/owncloudtheme.cpp @@ -45,11 +45,9 @@ QString ownCloudTheme::configFileName() const QString ownCloudTheme::about() const { QString devString; - const QString names("Klaas Freitag, Daniel Molkentin, Jan-Christoph Borchardt, Olivier Goffart, Markus Götz"); - devString = QCoreApplication::translate("ownCloudTheme::about() - please leave _OCDEVS_NAMES_ untouched", - "

Version %2. " - "For more information visit %4

" - "

By _OCDEVS_NAMES_ and others.
" + devString = trUtf8("

Version %2. For more information visit %4

" + "

By Klaas Freitag, Daniel Molkentin, Jan-Christoph Borchardt, " + "Olivier Goffart, Markus Götz and others.
" "Based on Mirall by Duncan Mac-Vicar P.

" "

Copyright ownCloud, Inc.

" "

Licensed under the GNU Public License (GPL) Version 2.0
" @@ -60,7 +58,6 @@ QString ownCloudTheme::about() const .arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN)) .arg(MIRALL_STRINGIFY(APPLICATION_DOMAIN)); - devString.replace("_OCDEVS_NAMES_", names); devString += gitSHA1(); return devString;