From 587dc0c30cd2b42e384864788205f2c150a17f2b Mon Sep 17 00:00:00 2001
From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com>
Date: Sat, 26 Aug 2023 17:07:28 +0100
Subject: Adds 404 page
---
src/i18n/translations/pages/404.ts | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
create mode 100644 src/i18n/translations/pages/404.ts
(limited to 'src/i18n')
diff --git a/src/i18n/translations/pages/404.ts b/src/i18n/translations/pages/404.ts
new file mode 100644
index 0000000..d28d297
--- /dev/null
+++ b/src/i18n/translations/pages/404.ts
@@ -0,0 +1,21 @@
+import type { TranslationsDictionary } from '$types/TranslationsDictionary';
+
+const tPage = {
+ title: {
+ sco: () => 'Page no fund',
+ 'en-GB': () => 'Page not found',
+ },
+ message: {
+ sco: () => `
+ Yon page disna exeist. Try gaein til oor
+ hame page?
+ `,
+ 'en-GB': () => `
+ That page doesn’t exist. Try going to our
+ home page?
+ `,
+ },
+};
+
+type Raw = typeof tPage;
+export default tPage as TranslationsDictionary;
--
cgit v1.2.3