diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-23 07:48:52 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-23 07:48:52 +0100 |
| commit | 4c585f562ccd2a7474367d21ba772140dfb3b03d (patch) | |
| tree | b8f24b7247cd005e6c1618460bb43473f4c9ccc8 /src/i18n | |
| parent | 42d557e9c6c13f84769a52644ddbcc576a1bb817 (diff) | |
Adds about us section
Diffstat (limited to 'src/i18n')
| -rw-r--r-- | src/i18n/translations/enums/committeeRole.ts | 28 | ||||
| -rw-r--r-- | src/i18n/translations/pages/home.ts | 46 |
2 files changed, 74 insertions, 0 deletions
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<Raw>; diff --git a/src/i18n/translations/pages/home.ts b/src/i18n/translations/pages/home.ts index 302d643..48fbdee 100644 --- a/src/i18n/translations/pages/home.ts +++ b/src/i18n/translations/pages/home.ts @@ -13,6 +13,52 @@ const tPage = { sco: () => 'Aw news', 'en-GB': () => 'All news', }, + 'about-us': { + sco: () => 'Aboot us', + 'en-GB': () => 'About us', + }, + 'about-us-para-1': { + sco: () => ` + The Scots Leid Associe wis fundit i 1972 wi an anely brief: tae promuive + the Scots leid and leitratur bi furthsettin the anely magazine dedicatit + til new Scots scrievin. + `, + 'en-GB': () => ` + The Scots Language Society was founded in 1972 with a single mission: to + promote the Scots language and literature by publishing the only magazine + dedicated to new Scots writing. + `, + }, + 'about-us-para-2': { + sco: () => ` + Ower five decades later, that is oor meission else. Asides Lallans, we + rin an annual Scots-leid scrievin competition, the Sangschaw, an we + forby hae furthset an anely ingaitherin o Scots-leid recordins in our + Scotsoun series o CDs. + `, + 'en-GB': () => ` + Over five decades later, that remains our mission. Besides Lallans, we run + an annual Scots-language writing competition, the Sangschaw, and we have + also published a unique collection of Scots-language recordings in our + Scotsoun series of CDs. + `, + }, + 'about-us-para-3': { + sco: () => ` + Mairfortaken, we hae annual Collogues, whaur we ingaither oor memmers + an hear talks on Scots-leid cultur an hear Sangschaw winners readin + their nain wark. + `, + 'en-GB': () => ` + Furthermore, we have annual Conferences, where we gather together our + members and hear talks on Scots-language culture and hear Sangschaw winners + reading their own work. + `, + }, + 'meet-the-commattee': { + sco: () => 'Meet the Commattee', + 'en-GB': () => 'Meet the Committee', + }, furthsettins: { sco: () => 'Furthsettins', 'en-GB': () => 'Publications', |
