vlc | branch: master | Adrien Maglo <[email protected]> | Tue Apr 16 22:49:11 2019 +0200| [c9541f6cbe6a0b502093d83fb21f2927cc41f2fa] | committer: Thomas Guillem
qml: change the case of MusicTrackListDisplay columns labels Signed-off-by: Thomas Guillem <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c9541f6cbe6a0b502093d83fb21f2927cc41f2fa --- .../gui/qt/qml/mediacenter/MusicAlbumsGridExpandDelegate.qml | 4 ++-- modules/gui/qt/qml/mediacenter/MusicTrackListDisplay.qml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/gui/qt/qml/mediacenter/MusicAlbumsGridExpandDelegate.qml b/modules/gui/qt/qml/mediacenter/MusicAlbumsGridExpandDelegate.qml index 60a67d9727..6e17b1e34f 100644 --- a/modules/gui/qt/qml/mediacenter/MusicAlbumsGridExpandDelegate.qml +++ b/modules/gui/qt/qml/mediacenter/MusicAlbumsGridExpandDelegate.qml @@ -180,8 +180,8 @@ Utils.NavigableFocusScope { parentId : root.model.id sortModel: ListModel { ListElement{ criteria: "track_number"; width:0.10; visible: true; text: qsTr("#"); showSection: "" } - ListElement{ criteria: "title"; width:0.70; visible: true; text: qsTr("TITLE"); showSection: "" } - ListElement{ criteria: "duration"; width:0.20; visible: true; text: qsTr("DURATION"); showSection: "" } + ListElement{ criteria: "title"; width:0.70; visible: true; text: qsTr("Title"); showSection: "" } + ListElement{ criteria: "duration"; width:0.20; visible: true; text: qsTr("Duration"); showSection: "" } } focus: true diff --git a/modules/gui/qt/qml/mediacenter/MusicTrackListDisplay.qml b/modules/gui/qt/qml/mediacenter/MusicTrackListDisplay.qml index 42b04dda54..a5034b94c0 100644 --- a/modules/gui/qt/qml/mediacenter/MusicTrackListDisplay.qml +++ b/modules/gui/qt/qml/mediacenter/MusicTrackListDisplay.qml @@ -29,12 +29,12 @@ Utils.KeyNavigableTableView { id: root sortModel: ListModel { - ListElement{ criteria: "title"; width:0.44; text: qsTr("TITLE"); showSection: "title" } - ListElement{ criteria: "album_title"; width:0.25; text: qsTr("ALBUM"); showSection: "album_title" } - ListElement{ criteria: "main_artist"; width:0.15; text: qsTr("ARTIST"); showSection: "main_artist" } - ListElement{ criteria: "duration"; width:0.06; text: qsTr("DURATION"); showSection: "" } - ListElement{ criteria: "track_number";width:0.05; text: qsTr("TRACK"); showSection: "" } - ListElement{ criteria: "disc_number"; width:0.05; text: qsTr("DISC"); showSection: "" } + ListElement{ criteria: "title"; width:0.44; text: qsTr("Title"); showSection: "title" } + ListElement{ criteria: "album_title"; width:0.25; text: qsTr("Album"); showSection: "album_title" } + ListElement{ criteria: "main_artist"; width:0.15; text: qsTr("Artist"); showSection: "main_artist" } + ListElement{ criteria: "duration"; width:0.06; text: qsTr("Duration"); showSection: "" } + ListElement{ criteria: "track_number";width:0.05; text: qsTr("Track"); showSection: "" } + ListElement{ criteria: "disc_number"; width:0.05; text: qsTr("Disc"); showSection: "" } } model: MLAlbumTrackModel { _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
