From 35c242f6abb614e1d545fb8a2a1180a451c22a54 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Sun, 27 Aug 2023 18:26:45 +0100 Subject: Scotsoun release title includes ID --- src/i18n/translations/pages/scotsounRelease.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/i18n/translations/pages/scotsounRelease.ts (limited to 'src/i18n') 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; -- cgit v1.2.3 From 87a53b7ce80dd115f6e90008642dccad3d92003d Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Mon, 28 Aug 2023 19:05:18 +0100 Subject: Adds translation for Ordinary Member --- src/i18n/translations/enums/committeeRole.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/i18n') 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; -- cgit v1.2.3 From eae2ca9c7aebf7d171be36555ffc9a63a84839c9 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Wed, 30 Aug 2023 18:06:16 +0100 Subject: Adds placeholder to Commattee section --- src/i18n/translations/pages/home.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/i18n') 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', -- cgit v1.2.3