diff --git a/src/locales/en_US.json b/src/locales/en_US.json index 1c23134..a1b2c79 100644 --- a/src/locales/en_US.json +++ b/src/locales/en_US.json @@ -273,6 +273,11 @@ "resend": "Resend verification email" } }, + "emailVerification": { + "verifiedTitle": "Email successfully verified", + "verifiedCaption": "You may now close this tab.", + "failedTitle": "Failed to verify email" + }, "accountLevel": [ "Standard", "Tester", diff --git a/src/pages/account/verify-email.client.vue b/src/pages/account/verify-email.client.vue index 0192289..15484d4 100644 --- a/src/pages/account/verify-email.client.vue +++ b/src/pages/account/verify-email.client.vue @@ -46,17 +46,16 @@ await callOnce(async () => {

- Email successfully verified{{ '' }} + {{ $t('account.emailVerification.verifiedTitle') }}

-

You may now close this tab.

+

{{ $t('account.emailVerification.verifiedCaption') }}

- Failed to verify email{{ '' }} + {{ $t('account.emailVerification.failedTitle') }}

{{ errorMessage }}