Blame view

locales/controllet_ln.js 17.7 KB
7a60f3f3   Andrea Petta   l20n bug fix
1
2
  var ln = [];
  
fb05b400   Renato De Donato   controllet 2.0, n...
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  /******** EN ********/
  
  //PAGE SLIDER
  ln["slide1Title_en"] = "SELECT DATASET";
  ln["slide1Subtitle_en"] = "Search or copy and paste the url of dataset.";
  ln["slide2Title_en"] = "SELECT DATA";
  ln["slide2Subtitle_en"] = "Select the fields from tree-view. The multi-table will show the values related to the selected fields.";
  ln["slide3Title_en"] = "SELECT VISUALIZATION";
  ln["slide3Subtitle_en"] = "Select a visualization, fill out inputs and labels (optional).";
  ln["back_en"] = "Back";
  ln["forward_en"] = "Forward";
  
  //SELECT DATASET
  ln["listView_en"] = "LIST VIEW";
  ln["treeMapView_en"] = "TREE MAP VIEW";
  ln["availableDatasets_en"] = "Available datasets";
  ln["suggestedDatasets_en"] = "Suggested datasets";
  ln["selectedUrl_en"] = "Selected url";
  ln["wrongUrl_en"] = "Invalid url or data provider not supported yet.";
  
  //SELECT DATA
  ln["addFilters_en"] = "ADD FILTERS";
  
  //filters
  ln["filterField_en"] = "Field";
  ln["filterOperation_en"] = "Operation";
  ln["filterValue_en"] = "Value";
  ln["contains_en"] = "contains";
  ln["start_en"] = "start with";
  ln["ends_en"] = "ends with";
  
  //SELECT VISUALIZATION
  ln["inputs_en"] = "INPUTS";
  ln["baseInfo_en"] = "BASE INFO";
  ln["layouts_en"] = "LABELS / OPTIONS";
  ln["dataletPreview_en"] = "DATALET PREVIEW";
  ln["addDatalet_en"] = "ADD";
  ln["modifyDatalet_en"] = "MODIFY";
  
  //vslider
  ln["search_en"] = "Search";
  
  ln["datatable_en"] = "Table";
  ln["barchart_en"] = "Bar";
  ln["columnchart_en"] = "Column";
  ln["areachart_en"] = "Area";
  ln["linechart_en"] = "Line";
  ln["heatmap_en"] = "Heat Map";
  ln["barchart_stacked_en"] = "Stacked Bar";
  ln["columnchart_stacked_en"] = "Stacked Column";
  ln["areachart_stacked_en"] = "Stacked Area";
  ln["piechart_en"] = "Pie";
  //ln["scatterchart_en"] = "Scatter";
  //ln["bubblechart_en"] = "Bubble";
  //ln["treemap_en"] = "Tree Map";
  ln["leafletjs_en"] = "Map";
  
  //inputs
  ln["sortAscending_en"] = "sorted ascending";
  ln["sortDescending_en"] = "sorted descending";
  ln["unsort_en"] = "unsorted";
  
  ln["groupBy_en"] = "GROUP BY";
  ln["calculate_en"] = "CALCULATE";
  
  ln["COUNT_en"] = "COUNT of";
  ln["SUM_en"] = "SUM of";
  ln["MIN_en"] = "MIN of";
  ln["MAX_en"] = "MAX of";
  ln["AVG_en"] = "AVG of";
  ln["FIRST_en"] = "FIRST of";
  ln["LAST_en"] = "LAST of";
  
  ln["XAxis_en"] = "X AXIS";
  ln["YAxis_en"] = "Y AXIS (numeric)";
  ln["Column_en"] = "COLUMN";
  ln["SliceLabels_en"] = "LABELS";
  ln["SliceSizes_en"] = "SIZES (numeric)";
  ln["Latitude_en"] = "LATITUDE";
  ln["Longitude_en"] = "LONGITUDE";
  ln["BalloonContent_en"] = "BALLOON CONTENT";
  
  //options
  ln["title_en"] = "Title"
  ln["description_en"] = "Description";
  
  ln["x-axis-label_en"] = "X Axis Label";
  ln["y-axis-label_en"] = "Y Axis Label";
  ln["suffix_en"] = "Tooltip Suffix";
  ln["theme_en"] = "Theme";
  ln["stack_en"] = "Stack";
  ln["donut_en"] = "Donut";
  
  ln["x-axis-label_description_en"] = "X Axis Label";
  ln["y-axis-label_description_en"] = "Y Axis Label";
  ln["suffix_description_en"] = "Tooltip Suffix";
  ln["theme_description_en"] = "Theme";
  ln["stack_description_en"] = "Stack";
  ln["donut_description_en"] = "Donut";
  
  /******** IT ********/
  
