Skip to content

Commit

Permalink
Add fullstop
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Jul 6, 2021
1 parent aa6c1bd commit b4a5002
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgsqueryresultwidget.cpp
Expand Up @@ -242,7 +242,7 @@ void QgsQueryResultWidget::startFetching()
updateButtons();
updateSqlLayerColumns( );
}
mStatusLabel->setText( tr( "Fetched rows: %1 %2" )
mStatusLabel->setText( tr( "Fetched rows: %1 %2." )
.arg( mModel->rowCount( mModel->index( -1, -1 ) ) )
.arg( mWasCanceled ? tr( "(stopped)" ) : QString() ) );
} );
Expand All @@ -262,7 +262,7 @@ void QgsQueryResultWidget::startFetching()
}
else
{
mStatusLabel->setText( tr( "SQL command aborted" ) );
mStatusLabel->setText( tr( "SQL command aborted." ) );
}
}

Expand Down

0 comments on commit b4a5002

Please sign in to comment.