From 3b842e960e6827f3b9572d63d96b972062c4b6a9 Mon Sep 17 00:00:00 2001 From: Benny Samir Hierl Date: Mon, 7 Feb 2022 20:39:52 +0100 Subject: [PATCH] not found pages improved --- src/components/icons/IconCloudQuestion.vue | 8 ++++++++ src/components/icons/index.ts | 1 + src/config/locales/de-DE.json | 2 +- src/config/locales/en-US.json | 2 +- src/views/NotFound.vue | 8 +++++++- 5 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 src/components/icons/IconCloudQuestion.vue diff --git a/src/components/icons/IconCloudQuestion.vue b/src/components/icons/IconCloudQuestion.vue new file mode 100644 index 0000000..c6ce08c --- /dev/null +++ b/src/components/icons/IconCloudQuestion.vue @@ -0,0 +1,8 @@ + diff --git a/src/components/icons/index.ts b/src/components/icons/index.ts index f01f74f..07964c1 100644 --- a/src/components/icons/index.ts +++ b/src/components/icons/index.ts @@ -6,3 +6,4 @@ export { default as IconSpinner } from './IconSpinner.vue' export { default as IconNoGift } from './IconNoGift.vue' export { default as IconLightDark } from './IconLightDark.vue' export { default as IconMenu } from './IconMenu.vue' +export { default as IconCloudQuestion } from './IconCloudQuestion.vue' diff --git a/src/config/locales/de-DE.json b/src/config/locales/de-DE.json index 3f74f40..c827653 100644 --- a/src/config/locales/de-DE.json +++ b/src/config/locales/de-DE.json @@ -9,7 +9,7 @@ }, "errors": { "not-found": { - "text": "Ups, es sieht so aus, als ob die Seite, die du suchst, nicht existiert." + "text": "Ups, die aufgerufene Seite existiert nicht." }, "generic": { "text": "Es ist ein Fehler aufgetreten..." diff --git a/src/config/locales/en-US.json b/src/config/locales/en-US.json index 38a3a0d..5a332f8 100644 --- a/src/config/locales/en-US.json +++ b/src/config/locales/en-US.json @@ -9,7 +9,7 @@ }, "errors": { "not-found": { - "text": "Oops, it looks like the page you're looking for doesn't exist." + "text": "Oops, the requested page does not exist." }, "generic": { "text": "An error has occurred..." diff --git a/src/views/NotFound.vue b/src/views/NotFound.vue index 9886ca4..8f9e150 100644 --- a/src/views/NotFound.vue +++ b/src/views/NotFound.vue @@ -1,7 +1,13 @@