Restores previous text in the about section.

Signed-off-by: Camila San <hello@camila.codes>
This commit is contained in:
Camila San 2018-06-04 13:33:03 +02:00 committed by Roeland Jago Douma
parent c5ace2338c
commit 4c7b7dfcaa
No known key found for this signature in database
GPG key ID: F941078878347C0C

View file

@ -323,17 +323,17 @@ QString Theme::gitSHA1() const
QString Theme::about() const QString Theme::about() const
{ {
QString devString; QString devString;
devString = tr("<p>Version %2. For more information visit <a href=\"%3\">https://%4</a></p>" devString = tr("<p>Version %1. For more information please visit <a href='%2'>%3</a>.</p>")
"<p>For known issues and help, please visit: <a href=\"https://central.owncloud.org/c/desktop-client\">https://central.owncloud.org</a></p>" .arg(MIRALL_VERSION_STRING)
"<p><small>By Klaas Freitag, Daniel Molkentin, Olivier Goffart, Markus Götz, " .arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN))
" Jan-Christoph Borchardt, and others.</small></p>" .arg(MIRALL_STRINGIFY(APPLICATION_DOMAIN));
"<p>Copyright ownCloud GmbH</p>"
"<p>Licensed under the GNU General Public License (GPL) Version 2.0<br/>" devString += tr("<p>Copyright ownCloud GmbH</p>");
"ownCloud and the ownCloud Logo are registered trademarks of ownCloud GmbH " devString += tr("<p>Distributed by %1 and licensed under the GNU General Public License (GPL) Version 2.0.<br/>"
"in the United States, other countries, or both.</p>") "%2 and the %2 logo are registered trademarks of %1 in the "
.arg(Utility::escape(MIRALL_VERSION_STRING), "United States, other countries, or both.</p>")
Utility::escape("https://" MIRALL_STRINGIFY(APPLICATION_DOMAIN)), .arg(APPLICATION_VENDOR)
Utility::escape(MIRALL_STRINGIFY(APPLICATION_DOMAIN))); .arg(APPLICATION_NAME);
devString += gitSHA1(); devString += gitSHA1();
return devString; return devString;