From 96b73d2e797e9e0c528c32ae16f8b2f796d54960 Mon Sep 17 00:00:00 2001 From: Sachin Chaurasiya Date: Tue, 23 May 2023 12:02:14 +0530 Subject: [PATCH] fix: missing localization (#11651) --- .../main/resources/ui/src/constants/PageHeaders.constant.ts | 5 ++--- .../src/main/resources/ui/src/locale/languages/en-us.json | 1 + .../src/main/resources/ui/src/locale/languages/es-es.json | 1 + .../src/main/resources/ui/src/locale/languages/fr-fr.json | 1 + .../src/main/resources/ui/src/locale/languages/ja-jp.json | 1 + .../src/main/resources/ui/src/locale/languages/pt-br.json | 1 + .../src/main/resources/ui/src/locale/languages/zh-cn.json | 1 + 7 files changed, 8 insertions(+), 3 deletions(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/constants/PageHeaders.constant.ts b/openmetadata-ui/src/main/resources/ui/src/constants/PageHeaders.constant.ts index b09522b0c54..593f7f1e418 100644 --- a/openmetadata-ui/src/main/resources/ui/src/constants/PageHeaders.constant.ts +++ b/openmetadata-ui/src/main/resources/ui/src/constants/PageHeaders.constant.ts @@ -79,9 +79,8 @@ export const PAGE_HEADERS = { subHeader: i18n.t('message.page-sub-header-for-storages'), }, ACTIVITY_FEED: { - header: 'Activity Feed', - subHeader: - 'Monitor and understand your tables structure with the profiler.', + header: i18n.t('label.activity-feed'), + subHeader: i18n.t('message.page-sub-header-for-activity-feed'), }, TABLES_CUSTOM_ATTRIBUTES: { header: i18n.t('label.table-plural'), diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json index af965c72aeb..f65fa7b3271 100644 --- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json +++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json @@ -1227,6 +1227,7 @@ "onboarding-stay-up-to-date-description": "Follow the datasets that you frequently use to stay informed about it.", "optional-configuration-update-description-dbt": "Optional configuration to update the description from dbt or not", "page-is-not-available": "The page you are looking for is not available", + "page-sub-header-for-activity-feed": "Activity feed that enables you view a summary of data change events.", "page-sub-header-for-admins": "Know the other Admins in your organization, along with their Teams and Roles.", "page-sub-header-for-advanced-search": "Discover the right data assets quickly using the syntax editor with and/or conditions.", "page-sub-header-for-bots": "Create well-defined bots with scoped access permissions.", diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/es-es.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/es-es.json index d84710fd484..aeeeb519b2e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/es-es.json +++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/es-es.json @@ -1227,6 +1227,7 @@ "onboarding-stay-up-to-date-description": "Sigue los conjuntos de datos que usas con frecuencia para mantenerte informado acerca de ellos.", "optional-configuration-update-description-dbt": "Configuración opcional para actualizar la descripción de dbt", "page-is-not-available": "La página que estás buscando no está disponible", + "page-sub-header-for-activity-feed": "Activity feed that enables you view a summary of data change events.", "page-sub-header-for-admins": "Know the other Admins in your organization, along with their Teams and Roles.", "page-sub-header-for-advanced-search": "Discover the right data assets quickly using the syntax editor with and/or conditions.", "page-sub-header-for-bots": "Create well-defined bots with scoped access permissions.", diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/fr-fr.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/fr-fr.json index 02fd197cb96..a62332255ca 100644 --- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/fr-fr.json +++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/fr-fr.json @@ -1227,6 +1227,7 @@ "onboarding-stay-up-to-date-description": "Suivre les actifs de données que vous utilisez fréquemment pour rester informé à ce sujet.", "optional-configuration-update-description-dbt": "Configuration factultative pour mettre à jour la description depuis dbt ou non", "page-is-not-available": "La page que vous cherchez n'est pas disponible", + "page-sub-header-for-activity-feed": "Activity feed that enables you view a summary of data change events.", "page-sub-header-for-admins": "Connaître les autres administrateurs de votre organisation, ainsi que leurs équipes et leurs rôles.", "page-sub-header-for-advanced-search": "Découvrir rapidement les bons actifs de données à l'aide de l'éditeur de syntaxe, en utilisant les conditions et/ou.", "page-sub-header-for-bots": "Créer des agents numériques bien définis avec des autorisations d'accès limitées.", diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/ja-jp.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/ja-jp.json index 86080c4bf2e..83d7de21fe1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/ja-jp.json +++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/ja-jp.json @@ -1227,6 +1227,7 @@ "onboarding-stay-up-to-date-description": "よく使うデータセットをフォローして、情報が通知されるようにする", "optional-configuration-update-description-dbt": "Optional configuration to update the description from dbt or not", "page-is-not-available": "お探しのページはご利用いただけません", + "page-sub-header-for-activity-feed": "Activity feed that enables you view a summary of data change events.", "page-sub-header-for-admins": "Know the other Admins in your organization, along with their Teams and Roles.", "page-sub-header-for-advanced-search": "Discover the right data assets quickly using the syntax editor with and/or conditions.", "page-sub-header-for-bots": "Create well-defined bots with scoped access permissions.", diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-br.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-br.json index bbcd0e2d8f7..b39b67260ce 100644 --- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-br.json +++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-br.json @@ -1227,6 +1227,7 @@ "onboarding-stay-up-to-date-description": "Siga os conjuntos de dados que você usa com frequência para se manter informado sobre eles.", "optional-configuration-update-description-dbt": "Configuração opcional para atualizar ou não a descrição do dbt", "page-is-not-available": "A página que você está procurando não está disponível", + "page-sub-header-for-activity-feed": "Activity feed that enables you view a summary of data change events.", "page-sub-header-for-admins": "Know the other Admins in your organization, along with their Teams and Roles.", "page-sub-header-for-advanced-search": "Discover the right data assets quickly using the syntax editor with and/or conditions.", "page-sub-header-for-bots": "Create well-defined bots with scoped access permissions.", diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/zh-cn.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/zh-cn.json index b0a6a039b19..ee31483964c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/zh-cn.json +++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/zh-cn.json @@ -1227,6 +1227,7 @@ "onboarding-stay-up-to-date-description": "关注您经常使用的数据集以获取最新信息", "optional-configuration-update-description-dbt": "可选配置,选择是否从 dbt 更新描述", "page-is-not-available": "您要查找的页面不可用", + "page-sub-header-for-activity-feed": "Activity feed that enables you view a summary of data change events.", "page-sub-header-for-admins": "了解组织机构中的其他管理员及其角色权限", "page-sub-header-for-advanced-search": "通过高级组合过滤器,快速查找您需要的数据集", "page-sub-header-for-bots": "创建一个有限访问权限的机器人",