summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+joeacarstairs@users.noreply.github.com>2025-05-08 11:56:51 +0100
committerGitHub <noreply@github.com>2025-05-08 11:56:51 +0100
commitf0759adc0c6e23c970e98b4204d208d75f30e023 (patch)
treea87268113c1587d71562d2d416c7784717ea2a2e /src
parent5690af11311840fb6cac5625868533b575712432 (diff)
parentab436fb120cbf5c2bf16788bbf6168a36e88ab16 (diff)
Merge pull request #124 from joeacarstairs/staging
Copyright statement
Diffstat (limited to 'src')
-rw-r--r--src/content/news/en-GB/2025-05-08-copyricht.mdx18
-rw-r--r--src/content/news/sco/2025-05-08-copyricht.mdx18
-rw-r--r--src/i18n/translations/pages/submit.ts19
-rw-r--r--src/pages/[locale]/submit.astro4
4 files changed, 57 insertions, 2 deletions
diff --git a/src/content/news/en-GB/2025-05-08-copyricht.mdx b/src/content/news/en-GB/2025-05-08-copyricht.mdx
new file mode 100644
index 0000000..1242a7d
--- /dev/null
+++ b/src/content/news/en-GB/2025-05-08-copyricht.mdx
@@ -0,0 +1,18 @@
+---
+title: New copyright statement
+summary: We have a new copyright statement for submitters to Lallans.
+---
+
+From today, we are putting into effect a new copyright statement for all submitters to Lallans and
+the Sangschaw to agree to. We believe that this is a fair statement, in line with other magazines,
+and reflects how we've already been doing things: the copyright statement will make our expectations
+explicit, so nobody can accuse us of skullduggery!
+
+The statement reads as follows:
+
+> Pieces submitted to Lallans, should be the original work of the person submitting them. Copyright
+> remains with the author, however, submitting a piece for inclusion gives the Scots Language
+> Society, though Lallans or other title, the right, in perpetuity, to republish the work in hard
+> copy or digital form and to reformat it as necessary.
+
+It is clearly displayed on the [submission page](/en-GB/submit).
diff --git a/src/content/news/sco/2025-05-08-copyricht.mdx b/src/content/news/sco/2025-05-08-copyricht.mdx
new file mode 100644
index 0000000..3990abb
--- /dev/null
+++ b/src/content/news/sco/2025-05-08-copyricht.mdx
@@ -0,0 +1,18 @@
+---
+title: New copyricht statement
+summary: We hae a new copyricht statement for submitters til Lallans.
+---
+
+Frae the day, we are pittin intil effeck a new copyricht statement for aa submitters til Lallans and
+the Sangschaw tae gree til. We trou that this is a fair statement, in line wi ither magazines, and
+reflects hou we've aareadies been daein things: the copyricht statement will mak our expectations
+explicit, sae naebody can accuse us o skullduggery!
+
+The statement reads as follaes:
+
+> Pieces submitted to Lallans, should be the original work of the person submitting them. Copyright
+> remains with the author, however, submitting a piece for inclusion gives the Scots Language
+> Society, though Lallans or other title, the right, in perpetuity, to republish the work in hard
+> copy or digital form and to reformat it as necessary.
+
+It is clearly displayed on the [submission page](/sco/submit).
diff --git a/src/i18n/translations/pages/submit.ts b/src/i18n/translations/pages/submit.ts
index 986ee1f..84834cf 100644
--- a/src/i18n/translations/pages/submit.ts
+++ b/src/i18n/translations/pages/submit.ts
@@ -25,11 +25,13 @@ const tPage = {
},
'submit-para-2': {
sco: () => `
- Send us your cuttie tales, poesie and drama til
+ Read the copyricht statement ablo. Gin you're happy wi thon, send us your
+ cuttie tales, poesie and drama til
<a href="mailto:lallans@hotmail.co.uk">lallans@hotmail.co.uk</a>.
`,
'en-GB': () => `
- Send us your short stories, poetry and drama to
+ Read the copyright statement below. If you're happy with it, send us your
+ short stories, poetry and drama to
<a href="mailto:lallans@hotmail.co.uk">lallans@hotmail.co.uk</a>.
`,
},
@@ -43,6 +45,19 @@ const tPage = {
submitting for years or you’re a first-time writer!
`,
},
+ 'copyright-heading': {
+ sco: () => 'Copyricht statement',
+ 'en-GB': () => 'Copyright statement',
+ },
+ 'copyright-body': {
+ sco: () => `
+ Pieces submitted to Lallans, should be the original work of the person
+ submitting them. Copyright remains with the author, however, submitting a
+ piece for inclusion gives the Scots Language Society, though Lallans or
+ other title, the right, in perpetuity, to republish the work in hard copy
+ or digital form and to reformat it as necessary.
+ `,
+ },
};
type Raw = typeof tPage;
diff --git a/src/pages/[locale]/submit.astro b/src/pages/[locale]/submit.astro
index 5415854..f12de86 100644
--- a/src/pages/[locale]/submit.astro
+++ b/src/pages/[locale]/submit.astro
@@ -20,4 +20,8 @@ const t = translate(locale);
<p set:html={t(tPage, { key: 'submit-para-2' })} />
<p set:html={t(tPage, { key: 'submit-para-3' })} />
</section>
+ <section>
+ <h2 set:html={t(tPage, { key: 'copyright-heading' })} />
+ <p set:html={t(tPage, { key: 'copyright-body' })} />
+ </section>
</Page>