From 518ca740f8bc517401699b25f9d6b56dc5401ffb Mon Sep 17 00:00:00 2001 From: xilesun <2013xile@gmail.com> Date: Mon, 22 May 2023 19:58:55 +0800 Subject: [PATCH] fix(locale): translation typo --- packages/core/client/src/locale/zh_CN.ts | 4 ++-- packages/core/client/src/user/CurrentUser.tsx | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/core/client/src/locale/zh_CN.ts b/packages/core/client/src/locale/zh_CN.ts index cd5fcec04..d2ccad1f9 100644 --- a/packages/core/client/src/locale/zh_CN.ts +++ b/packages/core/client/src/locale/zh_CN.ts @@ -779,10 +779,10 @@ export default { 'Form data templates': '表单数据模板', 'Data template': '数据模板', - 'Reload Application': '重载应用', + 'Reload application': '重载应用', 'The application is reloading, please do not close the page.': '应用正在重新加载,请勿关闭页面。', 'Application reloading': '应用重新加载中', - 'Reboot Application': '重启应用', + 'Reboot application': '重启应用', "Allows to clear cache, reboot application": "允许清除缓存,重启应用", 'The will interrupt service, it may take a few seconds to restart. Are you sure to continue?': '重启将会中断当前服务,这个过程可能需要一点时间,确定要继续吗?', 'Reboot': '重启', diff --git a/packages/core/client/src/user/CurrentUser.tsx b/packages/core/client/src/user/CurrentUser.tsx index 5efa8db53..976dc1b81 100644 --- a/packages/core/client/src/user/CurrentUser.tsx +++ b/packages/core/client/src/user/CurrentUser.tsx @@ -80,13 +80,13 @@ export const CurrentUser = () => { window.location.reload(); }} > - {t('Clear Cache')} + {t('Clear cache')} { Modal.confirm({ - title: t('Reboot Application'), + title: t('Reboot application'), content: t( 'The will interrupt service, it may take a few seconds to restart. Are you sure to continue?', ), @@ -102,7 +102,7 @@ export const CurrentUser = () => { }); }} > - {t('Reboot Application')} + {t('Reboot application')}