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 Vietnamese (vi-VN) locale #14769

Merged
merged 1 commit into from
Sep 30, 2024
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 @@ -275,7 +275,7 @@
"languageTag": "vi-VN",
"importName": "viVN",
"localeName": "Vietnamese",
"missingKeysCount": 4,
"missingKeysCount": 0,
"totalKeysCount": 122,
"githubLink": "https://github.com/mui/mui-x/blob/master/packages/x-data-grid/src/locales/viVN.ts"
}
Expand Down
40 changes: 20 additions & 20 deletions packages/x-data-grid/src/locales/viVN.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,21 @@ const viVNGrid: Partial<GridLocaleText> = {
filterPanelInputPlaceholder: 'Lọc giá trị',

// Filter operators text
filterOperatorContains: 'Chứa',
// filterOperatorDoesNotContain: 'does not contain',
filterOperatorEquals: 'Bằng',
// filterOperatorDoesNotEqual: 'does not equal',
filterOperatorStartsWith: 'Bắt đầu bằng',
filterOperatorEndsWith: 'Kết thúc bằng',
filterOperatorIs: '',
filterOperatorNot: 'Không là',
filterOperatorAfter: 'Trước',
filterOperatorContains: 'chứa',
filterOperatorDoesNotContain: 'không chứa',
filterOperatorEquals: 'bằng',
filterOperatorDoesNotEqual: 'không bằng',
filterOperatorStartsWith: 'bắt đầu với',
filterOperatorEndsWith: 'kết thúc với',
filterOperatorIs: '',
filterOperatorNot: 'không phải là',
filterOperatorAfter: 'sau',
filterOperatorOnOrAfter: 'bằng hoặc sau',
filterOperatorBefore: 'Sau',
filterOperatorBefore: 'trước',
filterOperatorOnOrBefore: 'bằng hoặc trước',
filterOperatorIsEmpty: 'Rỗng',
filterOperatorIsNotEmpty: 'Khác rỗng',
filterOperatorIsAnyOf: 'Bất kỳ',
filterOperatorIsEmpty: 'rỗng',
filterOperatorIsNotEmpty: 'khác rỗng',
filterOperatorIsAnyOf: 'là một trong',
'filterOperator=': '=',
'filterOperator!=': '!=',
'filterOperator>': '>',
Expand All @@ -81,20 +81,20 @@ const viVNGrid: Partial<GridLocaleText> = {

// Header filter operators text
headerFilterOperatorContains: 'Chứa',
// headerFilterOperatorDoesNotContain: 'Does not contain',
headerFilterOperatorDoesNotContain: 'Không chứa',
headerFilterOperatorEquals: 'Bằng',
// headerFilterOperatorDoesNotEqual: 'Does not equal',
headerFilterOperatorDoesNotEqual: 'Không bằng',
headerFilterOperatorStartsWith: 'Bắt đầu với',
headerFilterOperatorEndsWith: 'Kết thúc với',
headerFilterOperatorIs: '',
headerFilterOperatorNot: 'Không là',
headerFilterOperatorIs: '',
headerFilterOperatorNot: 'Không phải là',
headerFilterOperatorAfter: 'Sau',
headerFilterOperatorOnOrAfter: 'Đang hoặc sau',
headerFilterOperatorOnOrAfter: 'Bằng hoặc sau',
headerFilterOperatorBefore: 'Trước',
headerFilterOperatorOnOrBefore: 'Đang hoặc trước',
headerFilterOperatorOnOrBefore: 'Bằng hoặc trước',
headerFilterOperatorIsEmpty: 'Rỗng',
headerFilterOperatorIsNotEmpty: 'Khác rỗng',
headerFilterOperatorIsAnyOf: 'Bất kỳ',
headerFilterOperatorIsAnyOf: 'Là một trong',
'headerFilterOperator=': 'Bằng',
'headerFilterOperator!=': 'Khác',
'headerFilterOperator>': 'Lớn hơn',
Expand Down
Loading