summaryrefslogtreecommitdiff
path: root/src/i18n
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-14 21:13:21 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-14 21:14:19 +0100
commita25b3c13b1ac5c40e48cdf42baf4081dd33dcf9f (patch)
treed5a5b5492837ad9d4bbf2f60e0523fef05c1898e /src/i18n
parent50ee98e20e0721375cf58b0e2de1c471a246abb0 (diff)
Adds news index page
Diffstat (limited to 'src/i18n')
-rw-r--r--src/i18n/translations/pages/news.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/i18n/translations/pages/news.ts b/src/i18n/translations/pages/news.ts
new file mode 100644
index 0000000..0cc411a
--- /dev/null
+++ b/src/i18n/translations/pages/news.ts
@@ -0,0 +1,19 @@
+import type { TranslationsDictionary } from '$types/TranslationsDictionary';
+
+const tPage = {
+ title: {
+ sco: () => 'News',
+ 'en-GB': () => 'News',
+ },
+ 'read-article': {
+ sco: () => 'Read fu airticle',
+ 'en-GB': () => 'Read full article',
+ },
+ 'no-news': {
+ sco: () => 'The ar nae news at the present time. Caw again later!',
+ 'en-GB': () => 'There is no news at the current time. Check in again later!',
+ },
+};
+
+type Raw = typeof tPage;
+export default tPage as TranslationsDictionary<Raw>;