Skip to content
Snippets Groups Projects
Commit 15a93597 authored by Prince Gupta's avatar Prince Gupta :speech_balloon: Committed by Hugo Beauzée-Luyssen
Browse files

qml: fix emptylabel texts

parent 996d3111
No related branches found
No related tags found
1 merge request!2355qml: fix emptylabel texts
Pipeline #251632 passed with stage
in 17 minutes and 6 seconds
......@@ -272,7 +272,7 @@ FocusScope {
anchors.fill: parent
visible: albumModelId.count === 0
focus: visible
text: I18n.qtr("No albums found\nPlease try adding sources, by going to the Network tab")
text: I18n.qtr("No albums found\nPlease try adding sources, by going to the Browse tab")
Navigation.parentItem: root
cover: VLCStyle.noArtAlbumCover
}
......
......@@ -227,7 +227,7 @@ FocusScope {
anchors.fill: parent
visible: artistModel.count === 0
focus: artistModel.count === 0
text: I18n.qtr("No artists found\nPlease try adding sources, by going to the Network tab")
text: I18n.qtr("No artists found\nPlease try adding sources, by going to the Browse tab")
Navigation.parentItem: root
cover: VLCStyle.noArtArtistCover
}
......
......@@ -218,7 +218,7 @@ FocusScope {
anchors.fill: parent
visible: artistModel.count === 0
focus: visible
text: I18n.qtr("No artists found\nPlease try adding sources, by going to the Network tab")
text: I18n.qtr("No artists found\nPlease try adding sources, by going to the Browse tab")
Navigation.parentItem: root
}
}
......@@ -296,7 +296,7 @@ FocusScope {
anchors.fill: parent
visible: genreModel.count === 0
focus: genreModel.count === 0
text: I18n.qtr("No genres found\nPlease try adding sources, by going to the Network tab")
text: I18n.qtr("No genres found\nPlease try adding sources, by going to the Browse tab")
Navigation.parentItem: root
cover: VLCStyle.noArtAlbumCover
}
......
......@@ -57,7 +57,7 @@ FocusScope {
anchors.fill: parent
visible: tracklistdisplay_id.model.count === 0
focus: tracklistdisplay_id.model.count === 0
text: I18n.qtr("No tracks found\nPlease try adding sources, by going to the Network tab")
text: I18n.qtr("No tracks found\nPlease try adding sources, by going to the Browse tab")
Navigation.parentItem: root
cover: VLCStyle.noArtAlbumCover
}
......
......@@ -370,7 +370,7 @@ FocusScope {
focus: visible
text: I18n.qtr("No video found\nPlease try adding sources, by going to the Network tab")
text: I18n.qtr("No video found\nPlease try adding sources, by going to the Browse tab")
cover: VLCStyle.noArtVideoCover
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment