Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add English (UK) as a supported language #5863

Merged
merged 6 commits into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions clients/admin-ui/src/home/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down
1 change: 1 addition & 0 deletions clients/admin-ui/src/types/api/models/SupportedLanguage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 2 additions & 0 deletions src/fides/data/language/languages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ languages:
name: Greek
- id: en
name: English
- id: en-GB
name: English (UK)
- id: es
name: Spanish
- id: es-MX
Expand Down
Loading