Merge pull request #1354 from nextcloud/minorchange/link-to-help-text

Minor text change in the link to help in the tab 'General'.
This commit is contained in:
Camila Ayres 2019-07-24 19:07:10 +02:00 committed by GitHub
commit a21258487f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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);