Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamila Ayres <hello@camila.codes>2019-07-24 20:08:47 +0300
committerGitHub <noreply@github.com>2019-07-24 20:08:47 +0300
commitb216e3df66652c32ee50ad2b7b348b0588ea225a (patch)
treec2f652a66f57a8ee3de482847087789d807b8fa1
parent50be2e067c115b84c34f23e13623cdfd358eb8e8 (diff)
parent9d060e5e55ec25825f364e73a337b38e447132aa (diff)
Merge pull request #1355 from nextcloud/backport/1354/stable-2.5.3stable-2.5.3
[stable-2.5.3] Minor text change in the link to help in the tab 'General'.
-rw-r--r--src/libsync/theme.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp
index f68b61e2e..ed2964729 100644
--- a/src/libsync/theme.cpp
+++ b/src/libsync/theme.cpp
@@ -341,10 +341,9 @@ QString Theme::gitSHA1() const
QString Theme::about() const
{
QString devString;
- devString = tr("<p>Version %1. For more information please visit <a href='%2'>%3</a>.</p>")
+ devString = tr("<p>Version %1. For more information please click <a href='%2'>here</a>.</p>")
.arg(MIRALL_VERSION_STRING)
- .arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN))
- .arg(MIRALL_STRINGIFY(APPLICATION_DOMAIN));
+ .arg(helpUrl());
devString += tr("<p>This release was supplied by %1</p>")
.arg(APPLICATION_VENDOR);