diff --git a/draftlogs/6261_change.md b/draftlogs/6261_change.md new file mode 100644 index 00000000000..369dfd20920 --- /dev/null +++ b/draftlogs/6261_change.md @@ -0,0 +1,2 @@ +- Change dateMonth format for `nl` locale to confirm with expected nl format +- Add new dutch translations to the dictionary diff --git a/lib/locales/nl.js b/lib/locales/nl.js index 89f4bb4cce0..efa99e84df8 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -3,7 +3,41 @@ module.exports = { moduleType: 'locale', name: 'nl', - dictionary: {}, + dictionary: { + 'Autoscale': 'Automatische schaal', + 'Click to enter Colorscale title': 'Klik om kleurenschaal titel in te vullen', + 'Click to enter Component A title': 'Klik om Component A titel in te vullen', + 'Click to enter Component B title': 'Klik om Component B titel in te vullen', + 'Click to enter Component C title': 'Klik om Component C titel in te vullen', + 'Click to enter Plot title': 'Klik om Plot titel in te vullen', + 'Click to enter X axis title': 'Klik om x-as titel in te vullen', + 'Click to enter Y axis title': 'Klik om y-as titel in te vullen', + 'Click to enter radial axis title': 'Klik om radiaal-as titel in te vullen', + 'Double-click to zoom back out': 'Zoom uit door te dubbel klikken', + 'Download plot as a png': 'Dowload de plot als een png-bestand', + 'Download plot': 'Download de plot', + 'Draw circle': 'Teken cirkel', + 'Draw closed freeform': 'Teken gesloten vorm', + 'Draw line': 'Teken lijn', + 'Draw open freeform': 'Teken open vorm', + 'Draw rectangle': 'Teken rechthoek', + 'Edit in Chart Studio': 'In Chart Studio wijzigen', + 'Erase active shape': 'Wis huidige vorm', + 'IE only supports svg. Changing format to svg.': 'IE ondersteunt alleen svg bestanden. Formaat gewijzigd naar svg.', + 'Lasso Select': 'Lasso selectie', + 'Produced with Plotly.js': 'Gemaakt met Plotly.js', + 'Zoom': 'Inzoomen', + 'max:': 'maximum:', + 'mean ± σ:': 'gemiddelde ± σ:', + 'mean:': 'gemiddelde:', + 'min:': 'minimum:', + 'new text': 'nieuwe tekst', + 'open:': 'openen:', + 'high:': 'hoog:', + 'low:': 'laag:', + 'source:': 'bron:', + 'target:': 'doel:', + }, format: { days: [ 'zondag', 'maandag', 'dinsdag', 'woensdag', @@ -18,6 +52,12 @@ module.exports = { 'jan', 'feb', 'maa', 'apr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec' ], - date: '%d-%m-%Y' + date: '%d-%m-%Y', + decimal: ',', + thousands: '.', + year: '%Y', + month: '%b %Y', + dayMonth: '%-d %b', + dayMonthYear: '%-d %b %Y' } };