summaryrefslogtreecommitdiff
path: root/src/i18n
diff options
context:
space:
mode:
Diffstat (limited to 'src/i18n')
-rw-r--r--src/i18n/translations/pages/404.ts21
1 files changed, 21 insertions, 0 deletions
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
+ <a href="/sco" class="link">hame page</a>?
+ `,
+ 'en-GB': () => `
+ That page doesn’t exist. Try going to our
+ <a href="/en-GB" class="link">home page</a>?
+ `,
+ },
+};
+
+type Raw = typeof tPage;
+export default tPage as TranslationsDictionary<Raw>;