diff --git a/webapp/layouts/error.vue b/webapp/layouts/error.vue index d11755ad4..0b8c37bec 100644 --- a/webapp/layouts/error.vue +++ b/webapp/layouts/error.vue @@ -1,6 +1,9 @@ @@ -10,3 +13,19 @@ export default { props: ['error'], } + diff --git a/webapp/locales/de.json b/webapp/locales/de.json index a3135c011..21a717c6b 100644 --- a/webapp/locales/de.json +++ b/webapp/locales/de.json @@ -800,7 +800,7 @@ "amount-of-total": "{amount} von {total} € erreicht" }, "error-pages" : { - "user-not-found": "Dieser Benutzer konnte nicht gefunden werden", + "profile-not-found": "Dieses Profil konnte nicht gefunden werden", "back-to-index": "Zurück zur Startseite" } } diff --git a/webapp/locales/en.json b/webapp/locales/en.json index f8dea3914..54121af20 100644 --- a/webapp/locales/en.json +++ b/webapp/locales/en.json @@ -800,7 +800,7 @@ } }, "error-pages" : { - "user-not-found": "This user could not be found", + "user-not-found": "This profile could not be found", "back-to-index": "Back to index page" } } diff --git a/webapp/pages/profile/_id.vue b/webapp/pages/profile/_id.vue index 6b57e3b2d..b9bbef83e 100644 --- a/webapp/pages/profile/_id.vue +++ b/webapp/pages/profile/_id.vue @@ -23,7 +23,7 @@ const options = { } } `, - message: 'error-pages.user-not-found', + message: 'error-pages.profile-not-found', path: 'profile', } const persistentLinks = PersistentLinks(options)