Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions draftlogs/6261_change.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Change dateMonth format for `nl` locale to confirm with expected nl format
- Add new dutch translations to the dictionary
44 changes: 42 additions & 2 deletions lib/locales/nl.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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'
}
};