Skip to content

Commit

Permalink
Minor text change in the link to help in the tab 'General'.
Browse files Browse the repository at this point in the history
Also uses helpUrl() retrieve the correct APPLICATION_HELP_URL
instead of APPLICATION_DOMAIN.

Signed-off-by: Camila San <hello@camila.codes>
  • Loading branch information
Camila San committed Jul 24, 2019
1 parent a0587f3 commit 3ea472d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/libsync/theme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3ea472d

Please sign in to comment.