Skip to content

Commit

Permalink
[l10n] Improve Dutch (nl-NL) locale (#15564)
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Muller <[email protected]>
  • Loading branch information
nphmuller authored and oliviertassinari committed Nov 23, 2024
1 parent d77dedc commit d72dd79
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/x-date-pickers/src/locales/nlNL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ const nlNLPickers: Partial<PickersLocaleText<any>> = {
// DateRange labels
start: 'Start',
end: 'Einde',
startDate: 'Start datum',
startTime: 'Start tijd',
endDate: 'Eind datum',
endTime: 'Eind tijd',
startDate: 'Startdatum',
startTime: 'Starttijd',
endDate: 'Einddatum',
endTime: 'Eindtijd',

// Action bar
cancelButtonLabel: 'Annuleren',
Expand Down Expand Up @@ -74,11 +74,11 @@ const nlNLPickers: Partial<PickersLocaleText<any>> = {
dateTableLabel: 'kies datum',

// Field section placeholders
fieldYearPlaceholder: (params) => 'Y'.repeat(params.digitAmount),
fieldYearPlaceholder: (params) => 'J'.repeat(params.digitAmount),
fieldMonthPlaceholder: (params) => (params.contentType === 'letter' ? 'MMMM' : 'MM'),
fieldDayPlaceholder: () => 'DD',
fieldWeekDayPlaceholder: (params) => (params.contentType === 'letter' ? 'EEEE' : 'EE'),
fieldHoursPlaceholder: () => 'hh',
fieldHoursPlaceholder: () => 'uu',
fieldMinutesPlaceholder: () => 'mm',
fieldSecondsPlaceholder: () => 'ss',
fieldMeridiemPlaceholder: () => 'aa',
Expand All @@ -94,7 +94,7 @@ const nlNLPickers: Partial<PickersLocaleText<any>> = {
meridiem: 'Middag',

// Common
empty: 'Legen',
empty: 'Leeg',
};

export const nlNL = getPickersLocalization(nlNLPickers);

0 comments on commit d72dd79

Please sign in to comment.