diff --git a/packages/manager/apps/hpc-vmware-managed-vcd/public/translations/dashboard/Messages_fr_FR.json b/packages/manager/apps/hpc-vmware-managed-vcd/public/translations/dashboard/Messages_fr_FR.json index 594a2a4f1f95..7c6d6268876e 100644 --- a/packages/manager/apps/hpc-vmware-managed-vcd/public/translations/dashboard/Messages_fr_FR.json +++ b/packages/manager/apps/hpc-vmware-managed-vcd/public/translations/dashboard/Messages_fr_FR.json @@ -4,7 +4,8 @@ "managed_vcd_dashboard_datacentres_label": "datacentres", "managed_vcd_dashboard_description": "Description", "managed_vcd_dashboard_name": "Nom", - "managed_vcd_dashboard_localisation": "Région", + "managed_vcd_dashboard_location": "Localisation", + "managed_vcd_dashboard_region": "Région", "managed_vcd_dashboard_datacentres_count": "Nombre de datacentres", "managed_vcd_dashboard_management_interface": "Interface de gestion", "managed_vcd_dashboard_management_interface_access": "Accéder à VCD", diff --git a/packages/manager/apps/hpc-vmware-managed-vcd/src/components/tiles/organization-general-information-tile/OrganizationGeneralInformationTile.component.tsx b/packages/manager/apps/hpc-vmware-managed-vcd/src/components/tiles/organization-general-information-tile/OrganizationGeneralInformationTile.component.tsx index 9b6b5b5268f6..1dd5083890c7 100644 --- a/packages/manager/apps/hpc-vmware-managed-vcd/src/components/tiles/organization-general-information-tile/OrganizationGeneralInformationTile.component.tsx +++ b/packages/manager/apps/hpc-vmware-managed-vcd/src/components/tiles/organization-general-information-tile/OrganizationGeneralInformationTile.component.tsx @@ -4,6 +4,7 @@ import { Clipboard, DashboardTile, Region, + Description, } from '@ovh-ux/manager-react-components'; import { ODS_THEME_COLOR_HUE, @@ -66,10 +67,9 @@ export default function OrganizationGenerationInformationTile({ }, { id: 'location', - label: t('managed_vcd_dashboard_localisation'), + label: t('managed_vcd_dashboard_location'), value: ( ), }, + { + id: 'location', + label: t('managed_vcd_dashboard_region'), + value: ( + + {vcdOrganization?.currentState?.region?.toLowerCase()} + + ), + }, { id: 'datacentresCount', label: t('managed_vcd_dashboard_datacentres_count'),