-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathnl.js
63 lines (62 loc) · 2.54 KB
/
nl.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
'use strict';
module.exports = {
moduleType: 'locale',
name: 'nl',
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',
'donderdag', 'vrijdag', 'zaterdag'
],
shortDays: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'],
months: [
'januari', 'februari', 'maart', 'april', 'mei', 'juni',
'juli', 'augustus', 'september', 'oktober', 'november', 'december'
],
shortMonths: [
'jan', 'feb', 'maa', 'apr', 'mei', 'jun',
'jul', 'aug', 'sep', 'okt', 'nov', 'dec'
],
date: '%d-%m-%Y',
decimal: ',',
thousands: '.',
year: '%Y',
month: '%b %Y',
dayMonth: '%-d %b',
dayMonthYear: '%-d %b %Y'
}
};