Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
translation fix
  • Loading branch information
jef-n committed Jul 13, 2015
1 parent 5a90091 commit 0853ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsnewnamedialog.cpp
Expand Up @@ -116,7 +116,7 @@ void QgsNewNameDialog::nameChanged()

if ( !conflicts.isEmpty() )
{
mErrorLabel->setText( highlightText( tr( "Name(s) %1 exists", 0, conflicts.size() ).arg( conflicts.join( ", " ) ) ) );
mErrorLabel->setText( highlightText( tr( "%n Name(s) %1 exists", 0, conflicts.size() ).arg( conflicts.join( ", " ) ) ) );
okButton->setText( tr( "Overwrite" ) );
return;
}
Expand Down

0 comments on commit 0853ead

Please sign in to comment.