Fix i18n TOC and PP
parent
366696e696
commit
5d794efcae
|
@ -307,6 +307,7 @@ export default function Signup({ prepopulateFormValues, token, orgSlug }: Signup
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/* Social Logins */}
|
{/* Social Logins */}
|
||||||
|
{!token && (
|
||||||
<div className="mt-6 grid gap-2 md:grid-cols-2">
|
<div className="mt-6 grid gap-2 md:grid-cols-2">
|
||||||
<Button
|
<Button
|
||||||
color="secondary"
|
color="secondary"
|
||||||
|
@ -362,6 +363,7 @@ export default function Signup({ prepopulateFormValues, token, orgSlug }: Signup
|
||||||
{t("saml_sso")}
|
{t("saml_sso")}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
{/* Already have an account & T&C */}
|
{/* Already have an account & T&C */}
|
||||||
<div className="mt-6">
|
<div className="mt-6">
|
||||||
|
@ -369,19 +371,17 @@ export default function Signup({ prepopulateFormValues, token, orgSlug }: Signup
|
||||||
<Link href="/auth/login" className="text-emphasis hover:underline">
|
<Link href="/auth/login" className="text-emphasis hover:underline">
|
||||||
{t("already_have_account")}
|
{t("already_have_account")}
|
||||||
</Link>
|
</Link>
|
||||||
<p className="text-subtle">
|
<div className="text-subtle">
|
||||||
<Trans i18nKey="signing_up_terms">
|
<Trans i18nKey="signing_up_terms" as="p">
|
||||||
By signing up, you agree to our{" "}
|
By signing up, you agree to our
|
||||||
<Link className="text-emphasis hover:underline" href={`${WEBSITE_URL}/terms`}>
|
<Link className="text-emphasis hover:underline" href={`${WEBSITE_URL}/terms`}>
|
||||||
Terms of Service
|
Terms of Service
|
||||||
</Link>{" "}
|
</Link>
|
||||||
and{" "}
|
|
||||||
<Link className="text-emphasis hover:underline" href={`${WEBSITE_URL}/privacy`}>
|
<Link className="text-emphasis hover:underline" href={`${WEBSITE_URL}/privacy`}>
|
||||||
Privacy Policy
|
Privacy Policy
|
||||||
</Link>
|
</Link>
|
||||||
.
|
|
||||||
</Trans>
|
</Trans>
|
||||||
</p>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -67,7 +67,7 @@
|
||||||
"cannot_repackage_codebase": "You can not repackage or sell the codebase",
|
"cannot_repackage_codebase": "You can not repackage or sell the codebase",
|
||||||
"acquire_license": "Acquire a commercial license to remove these terms by emailing",
|
"acquire_license": "Acquire a commercial license to remove these terms by emailing",
|
||||||
"terms_summary": "Summary of terms",
|
"terms_summary": "Summary of terms",
|
||||||
"signing_up_terms":"By signing up, you agree to our <1>Terms of Service</1> and <2>Privacy Policy</2>.",
|
"signing_up_terms":"By signing up, you agree to our <2>Terms of Service</2> and <4>Privacy Policy</4>.",
|
||||||
"open_env": "Open .env and agree to our License",
|
"open_env": "Open .env and agree to our License",
|
||||||
"env_changed": "I've changed my .env",
|
"env_changed": "I've changed my .env",
|
||||||
"accept_license": "Accept License",
|
"accept_license": "Accept License",
|
||||||
|
|
Loading…
Reference in New Issue