From 895208e0ee8483f424cd01fff05ded9736c1bf0f Mon Sep 17 00:00:00 2001 From: Charles Zhao Date: Mon, 18 Apr 2022 21:55:27 +0800 Subject: [PATCH] fix: typos in phrases --- packages/phrases/src/locales/en.ts | 8 ++++---- packages/phrases/src/locales/zh-cn.ts | 8 ++++---- .../ui/src/containers/PasscodeValidation/index.test.tsx | 2 +- packages/ui/src/containers/PasscodeValidation/index.tsx | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/phrases/src/locales/en.ts b/packages/phrases/src/locales/en.ts index 3e99f01dd..3b5ba878b 100644 --- a/packages/phrases/src/locales/en.ts +++ b/packages/phrases/src/locales/en.ts @@ -37,12 +37,12 @@ const translation = { forgot_password: 'Forgot Password?', or: 'Or', enter_passcode: 'The passcode has been sent to {{address}}', - resend_after_senconds: 'Resend after {{seconds}} seconds', + resend_after_seconds: 'Resend after {{seconds}} seconds', resend_passcode: 'Resend Passcode', continue_with: 'Continue with', - create_account_id_exsits: + create_account_id_exists: 'The account with {{type}} {{value}} already exists, would you like to sign in?', - sign_in_id_does_not_exsits: + sign_in_id_does_not_exists: 'The account with {{type}} {{value}} does not exist, would you like to create a new account?', }, error: { @@ -380,7 +380,7 @@ const translation = { mode: 'Language mode', auto: 'Auto', fixed: 'Fixed', - fallback: 'Fallback laguanges', + fallback: 'Fallback languages', languages: { english: 'English', chinese: 'Chinese', diff --git a/packages/phrases/src/locales/zh-cn.ts b/packages/phrases/src/locales/zh-cn.ts index e55d3c6c1..89db031a2 100644 --- a/packages/phrases/src/locales/zh-cn.ts +++ b/packages/phrases/src/locales/zh-cn.ts @@ -39,11 +39,11 @@ const translation = { forgot_password: '忘记密码?', or: '或', enter_passcode: '验证码已经发送至 {{ address }}', - resend_after_senconds: '在 {{ seconds }} 秒后重发', + resend_after_seconds: '在 {{ seconds }} 秒后重发', resend_passcode: '重发验证码', continue_with: '通过以下方式继续', - create_account_id_exsits: '{{ type }}为 {{ value }} 的账号已存在,您要登录吗?', - sign_in_id_does_not_exsits: '{{ type }}为 {{ value }} 的账号不存在,您要创建一个新账号吗?', + create_account_id_exists: '{{ type }}为 {{ value }} 的账号已存在,您要登录吗?', + sign_in_id_does_not_exists: '{{ type }}为 {{ value }} 的账号不存在,您要创建一个新账号吗?', }, error: { username_password_mismatch: '用户名和密码不匹配。', @@ -376,7 +376,7 @@ const translation = { mode: 'Language mode', auto: 'Auto', fixed: 'Fixed', - fallback: 'Fallback laguanges', + fallback: 'Fallback languages', languages: { english: 'English', chinese: 'Chinese', diff --git a/packages/ui/src/containers/PasscodeValidation/index.test.tsx b/packages/ui/src/containers/PasscodeValidation/index.test.tsx index 178d18544..0c6dc871d 100644 --- a/packages/ui/src/containers/PasscodeValidation/index.test.tsx +++ b/packages/ui/src/containers/PasscodeValidation/index.test.tsx @@ -32,7 +32,7 @@ describe('', () => { ); - expect(queryByText('description.resend_after_senconds')).not.toBeNull(); + expect(queryByText('description.resend_after_seconds')).not.toBeNull(); act(() => { jest.runAllTimers(); diff --git a/packages/ui/src/containers/PasscodeValidation/index.tsx b/packages/ui/src/containers/PasscodeValidation/index.tsx index c0777c996..1b5c41f40 100644 --- a/packages/ui/src/containers/PasscodeValidation/index.tsx +++ b/packages/ui/src/containers/PasscodeValidation/index.tsx @@ -87,7 +87,7 @@ const PasscodeValidation = ({ type, method, className, target }: Props) => { }, [verifyPasscodeError]); const renderCountDownMessage = useMemo(() => { - const contents = t('description.resend_after_senconds', { seconds }); + const contents = t('description.resend_after_seconds', { seconds }); return (