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] Improve French (fr-FR) locale #5420

Merged
merged 4 commits into from
Jul 8, 2022
Merged
Changes from 3 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
18 changes: 9 additions & 9 deletions packages/grid/x-data-grid/src/locales/frFR.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const frFRGrid: Partial<GridLocaleText> = {
toolbarExportLabel: 'Exporter',
toolbarExportCSV: 'Télécharger en CSV',
toolbarExportPrint: 'Imprimer',
// toolbarExportExcel: 'Download as Excel',
toolbarExportExcel: 'Télécharger pour Excel',

// Columns panel text
columnsPanelTextFieldLabel: 'Chercher colonne',
Expand Down Expand Up @@ -109,10 +109,10 @@ const frFRGrid: Partial<GridLocaleText> = {

// Checkbox selection text
checkboxSelectionHeaderName: 'Sélection',
// checkboxSelectionSelectAllRows: 'Select all rows',
// checkboxSelectionUnselectAllRows: 'Unselect all rows',
// checkboxSelectionSelectRow: 'Select row',
// checkboxSelectionUnselectRow: 'Unselect row',
checkboxSelectionSelectAllRows: 'Sélectionner toutes les lignes',
checkboxSelectionUnselectAllRows: 'Désélectionner toutes les lignes',
checkboxSelectionSelectRow: 'Sélectionner la ligne',
checkboxSelectionUnselectRow: 'Désélectionner la ligne',

// Boolean cell text
booleanCellTrueLabel: 'vrai',
Expand All @@ -137,12 +137,12 @@ const frFRGrid: Partial<GridLocaleText> = {
unGroupColumn: (name) => `Arrêter de grouper par ${name}`,

// Master/detail
// detailPanelToggle: 'Detail panel toggle',
// expandDetailPanel: 'Expand',
// collapseDetailPanel: 'Collapse',
detailPanelToggle: 'Afficher/masquer les détails',
expandDetailPanel: 'Afficher',
collapseDetailPanel: 'Masquer',

// Row reordering text
// rowReorderingHeaderName: 'Row reordering',
rowReorderingHeaderName: 'Réorganisation de ligne',
flaviendelangle marked this conversation as resolved.
Show resolved Hide resolved
};

export const frFR: Localization = getGridLocalization(frFRGrid, frFRCore);