Skip to content

Commit

Permalink
fix string mishap in nodetool
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 14, 2012
1 parent 076e6ff commit 6d5fc5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion i18n/qgis_de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30256,7 +30256,7 @@ p, li { white-space: pre-wrap; }
</message>
<message numerus="yes">
<location filename="../src/app/nodetool/qgsselectedfeature.cpp" line="224"/>
<source>Validation finished (%n error(s) gefunden).</source>
<source>Validation finished (%n error(s) found).</source>
<comment>number of geometry errors</comment>
<translation>
<numerusform>Prüfung abgeschlossen (ein Fehler gefunden).</numerusform>
Expand Down
2 changes: 1 addition & 1 deletion src/app/nodetool/qgsselectedfeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ void QgsSelectedFeature::addError( QgsGeometry::Error e )
void QgsSelectedFeature::validationFinished()
{
QStatusBar *sb = QgisApp::instance()->statusBar();
sb->showMessage( tr( "Validation finished (%n error(s) gefunden).", "number of geometry errors", mGeomErrorMarkers.size() ) );
sb->showMessage( tr( "Validation finished (%n error(s) found).", "number of geometry errors", mGeomErrorMarkers.size() ) );
}

void QgsSelectedFeature::deleteSelectedVertexes()
Expand Down

0 comments on commit 6d5fc5f

Please sign in to comment.