translation fix

This commit is contained in:
Juergen E. Fischer 2011-06-21 18:23:50 +02:00
parent c4258c993b
commit 3bd37ecf98
2 changed files with 3 additions and 3 deletions

View File

@ -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"/>

View File

@ -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;