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
|
import type { TranslationsDictionary } from '$types/TranslationsDictionary';
const tPage = {
title: {
sco: () => 'Hame',
'en-GB': () => 'Home',
},
intro: {
sco: () => 'Hullo! We ar the Scots Leid Associe.',
'en-GB': () => 'Hello! We are the Scots Language Society.',
},
submit: {
sco: () => 'Submit stuff',
'en-GB': () => 'Submit stuff',
},
buy: {
sco: () => 'Buy stuff',
'en-GB': () => 'Buy stuff',
},
join: {
sco: () => 'Jyne us',
'en-GB': () => 'Join us',
},
news: {
sco: () => 'Read our news',
'en-GB': () => 'Read our news',
},
about: {
sco: () => 'Lairn mair about us',
'en-GB': () => 'Learn more about us',
},
committee: {
sco: () => 'Meet our comatee',
'en-GB': () => 'Meet our committee',
},
contact: {
sco: () => 'Contact us',
'en-GB': () => 'Contact us',
},
};
type Raw = typeof tPage;
export default tPage as TranslationsDictionary<Raw>;
|