mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
translation fix
This commit is contained in:
parent
c4258c993b
commit
3bd37ecf98
@ -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"/>
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user