Skip to content

Commit

Permalink
[DataGrid][l10n] Improve Slovak (sk-SK) locale (#5332)
Browse files Browse the repository at this point in the history
  • Loading branch information
msidlo authored Jun 27, 2022
1 parent 65e9a94 commit 6682fa4
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions packages/grid/x-data-grid/src/locales/skSK.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ const skSKGrid: Partial<GridLocaleText> = {
},

// Quick filter toolbar field
// toolbarQuickFilterPlaceholder: 'Search...',
// toolbarQuickFilterLabel: 'Search',
// toolbarQuickFilterDeleteIconLabel: 'Clear',
toolbarQuickFilterPlaceholder: 'Vyhľadať...',
toolbarQuickFilterLabel: 'Vyhľadať',
toolbarQuickFilterDeleteIconLabel: 'Vymazať',

// Export selector toolbar button text
toolbarExport: 'Export',
toolbarExportLabel: 'Export',
toolbarExportCSV: 'Stiahnuť ako CSV',
toolbarExportPrint: 'Vytlačiť',
// toolbarExportExcel: 'Download as Excel',
toolbarExportExcel: 'Stiahnuť ako Excel',

// Columns panel text
columnsPanelTextFieldLabel: 'Nájsť stĺpec',
Expand All @@ -58,7 +58,7 @@ const skSKGrid: Partial<GridLocaleText> = {
// Filter panel text
filterPanelAddFilter: 'Pridať filter',
filterPanelDeleteIconLabel: 'Odstrániť',
// filterPanelLinkOperator: 'Logic operator',
filterPanelLinkOperator: 'Logický operátor',
filterPanelOperators: 'Operátory',

// TODO v6: rename to filterPanelOperator
Expand All @@ -81,7 +81,7 @@ const skSKGrid: Partial<GridLocaleText> = {
filterOperatorOnOrBefore: 'je na alebo skôr',
filterOperatorIsEmpty: 'je prázdny',
filterOperatorIsNotEmpty: 'nie je prázdny',
// filterOperatorIsAnyOf: 'is any of',
filterOperatorIsAnyOf: 'je jeden z',

// Filter values text
filterValueAny: 'akýkoľvek',
Expand Down Expand Up @@ -141,10 +141,10 @@ const skSKGrid: Partial<GridLocaleText> = {

// Checkbox selection text
checkboxSelectionHeaderName: 'Výber riadku',
// checkboxSelectionSelectAllRows: 'Select all rows',
// checkboxSelectionUnselectAllRows: 'Unselect all rows',
// checkboxSelectionSelectRow: 'Select row',
// checkboxSelectionUnselectRow: 'Unselect row',
checkboxSelectionSelectAllRows: 'Vybrať všetky riadky',
checkboxSelectionUnselectAllRows: 'Zrušiť výber všetkých riadkov',
checkboxSelectionSelectRow: 'Vyber riadok',
checkboxSelectionUnselectRow: 'Zruš výber riadku',

// Boolean cell text
booleanCellTrueLabel: 'áno',
Expand All @@ -169,12 +169,12 @@ const skSKGrid: Partial<GridLocaleText> = {
unGroupColumn: (name) => `Prestať zoskupovať podľa ${name}`,

// Master/detail
// detailPanelToggle: 'Detail panel toggle',
// expandDetailPanel: 'Expand',
// collapseDetailPanel: 'Collapse',
detailPanelToggle: 'Prepnúť detail panelu',
expandDetailPanel: 'Rozbaliť',
collapseDetailPanel: 'Zbaliť',

// Row reordering text
// rowReorderingHeaderName: 'Row reordering',
rowReorderingHeaderName: 'Preusporiadávanie riadkov',
};

export const skSK: Localization = getGridLocalization(skSKGrid, skSKCore);

0 comments on commit 6682fa4

Please sign in to comment.