Specifies number of processed records for each domain
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m3s
Automated Main Deploy Action / build-and-deploy-docs (push) Successful in 23s

This commit is contained in:
2025-11-05 12:00:06 -05:00
parent 1a98538c86
commit 0b3b80d775

View File

@@ -182,7 +182,7 @@ void TagServiceWidget::processedMappings( std::size_t count, std::size_t record_
QLocale locale { QLocale::English, QLocale::UnitedStates };
locale.setNumberOptions( QLocale::DefaultNumberOptions );
ui->mappingsCount->setText(
QString( "Mappings: %L1 (%L2 processed)\nRecords: (%L3 Records)" )
QString( "Mappings: %L1 (%L2 processed)\nRecords: (%L3 processed)" )
.arg( m_info.num_mappings )
.arg( mappings_processed )
.arg( records_processed ) );
@@ -222,7 +222,7 @@ void TagServiceWidget::setMaxMappings( std::size_t count )
m_info.num_mappings = count;
if ( mappings_processed > 0 )
ui->mappingsCount->setText(
QString( "Mappings: %L1 (%L2 processed)\nRecords: (%L3 Records)" )
QString( "Mappings: %L1 (%L2 processed)\nRecords: (%L3 processed)" )
.arg( m_info.num_mappings )
.arg( mappings_processed )
.arg( records_processed ) );