blob: d28d297dbc891ccbc3ab6e59a2799fcada0a97ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import type { TranslationsDictionary } from '$types/TranslationsDictionary';
const tPage = {
title: {
sco: () => 'Page no fund',
'en-GB': () => 'Page not found',
},
message: {
sco: () => `
Yon page disna exeist. Try gaein til oor
<a href="/sco" class="link">hame page</a>?
`,
'en-GB': () => `
That page doesn’t exist. Try going to our
<a href="/en-GB" class="link">home page</a>?
`,
},
};
type Raw = typeof tPage;
export default tPage as TranslationsDictionary<Raw>;
|