Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Add RU language #187

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
4 changes: 2 additions & 2 deletions packages/app/src/components/header/TheHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
:value="(locale as string)"
@update:value="changeLanguage"
:options="
['en', 'uk'].map((value) => ({
['en', 'uk', 'ru'].map((value) => ({
value,
label: t(`locale.${value}`),
}))
Expand Down Expand Up @@ -109,7 +109,7 @@
:value="(locale as string)"
@update:value="changeLanguage"
:options="
['en', 'uk'].map((value) => ({
['en', 'uk', 'ru'].map((value) => ({
value,
label: t(`locale.${value}`),
}))
Expand Down
9 changes: 5 additions & 4 deletions packages/app/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@
},
"locale": {
"en": "EN",
"uk": "UA"
"uk": "UA",
"ru": "RU"
},
"footer": {
"nav": {
Expand Down Expand Up @@ -669,13 +670,13 @@
},
"notFound": {
"title": "Oops, we can’t find anything",
"description": "Sorry we can’t find anything on your search result, please try one more time via seach bar below",
"description": "Sorry we can’t find anything on your search result, please try one more time via search bar below",
"contactSupportTitle": "If you think this is a problem with us, please",
"contactSupport": "contact support"
},
"maintenance": {
"title": "zkSync {network} is on maintainance",
"description": "zkSync {network} is unavailable due to maintainance, you can find updates in our {twitter} or on {uptime}",
"title": "zkSync {network} is on maintenance",
"description": "zkSync {network} is unavailable due to maintenance, you can find updates in our {twitter} or on {uptime}",
"twitterLink": "zkSync Developers",
"uptimeLink": "UpTime",
"twitterButton": "zkSync Developers"
Expand Down
Loading