7a60f3f3   Andrea Petta   l20n bug fix
105
106
107
108
109
110
111
  ln["slide1Title_it"] = "SELEZIONA IL DATASET";
  ln["slide1Subtitle_it"] = "Ricerca o copia e incolla la url del dataset.";
  ln["slide2Title_it"] = "SELEZIONA I DATI";
  ln["slide2Subtitle_it"] = "Seleziona i campi dalla struttura ad albero. Nella tabella saranno mostrati i valori dei campi selezionati.";
  ln["slide3Title_it"] = "SELEZIONA LA VISUALIZZAZIONE";
  ln["slide3Subtitle_it"] = "Seleziona una visualizzazione, inserisci dati di input ed etichette (opzionale).";
  
a7d52488   Renato De Donato   ln
112
113
114
  ln["back_it"] = "INDIETRO";
  ln["forward_it"] = "AVANTI";
  
7a60f3f3   Andrea Petta   l20n bug fix
115
116
117
118
119
120
  ln["listView_it"] = "ELENCO";
  ln["treeMapView_it"] = "GRAFICO AD ALBERO";
  ln["mostPopular_it"] = "I PIÙ VISTI";
  ln["availableDatasets_it"] = "Dataset disponibili";
  ln["suggestedDatasets_it"] = "Dataset suggeriti";
  ln["selectedUrl_it"] = "Url selezionata";
4149a40e   Renato De Donato   dataset invalid url
121
  ln["wrongUrl_it"] = "Url invalido o data provider non ancora supportato.";
7a60f3f3   Andrea Petta   l20n bug fix
122
123
124
125
126
127
128
129
130
131
  
  ln["inputs_it"] = "DATI DI INPUT";
  ln["layouts_it"] = "ETICHETTE / OPZIONI";
  ln["baseInfo_it"] = "INFORMAZIONI DI BASE";
  ln["comment_it"] = "COMMENTO";
  ln["commentLabel_it"] = "commento (massimo 100 caratteri)";
  ln["dataletPreview_it"] = "ANTEPRIMA";
  ln["addDatalet_it"] = "AGGIUNGI";
  ln["modifyDatalet_it"] = "MODIFICA";
  
40eb0979   Renato De Donato   group by and filt...
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
  ln["addFilters_it"] = "AGGIUNGI FILTRI";
  ln["filterField_it"] = "Campo";
  ln["filterOperation_it"] = "Operazione";
  ln["filterValue_it"] = "Valore";
  ln["contains_it"] = "contiene";
  ln["start_it"] = "inizia con";
  ln["ends_it"] = "finisce con";
  ln["sortAscending_it"] = "ordinamento crescente";
  ln["sortDescending_it"] = "ordinamento decrescente";
  ln["unsort_it"] = "non ordinato";
  ln["groupBy_it"] = "RAGGRUPPA";
  ln["calculate_it"] = "CALCOLA";
  ln["COUNT_it"] = "CONTEGGIO di";
  ln["SUM_it"] = "SOMMA di";
  ln["MIN_it"] = "MINIMO di";
  ln["MAX_it"] = "MASSIMO di";
  ln["AVG_it"] = "MEDIA di";
  ln["FIRST_it"] = "PRIMO di";
  ln["LAST_it"] = "ULTIMO di";
e94f9513   Renato De Donato   filter ln
151
  
