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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
import type { TranslationsDictionary } from '$types/TranslationsDictionary';
const tPage = {
title: {
sco: () => 'Hame',
'en-GB': () => 'Home',
},
news: {
sco: () => 'News',
'en-GB': () => 'News',
},
'aw-news': {
sco: () => 'Aa news',
'en-GB': () => 'All news',
},
sangschaw: {
sco: () => 'Sangschaw open for entries',
'en-GB': () => 'Sangschaw open for entries',
},
'sangschaw-para-1': {
sco: () => `
Our annual scrievin competition, the Sangschaw, is open for entries until
the 31st o Januar. See our
<a href="/sco/news/2025-12-02-sangschaw-2026">Sangschaw announcement</a>
for details.
`,
'en-GB': () => `
Our annual writing competition, the Sangschaw, is open for entries until
the 31st of January. See our
<a href="/en-GB/news/2025-12-02-sangschaw-2026">Sangschaw announcement</a>
for details.
`,
},
'about-us': {
sco: () => 'Aboot us',
'en-GB': () => 'About us',
},
'about-us-para-1': {
sco: () => `
The Scots Leid Associe wis fundit i 1972 wi an anely brief: tae promuive
the Scots leid and leitratur bi furthsettin the anely magazine dedicatit
til new Scots scrievin.
`,
'en-GB': () => `
The Scots Language Society was founded in 1972 with a single mission: to
promote the Scots language and literature by publishing the only magazine
dedicated to new Scots writing.
`,
},
'about-us-para-2': {
sco: () => `
Ower five decades later, that is oor meission else. Asides Lallans, we
rin an annual Scots-leid scrievin competition, the Sangschaw, an we
forby hae furthset an anely ingaitherin o Scots-leid recordins in our
Scotsoun series o CDs.
`,
'en-GB': () => `
Over five decades later, that remains our mission. Besides Lallans, we run
an annual Scots-language writing competition, the Sangschaw, and we have
also published a unique collection of Scots-language recordings in our
Scotsoun series of CDs.
`,
},
'about-us-para-3': {
sco: () => `
Mairfortaken, we hae annual Collogues, whaur we ingaither oor memmers
an hear talks on Scots-leid cultur an hear Sangschaw winners readin
their nain wark.
`,
'en-GB': () => `
Furthermore, we have annual Conferences, where we gather together our
members and hear talks on Scots-language culture and hear Sangschaw winners
reading their own work.
`,
},
'meet-the-commattee': {
sco: () => 'Meet the Commattee',
'en-GB': () => 'Meet the Committee',
},
furthsettins: {
sco: () => 'Furth\u00adsettins',
'en-GB': () => 'Public\u00adations',
},
'furthsettins-para': {
sco: () => `
We ar ane o the foremaist furthsetters o new Scots leitratur.
Oor maist important furthsettins ar
Lallans an Scotsoun.
`,
'en-GB': () => `
We are one of the leading publishers of new Scots literature.
Our most important publications are
Lallans and
Scotsoun.
`,
},
};
type Raw = typeof tPage;
export default tPage as TranslationsDictionary<Raw>;
|