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
|
import type { TranslationsDictionary } from '$types/TranslationsDictionary';
const tPage = {
title: {
sco: () => 'Sign up',
'en-GB': () => 'Sign up',
},
'label-email': {
sco: () => 'Email',
'en-GB': () => 'Email',
},
'label-display-name': {
sco: () => 'Name',
'en-GB': () => 'Name',
},
submit: {
sco: () => 'Sign up',
'en-GB': () => 'Sign up',
},
'status-working': {
sco: () => 'Signin you up…',
'en-GB': () => 'Signing you up…',
},
'unexpected-error': {
sco: () => 'There wis an unexpectit mishanter.',
'en-GB': () => 'There was an expected error.',
},
'error-getting-registration-options': {
sco: () => 'There wis a mishanter gettin registration options frae the server.',
'en-GB': () => 'There was an error getting registration options from the server.',
},
'error-starting-registration': {
sco: () => 'There wis a mishanter whan your browser tried tae stert registration.',
'en-GB': () => 'There was an error when your browser tried to start registration.',
},
'error-verifying-registration-response': {
sco: () =>
'There wis a mishanter whan the server tried tae check that the registration response wis suithfest.',
'en-GB': () => 'There was an error when the server tried to verify the registration response.',
},
};
type Raw = typeof tPage;
export default tPage as TranslationsDictionary<Raw>;
|