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 Japanese (ja-JP) locale #10299

Merged
merged 1 commit into from
Sep 10, 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 @@ -123,7 +123,7 @@
"languageTag": "ja-JP",
"importName": "jaJP",
"localeName": "Japanese",
"missingKeysCount": 25,
"missingKeysCount": 0,
"totalKeysCount": 119,
"githubLink": "https://github.com/mui/mui-x/blob/master/packages/grid/x-data-grid/src/locales/jaJP.ts"
},
Expand Down
50 changes: 25 additions & 25 deletions packages/grid/x-data-grid/src/locales/jaJP.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,33 +70,33 @@ const jaJPGrid: 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
Loading