summaryrefslogtreecommitdiff
path: root/src/i18n/translations/pages/submit.ts
blob: 2fac2a772677cd02fb6984e1dbe92ee4ac0be887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import type { TranslationsDictionary } from '$types/TranslationsDictionary';

const tPage = {
  title: {
    sco: () => 'Submit',
    'en-GB': () => 'Submit',
  },
  'submit-para-1': {
    sco: () => `
      We ar acceptin submeissions til Lallans 108.
    `,
    'en-GB': () => `
      We are accepting submissions to Lallans 108.
    `,
  },
  'submit-para-2': {
    sco: () => `
      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': () => `
      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>.
    `,
  },
  '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<Raw>;