diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-09-20 21:04:39 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-09-20 21:04:39 +0100 |
| commit | c24f646daf9a503531baea046a962f2fd0478a8e (patch) | |
| tree | 5f954808230ff47a555e856ecf7d026c757161a2 | |
| parent | 7e17cd3171e46d0e422db1ef63923f2ddf4aa767 (diff) | |
Adds a description to Scotsoun
| -rw-r--r-- | src/i18n/translations/pages/scotsounGallery.ts | 10 | ||||
| -rw-r--r-- | src/pages/[locale]/furthsettins/scotsoun/index.astro | 1 |
2 files changed, 11 insertions, 0 deletions
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; diff --git a/src/pages/[locale]/furthsettins/scotsoun/index.astro b/src/pages/[locale]/furthsettins/scotsoun/index.astro index bace876..26f1f13 100644 --- a/src/pages/[locale]/furthsettins/scotsoun/index.astro +++ b/src/pages/[locale]/furthsettins/scotsoun/index.astro @@ -17,6 +17,7 @@ const t = translate(locale); <Page title={t(tPage, { key: 'title' })}> <section> <h1>Scotsoun</h1> + <p>{t(tPage, { key: 'about-scotsoun' })}</p> <ScotsounCdGallery /> </section> </Page> |
