diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-09-21 22:09:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-21 22:09:59 +0100 |
| commit | 005cba86fefc395b157d71b4c6233dba320afb05 (patch) | |
| tree | a4876fa46418830cdc5dcdcbfc3f36bc2fde5512 /src/i18n | |
| parent | aaac97183965e6edd4cbab9a9ea3be1fb90bfef2 (diff) | |
| parent | c357a2af03a8abf960941156414b990d50c48b76 (diff) | |
Merge pull request #6 from Sycamost/dev
Dev
Diffstat (limited to 'src/i18n')
| -rw-r--r-- | src/i18n/translations/pages/home.ts | 20 | ||||
| -rw-r--r-- | src/i18n/translations/pages/lallansGallery.ts | 25 | ||||
| -rw-r--r-- | src/i18n/translations/pages/scotsounGallery.ts | 10 |
3 files changed, 55 insertions, 0 deletions
diff --git a/src/i18n/translations/pages/home.ts b/src/i18n/translations/pages/home.ts index 2b9a2c3..09071ff 100644 --- a/src/i18n/translations/pages/home.ts +++ b/src/i18n/translations/pages/home.ts @@ -5,6 +5,26 @@ const tPage = { sco: () => 'Hame', 'en-GB': () => 'Home', }, + submit: { + sco: () => 'Submit til Lallans', + 'en-GB': () => 'Submit to Lallans', + }, + 'submit-para-1': { + sco: () => 'We ar acceptin submeissions til Lallans 102!', + 'en-GB': () => 'We are accepting submissions to Lallans 102!', + }, + 'submit-para-2': { + sco: () => ` + We accep poesie, cuttie tales, reviews, essays an drama, baith + oreiginal an owerset. Sen yer submeissions til + <a class="link" href="mailto:lallans@hotmail.co.uk">lallans@hotmail.co.uk</a>. + `, + 'en-GB': () => ` + We accept poetry, short stories, reviews, essays and drama, both + original and translated. Send your submissions to + <a class="link" href="mailto:lallans@hotmail.co.uk">lallans@hotmail.co.uk</a>. + `, + }, news: { sco: () => 'Recent News', 'en-GB': () => 'Recent News', diff --git a/src/i18n/translations/pages/lallansGallery.ts b/src/i18n/translations/pages/lallansGallery.ts new file mode 100644 index 0000000..a6be372 --- /dev/null +++ b/src/i18n/translations/pages/lallansGallery.ts @@ -0,0 +1,25 @@ +import type { TranslationsDictionary } from '$types/TranslationsDictionary'; + +const tPage = { + title: { + sco: () => 'Lallans', + 'en-GB': () => 'Lallans', + }, + 'about-lallans': { + sco: () => ` + Lallans is the foremaist leiterar journal dedicatit til new Scots-leid leiteratur. + We hae furthset it syne 1972 an pit two issues furth per year. We accep Scots + frae aw airts an in aw styles an dialects. Ye can finnd oot hoo tae submit til + Lallans on the hame page. + `, + 'en-GB': () => ` + Lallans is the leading literary journal dedicated to new Scots-language + literature. We have published it since 1972 and publish biannually. We accept + Scots of all kinds and in all styles and dialects. You can find out how to + submit to Lallans on the home page. + `, + }, +}; + +type Raw = typeof tPage; +export default tPage as TranslationsDictionary<Raw>; diff --git a/src/i18n/translations/pages/scotsounGallery.ts b/src/i18n/translations/pages/scotsounGallery.ts index 0e78e9c..6ac9cfd 100644 --- a/src/i18n/translations/pages/scotsounGallery.ts +++ b/src/i18n/translations/pages/scotsounGallery.ts @@ -5,6 +5,16 @@ const tPage = { sco: () => 'Scotsoun', 'en-GB': () => 'Scotsoun', }, + 'about-scotsoun': { + sco: () => ` + Scotsoun is oor lang-rinnin series o Scots-leid audio recordins, i the form o tales, + drama, sangs, an poesie readins. Forby, we hae some muisic CDs. + `, + 'en-GB': () => ` + Scotsoun is our long-running series of Scots-language audio recordings, in the form + of stories, drama, songs and poetry readings. We also have some music CDs. + `, + }, }; type Raw = typeof tPage; |
