Skip to content

Commit

Permalink
[DataGrid] Improve French (fr-FR) locale (mui#3211) (mui#5420)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zenoo authored and alexfauquette committed Aug 26, 2022
1 parent f315862 commit 4fb4b33
Showing 1 changed file with 9 additions and 9 deletions.
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: 'Positionnement des lignes',
};

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

0 comments on commit 4fb4b33

Please sign in to comment.