Skip to content

Commit

Permalink
[I10n][DataGrid] Improve Polish (pl-PL) locale (#15227)
Browse files Browse the repository at this point in the history
  • Loading branch information
belkocik authored Nov 1, 2024
1 parent cb6e9c0 commit 0e047d3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
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 @@ -187,7 +187,7 @@
"languageTag": "pl-PL",
"importName": "plPL",
"localeName": "Polish",
"missingKeysCount": 35,
"missingKeysCount": 11,
"totalKeysCount": 122,
"githubLink": "https://github.com/mui/mui-x/blob/master/packages/x-data-grid/src/locales/plPL.ts"
},
Expand Down
48 changes: 24 additions & 24 deletions packages/x-data-grid/src/locales/plPL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ const plPLGrid: Partial<GridLocaleText> = {
toolbarExportExcel: 'Pobierz jako plik Excel',

// Columns management text
// columnsManagementSearchTitle: 'Search',
// columnsManagementNoColumns: 'No columns',
// columnsManagementShowHideAllText: 'Show/Hide All',
// columnsManagementReset: 'Reset',
columnsManagementSearchTitle: 'Szukaj',
columnsManagementNoColumns: 'Brak kolumn',
columnsManagementShowHideAllText: 'Wyświetl/Ukryj wszystkie',
columnsManagementReset: 'Resetuj',

// Filter panel text
filterPanelAddFilter: 'Dodaj filtr',
Expand All @@ -57,9 +57,9 @@ const plPLGrid: Partial<GridLocaleText> = {

// Filter operators text
filterOperatorContains: 'zawiera',
// filterOperatorDoesNotContain: 'does not contain',
filterOperatorDoesNotContain: 'nie zawiera',
filterOperatorEquals: 'równa się',
// filterOperatorDoesNotEqual: 'does not equal',
filterOperatorDoesNotEqual: 'nie równa się',
filterOperatorStartsWith: 'zaczyna się od',
filterOperatorEndsWith: 'kończy się na',
filterOperatorIs: 'równa się',
Expand All @@ -80,26 +80,26 @@ const plPLGrid: Partial<GridLocaleText> = {

// Header filter operators text
headerFilterOperatorContains: 'Zawiera',
// headerFilterOperatorDoesNotContain: 'Does not contain',
headerFilterOperatorDoesNotContain: 'Nie zawiera',
headerFilterOperatorEquals: 'Równa się',
// headerFilterOperatorDoesNotEqual: 'Does not equal',
headerFilterOperatorDoesNotEqual: 'Nie równa się',
headerFilterOperatorStartsWith: 'Zaczyna się od',
headerFilterOperatorEndsWith: 'Kończy się na',
// headerFilterOperatorIs: 'Is',
headerFilterOperatorIs: 'Jest',
headerFilterOperatorNot: 'Niepuste',
// 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',
headerFilterOperatorAfter: 'Jest po',
headerFilterOperatorOnOrAfter: 'Jest w lub po',
headerFilterOperatorBefore: 'Jest przed',
headerFilterOperatorOnOrBefore: 'Jest w lub przed',
headerFilterOperatorIsEmpty: 'Jest pusty',
headerFilterOperatorIsNotEmpty: 'Nie jest pusty',
headerFilterOperatorIsAnyOf: 'Is any of',
'headerFilterOperator=': 'Równa się',
'headerFilterOperator!=': 'Nie równa się',
'headerFilterOperator>': 'Większy niż',
'headerFilterOperator>=': 'Większy lub równy',
'headerFilterOperator<': 'Mniejszy niż',
'headerFilterOperator<=': 'Mniejszy lub równe',

// Filter values text
filterValueAny: 'dowolny',
Expand Down Expand Up @@ -161,15 +161,15 @@ const plPLGrid: Partial<GridLocaleText> = {
unGroupColumn: (name) => `Rozgrupuj ${name}`,

// Master/detail
// detailPanelToggle: 'Detail panel toggle',
detailPanelToggle: 'Szczegóły',
expandDetailPanel: 'Rozwiń',
collapseDetailPanel: 'Zwiń',

// Row reordering text
rowReorderingHeaderName: 'Porządkowanie wierszy',

// Aggregation
// aggregationMenuItemHeader: 'Aggregation',
aggregationMenuItemHeader: 'Agregacja',
// aggregationFunctionLabelSum: 'sum',
// aggregationFunctionLabelAvg: 'avg',
// aggregationFunctionLabelMin: 'min',
Expand Down

0 comments on commit 0e047d3

Please sign in to comment.