We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are some inconsistencies in Russian localization that was introduced recently.
b7cb1c5#diff-4f0ea089313629267bec25abe661453fR130
Some strings have incorrect translation. Namely:
labelDisplayedRows: ({ from, to, count }) => `${from}-${to === -1 ? count : to} of ${count}`,
clearText: 'чистый', closeText: 'близко', loadingText: 'загрузка…', openText: 'открыто',
Grammatically and semantically correct localization.
labelDisplayedRows: ({ from, to, count }) => `${from}-${to === -1 ? count : to} из ${count}`,
clearText: 'Очистить', closeText: 'Закрыть', loadingText: 'Загрузка…', openText: 'Открыть',
The text was updated successfully, but these errors were encountered:
@gmltA Thank you for the feedback and for catching it before the actual release. Do you want to submit a pull request? :)
Sorry, something went wrong.
@oliviertassinari would love to.
Successfully merging a pull request may close this issue.
There are some inconsistencies in Russian localization that was introduced recently.
b7cb1c5#diff-4f0ea089313629267bec25abe661453fR130
Current Behavior 😯
Some strings have incorrect translation. Namely:
Expected Behavior 🤔
Grammatically and semantically correct localization.
The text was updated successfully, but these errors were encountered: