Commit 0e8c803f authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: improve strings

parent b11bba67
......@@ -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() )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment