diff --git a/src/dialogs/about.cpp b/src/dialogs/about.cpp index 87c5b2d49..4c276e492 100644 --- a/src/dialogs/about.cpp +++ b/src/dialogs/about.cpp @@ -106,27 +106,27 @@ QString About::MainHtml() const { QString ret; - ret += "
"; + ret += QString("
"); ret += tr("Version %1").arg(QCoreApplication::applicationVersion()); - ret += "
"; + ret += QString(""); - ret += ""; + ret += QString("
");
ret += tr("Strawberry is a music player and music collection organizer.");
- ret += "
";
+ ret += QString("
");
ret += tr("It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles.");
- ret += "
"; + ret += QString("
");
ret += tr("Strawberry is free software released under GPL. The source code is available on %1").arg("GitHub.");
- ret += "
";
+ ret += QString("
");
ret += tr("You should have received a copy of the GNU General Public License along with this program. If not, see %1").arg("http://www.gnu.org/licenses/");
- ret += "
"; + ret += QString("
");
ret += tr("If you like Strawberry and can make use of it, consider sponsoring or donating.");
- ret += "
";
+ ret += QString("
");
ret += tr("You can sponsor the author on %1. You can also make a one-time payment through %2.").arg("GitHub sponsors").arg("paypal.me/jonaskvinge");
- ret += "
"; + ret += QString("
");
ret += "";
ret += tr("Author and maintainer");
ret += "";
for (const Person &person : strawberry_authors_) {
ret += "
" + PersonToHtml(person);
}
- ret += "
"; + ret += QString("
");
ret += "";
ret += tr("Contributors");
ret += "";
for (const Person &person : strawberry_contributors_) {
ret += "
" + PersonToHtml(person);
}
- ret += "
"; + ret += QString("
");
ret += "";
ret += tr("Clementine authors");
ret += "";
for (const Person &person : clementine_authors_) {
ret += "
" + PersonToHtml(person);
}
- ret += "
"; + ret += QString("
");
ret += "";
ret += tr("Clementine contributors");
ret += "";
for (const Person &person : clementine_contributors_) {
ret += "
" + PersonToHtml(person);
}
- ret += "
"; + ret += QString("
");
ret += "";
ret += tr("Thanks to");
ret += "";
for (const Person &person : strawberry_thanks_) {
ret += "
" + PersonToHtml(person);
}
- ret += "
"; + ret += QString("
"); ret += tr("Thanks to all the other Amarok and Clementine contributors."); - ret += "
"; + ret += QString(""); return ret; }