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

[l10n] Improve Russian (ru-RU) locale on the DataGrid #10407

Merged
merged 3 commits into from
Sep 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data/data-grid/localization/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
"languageTag": "ru-RU",
"importName": "ruRU",
"localeName": "Russian",
"missingKeysCount": 26,
"missingKeysCount": 1,
"totalKeysCount": 119,
"githubLink": "https://github.com/mui/mui-x/blob/master/packages/grid/x-data-grid/src/locales/ruRU.ts"
},
Expand Down
50 changes: 25 additions & 25 deletions packages/grid/x-data-grid/src/locales/ruRU.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,33 +79,33 @@ const ruRUGrid: Partial<GridLocaleText> = {
filterOperatorIsEmpty: 'пустой',
filterOperatorIsNotEmpty: 'не пустой',
filterOperatorIsAnyOf: 'любой из',
// 'filterOperator=': '=',
// 'filterOperator!=': '!=',
// 'filterOperator>': '>',
// 'filterOperator>=': '>=',
// 'filterOperator<': '<',
// 'filterOperator<=': '<=',
'filterOperator=': '=',
'filterOperator!=': '!=',
'filterOperator>': '>',
'filterOperator>=': '>=',
'filterOperator<': '<',
'filterOperator<=': '<=',

// Header filter operators text
// headerFilterOperatorContains: 'Contains',
// headerFilterOperatorEquals: 'Equals',
// headerFilterOperatorStartsWith: 'Starts with',
// headerFilterOperatorEndsWith: 'Ends with',
// headerFilterOperatorIs: 'Is',
// headerFilterOperatorNot: 'Is not',
// headerFilterOperatorAfter: 'Is after',
// headerFilterOperatorOnOrAfter: 'Is on or after',
// headerFilterOperatorBefore: 'Is before',
// headerFilterOperatorOnOrBefore: 'Is on or before',
// headerFilterOperatorIsEmpty: 'Is empty',
// headerFilterOperatorIsNotEmpty: 'Is not empty',
// headerFilterOperatorIsAnyOf: 'Is any of',
// 'headerFilterOperator=': 'Equals',
// 'headerFilterOperator!=': 'Not equals',
// 'headerFilterOperator>': 'Greater than',
// 'headerFilterOperator>=': 'Greater than or equal to',
// 'headerFilterOperator<': 'Less than',
// 'headerFilterOperator<=': 'Less than or equal to',
headerFilterOperatorContains: 'содержит',
headerFilterOperatorEquals: 'равен',
headerFilterOperatorStartsWith: 'начинается с',
headerFilterOperatorEndsWith: 'заканчивается на',
headerFilterOperatorIs: 'равен',
headerFilterOperatorNot: 'не равен',
headerFilterOperatorAfter: 'больше чем',
headerFilterOperatorOnOrAfter: 'больше или равно',
headerFilterOperatorBefore: 'меньше чем',
headerFilterOperatorOnOrBefore: 'меньше или равно',
headerFilterOperatorIsEmpty: 'пустой',
headerFilterOperatorIsNotEmpty: 'не пустой',
headerFilterOperatorIsAnyOf: 'любой из',
'headerFilterOperator=': 'содержит',
'headerFilterOperator!=': 'не содержит',
'headerFilterOperator>': 'больше чем',
'headerFilterOperator>=': 'больше или равно',
'headerFilterOperator<': 'меньше чем',
'headerFilterOperator<=': 'меньше или равно',

// Filter values text
filterValueAny: 'любой',
Expand Down