[vlc-commits] qml: don't translate empty strings
    Pierre Lamot 
    git at videolan.org
       
    Fri Dec 18 09:19:27 UTC 2020
    
    
  
vlc | branch: master | Pierre Lamot <pierre at videolabs.io> | Fri Dec 18 09:54:36 2020 +0100| [db9a6d9f036aa2727768b0249da9ae5a9f3d3297] | committer: Pierre Lamot
qml: don't translate empty strings
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=db9a6d9f036aa2727768b0249da9ae5a9f3d3297
---
 modules/gui/qt/medialibrary/qml/MusicArtist.qml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/qt/medialibrary/qml/MusicArtist.qml b/modules/gui/qt/medialibrary/qml/MusicArtist.qml
index 0aab2c12fc..8419ef379e 100644
--- a/modules/gui/qt/medialibrary/qml/MusicArtist.qml
+++ b/modules/gui/qt/medialibrary/qml/MusicArtist.qml
@@ -111,7 +111,7 @@ Widgets.NavigableFocusScope {
                         delegate: Widgets.GridItem {
                             image: model.cover || VLCStyle.noArtAlbum
                             title: model.title || i18n.qtr("Unknown title")
-                            subtitle: model.release_year || i18n.qtr("")
+                            subtitle: model.release_year || ""
                             textHorizontalAlignment: Text.AlignHCenter
                             x: selectedBorderWidth
                             y: selectedBorderWidth
    
    
More information about the vlc-commits
mailing list