[vlc-commits] [Git][videolan/vlc][master] qml: fix emptylabel texts
Hugo Beauzée-Luyssen (@chouquette)
gitlab at videolan.org
Sat Aug 13 09:45:51 UTC 2022
Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC
Commits:
15a93597 by Prince Gupta at 2022-08-13T09:31:32+00:00
qml: fix emptylabel texts
- - - - -
6 changed files:
- modules/gui/qt/medialibrary/qml/MusicAlbums.qml
- modules/gui/qt/medialibrary/qml/MusicAllArtists.qml
- modules/gui/qt/medialibrary/qml/MusicArtistsAlbums.qml
- modules/gui/qt/medialibrary/qml/MusicGenres.qml
- modules/gui/qt/medialibrary/qml/MusicTracksDisplay.qml
- modules/gui/qt/medialibrary/qml/VideoAll.qml
Changes:
=====================================
modules/gui/qt/medialibrary/qml/MusicAlbums.qml
=====================================
@@ -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
}
=====================================
modules/gui/qt/medialibrary/qml/MusicAllArtists.qml
=====================================
@@ -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
}
=====================================
modules/gui/qt/medialibrary/qml/MusicArtistsAlbums.qml
=====================================
@@ -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
}
}
=====================================
modules/gui/qt/medialibrary/qml/MusicGenres.qml
=====================================
@@ -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
}
=====================================
modules/gui/qt/medialibrary/qml/MusicTracksDisplay.qml
=====================================
@@ -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
}
=====================================
modules/gui/qt/medialibrary/qml/VideoAll.qml
=====================================
@@ -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
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/15a93597f12ea01ed672e40793fd19145aa6b3aa
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/15a93597f12ea01ed672e40793fd19145aa6b3aa
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list