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

Update nl translation #6261

Merged
merged 10 commits into from
Aug 10, 2022
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 ondersteund alleen svg bestanden. Formaat gewijzigd naar svg.',
eirvandelden marked this conversation as resolved.
Show resolved Hide resolved
'Lasso Select': 'Lasso selectie',
'Produced with Plotly.js': 'Gemaakt met Plotly.js',
'Zoom': 'Inzoomen',
'max:': 'maximum:',
'mean ± σ:': 'gemiddelde ± σ:',
'mean:': 'gemiddelde:',
'min:': 'minumum:',
eirvandelden marked this conversation as resolved.
Show resolved Hide resolved
'new text': 'nieuwe tekst'
eirvandelden marked this conversation as resolved.
Show resolved Hide resolved
'open:': 'openen:',
'high:': 'hoog:',
'low:': 'laag:'
eirvandelden marked this conversation as resolved.
Show resolved Hide resolved
'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: '.'
eirvandelden marked this conversation as resolved.
Show resolved Hide resolved
year: '%Y',
month: '%b %Y',
dayMonth: '%-d %b',
dayMonthYear: '%-d %b %Y'
}
};