diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json
index 97f49b5e8..95504407d 100644
--- a/frontend/src/locales/de.json
+++ b/frontend/src/locales/de.json
@@ -183,10 +183,11 @@
"uppercase": "Ein Großbuchstabe erforderlich."
},
"thx": {
- "activateEmail": "Deine Email wurde noch nicht aktiviert, email erneut senden?",
+ "activateEmail": "Deine Email wurde noch nicht aktiviert, bitte überprüfe deine Email und Klicke den Aktivierungslink!",
"checkEmail": "Deine Email würde erfolgreich verifiziert.",
"email": "Wir haben dir eine eMail gesendet.",
"emailActivated": "Danke dass Du deine Email bestätigt hast.",
+ "errorTitle": "Achtung!",
"register": "Du bist jetzt registriert, bitte überprüfe deine Emails und klicke auf den Aktivierungslink.",
"reset": "Dein Passwort wurde geändert.",
"title": "Danke!"
diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json
index 236d607cf..ac00b0d20 100644
--- a/frontend/src/locales/en.json
+++ b/frontend/src/locales/en.json
@@ -183,10 +183,11 @@
"uppercase": "One uppercase letter required."
},
"thx": {
- "activateEmail": "Your email has not been activated yet, send again the activation email?",
+ "activateEmail": "Your email has not been activated yet, please check your emails and click the activation link!",
"checkEmail": "Your email has been successfully verified.",
"email": "We have sent you an email.",
"emailActivated": "Thank you your email has been activated.",
+ "errorTitle": "Attention!",
"register": "You are registered now, please check your emails and click the activation link.",
"reset": "Your password has been changed.",
"title": "Thank you!"
diff --git a/frontend/src/routes/routes.js b/frontend/src/routes/routes.js
index 3d16ef45e..9c51bc688 100755
--- a/frontend/src/routes/routes.js
+++ b/frontend/src/routes/routes.js
@@ -40,7 +40,7 @@ const routes = [
path: '/thx/:comingFrom',
component: () => import('../views/Pages/thx.vue'),
beforeEnter: (to, from, next) => {
- const validFrom = ['password', 'reset', 'register', 'login', 'activateEmail']
+ const validFrom = ['password', 'reset', 'register', 'login']
if (!validFrom.includes(from.path.split('/')[1])) {
next({ path: '/login' })
} else {
@@ -68,10 +68,6 @@ const routes = [
path: '/checkEmail/:optin',
component: () => import('../views/Pages/CheckEmail.vue'),
},
- {
- path: '/activateEmail',
- component: () => import('../views/Pages/ActivateEmail.vue'),
- },
{ path: '*', component: NotFound },
]
diff --git a/frontend/src/views/Pages/ActivateEmail.vue b/frontend/src/views/Pages/ActivateEmail.vue
deleted file mode 100644
index 203065b3c..000000000
--- a/frontend/src/views/Pages/ActivateEmail.vue
+++ /dev/null
@@ -1,76 +0,0 @@
-
- {{ $t('site.activateEmail.subtitle') }}{{ $t('site.activateEmail.headline') }}
-
{{ $t('site.thx.title') }}
+{{ $t(displaySetup.headline) }}
{{ $t(displaySetup.subtitle) }}