ac237fdd   Renato De Donato   controllet ln
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
  ln["datatable_it"] = "tabella";
  ln["barchart_it"] = "bar-chart";
  ln["columnchart_it"] = "column-chart";
  ln["linechart_it"] = "line-chart";
  ln["column3Dchart_it"] = "3D column-chart";
  ln["areachart_it"] = "area-chart";
  ln["donutpie3dchart_it"] = "3D donutpie-chart";
  ln["piechart_it"] = "pie-chart";
  ln["treemap_it"] = "tree-map";
  ln["leafletjs_it"] = "map";
  ln["bubble3d_it"] = "3D bubble-chart";
  ln["bubblechart_it"] = "bubble-chart";
  ln["scatterchart_it"] = "scatter-chart";
  ln["heatmap_it"] = "heat-map";
  
  ln["title_it"] = "titolo";
  ln["description_it"] = "descrizione";
  
  ln["Cell_it"] = "Cella";
  ln["Level_it"] = "Livello";
  ln["Categories_it"] = "Categorie";
  ln["Series_it"] = "Serie";
  ln["x-axis-label_it"] = "etichetta asse X";
  ln["y-axis-label_it"] = "etichetta asse Y";
  ln["z-axis-label_it"] = "etichetta asse Z";
  ln["suffix_it"] = "Suffisso";
  ln["Size_it"] = "Dimensione";
  ln["Latitude_it"] = "Latitudine";
  ln["Longitude_it"] = "Longitudine";
  ln["Balloon content_it"] = "Contenuto della bolla";
  ln["X values_it"] = "Valori asse X";
  ln["Y values_it"] = "Valori asse Y";
  ln["Z values_it"] = "Valori asse Z";
  
7a60f3f3   Andrea Petta   l20n bug fix
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
  ln["cellDescription_it"] = "Cella della tabella.";
  ln["levelDescription_it"] = "Livello utilizzato per il raggruppamento dei valori corrispondenti.";
  
  ln["categoriesDescription_it"] = "Categorie del grafico. I valori saranno inseriti sull’asse orizzontale. Inserire un valore per ciascuna serie.";
  ln["seriesDescription_it"] = "Serie del grafico. I valori saranno inseriti sull’asse verticale.";
  
  ln["XAxisLabelDescription_it"] = "Etichetta asse X.";
  ln["YAxisLabelDescription_it"] = "Etichetta asse Y.";
  ln["suffixDescription_it"] = "Suffisso valore (e.g. unità di misura, dollari, euro,…).";
  
  ln["pieSeriesDescription_it"] = "Serie del grafico. I valori saranno inseriti sulla porzione corrispondente alla relativa serie.";
  ln["pieSizeDescription_it"] = "Dimensione di ciascuna serie per creare anelli concentrici";
  
  ln["bubbleCategoriesDescription_it"] = "Serie del grafico. Inserire un valore per ciascuna serie.";
  ln["bubbleYValuesDescription_it"] = "Valori y del grafico. I valori saranno inseriti sull’asse verticale";
  ln["bubbleZValuesDescription_it"] = "Valori z del grafico. I valori rappresentano la dimensione della bolla.";
  ln["bubbleSeriesDescription_it"] = "Serie del grafico. I valori visualizzano un grafico a bolle a serie multipla.";
  
  ln["scatterCategoriesDescription_it"] = "Categorie del grafico. Inserire un valore per ciascuna serie.";
  ln["scatterXValuesDescription_it"] = "Serie del grafico. I valori saranno inseriti sull’asse orizzontale.";
  ln["scatterYValuesDescription_it"] = "Serie del grafico. I valori saranno inseriti sull’asse verticale..";
  
  ln["heatmapCategoriesDescription_it"] = "Categorie del grafico. I valori saranno inseriti sull’asse orizzontale.";
  
  ln["LatitudeDescription_it"] = "Latitudine del punto da riportare sulla mappa.";
  ln["LongitudeDescription_it"] = "Longitudine del punto da riportare sulla mappa.";
6d2a2a1e   Andrea Petta   language handling
212
213
  ln["BalloonContentDescription_it"] = "Descrizione del segnaposto o link all'immagine che visualizza il luogo specificato sulla mappa.";
  
