Skip to content

Commit 3bd37ec

Browse files
committedJun 21, 2011
translation fix
1 parent c4258c9 commit 3bd37ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎i18n/qgis_de.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19443,8 +19443,8 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten.</
1944319443
<message>
1944419444
<location filename="../src/app/legend/qgslegendlayer.cpp" line="603"/>
1944519445
<location filename="../src/app/legend/qgslegendlayer.cpp" line="665"/>
19446-
<source>Updating feature count for layer </source>
19447-
<translation>Objektanzahl des Layers aktualsieren</translation>
19446+
<source>Updating feature count for layer %1</source>
19447+
<translation>Objektanzahl des Layers %1 aktualsieren</translation>
1944819448
</message>
1944919449
<message>
1945019450
<location filename="../src/app/legend/qgslegendlayer.cpp" line="603"/>

‎src/app/legend/qgslegendlayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ void QgsLegendLayer::updateItemListCountV2( SymbologyList& itemList, QgsVectorLa
600600

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

0 commit comments

Comments
 (0)
Please sign in to comment.