Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make string translatable
  • Loading branch information
m-kuhn committed Apr 6, 2016
1 parent f7c5c2b commit 8f7a6aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/editorwidgets/qgsrelationreferencewidget.cpp
Expand Up @@ -688,7 +688,7 @@ void QgsRelationReferenceWidget::mapIdentification()

if ( mMessageBar )
{
QString title = QString( "Relation %1 for %2." ).arg( mRelationName, mReferencingLayer->name() );
QString title = tr( "Relation %1 for %2." ).arg( mRelationName, mReferencingLayer->name() );
QString msg = tr( "Identify a feature of %1 to be associated. Press <ESC> to cancel." ).arg( mReferencedLayer->name() );
mMessageBarItem = QgsMessageBar::createMessage( title, msg, this );
mMessageBar->pushItem( mMessageBarItem );
Expand Down

0 comments on commit 8f7a6aa

Please sign in to comment.