Skip to content

Commit

Permalink
fix message for translation
Browse files Browse the repository at this point in the history
  • Loading branch information
troopa81 authored and nyalldawson committed Nov 18, 2022
1 parent c54a967 commit 9ce5e13
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/core/layertree/qgslayertreemodel.cpp
Expand Up @@ -325,8 +325,7 @@ QVariant QgsLayerTreeModel::data( const QModelIndex &index, int role ) const
const bool estimatedCount = QgsDataSourceUri( layer->dataProvider()->dataSourceUri() ).useEstimatedMetadata();
if ( showFeatureCount && estimatedCount )
{
parts << QStringLiteral( "<b>%1</b> %2" ).arg(
tr( "Feature Count is estimated" ), tr( ": the feature count is determined by the database statistics" ) );
parts << tr( "<b>Feature count is estimated</b> : the feature count is determined by the database statistics" );
}

return parts.join( QLatin1String( "<br/>" ) );
Expand Down

0 comments on commit 9ce5e13

Please sign in to comment.