vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Tue Aug 28 
19:57:54 2012 +0200| [0e8c803fbaa28aaeefe060e8f6cb8427733c0537] | committer: 
Jean-Baptiste Kempf

Qt: improve strings

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0e8c803fbaa28aaeefe060e8f6cb8427733c0537
---

 modules/gui/qt4/components/interface_widgets.cpp |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/qt4/components/interface_widgets.cpp 
b/modules/gui/qt4/components/interface_widgets.cpp
index 0c0127e..58846d8 100644
--- a/modules/gui/qt4/components/interface_widgets.cpp
+++ b/modules/gui/qt4/components/interface_widgets.cpp
@@ -521,7 +521,7 @@ CoverArtLabel::CoverArtLabel( QWidget *parent, 
intf_thread_t *_p_i )
     CONNECT( action, triggered(), this, askForUpdate() );
     addAction( action );
 
-    action = new QAction( qtr( "Cover art from file" ), this );
+    action = new QAction( qtr( "Add cover art from file" ), this );
     CONNECT( action, triggered(), this, setArtFromFile() );
     addAction( action );
 
@@ -580,7 +580,7 @@ void CoverArtLabel::setArtFromFile()
     if( !p_item )
         return;
 
-    QString filePath = QFileDialog::getOpenFileName( this, qtr( "Choose Image" 
),
+    QString filePath = QFileDialog::getOpenFileName( this, qtr( "Choose Cover 
Art" ),
         p_intf->p_sys->filepath, qtr( "Image Files (*.gif *.jpg *.jpeg *.png)" 
) );
 
     if( filePath.isEmpty() )

_______________________________________________
vlc-commits mailing list
[email protected]
http://mailman.videolan.org/listinfo/vlc-commits

Reply via email to