Skip to content

Commit

Permalink
Make string translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed May 2, 2016
1 parent c369aab commit 4730047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsattributeactionpropertiesdialog.cpp
Expand Up @@ -150,7 +150,7 @@ void QgsAttributeActionPropertiesDialog::chooseIcon()
Q_FOREACH ( const QByteArray& format, list )
formatList << QString( "*.%1" ).arg( QString( format ) );

QString filter = QString( "Images( %1 ); All( *.* )" ).arg( formatList.join( " " ) );
QString filter = tr( "Images( %1 ); All( *.* )" ).arg( formatList.join( " " ) );
QString icon = QFileDialog::getOpenFileName( this, tr( "Choose Icon..." ), mActionIcon->text(), filter );

if ( !icon.isNull() )
Expand Down

0 comments on commit 4730047

Please sign in to comment.