blob: a0c18fb7c62f9770a638d170b20891a2d7346bd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import type { TranslationsDictionary } from '$types/TranslationsDictionary';
const tPage = {
message: {
sco: () => `
Your browser sent a registration response til our server, but we coudna be
shair that it wis suithfest.
`,
'en-GB': () => `
Your browser sent a registration response to our server, but we coudn’t
verify that it was valid.
`,
},
};
type Raw = typeof tPage;
export default tPage as TranslationsDictionary<Raw>;
|