mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-28 02:20:24 +03:00
Restores previous text in the about section.
Signed-off-by: Camila San <hello@camila.codes>
This commit is contained in:
parent
c5ace2338c
commit
4c7b7dfcaa
1 changed files with 11 additions and 11 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue