Minor text change in the link to help in the tab 'General'.
authorCamila San <hello@camila.codes>
Wed, 24 Jul 2019 13:22:15 +0000 (15:22 +0200)
committerCamila San <hello@camila.codes>
Wed, 24 Jul 2019 14:39:21 +0000 (16:39 +0200)
Also uses helpUrl() retrieve the correct APPLICATION_HELP_URL
instead of APPLICATION_DOMAIN.

Signed-off-by: Camila San <hello@camila.codes>
src/libsync/theme.cpp

index f68b61e2ea2027602419b8573e642a4d6844d0fd..ed29647295cc086f367bd5aa6bc7178cad5bbe1b 100644 (file)
@@ -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);