Skip to content

Commit

Permalink
translation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jun 21, 2011
1 parent c4258c9 commit 3bd37ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions i18n/qgis_de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19443,8 +19443,8 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten.</
<message>
<location filename="../src/app/legend/qgslegendlayer.cpp" line="603"/>
<location filename="../src/app/legend/qgslegendlayer.cpp" line="665"/>
<source>Updating feature count for layer </source>
<translation>Objektanzahl des Layers aktualsieren</translation>
<source>Updating feature count for layer %1</source>
<translation>Objektanzahl des Layers %1 aktualsieren</translation>
</message>
<message>
<location filename="../src/app/legend/qgslegendlayer.cpp" line="603"/>
Expand Down
2 changes: 1 addition & 1 deletion src/app/legend/qgslegendlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ void QgsLegendLayer::updateItemListCountV2( SymbologyList& itemList, QgsVectorLa

//go through all features and count the number of occurrences
int nFeatures = layer->pendingFeatureCount();
QProgressDialog p( tr( "Updating feature count for layer " ) + layer->name(), tr( "Abort" ), 0, nFeatures );
QProgressDialog p( tr( "Updating feature count for layer %1" ).arg( layer->name() ), tr( "Abort" ), 0, nFeatures );
p.setWindowModality( Qt::WindowModal );
int featuresCounted = 0;

Expand Down

0 comments on commit 3bd37ec

Please sign in to comment.