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

[DataGrid][l10n] Improve Slovak (sk-SK) locale #5332

Merged
merged 1 commit into from
Jun 27, 2022
Merged
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
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);