fb05b400   Renato De Donato   controllet 2.0, n...
214
  /******** FR ********/
6d2a2a1e   Andrea Petta   language handling
215
  
6d2a2a1e   Andrea Petta   language handling
216
217
218
219
220
221
222
  ln["slide1Title_fr"] = "SELECTIONNER UN JEU DE DONNEES";
  ln["slide1Subtitle_fr"] = "Rechercher ou copier/coller l’url du jeu de données.";
  ln["slide2Title_fr"] = "SELECTIONNER DONNEES";
  ln["slide2Subtitle_fr"] = "Sélectionner les champs à partir de l’arborescence. Une fenêtre vous indiquera les valeurs relatives aux champs sélectionnés.";
  ln["slide3Title_fr"] = "SELECTIONNER UN MODE DE VISUALISATION";
  ln["slide3Subtitle_fr"] = "Sélectionner un mode de visualisation, remplir les entrées et les vignettes (optionnel).";
  
a7d52488   Renato De Donato   ln
223
224
225
  ln["back_fr"] = "RETOUR";
  ln["forward_fr"] = "AVANT";
  
6d2a2a1e   Andrea Petta   language handling
226
227
228
229
230
231
  ln["listView_fr"] = "VUE EN LISTE";
  ln["treeMapView_fr"] = "VUE EN ARBORESCENCE";
  ln["mostPopular_fr"] = "LES PLUS POPULAIRES";
  ln["availableDatasets_fr"] = "Jeux de données disponibles";
  ln["suggestedDatasets_fr"] = "Jeux de données suggérés";
  ln["selectedUrl_fr"] = "Sélectionner URL";
4149a40e   Renato De Donato   dataset invalid url
232
  ln["wrongUrl_fr"] = "Invalid url or data provider not supported yet.";
6d2a2a1e   Andrea Petta   language handling
233
234
235
236
237
238
239
240
241
242
  
  ln["inputs_fr"] = "SORTIES";
  ln["layouts_fr"] = "VIGNETTES/OPTIONSs";
  ln["baseInfo_fr"] = "INFORMATION DE BASE";
  ln["comment_fr"] = "COMMENTAIRES";
  ln["commentLabel_fr"] = "Commentaires (maximum 100 caractères)";
  ln["dataletPreview_fr"] = "PREVISUALISATION";
  ln["addDatalet_fr"] = "AJOUTER";
  ln["modifyDatalet_fr"] = "MODIFIER";
  
40eb0979   Renato De Donato   group by and filt...
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
  ln["addFilters_fr"] = "ADD FILTERS";
  ln["filterField_fr"] = "Field";
  ln["filterOperation_fr"] = "Operation";
  ln["filterValue_fr"] = "Value";
  ln["contains_fr"] = "contains";
  ln["start_fr"] = "start with";
  ln["ends_fr"] = "ends with";
  ln["sortAscending_fr"] = "sorted ascending";
  ln["sortDescending_fr"] = "sorted descending";
  ln["unsort_fr"] = "unsorted";
  ln["groupBy_fr"] = "GROUP BY";
  ln["calculate_fr"] = "CALCULATE";
  ln["COUNT_fr"] = "COUNT of";
  ln["SUM_fr"] = "SUM of";
  ln["MIN_fr"] = "MIN of";
  ln["MAX_fr"] = "MAX of";
  ln["AVG_fr"] = "AVG of";
  ln["FIRST_fr"] = "FIRST of";
  ln["LAST_fr"] = "LAST of";
  
