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] Add missing Polish (pl-PL) locale to x-data-grid #16123

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
45 changes: 23 additions & 22 deletions packages/x-data-grid/src/locales/plPL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,16 @@ const plPLGrid: Partial<GridLocaleText> = {
toolbarQuickFilterDeleteIconLabel: 'Wyczyść',

// Prompt toolbar field
// toolbarPromptControlPlaceholder: 'Type a prompt…',
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
// toolbarPromptControlLabel: 'Prompt input',
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
// toolbarPromptControlSendActionLabel: 'Send',
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
toolbarPromptControlPlaceholder: 'Wpisz polecenie...',
toolbarPromptControlWithRecordingPlaceholder: 'Wpisz lub nagraj polecenie...',
toolbarPromptControlRecordingPlaceholder: 'Nasłuchiwanie polecenia...',
toolbarPromptControlLabel: 'Wprowadź polecenie',
toolbarPromptControlRecordButtonDefaultLabel: 'Nagrywaj',
toolbarPromptControlRecordButtonActiveLabel: 'Zatrzymaj nagrywanie',
toolbarPromptControlSendActionLabel: 'Wyślij',
toolbarPromptControlSendActionAriaLabel: 'Wyślij polecenie',
toolbarPromptControlErrorMessage:
'Wystąpił błąd podczas przetwarzania żądania. Spróbuj ponownie z innym poleceniem.',

// Export selector toolbar button text
toolbarExport: 'Eksportuj',
Expand All @@ -53,7 +54,7 @@ const plPLGrid: Partial<GridLocaleText> = {
columnsManagementNoColumns: 'Brak kolumn',
columnsManagementShowHideAllText: 'Wyświetl/Ukryj wszystkie',
columnsManagementReset: 'Resetuj',
// columnsManagementDeleteIconLabel: 'Clear',
columnsManagementDeleteIconLabel: 'Wyczyść',

// Filter panel text
filterPanelAddFilter: 'Dodaj filtr',
Expand Down Expand Up @@ -83,12 +84,12 @@ const plPLGrid: Partial<GridLocaleText> = {
filterOperatorIsEmpty: 'jest pusty',
filterOperatorIsNotEmpty: 'nie jest pusty',
filterOperatorIsAnyOf: 'jest jednym z',
// 'filterOperator=': '=',
// 'filterOperator!=': '!=',
// 'filterOperator>': '>',
// 'filterOperator>=': '>=',
// 'filterOperator<': '<',
// 'filterOperator<=': '<=',
'filterOperator=': 'równa się',
'filterOperator!=': 'nie równa się',
'filterOperator>': 'większy niż',
'filterOperator>=': 'większy lub równy',
'filterOperator<': 'mniejszy niż',
'filterOperator<=': 'mniejszy lub równy',

// Header filter operators text
headerFilterOperatorContains: 'Zawiera',
Expand All @@ -111,7 +112,7 @@ const plPLGrid: Partial<GridLocaleText> = {
'headerFilterOperator>': 'Większy niż',
'headerFilterOperator>=': 'Większy lub równy',
'headerFilterOperator<': 'Mniejszy niż',
'headerFilterOperator<=': 'Mniejszy lub równe',
'headerFilterOperator<=': 'Mniejszy lub równy',

// Filter values text
filterValueAny: 'dowolny',
Expand Down Expand Up @@ -182,11 +183,11 @@ const plPLGrid: Partial<GridLocaleText> = {

// Aggregation
aggregationMenuItemHeader: 'Agregacja',
// aggregationFunctionLabelSum: 'sum',
// aggregationFunctionLabelAvg: 'avg',
// aggregationFunctionLabelMin: 'min',
// aggregationFunctionLabelMax: 'max',
// aggregationFunctionLabelSize: 'size',
aggregationFunctionLabelSum: 'suma',
aggregationFunctionLabelAvg: 'średnia',
aggregationFunctionLabelMin: 'minimum',
aggregationFunctionLabelMax: 'maximum',
aggregationFunctionLabelSize: 'rozmiar',
};

export const plPL: Localization = getGridLocalization(plPLGrid, plPLCore);
Loading