Just fixes

This commit is contained in:
2025-06-05 07:12:18 +02:00
parent bf83fc2c24
commit 3370a11f00
15 changed files with 205 additions and 30 deletions
+2 -2
View File
@@ -16,13 +16,13 @@ Page {
Label {
font.pixelSize: Theme.fontSizeExtraLarge
font.bold: true
text: "AllRadio v"+ _version
text: "AllRadio2 v"+ _version
anchors.horizontalCenter: parent.horizontalCenter
}
Label {
text: "License: GPL"
text: qsTr("License: GPLv2")
anchors.horizontalCenter: parent.horizontalCenter
}
+2 -2
View File
@@ -324,7 +324,7 @@ Page {
HeaderButton {
visible: playedCountries.count > 1
// headerText: playedCountries.count > 0 ? "Trending in " + radioBrowser.getCountryName(playedCountries.get(1).alpha_2) : "Trending in " + radioBrowser.getCountryName(_country)
headerText: playedCountries.count > 1 ? "Trending in " + radioBrowser.getCountryName(playedCountries.get(1).alpha_2) : "Trending in " + radioBrowser.getCountryName(_country)
headerText: playedCountries.count > 1 ? qsTr("Trending in")+" " + radioBrowser.getCountryName(playedCountries.get(1).alpha_2) : qsTr("Trending in")+" " + radioBrowser.getCountryName(_country)
onClicked: pageStack.push("CountryStationsPage.qml",{searchby:"clicktrend",_countrycode: playedCountries.get(1).alpha_2})
}
@@ -364,7 +364,7 @@ Page {
Item {height: Theme.paddingLarge;width: parent.width}
HeaderButton {
headerText: "Trending in the world"//playedCountries.count > 0 ? "Trending in " + radioBrowser.getCountryName(playedCountries.get(0).alpha_2) : "Trending in " + radioBrowser.getCountryName(_country)
headerText: qsTr("Trending in the world")//playedCountries.count > 0 ? "Trending in " + radioBrowser.getCountryName(playedCountries.get(0).alpha_2) : "Trending in " + radioBrowser.getCountryName(_country)
onClicked: pageStack.push("CountryStationsPage.qml",{searchby:"clicktrend",_countrycode: ""})
}