From 0989da91ec67b08e4dbee2deb7d709f1bbaf60e6 Mon Sep 17 00:00:00 2001 From: wadesdev Date: Wed, 5 Mar 2025 14:34:34 -0500 Subject: [PATCH] adds uk english as a supported language --- clients/admin-ui/src/home/constants.ts | 6 +++--- clients/admin-ui/src/types/api/models/SupportedLanguage.ts | 1 + src/fides/data/language/languages.yml | 2 ++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/clients/admin-ui/src/home/constants.ts b/clients/admin-ui/src/home/constants.ts index d5d41ececd..f71c174d98 100644 --- a/clients/admin-ui/src/home/constants.ts +++ b/clients/admin-ui/src/home/constants.ts @@ -38,7 +38,7 @@ export const MODULE_CARD_ITEMS: ModuleCardConfig[] = [ }, { color: palette.FIDESUI_OLIVE, - description: "Add third party applications and databases to your data map", + description: "Add third party applications and databases to your data map.", href: `${ADD_SYSTEMS_ROUTE}`, key: ModuleCardKeys.ADD_SYSTEMS, name: "Add systems", @@ -49,7 +49,7 @@ export const MODULE_CARD_ITEMS: ModuleCardConfig[] = [ { color: palette.FIDESUI_TERRACOTTA, description: - "Review system information for all systems in your organization", + "Review system information for all systems in your organization.", href: `${SYSTEM_ROUTE}`, key: ModuleCardKeys.VIEW_SYSTEMS, name: "View systems", @@ -73,7 +73,7 @@ export const MODULE_CARD_ITEMS: ModuleCardConfig[] = [ { color: palette.FIDESUI_NECTAR, description: - "Manage privacy notices and experiences for all domains in your organization", + "Manage privacy notices and experiences for all domains in your organization.", href: `${CONFIGURE_CONSENT_ROUTE}`, key: ModuleCardKeys.CONFIGURE_CONSENT, name: "Manage consent", diff --git a/clients/admin-ui/src/types/api/models/SupportedLanguage.ts b/clients/admin-ui/src/types/api/models/SupportedLanguage.ts index 136975f94f..e70eff8245 100644 --- a/clients/admin-ui/src/types/api/models/SupportedLanguage.ts +++ b/clients/admin-ui/src/types/api/models/SupportedLanguage.ts @@ -12,6 +12,7 @@ export enum SupportedLanguage { DE = "de", EL = "el", EN = "en", + EN_GB = "en-GB", ES = "es", ES_MX = "es-MX", ET = "et", diff --git a/src/fides/data/language/languages.yml b/src/fides/data/language/languages.yml index e6230d6615..55f9ea9dda 100644 --- a/src/fides/data/language/languages.yml +++ b/src/fides/data/language/languages.yml @@ -17,6 +17,8 @@ languages: name: Greek - id: en name: English +- id: en-GB + name: English (UK) - id: es name: Spanish - id: es-MX