Skip to content

Commit 10d7f0e

Browse files
committed
[Initialization] - added en, uk localizations
0 parents  commit 10d7f0e

File tree

3 files changed

+65
-0
lines changed

3 files changed

+65
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.g.dart

localization_en.i18n.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"@@locale": "en",
3+
"common": {
4+
},
5+
"errors": {
6+
"validation": {
7+
"email": "Please enter a valid email."
8+
}
9+
},
10+
"screens": {
11+
"auth": {
12+
"title": "Authentication",
13+
"description": "Please enter your credentials to login.",
14+
"buttonLabel": "Next",
15+
"emailPlaceholder": "Email",
16+
"statementIAgree": "I agree to ",
17+
"statementPrivacyPolicy": "Privacy Policy",
18+
"statementTermsAndConditions": "Terms & Conditions",
19+
"statementAnd": " and "
20+
},
21+
"verification": {
22+
"title": "Check your Email",
23+
"description": "Paste dynamically generated code",
24+
"buttonLabel": "Next",
25+
"noCodeQuestion": "Didn't get anything?",
26+
"noCodeButtonLabel": "Resend code"
27+
},
28+
"onboardingProfile": {
29+
"title": "Profile"
30+
}
31+
}
32+
}

localization_uk.i18n.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"@@locale": "uk",
3+
"common": {
4+
},
5+
"errors": {
6+
"validation": {
7+
"email": "Введіть коректний email"
8+
}
9+
},
10+
"screens": {
11+
"auth": {
12+
"title": "Авторизація",
13+
"description": "Введіть email для авторизації",
14+
"buttonLabel": "Далі",
15+
"emailPlaceholder": "Введіть email",
16+
"statementIAgree": "Я погоджуюсь з ",
17+
"statementPrivacyPolicy": "Політикою конфіденційності",
18+
"statementTermsAndConditions": "Умовами використання",
19+
"statementAnd": " та "
20+
},
21+
"verification": {
22+
"title": "Перевірте електронну пошту",
23+
"description": "Ми надіслали вам код підтвердження на електронну пошту",
24+
"buttonLabel": "Далі",
25+
"noCodeQuestion": "Не отримали код?",
26+
"noCodeButtonLabel": "Відправити ще раз"
27+
},
28+
"onboardingProfile": {
29+
"title": "Профіль"
30+
}
31+
}
32+
}

0 commit comments

Comments
 (0)