blob: 15a9dcf5aadf421a0586bf5f71e3a296e3a03386 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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',
},
};
type Raw = typeof tPage;
export default tPage as TranslationsDictionary<Raw>;
|