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;
|
||||
|
||||
}
|
||||
|
||||
@@ -79,7 +79,7 @@ void Console::RunQuery() {
|
||||
values.append(record.value(i).toString());
|
||||
}
|
||||
|
||||
ui_.output->append(values.join(QStringLiteral("|")));
|
||||
ui_.output->append(values.join(QLatin1Char('|')));
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -478,21 +478,21 @@ void EditTagDialog::SetSongListVisibility(bool visible) {
|
||||
|
||||
QVariant EditTagDialog::Data::value(const Song &song, const QString &id) {
|
||||
|
||||
if (id == QStringLiteral("title")) return song.title();
|
||||
if (id == QStringLiteral("artist")) return song.artist();
|
||||
if (id == QStringLiteral("album")) return song.album();
|
||||
if (id == QStringLiteral("albumartist")) return song.albumartist();
|
||||
if (id == QStringLiteral("composer")) return song.composer();
|
||||
if (id == QStringLiteral("performer")) return song.performer();
|
||||
if (id == QStringLiteral("grouping")) return song.grouping();
|
||||
if (id == QStringLiteral("genre")) return song.genre();
|
||||
if (id == QStringLiteral("comment")) return song.comment();
|
||||
if (id == QStringLiteral("lyrics")) return song.lyrics();
|
||||
if (id == QStringLiteral("track")) return song.track();
|
||||
if (id == QStringLiteral("disc")) return song.disc();
|
||||
if (id == QStringLiteral("year")) return song.year();
|
||||
if (id == QStringLiteral("compilation")) return song.compilation();
|
||||
if (id == QStringLiteral("rating")) { return song.rating(); }
|
||||
if (id == QLatin1String("title")) return song.title();
|
||||
if (id == QLatin1String("artist")) return song.artist();
|
||||
if (id == QLatin1String("album")) return song.album();
|
||||
if (id == QLatin1String("albumartist")) return song.albumartist();
|
||||
if (id == QLatin1String("composer")) return song.composer();
|
||||
if (id == QLatin1String("performer")) return song.performer();
|
||||
if (id == QLatin1String("grouping")) return song.grouping();
|
||||
if (id == QLatin1String("genre")) return song.genre();
|
||||
if (id == QLatin1String("comment")) return song.comment();
|
||||
if (id == QLatin1String("lyrics")) return song.lyrics();
|
||||
if (id == QLatin1String("track")) return song.track();
|
||||
if (id == QLatin1String("disc")) return song.disc();
|
||||
if (id == QLatin1String("year")) return song.year();
|
||||
if (id == QLatin1String("compilation")) return song.compilation();
|
||||
if (id == QLatin1String("rating")) { return song.rating(); }
|
||||
qLog(Warning) << "Unknown ID" << id;
|
||||
return QVariant();
|
||||
|
||||
@@ -500,21 +500,21 @@ QVariant EditTagDialog::Data::value(const Song &song, const QString &id) {
|
||||
|
||||
void EditTagDialog::Data::set_value(const QString &id, const QVariant &value) {
|
||||
|
||||
if (id == QStringLiteral("title")) current_.set_title(value.toString());
|
||||
else if (id == QStringLiteral("artist")) current_.set_artist(value.toString());
|
||||
else if (id == QStringLiteral("album")) current_.set_album(value.toString());
|
||||
else if (id == QStringLiteral("albumartist")) current_.set_albumartist(value.toString());
|
||||
else if (id == QStringLiteral("composer")) current_.set_composer(value.toString());
|
||||
else if (id == QStringLiteral("performer")) current_.set_performer(value.toString());
|
||||
else if (id == QStringLiteral("grouping")) current_.set_grouping(value.toString());
|
||||
else if (id == QStringLiteral("genre")) current_.set_genre(value.toString());
|
||||
else if (id == QStringLiteral("comment")) current_.set_comment(value.toString());
|
||||
else if (id == QStringLiteral("lyrics")) current_.set_lyrics(value.toString());
|
||||
else if (id == QStringLiteral("track")) current_.set_track(value.toInt());
|
||||
else if (id == QStringLiteral("disc")) current_.set_disc(value.toInt());
|
||||
else if (id == QStringLiteral("year")) current_.set_year(value.toInt());
|
||||
else if (id == QStringLiteral("compilation")) current_.set_compilation(value.toBool());
|
||||
else if (id == QStringLiteral("rating")) { current_.set_rating(value.toFloat()); }
|
||||
if (id == QLatin1String("title")) current_.set_title(value.toString());
|
||||
else if (id == QLatin1String("artist")) current_.set_artist(value.toString());
|
||||
else if (id == QLatin1String("album")) current_.set_album(value.toString());
|
||||
else if (id == QLatin1String("albumartist")) current_.set_albumartist(value.toString());
|
||||
else if (id == QLatin1String("composer")) current_.set_composer(value.toString());
|
||||
else if (id == QLatin1String("performer")) current_.set_performer(value.toString());
|
||||
else if (id == QLatin1String("grouping")) current_.set_grouping(value.toString());
|
||||
else if (id == QLatin1String("genre")) current_.set_genre(value.toString());
|
||||
else if (id == QLatin1String("comment")) current_.set_comment(value.toString());
|
||||
else if (id == QLatin1String("lyrics")) current_.set_lyrics(value.toString());
|
||||
else if (id == QLatin1String("track")) current_.set_track(value.toInt());
|
||||
else if (id == QLatin1String("disc")) current_.set_disc(value.toInt());
|
||||
else if (id == QLatin1String("year")) current_.set_year(value.toInt());
|
||||
else if (id == QLatin1String("compilation")) current_.set_compilation(value.toBool());
|
||||
else if (id == QLatin1String("rating")) { current_.set_rating(value.toFloat()); }
|
||||
else qLog(Warning) << "Unknown ID" << id;
|
||||
|
||||
}
|
||||
@@ -693,7 +693,7 @@ void EditTagDialog::SelectionChanged() {
|
||||
|
||||
QString summary;
|
||||
if (indexes.count() == 1) {
|
||||
summary += QStringLiteral("<p><b>") + first_song.PrettyTitleWithArtist().toHtmlEscaped() + QStringLiteral("</b></p>");
|
||||
summary += QLatin1String("<p><b>") + first_song.PrettyTitleWithArtist().toHtmlEscaped() + QLatin1String("</b></p>");
|
||||
}
|
||||
else {
|
||||
summary += QLatin1String("<p><b>");
|
||||
|
||||
Reference in New Issue
Block a user