Skip to content

Commit 3ae9ac5

Browse files
committedOct 30, 2017
translation string fixes
1 parent b3ef4da commit 3ae9ac5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/plugins/geometry_checker/qgsgeometrycheckersetuptab.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ void QgsGeometryCheckerSetupTab::runChecks()
371371
// Error if an output layer could not be created
372372
if ( !createErrors.isEmpty() )
373373
{
374-
QMessageBox::critical( this, tr( "Layer Creation Failed" ), tr( "Failed to create one or moure output layers:\n%1" ).arg( createErrors.join( "\n" ) ) );
374+
QMessageBox::critical( this, tr( "Layer Creation Failed" ), tr( "Failed to create one or more output layers:\n%1" ).arg( createErrors.join( "\n" ) ) );
375375
mRunButton->setEnabled( true );
376376
ui.labelStatus->hide();
377377
unsetCursor();
@@ -399,7 +399,7 @@ void QgsGeometryCheckerSetupTab::runChecks()
399399
{
400400
nonEditableLayerNames.append( layer->name() );
401401
}
402-
if ( QMessageBox::Yes != QMessageBox::question( this, tr( "Non-editable Output Layers" ), tr( "The following output layers are ina format that does not support editing features:\n%1\n\nThe geometry check can be performed, but it will not be possible to fix any errors. Do you want to continue?" ).arg( nonEditableLayerNames.join( "\n" ) ), QMessageBox::Yes, QMessageBox::No ) )
402+
if ( QMessageBox::Yes != QMessageBox::question( this, tr( "Non-editable Output Layers" ), tr( "The following output layers are in a format that does not support editing features:\n%1\n\nThe geometry check can be performed, but it will not be possible to fix any errors. Do you want to continue?" ).arg( nonEditableLayerNames.join( "\n" ) ), QMessageBox::Yes, QMessageBox::No ) )
403403
{
404404
if ( ui.radioButtonOutputNew->isChecked() )
405405
{

0 commit comments

Comments
 (0)
Please sign in to comment.