ac237fdd   Renato De Donato   controllet ln
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
  ln["datatable_fr"] = "table fr";
  ln["barchart_fr"] = "barchart";
  ln["columnchart_fr"] = "columnchart";
  ln["linechart_fr"] = "linechart";
  ln["column3Dchart_fr"] = "column3Dchart";
  ln["areachart_fr"] = "areachart";
  ln["donutpie3dchart_fr"] = "donutpie3dchart";
  ln["piechart_fr"] = "piechart";
  ln["treemap_fr"] = "treemap";
  ln["leafletjs_fr"] = "map";
  ln["bubble3d_fr"] = "bubble3d";
  ln["bubblechart_fr"] = "bubblechart";
  ln["scatterchart_fr"] = "scatterchart";
  ln["heatmap_fr"] = "heatmap";
  
  ln["title_fr"] = "title";
  ln["description_fr"] = "description";
  
  ln["Cell_fr"] = "Cell";
  ln["Level_fr"] = "Level";
  ln["Categories_fr"] = "Categories";
  ln["Series_fr"] = "Series";
  ln["x-axis-label_fr"] = "x-axis-label";
  ln["y-axis-label_fr"] = "y-axis-label";
  ln["z-axis-label_fr"] = "z-axis-label";
  ln["suffix_fr"] = "suffix";
  ln["Size_fr"] = "Size";
  ln["Latitude_fr"] = "Latitude";
  ln["Longitude_fr"] = "Longitude";
  ln["Balloon content_fr"] = "Balloon content";
  ln["X values_fr"] = "X values";
  ln["Y values_fr"] = "Y values";
  ln["Z values_fr"] = "Z values";
  
6d2a2a1e   Andrea Petta   language handling
297
298
299
  ln["cellDescription_fr"] = "Cellules du tableau.";
  ln["levelDescription_fr"] = "C’est le niveau local que le graphique utilisera pour grouper les valeurs correspondantes au nombre de niveaux de champs";
  
79097975   Renato De Donato   Ses
300
301
  ln["categoriesDescription_fr"] = "Catégories de graphiques. Ces valeurs seront insérées dans l’axe horizontal. Vous devez insérer une valeur pour chaque série.";
  ln["seriesDescription_fr"] = "Catégories de graphique. Ces valeurs seront insérées dans l’axe vertical.";
6d2a2a1e   Andrea Petta   language handling
302
303
304
305
306
  
  ln["XAxisLabelDescription_fr"] = "Vignette pour l’axe X.";
  ln["YAxisLabelDescription_fr"] = "Vignette pour l’axe Y.";
  ln["suffixDescription_fr"] = "Unités de mesures (ex:  dollars, euros.";
  
79097975   Renato De Donato   Ses
307
  ln["pieSeriesDescription_fr"] = "Série de graphiques. Ces valeurs seront intégrées au sein des segments de chaque série.";
6d2a2a1e   Andrea Petta   language handling
308
309
  ln["pieSizeDescription_fr"] = "Taille de chaque série afin de créer un anneau concentrique.";
  
79097975   Renato De Donato   Ses
310
311
312
  ln["bubbleCategoriesDescription_fr"] = "Catégories de graphique. Ces valeurs seront insérées dans l’axe horizontal. Vous devez insérer une valeur pour chaque série.";
  ln["bubbleYValuesDescription_fr"] = "Le graphique présente les valeurs Y. Ces valeurs seront insérées dans l’axe vertical.";
  ln["bubbleZValuesDescription_fr"] = "Le graphique présente les valeurs Z. Ces valeurs représentent la taille des bulles.";
6d2a2a1e   Andrea Petta   language handling
313
314
315
316
317
318
319
320
321
322
323
324
  ln["bubbleSeriesDescription_fr"] = "The chart series. Its values visualize multi- series bubbles chart.";
  
  ln["scatterCategoriesDescription_fr"] = "The chart categories. You need one value for each series.";
  ln["scatterXValuesDescription_fr"] = "The chart plots x values. Its values will be put in the horizontal axis.";
  ln["scatterYValuesDescription_fr"] = "The chart plots y value. Its values will be put in the vertical axis.";
  
  ln["heatmapCategoriesDescription_fr"] = "The chart categories. Its values will be put in the horizontal axis.";
  
  ln["LatitudeDescription_fr"] = "Latitude des points que vous souhaitez montrer sur la carte.";
  ln["LongitudeDescription_fr"] = "Longitude des points que vous souhaitez montrer sur la carte.";
  ln["BalloonContentDescription_fr"] = "It is the text associated to the marker or the link to the image related to the camera associated to each points.";
  
fb05b400   Renato De Donato   controllet 2.0, n...
325
326
  /******** NL ********/
  
