From c82582c77353c1e885297839284a079f6509b3f0 Mon Sep 17 00:00:00 2001 From: Szabo Zoltan Date: Thu, 9 Apr 2026 16:31:52 +0200 Subject: [PATCH 1/2] Remove British from the list of NSs providing WASH M20 --- .changeset/floppy-rivers-grin.md | 5 +++++ app/src/views/SurgeCatalogueWashKitMsm20Eru/i18n.json | 2 +- go-api | 2 +- translationMigrations/000078-1775744813493.json | 11 +++++++++++ 4 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 .changeset/floppy-rivers-grin.md create mode 100644 translationMigrations/000078-1775744813493.json diff --git a/.changeset/floppy-rivers-grin.md b/.changeset/floppy-rivers-grin.md new file mode 100644 index 0000000000..acb6a1fb95 --- /dev/null +++ b/.changeset/floppy-rivers-grin.md @@ -0,0 +1,5 @@ +--- +"go-web-app": patch +--- + +Remove British from the list of NSs providing WASH M20. diff --git a/app/src/views/SurgeCatalogueWashKitMsm20Eru/i18n.json b/app/src/views/SurgeCatalogueWashKitMsm20Eru/i18n.json index ad965fe099..f545c5a47b 100644 --- a/app/src/views/SurgeCatalogueWashKitMsm20Eru/i18n.json +++ b/app/src/views/SurgeCatalogueWashKitMsm20Eru/i18n.json @@ -32,6 +32,6 @@ "specificationCostLabel": "Cost (indicative)", "specificationCostValue": "CHF 200,000", "specificationNSLabel": "National societies providing this service", - "specificationNSValue": "Austrian, British, German, Spanish, Swedish." + "specificationNSValue": "Austrian, German, Spanish, Swedish." } } diff --git a/go-api b/go-api index 657dc67d94..4eeedd3432 160000 --- a/go-api +++ b/go-api @@ -1 +1 @@ -Subproject commit 657dc67d94b7f49eec2d844e020f549f6e6719b7 +Subproject commit 4eeedd343296692ce7897932c9fdd320ee7d5923 diff --git a/translationMigrations/000078-1775744813493.json b/translationMigrations/000078-1775744813493.json new file mode 100644 index 0000000000..3785b375ba --- /dev/null +++ b/translationMigrations/000078-1775744813493.json @@ -0,0 +1,11 @@ +{ + "parent": "000077-1774412801025.json", + "actions": [ + { + "action": "update", + "key": "specificationNSValue", + "namespace": "surgeCatalogueWashKitMsm20Eru", + "newValue": "Austrian, German, Spanish, Swedish." + } + ] +} From f26734f89ab1c48bca8839a9cca6bad10850e0c5 Mon Sep 17 00:00:00 2001 From: Szabo Zoltan Date: Wed, 22 Apr 2026 15:18:47 +0200 Subject: [PATCH 2/2] Add Service catalogue and Job aids to Digital Surge --- .changeset/floppy-rivers-grin.md | 4 ++- .../i18n.json | 4 ++- .../index.tsx | 26 +++++++++++++++++++ go-api | 2 +- .../000078-1775744813493.json | 12 +++++++++ 5 files changed, 45 insertions(+), 3 deletions(-) diff --git a/.changeset/floppy-rivers-grin.md b/.changeset/floppy-rivers-grin.md index acb6a1fb95..8718ce30aa 100644 --- a/.changeset/floppy-rivers-grin.md +++ b/.changeset/floppy-rivers-grin.md @@ -2,4 +2,6 @@ "go-web-app": patch --- -Remove British from the list of NSs providing WASH M20. +Surge Catalogue of Services + - Fix NS list providing WASH M20: /surge/catalogue/wash/msm20-eru + - Add Service catalogue and Job aids to Digital Surge: /surge/catalogue/digital-systems diff --git a/app/src/views/SurgeCatalogueInformationTechnology/i18n.json b/app/src/views/SurgeCatalogueInformationTechnology/i18n.json index 210f1b038f..8fdaf640fd 100644 --- a/app/src/views/SurgeCatalogueInformationTechnology/i18n.json +++ b/app/src/views/SurgeCatalogueInformationTechnology/i18n.json @@ -21,6 +21,8 @@ "catalogueITLearnMore": "Learn More", "catalogueITAdditionalResourcesTitle": "Additional Resources", "catalogueITRole": "Roles and Responsibilities", - "catalogueITRoleDescription": "Clarifying IM and Digital System role mandates in emergency response." + "catalogueITRoleDescription": "Clarifying IM and Digital System role mandates in emergency response.", + "catalogueITServiceCatalogue": "Service catalogue", + "catalogueITJobAids": "Job aids" } } diff --git a/app/src/views/SurgeCatalogueInformationTechnology/index.tsx b/app/src/views/SurgeCatalogueInformationTechnology/index.tsx index d5079d5d4b..db447765df 100644 --- a/app/src/views/SurgeCatalogueInformationTechnology/index.tsx +++ b/app/src/views/SurgeCatalogueInformationTechnology/index.tsx @@ -64,6 +64,24 @@ export function Component() { }, ]; + const serviceCatalogue: LinkData[] = [ + { + title: strings.catalogueITLearnMore, + href: 'https://ifrcorg.sharepoint.com/:x:/s/IFRCSharing/IQCpBcABvCW2QL8fMGKx8LgJAaNW93UtuO5ClLNovfwWxFA', + external: true, + withLinkIcon: true, + }, + ]; + + const jobAids: LinkData[] = [ + { + title: strings.catalogueITLearnMore, + href: 'https://ifrcorg.sharepoint.com/:f:/s/IFRCSharing/IgAn2xGtgTc4QauHXK-0Su09AQbWhFUJJL58mUrrp4GNWrg', + external: true, + withLinkIcon: true, + }, + ]; + return ( + + diff --git a/go-api b/go-api index 4eeedd3432..9182eed480 160000 --- a/go-api +++ b/go-api @@ -1 +1 @@ -Subproject commit 4eeedd343296692ce7897932c9fdd320ee7d5923 +Subproject commit 9182eed480a855293a4afd2b522e2137f247fb02 diff --git a/translationMigrations/000078-1775744813493.json b/translationMigrations/000078-1775744813493.json index 3785b375ba..3d27ee5652 100644 --- a/translationMigrations/000078-1775744813493.json +++ b/translationMigrations/000078-1775744813493.json @@ -6,6 +6,18 @@ "key": "specificationNSValue", "namespace": "surgeCatalogueWashKitMsm20Eru", "newValue": "Austrian, German, Spanish, Swedish." + }, + { + "action": "add", + "key": "catalogueITServiceCatalogue", + "namespace": "surgeCatalogueInformationTechnology", + "value": "Service catalogue" + }, + { + "action": "add", + "key": "catalogueITJobAids", + "namespace": "surgeCatalogueInformationTechnology", + "value": "Job aids" } ] }