-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathi18n-types.d.ts
More file actions
97 lines (95 loc) · 2.44 KB
/
i18n-types.d.ts
File metadata and controls
97 lines (95 loc) · 2.44 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// AUTO-GENERATED — DO NOT EDIT
import 'i18next'
declare module 'i18next' {
interface CustomTypeOptions {
defaultNS: 'translation'
resources: {
translation: {
common: {
error_title: string
error_hint: string
retry: string
offline_banner: string
loading: string
}
auth: {
a11y_toggle_theme: string
welcome: string
subtitle: string
mock_demo_hint: string
or: string
email: string
email_placeholder: string
password: string
forgot_password: string
password_placeholder: string
signing_in: string
sign_in: string
no_account: string
sign_up: string
terms_prefix: string
terms_of_service: string
and: string
privacy_policy: string
}
home: {
stat_done: string
stat_active: string
stat_streak: string
featured_title: string
featured_subtitle: string
quick_actions: string
overview: string
recent_activity: string
title: string
greeting_morning: string
greeting_afternoon: string
greeting_evening: string
quick_action_task: string
quick_action_message: string
quick_action_schedule: string
quick_action_report: string
quick_action_upload: string
}
settings: {
language: {
label: string
english: string
russian: string
german: string
}
title: string
appearance: string
theme: string
about: string
version: string
logout: string
theme_light: string
theme_dark: string
theme_system: string
}
onboarding: {
headline: string
tagline: string
feature_1_title: string
feature_1_body: string
feature_2_title: string
feature_2_body: string
feature_3_title: string
feature_3_body: string
get_started: string
}
uikit: {
title: string
section_buttons: string
section_typography: string
section_icons: string
section_surfaces: string
}
app: {
title: string
}
}
}
}
}