From 949e3e04cf62653114272ec3356ae1efeeacc510 Mon Sep 17 00:00:00 2001 From: limes Date: Sat, 29 Aug 2026 18:14:25 +0200 Subject: [PATCH] fix: move email verification strings to locale file --- src/locales/en_US.json | 5 +++++ src/pages/account/verify-email.client.vue | 7 +++---- 2 files changed, 8 insertions(+), 4 deletions(-) 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') }}