Replace QStringLiteral with QLatin1String
This commit is contained in:
@@ -103,31 +103,31 @@ QString About::MainHtml() const {
|
||||
|
||||
QString ret;
|
||||
|
||||
ret += QStringLiteral("<p>");
|
||||
ret += QLatin1String("<p>");
|
||||
ret += tr("Version %1").arg(QCoreApplication::applicationVersion());
|
||||
ret += QStringLiteral("</p>");
|
||||
ret += QLatin1String("</p>");
|
||||
|
||||
ret += QStringLiteral("<p>");
|
||||
ret += QLatin1String("<p>");
|
||||
ret += tr("Strawberry is a music player and music collection organizer.");
|
||||
ret += QStringLiteral("<br />");
|
||||
ret += QLatin1String("<br />");
|
||||
ret += tr("It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles.");
|
||||
ret += QStringLiteral("</p>");
|
||||
ret += QLatin1String("</p>");
|
||||
|
||||
ret += QStringLiteral("<p>");
|
||||
ret += tr("Strawberry is free software released under GPL. The source code is available on %1").arg(QStringLiteral("<a style=\"color:%1;\" href=\"https://github.com/strawberrymusicplayer/strawberry\">GitHub</a>.").arg(palette().text().color().name()));
|
||||
ret += QStringLiteral("<br />");
|
||||
ret += tr("You should have received a copy of the GNU General Public License along with this program. If not, see %1").arg(QStringLiteral("<a style=\"color:%1;\" href=\"http://www.gnu.org/licenses/\">http://www.gnu.org/licenses/</a>").arg(palette().text().color().name()));
|
||||
ret += QStringLiteral("</p>");
|
||||
ret += QLatin1String("<p>");
|
||||
ret += tr("Strawberry is free software released under GPL. The source code is available on %1").arg(QLatin1String("<a style=\"color:%1;\" href=\"https://github.com/strawberrymusicplayer/strawberry\">GitHub</a>.").arg(palette().text().color().name()));
|
||||
ret += QLatin1String("<br />");
|
||||
ret += tr("You should have received a copy of the GNU General Public License along with this program. If not, see %1").arg(QLatin1String("<a style=\"color:%1;\" href=\"http://www.gnu.org/licenses/\">http://www.gnu.org/licenses/</a>").arg(palette().text().color().name()));
|
||||
ret += QLatin1String("</p>");
|
||||
|
||||
ret += QStringLiteral("<p>");
|
||||
ret += QLatin1String("<p>");
|
||||
ret += tr("If you like Strawberry and can make use of it, consider sponsoring or donating.");
|
||||
ret += QStringLiteral("<br />");
|
||||
ret += QLatin1String("<br />");
|
||||
ret += tr("You can sponsor the author on %1. You can also make a one-time payment through %2.").arg(
|
||||
QStringLiteral("<a style=\"color:%1;\" href=\"https://github.com/sponsors/jonaski\">GitHub sponsors</a>").arg(palette().text().color().name()),
|
||||
QStringLiteral("<a style=\"color:%1;\" href=\"https://paypal.me/jonaskvinge\">paypal.me/jonaskvinge</a>").arg(palette().text().color().name())
|
||||
QLatin1String("<a style=\"color:%1;\" href=\"https://github.com/sponsors/jonaski\">GitHub sponsors</a>").arg(palette().text().color().name()),
|
||||
QLatin1String("<a style=\"color:%1;\" href=\"https://paypal.me/jonaskvinge\">paypal.me/jonaskvinge</a>").arg(palette().text().color().name())
|
||||
);
|
||||
|
||||
ret += QStringLiteral("</p>");
|
||||
ret += QLatin1String("</p>");
|
||||
|
||||
return ret;
|
||||
|
||||
@@ -137,54 +137,54 @@ QString About::ContributorsHtml() const {
|
||||
|
||||
QString ret;
|
||||
|
||||
ret += QStringLiteral("<p>");
|
||||
ret += QLatin1String("<p>");
|
||||
ret += QLatin1String("<b>");
|
||||
ret += tr("Author and maintainer");
|
||||
ret += QLatin1String("</b>");
|
||||
for (const Person &person : strawberry_authors_) {
|
||||
ret += QStringLiteral("<br />") + PersonToHtml(person);
|
||||
ret += QLatin1String("<br />") + PersonToHtml(person);
|
||||
}
|
||||
ret += QStringLiteral("</p>");
|
||||
ret += QLatin1String("</p>");
|
||||
|
||||
ret += QStringLiteral("<p>");
|
||||
ret += QLatin1String("<p>");
|
||||
ret += QLatin1String("<b>");
|
||||
ret += tr("Contributors");
|
||||
ret += QLatin1String("</b>");
|
||||
for (const Person &person : strawberry_contributors_) {
|
||||
ret += QStringLiteral("<br />") + PersonToHtml(person);
|
||||
ret += QLatin1String("<br />") + PersonToHtml(person);
|
||||
}
|
||||
ret += QStringLiteral("</p>");
|
||||
ret += QLatin1String("</p>");
|
||||
|
||||
ret += QStringLiteral("<p>");
|
||||
ret += QLatin1String("<p>");
|
||||
ret += QLatin1String("<b>");
|
||||
ret += tr("Clementine authors");
|
||||
ret += QLatin1String("</b>");
|
||||
for (const Person &person : clementine_authors_) {
|
||||
ret += QStringLiteral("<br />") + PersonToHtml(person);
|
||||
ret += QLatin1String("<br />") + PersonToHtml(person);
|
||||
}
|
||||
ret += QStringLiteral("</p>");
|
||||
ret += QLatin1String("</p>");
|
||||
|
||||
ret += QStringLiteral("<p>");
|
||||
ret += QLatin1String("<p>");
|
||||
ret += QLatin1String("<b>");
|
||||
ret += tr("Clementine contributors");
|
||||
ret += QLatin1String("</b>");
|
||||
for (const Person &person : clementine_contributors_) {
|
||||
ret += QStringLiteral("<br />") + PersonToHtml(person);
|
||||
ret += QLatin1String("<br />") + PersonToHtml(person);
|
||||
}
|
||||
ret += QStringLiteral("</p>");
|
||||
ret += QLatin1String("</p>");
|
||||
|
||||
ret += QStringLiteral("<p>");
|
||||
ret += QLatin1String("<p>");
|
||||
ret += QLatin1String("<b>");
|
||||
ret += tr("Thanks to");
|
||||
ret += QLatin1String("</b>");
|
||||
for (const Person &person : strawberry_thanks_) {
|
||||
ret += QStringLiteral("<br />") + PersonToHtml(person);
|
||||
ret += QLatin1String("<br />") + PersonToHtml(person);
|
||||
}
|
||||
ret += QStringLiteral("</p>");
|
||||
ret += QLatin1String("</p>");
|
||||
|
||||
ret += QStringLiteral("<p>");
|
||||
ret += QLatin1String("<p>");
|
||||
ret += tr("Thanks to all the other Amarok and Clementine contributors.");
|
||||
ret += QStringLiteral("</p>");
|
||||
ret += QLatin1String("</p>");
|
||||
return ret;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user