import type { TranslationsDictionary } from '$types/TranslationsDictionary';
const tPage = {
title: {
sco: () => 'Submit',
'en-GB': () => 'Submit',
},
'submit-para-1': {
sco: () => `
We ar acceptin submeissions til Lallans 109 until the 15th o September 2026.
`,
'en-GB': () => `
We are accepting submissions to Lallans 109 until the 15th of September 2026.
`,
},
'submit-para-2': {
sco: () => `
Read the copyricht statement ablo. Gin you're happy wi thon, send us your
cuttie tales, poesie and drama til
lallans@hotmail.co.uk.
`,
'en-GB': () => `
Read the copyright statement below. If you're happy with it, send us your
short stories, poetry and drama to
lallans@hotmail.co.uk.
`,
},
'submit-para-3': {
sco: () => `
We luik forrit tae haein your submeission, whither you’ve been submittin
for years or you’re a first-time writer!
`,
'en-GB': () => `
We look forward to having your submission, whether you’ve been
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;
export default tPage as TranslationsDictionary;