From 7e17cd3171e46d0e422db1ef63923f2ddf4aa767 Mon Sep 17 00:00:00 2001
From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com>
Date: Wed, 20 Sep 2023 20:58:44 +0100
Subject: Adds submission info to home page
---
src/i18n/translations/pages/home.ts | 20 ++++++++++++++++++++
src/pages/[locale]/index.astro | 5 +++++
2 files changed, 25 insertions(+)
(limited to 'src')
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
+ lallans@hotmail.co.uk.
+ `,
+ 'en-GB': () => `
+ We accept poetry, short stories, reviews, essays and drama, both
+ original and translated. Send your submissions to
+ lallans@hotmail.co.uk.
+ `,
+ },
news: {
sco: () => 'Recent News',
'en-GB': () => 'Recent News',
diff --git a/src/pages/[locale]/index.astro b/src/pages/[locale]/index.astro
index f031e8e..a230aee 100644
--- a/src/pages/[locale]/index.astro
+++ b/src/pages/[locale]/index.astro
@@ -22,6 +22,11 @@ const mostRecentNewsItem = await getMostRecentNewsItem(locale);
---
+
+
+
+
+
--
cgit v1.2.3
From c24f646daf9a503531baea046a962f2fd0478a8e Mon Sep 17 00:00:00 2001
From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com>
Date: Wed, 20 Sep 2023 21:04:39 +0100
Subject: Adds a description to Scotsoun
---
src/i18n/translations/pages/scotsounGallery.ts | 10 ++++++++++
src/pages/[locale]/furthsettins/scotsoun/index.astro | 1 +
2 files changed, 11 insertions(+)
(limited to 'src')
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);
Scotsoun
+
{t(tPage, { key: 'about-scotsoun' })}
--
cgit v1.2.3
From ea86a790ee23433509b292c46fd517407153c59c Mon Sep 17 00:00:00 2001
From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com>
Date: Wed, 20 Sep 2023 21:10:17 +0100
Subject: Adds description to Lallans gallery page
---
src/i18n/translations/pages/lallansGallery.ts | 25 ++++++++++++++++++++++
.../[locale]/furthsettins/lallans/index.astro | 7 +++---
2 files changed, 29 insertions(+), 3 deletions(-)
create mode 100644 src/i18n/translations/pages/lallansGallery.ts
(limited to 'src')
diff --git a/src/i18n/translations/pages/lallansGallery.ts b/src/i18n/translations/pages/lallansGallery.ts
new file mode 100644
index 0000000..9a8261b
--- /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 isyne 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;
diff --git a/src/pages/[locale]/furthsettins/lallans/index.astro b/src/pages/[locale]/furthsettins/lallans/index.astro
index 1bcfe47..61f31ec 100644
--- a/src/pages/[locale]/furthsettins/lallans/index.astro
+++ b/src/pages/[locale]/furthsettins/lallans/index.astro
@@ -2,7 +2,7 @@
import Page from '$layouts/Page.astro';
import localeStaticPaths from '$lib/localeStaticPaths';
import translate from '$i18n/translate';
-import tFurthsettins from '$i18n/translations/pages/furthsettins';
+import tPage from '$i18n/translations/pages/lallansGallery';
import type Locale from '$types/Locale';
import LallansIssuesGallery from '$components/LallansIssuesGallery.astro';
@@ -14,9 +14,10 @@ const locale = Astro.params.locale as Locale;
const t = translate(locale);
---
-
+
-
Lallans
+
{t(tPage, { key: 'title' })}
+
{t(tPage, { key: 'about-lallans' })}
--
cgit v1.2.3
From c3b6fd367eeb7011077134b9828e0052b0d4158a Mon Sep 17 00:00:00 2001
From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com>
Date: Thu, 21 Sep 2023 22:07:35 +0100
Subject: Fixes typo
---
src/i18n/translations/pages/lallansGallery.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'src')
diff --git a/src/i18n/translations/pages/lallansGallery.ts b/src/i18n/translations/pages/lallansGallery.ts
index 9a8261b..a6be372 100644
--- a/src/i18n/translations/pages/lallansGallery.ts
+++ b/src/i18n/translations/pages/lallansGallery.ts
@@ -8,7 +8,7 @@ const tPage = {
'about-lallans': {
sco: () => `
Lallans is the foremaist leiterar journal dedicatit til new Scots-leid leiteratur.
- We hae furthset it isyne 1972 an pit two issues furth per year. We accep Scots
+ 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.
`,
--
cgit v1.2.3