From 4c7b7dfcaaf17c40e7577509daf624acfdab3215 Mon Sep 17 00:00:00 2001 From: Camila San Date: Mon, 4 Jun 2018 13:33:03 +0200 Subject: [PATCH] Restores previous text in the about section. Signed-off-by: Camila San --- src/libsync/theme.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp index cb878a8af..25aa2e5e4 100644 --- a/src/libsync/theme.cpp +++ b/src/libsync/theme.cpp @@ -323,17 +323,17 @@ QString Theme::gitSHA1() const QString Theme::about() const { QString devString; - devString = tr("

Version %2. For more information visit https://%4

" - "

For known issues and help, please visit: https://central.owncloud.org

" - "

By Klaas Freitag, Daniel Molkentin, Olivier Goffart, Markus Götz, " - " Jan-Christoph Borchardt, and others.

" - "

Copyright ownCloud GmbH

" - "

Licensed under the GNU General Public License (GPL) Version 2.0
" - "ownCloud and the ownCloud Logo are registered trademarks of ownCloud GmbH " - "in the United States, other countries, or both.

") - .arg(Utility::escape(MIRALL_VERSION_STRING), - Utility::escape("https://" MIRALL_STRINGIFY(APPLICATION_DOMAIN)), - Utility::escape(MIRALL_STRINGIFY(APPLICATION_DOMAIN))); + devString = tr("

Version %1. For more information please visit %3.

") + .arg(MIRALL_VERSION_STRING) + .arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN)) + .arg(MIRALL_STRINGIFY(APPLICATION_DOMAIN)); + + devString += tr("

Copyright ownCloud GmbH

"); + devString += tr("

Distributed by %1 and licensed under the GNU General Public License (GPL) Version 2.0.
" + "%2 and the %2 logo are registered trademarks of %1 in the " + "United States, other countries, or both.

") + .arg(APPLICATION_VENDOR) + .arg(APPLICATION_NAME); devString += gitSHA1(); return devString;