From 4c585f562ccd2a7474367d21ba772140dfb3b03d Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Wed, 23 Aug 2023 07:48:52 +0100 Subject: Adds about us section --- src/i18n/translations/enums/committeeRole.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/i18n/translations/enums/committeeRole.ts (limited to 'src/i18n/translations/enums/committeeRole.ts') diff --git a/src/i18n/translations/enums/committeeRole.ts b/src/i18n/translations/enums/committeeRole.ts new file mode 100644 index 0000000..06b9980 --- /dev/null +++ b/src/i18n/translations/enums/committeeRole.ts @@ -0,0 +1,28 @@ +import type { TranslationsDictionary } from '$types/TranslationsDictionary'; +import CommitteeRole from 'enums/CommitteeRole'; + +const tEnum = { + [CommitteeRole.Preses]: { + sco: () => 'Preses', + 'en-GB': () => 'President', + }, + [CommitteeRole.Secretar]: { + sco: () => 'Secretar', + 'en-GB': () => 'Secretar', + }, + [CommitteeRole.Thesaurer]: { + sco: () => 'Thesaurer', + 'en-GB': () => 'Treasurer', + }, + [CommitteeRole.Wabmaister]: { + sco: () => 'Wabmaister', + 'en-GB': () => 'Webmaster', + }, + [CommitteeRole.LallansEiditor]: { + sco: () => 'Lallans Eiditor', + 'en-GB': () => 'Lallans Editor', + }, +}; + +type Raw = typeof tEnum; +export default tEnum as TranslationsDictionary; -- cgit v1.2.3