diff --git a/web/src/locales/en.json b/web/src/locales/en.json index 9cc17b10c..5bd934d9f 100644 --- a/web/src/locales/en.json +++ b/web/src/locales/en.json @@ -75,9 +75,10 @@ "back-to-top": "Back to Top" }, "auth": { - "signup-as-host": "Sign up as Host", + "create-your-account": "Create your account", + "sign-up-tip": "Don't have an account yet?", + "sign-in-tip": "Already has an account?", "host-tip": "You are registering as the Site Host.", - "not-host-tip": "If you don't have an account, please contact the site host.", "new-password": "New password", "repeat-new-password": "Repeat the new password" }, diff --git a/web/src/pages/SignIn.tsx b/web/src/pages/SignIn.tsx index a825b0645..a4525de55 100644 --- a/web/src/pages/SignIn.tsx +++ b/web/src/pages/SignIn.tsx @@ -152,7 +152,7 @@ const SignIn = () => { {systemStatus.allowSignUp && (

- {"Don't have an account yet?"} + {t("auth.sign-up-tip")} {t("common.sign-up")} diff --git a/web/src/pages/SignUp.tsx b/web/src/pages/SignUp.tsx index 1d7dc91d4..76a2f17d8 100644 --- a/web/src/pages/SignUp.tsx +++ b/web/src/pages/SignUp.tsx @@ -74,7 +74,7 @@ const SignUp = () => {

{systemStatus.customizedProfile.name}

-

Create your account

+

{t("auth.create-your-account")}

@@ -116,8 +116,9 @@ const SignUp = () => {
+ {!systemStatus.host &&

{t("auth.host-tip")}

}

- {"Already has an account?"} + {t("auth.sign-in-tip")} {t("common.sign-in")}