You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/i18n/locales/en.ts
+27-3
Original file line number
Diff line number
Diff line change
@@ -2,20 +2,44 @@ const localesEN = {
2
2
common: {
3
3
example: `When I find myself in times of trouble, Mother Mary comes to me. Speaking words of wisdom, "Let It Be". And in my hour of darkness she is standing right in front of me, speaking words of wisdom, "Let It Be".`,
4
4
feature_coming_soon: 'This feature is in development',
5
-
oops: 'Oops!!!'
5
+
oops: 'Oops!!!',
6
+
this_field_is_required: 'Please fill out this field!'
6
7
},
7
8
login: {
8
9
big_title: 'Login',
9
10
form: {
10
11
email: 'Email',
11
12
password: 'Password',
12
-
submit_btn: 'Login'
13
+
submit_btn: 'Login',
14
+
validation: {
15
+
email: {
16
+
required: 'Please enter your email'
17
+
},
18
+
password: {
19
+
required: 'Please enter your password'
20
+
}
21
+
}
13
22
},
14
23
forgot_password: 'Forgot password?',
15
24
register_reminder: "Don't have an account?",
16
25
to_register: 'Register now'
17
26
},
18
-
register: {}
27
+
register: {
28
+
big_title: 'Register',
29
+
form: {
30
+
name: 'Full Name',
31
+
email: 'Email',
32
+
password: 'Password',
33
+
confirm_password: 'Confirm Password',
34
+
submit_btn: 'Register'
35
+
},
36
+
alert: {
37
+
register_success: 'Registration successful',
38
+
click_ok_to_direct_to_login_page: 'Click OK to go to the login page'
0 commit comments