diff --git a/web/src/app/login/page.tsx b/web/src/app/login/page.tsx index 05ab6e34..7e1eea87 100644 --- a/web/src/app/login/page.tsx +++ b/web/src/app/login/page.tsx @@ -284,6 +284,27 @@ export default function Login() { )} + +

+ {t('common.agreementNotice')}{' '} + + {t('common.privacyPolicy')} + {' '} + {t('common.and')}{' '} + + {t('common.dataCollectionPolicy')} + +

diff --git a/web/src/app/register/page.tsx b/web/src/app/register/page.tsx index a19dfd78..00dd9679 100644 --- a/web/src/app/register/page.tsx +++ b/web/src/app/register/page.tsx @@ -253,6 +253,27 @@ export default function Register() { + +

+ {t('common.agreementNotice')}{' '} + + {t('common.privacyPolicy')} + {' '} + {t('common.and')}{' '} + + {t('common.dataCollectionPolicy')} + +

diff --git a/web/src/i18n/locales/en-US.ts b/web/src/i18n/locales/en-US.ts index b8e3d3be..69f29464 100644 --- a/web/src/i18n/locales/en-US.ts +++ b/web/src/i18n/locales/en-US.ts @@ -47,6 +47,10 @@ const enUS = { copyFailed: 'Copy Failed', test: 'Test', forgotPassword: 'Forgot Password?', + agreementNotice: 'By continuing, you agree to our', + privacyPolicy: 'Privacy Policy', + and: 'and', + dataCollectionPolicy: 'Data Collection Policy', loading: 'Loading...', fieldRequired: 'This field is required', or: 'or', diff --git a/web/src/i18n/locales/ja-JP.ts b/web/src/i18n/locales/ja-JP.ts index e5de5b24..07a72306 100644 --- a/web/src/i18n/locales/ja-JP.ts +++ b/web/src/i18n/locales/ja-JP.ts @@ -48,6 +48,10 @@ const jaJP = { copyFailed: 'コピーに失敗しました', test: 'テスト', forgotPassword: 'パスワードを忘れた?', + agreementNotice: '続行することで、以下に同意したものとみなされます:', + privacyPolicy: 'プライバシーポリシー', + and: 'および', + dataCollectionPolicy: 'データ収集ポリシー', loading: '読み込み中...', fieldRequired: 'この項目は必須です', or: 'または', diff --git a/web/src/i18n/locales/zh-Hans.ts b/web/src/i18n/locales/zh-Hans.ts index 7f2b86b5..b099153c 100644 --- a/web/src/i18n/locales/zh-Hans.ts +++ b/web/src/i18n/locales/zh-Hans.ts @@ -47,6 +47,10 @@ const zhHans = { copyFailed: '复制失败', test: '测试', forgotPassword: '忘记密码?', + agreementNotice: '继续即表示您同意我们的', + privacyPolicy: '隐私政策', + and: '和', + dataCollectionPolicy: '数据收集政策', loading: '加载中...', fieldRequired: '此字段为必填项', or: '或', diff --git a/web/src/i18n/locales/zh-Hant.ts b/web/src/i18n/locales/zh-Hant.ts index 4bef802b..571c571b 100644 --- a/web/src/i18n/locales/zh-Hant.ts +++ b/web/src/i18n/locales/zh-Hant.ts @@ -47,6 +47,10 @@ const zhHant = { copyFailed: '複製失敗', test: '測試', forgotPassword: '忘記密碼?', + agreementNotice: '繼續即表示您同意我們的', + privacyPolicy: '隱私政策', + and: '和', + dataCollectionPolicy: '數據收集政策', loading: '載入中...', fieldRequired: '此欄位為必填', or: '或',