a7d52488   Renato De Donato   ln
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
  ln["slide1Title_nl"] = "SELECTEER DATASET";
  ln["slide1Subtitle_nl"] = "Zoek of kopieer en plak de url van de dataset.";
  ln["slide2Title_nl"] = "SELECTEER DATA";
  ln["slide2Subtitle_nl"] = "Selecteer de velden uit de boomstructuur. De multi-tabel laat de waarden zien van de geselecteerde velden.";
  ln["slide3Title_nl"] = "SELECTEER VISUALISATIE";
  ln["slide3Subtitle_nl"] = "Selecteer een visualisatie, vul de invoer en labels in.";
  
  ln["back_nl"] = "TERUG";
  ln["forward_nl"] = "VOOTUIT";
  
  ln["listView_nl"] = "LIJSTWEERGAVE";
  ln["treeMapView_nl"] = "BOOMSTRUCTUUR WEEERGAVE";
  ln["mostPopular_nl"] = "POPULAIRSTE";
  ln["availableDatasets_nl"] = "Beschikbare datasets";
  ln["suggestedDatasets_nl"] = "Voeg aanbevolen datasets";
  ln["selectedUrl_nl"] = "selecteer url";
  ln["wrongUrl_nl"] = "Ongeldige url of data provider nog niet ondersteund.";
6d2a2a1e   Andrea Petta   language handling
344
345
  
  ln["inputs_nl"] = "INPUTS";
a7d52488   Renato De Donato   ln
346
347
348
349
350
351
352
  ln["layouts_nl"] = "LABELS / OPTIES";
  ln["baseInfo_nl"] = "BASIS INFO";
  ln["comment_nl"] = "COMMENTAAR";
  ln["commentLabel_nl"] = "commentaar (maximaal 100 tekens)";
  ln["dataletPreview_nl"] = "VOORBEELD";
  ln["addDatalet_nl"] = "TOEVOEGEN";
  ln["modifyDatalet_nl"] = "WIJZIGEN";
6d2a2a1e   Andrea Petta   language handling
353
  
40eb0979   Renato De Donato   group by and filt...
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
  ln["addFilters_nl"] = "ADD FILTERS";
  ln["filterField_nl"] = "Field";
  ln["filterOperation_nl"] = "Operation";
  ln["filterValue_nl"] = "Value";
  ln["contains_nl"] = "contains";
  ln["start_nl"] = "start with";
  ln["ends_nl"] = "ends with";
  ln["sortAscending_nl"] = "sorted ascending";
  ln["sortDescending_nl"] = "sorted descending";
  ln["unsort_nl"] = "unsorted";
  ln["groupBy_nl"] = "GROUP BY";
  ln["calculate_nl"] = "CALCULATE";
  ln["COUNT_nl"] = "COUNT of";
  ln["SUM_nl"] = "SUM of";
  ln["MIN_nl"] = "MIN of";
  ln["MAX_nl"] = "MAX of";
  ln["AVG_nl"] = "AVG of";
  ln["FIRST_nl"] = "FIRST of";
  ln["LAST_nl"] = "LAST of";
  
ac237fdd   Renato De Donato   controllet ln
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
  ln["datatable_nl"] = "tafel";
  ln["barchart_nl"] = "barchart";
  ln["columnchart_nl"] = "columnchart";
  ln["linechart_nl"] = "linechart";
  ln["column3Dchart_nl"] = "column3Dchart";
  ln["areachart_nl"] = "areachart";
  ln["donutpie3dchart_nl"] = "donutpie3dchart";
  ln["piechart_nl"] = "piechart";
  ln["treemap_nl"] = "treemap";
  ln["leafletjs_nl"] = "map";
  ln["bubble3d_nl"] = "bubble3d";
  ln["bubblechart_nl"] = "bubblechart";
  ln["scatterchart_nl"] = "scatterchart";
  ln["heatmap_nl"] = "heatmap";
  
  ln["title_fr"] = "title";
  ln["description_fr"] = "description";
  
  ln["Cell_nl"] = "Cell";
  ln["Level_nl"] = "Level";
  ln["Categories_nl"] = "Categories";
  ln["Series_nl"] = "Series";
  ln["x-axis-label_nl"] = "x-axis-label";
  ln["y-axis-label_nl"] = "y-axis-label";
  ln["z-axis-label_nl"] = "z-axis-label";
  ln["suffix_nl"] = "suffix";
  ln["Size_nl"] = "Size";
  ln["Latitude_nl"] = "Latitude";
  ln["Longitude_nl"] = "Longitude";
  ln["Balloon content_nl"] = "Balloon content";
  ln["X values_nl"] = "X values";
  ln["Y values_nl"] = "Y values";
  ln["Z values_nl"] = "Z values";
  
