From b85200c085595e4ff4c47a9981ece074f10f7383 Mon Sep 17 00:00:00 2001 From: Eduardo Peredo Rivero Date: Mon, 11 Mar 2024 20:58:08 -0500 Subject: [PATCH] update locales --- i18n/en.pot | 25 +++++++++++-------- i18n/es.po | 25 +++++++++++-------- .../GetMissingDisaggregatesUseCase.ts | 2 ++ 3 files changed, 30 insertions(+), 22 deletions(-) diff --git a/i18n/en.pot b/i18n/en.pot index 8704ffb..0cfad04 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2024-03-11T13:00:38.175Z\n" -"PO-Revision-Date: 2024-03-11T13:00:38.175Z\n" +"POT-Creation-Date: 2024-03-12T01:57:33.110Z\n" +"PO-Revision-Date: 2024-03-12T01:57:33.110Z\n" msgid "Cannot be blank: {{fieldName}}" msgstr "" @@ -167,9 +167,21 @@ msgstr "" msgid "Running analysis..." msgstr "" +msgid "Missing disaggregates in selected catcombos" +msgstr "" + msgid "CatCombos" msgstr "" +msgid "Medical doctors analysis: General Practicioners missing and double counts" +msgstr "" + +msgid "Disaggregations" +msgstr "" + +msgid "Double Counts Threshold" +msgstr "" + msgid "Activity Level" msgstr "" @@ -227,15 +239,6 @@ msgstr "" msgid "Graduates by institution ownership" msgstr "" -msgid "Medical doctors analysis: General Practicioners missing and double counts" -msgstr "" - -msgid "Disaggregations" -msgstr "" - -msgid "Double Counts Threshold" -msgstr "" - msgid "Validation Rule Group" msgstr "" diff --git a/i18n/es.po b/i18n/es.po index 27cbb7a..7e76708 100644 --- a/i18n/es.po +++ b/i18n/es.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: i18next-conv\n" -"POT-Creation-Date: 2024-03-11T13:00:38.175Z\n" +"POT-Creation-Date: 2024-03-12T01:57:33.110Z\n" "PO-Revision-Date: 2018-10-25T09:02:35.143Z\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -168,9 +168,22 @@ msgstr "" msgid "Running analysis..." msgstr "" +msgid "Missing disaggregates in selected catcombos" +msgstr "" + msgid "CatCombos" msgstr "" +msgid "" +"Medical doctors analysis: General Practicioners missing and double counts" +msgstr "" + +msgid "Disaggregations" +msgstr "" + +msgid "Double Counts Threshold" +msgstr "" + msgid "Activity Level" msgstr "" @@ -228,16 +241,6 @@ msgstr "" msgid "Graduates by institution ownership" msgstr "" -msgid "" -"Medical doctors analysis: General Practicioners missing and double counts" -msgstr "" - -msgid "Disaggregations" -msgstr "" - -msgid "Double Counts Threshold" -msgstr "" - msgid "Validation Rule Group" msgstr "" diff --git a/src/domain/usecases/GetMissingDisaggregatesUseCase.ts b/src/domain/usecases/GetMissingDisaggregatesUseCase.ts index a289bcf..ca8216d 100644 --- a/src/domain/usecases/GetMissingDisaggregatesUseCase.ts +++ b/src/domain/usecases/GetMissingDisaggregatesUseCase.ts @@ -137,6 +137,7 @@ export class GetMissingDisaggregatesUseCase { dataElementId: missingDisaggregate.dataElement.id, description: `A missing disaggregate was detected for the Category ${disaggregationName}. Missing value was ${missingCombination.name}.`, issueNumber: issueNumber, + correlative: String(currentNumber), }, section.id ); @@ -180,6 +181,7 @@ export class GetMissingDisaggregatesUseCase { dataElementId: missingDataElement.id, description: `A missing disaggregate was detected for the Category ${disaggregationName}. Missing value was ${missingDataElement.name}.`, issueNumber: issueNumber, + correlative: String(currentNumber), }, section.id );