summaryrefslogtreecommitdiff
path: root/src/i18n
diff options
context:
space:
mode:
Diffstat (limited to 'src/i18n')
-rw-r--r--src/i18n/translations/enums/committeeRole.ts4
-rw-r--r--src/i18n/translations/pages/home.ts4
-rw-r--r--src/i18n/translations/pages/scotsounRelease.ts14
3 files changed, 22 insertions, 0 deletions
diff --git a/src/i18n/translations/enums/committeeRole.ts b/src/i18n/translations/enums/committeeRole.ts
index 0d13b18..e2cc156 100644
--- a/src/i18n/translations/enums/committeeRole.ts
+++ b/src/i18n/translations/enums/committeeRole.ts
@@ -29,6 +29,10 @@ const tEnum = {
sco: () => 'Honorary Preses',
'en-GB': () => 'Honorary President',
},
+ OrdinaryMember: {
+ sco: () => 'Ordinary Memmer',
+ 'en-GB': () => 'Ordinary Member',
+ },
};
type Raw = typeof tEnum;
diff --git a/src/i18n/translations/pages/home.ts b/src/i18n/translations/pages/home.ts
index 33b5c5c..2b9a2c3 100644
--- a/src/i18n/translations/pages/home.ts
+++ b/src/i18n/translations/pages/home.ts
@@ -59,6 +59,10 @@ const tPage = {
sco: () => 'Meet the Commattee',
'en-GB': () => 'Meet the Committee',
},
+ 'mair-commattee-details-soon': {
+ sco: () => 'Mair details comin shuin!',
+ 'en-GB': () => 'More details coming soon!',
+ },
furthsettins: {
sco: () => 'Furthsettins',
'en-GB': () => 'Publications',
diff --git a/src/i18n/translations/pages/scotsounRelease.ts b/src/i18n/translations/pages/scotsounRelease.ts
new file mode 100644
index 0000000..d4036d8
--- /dev/null
+++ b/src/i18n/translations/pages/scotsounRelease.ts
@@ -0,0 +1,14 @@
+import type ScotsounId from '$types/ScotsounId';
+import type { TranslationsDictionary } from '$types/TranslationsDictionary';
+
+const tPage = {
+ title: {
+ sco: ({ scotsounId, name }: { scotsounId: ScotsounId; name: string }) =>
+ `${name} (Scotsoun SSCD${scotsounId})`,
+ 'en-GB': ({ scotsounId, name }: { scotsounId: ScotsounId; name: string }) =>
+ `${name} (Scotsoun SSCD${scotsounId})`,
+ },
+};
+
+type Raw = typeof tPage;
+export default tPage as TranslationsDictionary<Raw>;