a7d52488   Renato De Donato   ln
408
409
  ln["cellDescription_nl"] = "De cel van een tabel.";
  ln["levelDescription_nl"] = "Het is het veldniveau dat de datalet gebruikt om waarden te groeperen die corresponderen met veldniveau aantallen.";
6d2a2a1e   Andrea Petta   language handling
410
  
a7d52488   Renato De Donato   ln
411
412
  ln["categoriesDescription_nl"] = "De categorieen van het diagram. De waarden worden op de horizontale as geplaatst. Voor elke reeks is één waarde nodig.";
  ln["seriesDescription_nl"] = "De reeksen van het diagram. De waarden worden op de verticale as geplaatst.";
6d2a2a1e   Andrea Petta   language handling
413
  
a7d52488   Renato De Donato   ln
414
415
416
  ln["XAxisLabelDescription_nl"] = "Label voor de x-as.";
  ln["YAxisLabelDescription_nl"] = "Label voor de y-as.";
  ln["suffixDescription_nl"] = "De waarden van de index (bijvoorbeeld de eenheid).";
6d2a2a1e   Andrea Petta   language handling
417
  
a7d52488   Renato De Donato   ln
418
419
  ln["pieSeriesDescription_nl"] = "De reeksen van het diagram. De waarden zullen worden opgedeeld voor iedere reeks.";
  ln["pieSizeDescription_nl"] = "De grootte van iedere reeks die samen een cirkelvormige ring vormen.";
6d2a2a1e   Andrea Petta   language handling
420
  
a7d52488   Renato De Donato   ln
421
422
423
424
  ln["bubbleCategoriesDescription_nl"] = "De categorieen van het diagram. Voor elke reeks is één waarde nodig.";
  ln["bubbleYValuesDescription_nl"] = "De grafiek plot Y-waarden. De waarden worden op de verticale as geplaatst.";
  ln["bubbleZValuesDescription_nl"] = "De grafiek plot Z-waarden. De waarden representeren de grootte van de bellen.";
  ln["bubbleSeriesDescription_nl"] = "De reeksen van het diagram. De waarden visualiseren meerdere reeksen van bellen.";
6d2a2a1e   Andrea Petta   language handling
425
  
a7d52488   Renato De Donato   ln
426
427
428
  ln["scatterCategoriesDescription_nl"] = "De categorieen van het diagram. Voor elke reeks is één waarde nodig.";
  ln["scatterXValuesDescription_nl"] = "De grafiek plot X-waarden. De waarden worden op de horizontale as geplaatst.";
  ln["scatterYValuesDescription_nl"] = "De grafiek plot Y-waarden. De waarden worden op de verticale as geplaatst.";
6d2a2a1e   Andrea Petta   language handling
429
  
a7d52488   Renato De Donato   ln
430
  ln["heatmapCategoriesDescription_nl"] = "De categorieën van het diagram. De waarden worden op de horizontale as geplaatst.";
6d2a2a1e   Andrea Petta   language handling
431
  
a7d52488   Renato De Donato   ln
432
433
434
  ln["LatitudeDescription_nl"] = "Het is de breedtegraad van de punten in de kaart.";
  ln["LongitudeDescription_nl"] = "Het is de hoogtegraad van de punten in de kaart";
  ln["BalloonContentDescription_nl"] = "Het is de tekst die hoort bij de markering of link (naar een foto van de camera van ieder punt).";