Blame view

locales/controllet_ln.js 38.4 KB
7a60f3f3   Andrea Petta   l20n bug fix
1
2
  var ln = [];
  
1a26bccd   Renato De Donato   ln update
3
4
  ln["localization"] = "en";
  
fb05b400   Renato De Donato   controllet 2.0, n...
5
6
7
  /******** EN ********/
  
  //PAGE SLIDER
256ece27   Renato De Donato   new controllet
8
  
fb05b400   Renato De Donato   controllet 2.0, n...
9
  ln["slide1Title_en"] = "SELECT DATASET";
a53fbbed   Renato De Donato   select-dataset ne...
10
  ln["slide1Subtitle_en"] = "Select a dataset from the list or copy and paste the url of dataset.";
fb05b400   Renato De Donato   controllet 2.0, n...
11
  ln["slide2Title_en"] = "SELECT DATA";
3b5f4868   Renato De Donato   co-datalets-creator
12
  ln["slide2Subtitle_en"] = "Select the fields on the left. The table will show the values related to the selected fields.";
fb05b400   Renato De Donato   controllet 2.0, n...
13
  ln["slide3Title_en"] = "SELECT VISUALIZATION";
256ece27   Renato De Donato   new controllet
14
15
16
  ln["slide3Subtitle_en"] = "Select a visualization, fill out inputs and options.";
  ln["back_en"] = "BACK TO THE FUTURE";
  ln["forward_en"] = "FORWARD";
fb05b400   Renato De Donato   controllet 2.0, n...
17
18
  
  //SELECT DATASET
256ece27   Renato De Donato   new controllet
19
  
34789a0e   Renato De Donato   jsdatachecker ln,...
20
21
22
  ln["selectedUrl_en"] = "Selected url";
  ln["wrongUrl_en"] = "Invalid url or data provider not supported yet.";
  
2e94028d   Renato De Donato   ...
23
24
25
  ln["providersDatasets_en"] = "FROM PROVIDERS";
  ln["spodUsersDatasets_en"] = "FROM COCREATED";
  ln["extendedDatasets_en"] = "FROM EXTENDED SEARCH";
d8eb088e   Renato De Donato   suggested
26
  ln["datasets_en"] = "DATASETS LIST";
34789a0e   Renato De Donato   jsdatachecker ln,...
27
  
a53fbbed   Renato De Donato   select-dataset ne...
28
  ln["provider_en"] = "Provider";
34789a0e   Renato De Donato   jsdatachecker ln,...
29
30
31
32
33
34
35
36
37
38
39
  ln["all_en"] = "All";
  ln["allDescription_en"] = "Shows the datasets of all associated providers.";
  ln["providerName_en"] = "Provider";
  ln["providerNameDescription_en"] = "Shows only the datasets of the selected provider.";
  
  //ln["view_en"] = "View";
  //ln["list_en"] = "List";
  //ln["listDescription_en"] = "Shows the datasets with a classic list.";
  //ln["tree_en"] = "Tree";
  //ln["treeDescription_en"] = "Shows the datasets with a tree map.";
  
2e94028d   Renato De Donato   ...
40
41
42
43
44
  //ln["search_en"] = "Search";
  //ln["standard_en"] = "Standard";
  //ln["standardDescription_en"] = "The search function works only on datasets names.";
  //ln["extended_en"] = "Extended [NOT AVAILABLE]";
  //ln["extendedDescription_en"] = "The search function works the entire contents of the datasets.";
34789a0e   Renato De Donato   jsdatachecker ln,...
45
46
47
48
49
50
51
52
53
  
  ln["version_en"] = "Version";
  ln["showLast_en"] = "Show last";
  ln["showLastDescription_en"] = "Shows only the latest version of the datasets.";
  ln["showAll_en"] = "Show all";
  ln["showAllDescription_en"] = "Shows all versions of the datasets.";
  
  //select-dataset-controllet
  ln["datasetsInfo_en"] = "DATASET INFO";
a53fbbed   Renato De Donato   select-dataset ne...
54
55
56
  ln["showing_en"] = "Showing";
  ln["to_en"] = "to";
  ln["of_en"] = "of";
893b1f01   Renato De Donato   ln
57
  ln["datasetsRows_en"] = "datasets";
34789a0e   Renato De Donato   jsdatachecker ln,...
58
  ln["search_en"] = "Search";
fb05b400   Renato De Donato   controllet 2.0, n...
59
60
  
  //SELECT DATA
fb05b400   Renato De Donato   controllet 2.0, n...
61
  
1a26bccd   Renato De Donato   ln update
62
63
64
65
66
  //select-fields
  ln["fields_en"] = "FIELDS";
  
  //data-table
  ln["selectedData_en"] = "SELECTED DATA";
a4b9ef13   Renato De Donato   css +ln
67
68
69
  ln["showing_en"] = "Showing";
  ln["to_en"] = "to";
  ln["of_en"] = "of";
1a26bccd   Renato De Donato   ln update
70
71
72
73
  ln["rows_en"] = "rows";
  ln["type_en"] = "TYPE";
  ln["warning_en"] = "WARNING";
  
256ece27   Renato De Donato   new controllet
74
75
76
77
78
79
  //expert
  ln["expert_en"] = "EXPERT MODE";
  ln["filters_en"] = "FILTERS";
  ln["groupBy_en"] = "GROUP BY";
  ln["query_en"] = "QUERY";
  
fb05b400   Renato De Donato   controllet 2.0, n...
80
81
82
83
  //filters
  ln["filterField_en"] = "Field";
  ln["filterOperation_en"] = "Operation";
  ln["filterValue_en"] = "Value";
f833bd4e   Renato De Donato   filter ln
84
  
256ece27   Renato De Donato   new controllet
85
86
87
  ln["disableFilters_en"] = "DISABLE FILTERS";
  ln["enableFilters_en"] = "ENABLE FILTERS";
  
a4b9ef13   Renato De Donato   css +ln
88
89
90
91
92
93
  ln["=_en"] = "=";   //is equal to
  ln["!=_en"] = "not =";  //is not equal to
  ln[">_en"] = ">";   //is greater than
  ln[">=_en"] = ">="; //is greater than or equal to
  ln["<_en"] = "<";   //is less than
  ln["<=_en"] = "<="; //is less than or equal to
fb05b400   Renato De Donato   controllet 2.0, n...
94
  ln["contains_en"] = "contains";
7464051f   Renato De Donato   not contains
95
  ln["notContains_en"] = "not contains";
fb05b400   Renato De Donato   controllet 2.0, n...
96
97
98
  ln["start_en"] = "start with";
  ln["ends_en"] = "ends with";
  
256ece27   Renato De Donato   new controllet
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
  //aggregators
  ln["GROUP BY_en"] = "GROUP BY";
  ln["CALCULATE_en"] = "CALCULATE";
  ln["Calculate_en"] = "Calculate";
  ln["aggregatorField_en"] = "Field";
  
  ln["disableGroupBy_en"] = "DISABLE GROUP BY";
  ln["enableGroupBy_en"] = "ENABLE GROUP BY";
  
  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";
  
fb05b400   Renato De Donato   controllet 2.0, n...
116
  //SELECT VISUALIZATION
256ece27   Renato De Donato   new controllet
117
  
fb05b400   Renato De Donato   controllet 2.0, n...
118
119
120
  ln["addDatalet_en"] = "ADD";
  ln["modifyDatalet_en"] = "MODIFY";
  
256ece27   Renato De Donato   new controllet
121
122
123
124
125
126
127
128
129
  //datalet-preview
  ln["previewTab_en"] = "DATALET PREVIEW";
  ln["infoTab_en"] = "DATALET INFO";
  
  //select-inputs
  ln["baseInfo_en"] = "BASE INFO";
  ln["inputs_en"] = "INPUTS";
  ln["options_en"] = "OPTIONS";
  
fb05b400   Renato De Donato   controllet 2.0, n...
130
131
132
133
  //vslider
  ln["search_en"] = "Search";
  
  ln["datatable_en"] = "Table";
256ece27   Renato De Donato   new controllet
134
135
136
137
  ln["barchart_en"] = "Bar Chart";
  ln["columnchart_en"] = "Column Chart";
  ln["areachart_en"] = "Area Chart";
  ln["linechart_en"] = "Line Chart";
fb05b400   Renato De Donato   controllet 2.0, n...
138
  ln["heatmap_en"] = "Heat Map";
256ece27   Renato De Donato   new controllet
139
140
141
  ln["piechart_en"] = "Pie Chart";
  ln["scatterchart_en"] = "Scatter Chart";
  ln["bubblechart_en"] = "Bubble Chart";
cc0a0122   Renato De Donato   new scatter + dat...
142
  ln["treemap_en"] = "Tree Map";
fb05b400   Renato De Donato   controllet 2.0, n...
143
  ln["leafletjs_en"] = "Map";
256ece27   Renato De Donato   new controllet
144
145
  ln["leafletjs-geojson_en"] = "Geojson Map";
  
a4b9ef13   Renato De Donato   css +ln
146
147
148
149
150
151
152
153
154
155
156
157
  ln["datatableDescription_en"] = "A table is a means of arranging data in rows and columns.";
  ln["barchartDescription_en"] = "A bar chart is a chart that presents grouped data with rectangular bars plotted horizontally with lengths proportional to the values that they represent.";
  ln["columnchartDescription_en"] = "A column chart is a chart that presents grouped data with rectangular bars plotted vertically with lengths proportional to the values that they represent.";
  ln["areachartDescription_en"] = "An area chart is a chart which displays graphically quantitive data. The area between axis and line are emphasized with colors and textures. Commonly one compares with the area chart two or more quantities.";
  ln["linechartDescription_en"] = "A line chart is chart which displays information as a series of data points called 'markers' connected by straight line segments. A line chart is often used to visualize a trend in data over intervals of time.";
  ln["heatmapDescription_en"] = "A heat map is a graphical representation of data where the individual values contained in a matrix are represented as colors.";
  ln["piechartDescription_en"] = "A pie chart is a circular statistical graphic, which is divided into slices to illustrate numerical proportion. In the pie chart, the arc length of each slice, and consequently its central angle and area, is proportional to the quantity it represents.";
  ln["scatterchartDescription_en"] = "A scatter chart is a type of plot or mathematical diagram using Cartesian coordinates to display values for typically two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.";
  ln["bubblechartDescription_en"] = "A bubble chart is a type of chart that displays three dimensions of data. Each entity with its triplet (v1, v2, v3) of associated data is plotted as a disk that expresses two of the vi values through the disk's xy location and the third through its size.";
  ln["treemapDescription_en"] = "A tree map is a chart for displaying hierarchical data by using nested rectangles.";
  ln["leafletjsDescription_en"] = "";
  ln["leafletjs-geojsonDescription_en"] = "";
fb05b400   Renato De Donato   controllet 2.0, n...
158
159
  
  //inputs
256ece27   Renato De Donato   new controllet
160
161
  ln["title_en"] = "Title"
  ln["description_en"] = "Description";
fb05b400   Renato De Donato   controllet 2.0, n...
162
  
a4b9ef13   Renato De Donato   css +ln
163
164
165
  ln["sortAscending_en"] = "SORTED ASCENDING";
  ln["sortDescending_en"] = "SORTED DESCENDING";
  ln["unsort_en"] = "UNSORTED";
fb05b400   Renato De Donato   controllet 2.0, n...
166
  
256ece27   Renato De Donato   new controllet
167
168
169
  //--> "_" not allowed!
  ln["TITLE_en"] = "TITLE";
  ln["DESCRIPTION_en"] = "DESCRIPTION";
a4b9ef13   Renato De Donato   css +ln
170
171
172
173
  ln["XAxis_en"] = "X-AXIS";
  ln["YAxis_en"] = "Y-AXIS";
  ln["NumericXAxis_en"] = "X-AXIS";
  ln["NumericYAxis_en"] = "Y-AXIS";
fb05b400   Renato De Donato   controllet 2.0, n...
174
  ln["Column_en"] = "COLUMN";
9819a403   Renato De Donato   bubble scatter tr...
175
176
  ln["Level_en"] = "LEVEL";
  ln["SliceLabels_en"] = "LABEL";
256ece27   Renato De Donato   new controllet
177
  ln["SliceSizes_en"] = "SIZE";
fb05b400   Renato De Donato   controllet 2.0, n...
178
179
  ln["Latitude_en"] = "LATITUDE";
  ln["Longitude_en"] = "LONGITUDE";
256ece27   Renato De Donato   new controllet
180
  ln["BalloonContent_en"] = "BALLOON CONTENT";
899e9758   Renato De Donato   geojson <3
181
  ln["GEOJSON_en"] = "GEOJSON";
a4b9ef13   Renato De Donato   css +ln
182
  ln["GEOJSONContent_en"] = "GEOJSON CONTENT";
9819a403   Renato De Donato   bubble scatter tr...
183
  ln["BubbleContent_en"] = "BUBBLE CONTENT";
256ece27   Renato De Donato   new controllet
184
185
186
  ln["BubbleSize_en"] = "BUBBLE SIZE";
  ln["Categories_en"] = "CATEGORY";
  
a4b9ef13   Renato De Donato   css +ln
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
  ln["TITLEDescription_en"] = "The datalet title.";
  ln["DESCRIPTIONDescription_en"] = "The datalet description.";
  ln["XAxisDescription_en"] = "The x-axis.";
  ln["YAxisDescription_en"] = "The y-axis.";
  ln["NumericXAxisDescription_en"] = "The x-axis.";
  ln["NumericYAxisDescription_en"] = "The y-axis.";
  ln["ColumnDescription_en"] = "The column of the table.";
  ln["LevelDescription_en"] = "The level of the tree map.";
  ln["SliceLabelsDescription_en"] = "The label of the slices.";
  ln["SliceSizesDescription_en"] = "The size of the slices.";
  ln["LatitudeDescription_en"] = "The latitude of locations.";
  ln["LongitudeDescription_en"] = "The longitude of locations.";
  ln["BalloonContentDescription_en"] = "The content of balloons.";
  ln["GEOJSONDescription_en"] = "The GeoJSON data.";
  ln["GEOJSONContentDescription_en"] = "The content of GeoJSON.";
  ln["BubbleContentDescription_en"] = "The content of bubbles.";
  ln["BubbleSizeDescription_en"] = "The size of bubbles.";
  ln["CategoriesDescription_en"] = "The category that splits the y-axis values. If selected only the first selected y-axis will be considered.";
fb05b400   Renato De Donato   controllet 2.0, n...
205
206
  
  //options
fb05b400   Renato De Donato   controllet 2.0, n...
207
208
209
  ln["x-axis-label_en"] = "X Axis Label";
  ln["y-axis-label_en"] = "Y Axis Label";
  ln["suffix_en"] = "Tooltip Suffix";
893b1f01   Renato De Donato   ln
210
  ln["legend_en"] = "Legend";
256ece27   Renato De Donato   new controllet
211
  ln["data-labels_en"] = "Show Data Labels";
fb05b400   Renato De Donato   controllet 2.0, n...
212
  ln["stack_en"] = "Stack";
256ece27   Renato De Donato   new controllet
213
  ln["theme_en"] = "Theme";
fb05b400   Renato De Donato   controllet 2.0, n...
214
215
  ln["donut_en"] = "Donut";
  
256ece27   Renato De Donato   new controllet
216
217
218
219
220
221
222
223
224
225
226
227
  ln["true_en"] = "Yes";
  ln["false_en"] = "No";
  ln["bottom_en"] = "Yes: Bottom";
  ln["topRight_en"] = "Yes: Top Right";
  ln["normal_en"] = "Yes: Normal";
  ln["percent_en"] = "Yes: Percent";
  ln["themeBase_en"] = "Base";
  ln["themeDarkUnika_en"] = "Dark Unika";
  ln["themeSandSignika_en"] = "Sand Signika";
  ln["themeGridLight_en"] = "Grid Light";
  ln["themeSpod_en"] = "Spod";
  
a4b9ef13   Renato De Donato   css +ln
228
229
230
  ln["x-axis-labelDescription_en"] = "The x-axis label.";
  ln["y-axis-labelDescription_en"] = "The y-axis label.";
  ln["suffixDescription_en"] = "The suffix added to data labels in the tooltip.";
893b1f01   Renato De Donato   ln
231
  ln["legendDescription_en"] = "The legend position.";
256ece27   Renato De Donato   new controllet
232
233
  ln["data-labelsDescription_en"] = "Show/hide data labels.";
  ln["themeDescription_en"] = "The theme affects the appearance and colors of the chart.";
a4b9ef13   Renato De Donato   css +ln
234
235
236
237
238
239
240
  ln["stackDescription_en"] = "The stack type.";
  ln["donutDescription_en"] = "Pie will become Donut! :) (or viceversa).";
  
  /******** IT ********/
  
  //PAGE SLIDER
  
893b1f01   Renato De Donato   ln
241
242
243
244
245
246
247
248
  ln["slide1Title_it"] = "SELEZIONA UN DATASET";
  ln["slide1Subtitle_it"] = "Seleziona un dataset dall'elenco oppure copia-incolla l'url di un dataset.";
  ln["slide2Title_it"] = "SELEZIONA I DATI";
  ln["slide2Subtitle_it"] = "Seleziona i campi sulla sinistra. La tabella mostrerà i valori relativi ai campi selezionati";
  ln["slide3Title_it"] = "SELEZIONA LA VISUALIZZAZIONE";
  ln["slide3Subtitle_it"] = "Seleziona una visualizzazione, compila i campi e le opzioni.";
  ln["back_it"] = "RITORNO AL FUTURO";
  ln["forward_it"] = "AVANTI";
a4b9ef13   Renato De Donato   css +ln
249
250
251
  
  //SELECT DATASET
  
893b1f01   Renato De Donato   ln
252
253
254
255
256
257
258
  ln["selectedUrl_it"] = "Url selezionato";
  ln["wrongUrl_it"] = "Url non valido o provider dati non ancora supportato.";
  
  ln["providersDatasets_it"] = "DATASETS DEI PROVIDER";
  ln["spodUsersDatasets_it"] = "DATASET COCREATI";
  ln["datasets_it"] = "LISTA DEI DATASET";
  
a4b9ef13   Renato De Donato   css +ln
259
  ln["provider_it"] = "Provider";
893b1f01   Renato De Donato   ln
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
  ln["all_it"] = "Tutti";
  ln["allDescription_it"] = "Mostra i dataset di tutti i provider associati..";
  ln["providerName_it"] = "Provider";
  ln["providerNameDescription_it"] = "Mostra solo i dataset del provider selezionato.";
  
  ln["search_it"] = "Ricerca";
  ln["standard_it"] = "Standard";
  ln["standardDescription_it"] = "La ricerca funziona solo sui nommi dei dataset.";
  ln["extended_it"] = "Extended [NOT AVAILABLE]";
  ln["extendedDescription_it"] = "La ricerca funziona sull'intero contenuto dei dataset;.";
  
  ln["version_it"] = "Versionw";
  ln["showLast_it"] = "Mostra l'ultima";
  ln["showLastDescription_it"] = "Mostra solo l'ultima versione dei dataset.";
  ln["showAll_it"] = "Mostra tutti";
  ln["showAllDescription_it"] = "Mostra tutte le versioni dei dataset.";
  
  //select-dataset-controllet
  ln["datasetsInfo_it"] = "INFORMAZIONI SUL DATASET";
  ln["showing_it"] = "Mostrati";
  ln["to_it"] = "a";
  ln["of_it"] = "di";
90562b46   Renato De Donato   ln
282
  ln["datasetsRows_it"] = "dataset";
893b1f01   Renato De Donato   ln
283
  ln["search_it"] = "Ricerca";
a4b9ef13   Renato De Donato   css +ln
284
285
286
287
  
  //SELECT DATA
  
  //select-fields
893b1f01   Renato De Donato   ln
288
  ln["fields_it"] = "CAMPI";
a4b9ef13   Renato De Donato   css +ln
289
290
  
  //data-table
893b1f01   Renato De Donato   ln
291
292
293
294
295
296
297
  ln["selectedData_it"] = "DATI SELEZIONATI";
  ln["showing_it"] = "Mostrati";
  ln["to_it"] = "a";
  ln["of_it"] = "di";
  ln["rows_it"] = "file";
  ln["type_it"] = "SCRIVERE";
  ln["warning_it"] = "ATTENZIONE";
a4b9ef13   Renato De Donato   css +ln
298
299
  
  //expert
893b1f01   Renato De Donato   ln
300
301
302
303
  ln["expert_it"] = "MODALITA' ESPERTO";
  ln["filters_it"] = "FILTRI";
  ln["groupBy_it"] = "RAGGRUPPA PER";
  ln["query_it"] = "INTERROGARE";
a4b9ef13   Renato De Donato   css +ln
304
305
  
  //filters
893b1f01   Renato De Donato   ln
306
307
308
  ln["filterField_it"] = "Campo";
  ln["filterOperation_it"] = "Operazione";
  ln["filterValue_it"] = "Valore";
a4b9ef13   Renato De Donato   css +ln
309
  
893b1f01   Renato De Donato   ln
310
311
  ln["disableFilters_it"] = "DISABILITA FILTRI";
  ln["enableFilters_it"] = "ABILITA FILTRI";
a4b9ef13   Renato De Donato   css +ln
312
313
  
  ln["=_it"] = "=";   //is equal to
893b1f01   Renato De Donato   ln
314
  ln["!=_it"] = "non =";  //is not equal to
a4b9ef13   Renato De Donato   css +ln
315
316
317
318
  ln[">_it"] = ">";   //is greater than
  ln[">=_it"] = ">="; //is greater than or equal to
  ln["<_it"] = "<";   //is less than
  ln["<=_it"] = "<="; //is less than or equal to
893b1f01   Renato De Donato   ln
319
320
321
322
  ln["contains_it"] = "contiene";
  ln["notContains_it"] = "non contiene";
  ln["start_it"] = "inizia con";
  ln["ends_it"] = "termina con";
a4b9ef13   Renato De Donato   css +ln
323
324
  
  //aggregators
893b1f01   Renato De Donato   ln
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
  ln["GROUP BY_it"] = "RAGGRUPPA PER";
  ln["CALCULATE_it"] = "CALCOLA";
  ln["Calculate_it"] = "Calcola";
  ln["aggregatorField_it"] = "Campo";
  
  ln["disableGroupBy_it"] = "DISABILITA RAGGRUPPAMENTO ";
  ln["enableGroupBy_it"] = "ABILITA RAGGRUPPAMENTO";
  
  ln["COUNT_it"] = "TOTALE di";
  ln["SUM_it"] = "SOMMA di";
  ln["MIN_it"] = "MINORE di";
  ln["MAX_it"] = "MASSIMO di";
  ln["AVG_it"] = "AVG di";
  ln["FIRST_it"] = "PRIMO di";
  ln["LAST_it"] = "ULTIMO di";
a4b9ef13   Renato De Donato   css +ln
340
341
342
  
  //SELECT VISUALIZATION
  
893b1f01   Renato De Donato   ln
343
344
  ln["addDatalet_it"] = "AGGIUNGI";
  ln["modifyDatalet_it"] = "MODIFICA";
a4b9ef13   Renato De Donato   css +ln
345
346
  
  //datalet-preview
893b1f01   Renato De Donato   ln
347
  ln["previewTab_it"] = "ANTEPRIMA DATALET";
a4b9ef13   Renato De Donato   css +ln
348
349
350
  ln["infoTab_it"] = "DATALET INFO";
  
  //select-inputs
893b1f01   Renato De Donato   ln
351
352
353
  ln["baseInfo_it"] = "INFO BASE";
  ln["inputs_it"] = "INPUT";
  ln["options_it"] = "OPZIONI";
a4b9ef13   Renato De Donato   css +ln
354
355
  
  //vslider
893b1f01   Renato De Donato   ln
356
  ln["search_it"] = "Cerca";
a4b9ef13   Renato De Donato   css +ln
357
  
893b1f01   Renato De Donato   ln
358
359
360
361
362
  ln["datatable_it"] = "Tabella";
  ln["barchart_it"] = "Grafico a barre";
  ln["columnchart_it"] = "Istogramma";
  ln["areachart_it"] = "Grafico ad area";
  ln["linechart_it"] = "Grafico a linee";
a4b9ef13   Renato De Donato   css +ln
363
  ln["heatmap_it"] = "Heat Map";
893b1f01   Renato De Donato   ln
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
  ln["piechart_it"] = "Grafico a torta";
  ln["scatterchart_it"] = "Grafico a dispersione";
  ln["bubblechart_it"] = "Diagramma a bolle";
  ln["treemap_it"] = "Mappa ad albero";
  ln["leafletjs_it"] = "Mappa";
  ln["leafletjs-geojson_it"] = "Mappa Geojson";
  
  ln["datatableDescription_it"] = "Una tabella è un mezzo per organizzare i dati in righe e colonne.";
  ln["barchartDescription_it"] = "Un grafico a barre è un grafico che presenta dati raggruppati in barre rettangolari impostate orizzontalmente con la lunghezza proporzionale al valore rappresentato.";
  ln["columnchartDescription_it"] = "Un istogramma è un grafico raffigurante dati raggruppati in barre rettangolari impostate verticalmente con lunghezza proporzionale al valore rappresentato.";
  ln["areachartDescription_it"] = "Un grafico ad area è un grafico che mostra graficamente dati quantitativi. L'area tra le assi e la linea sono enfatizzate con colori e texture. Usualmente si compara il grafico ad area con due o più quantità.";
  ln["linechartDescription_it"] = "Un grafico a linee è un grafico che mostra le informazioni sottoforma di una serie di dati puntuali definiti 'markers' e collegati tra loro con segmenti di linee dritte. Il grafico a linee è spesso utilizzato per visualizzare trend lungo un intervallo temporale.";
  ln["heatmapDescription_it"] = "Una heat map è una rappresentazione grafica di dati in cui i valori individuali contenuti in una matrice sono rappresentati con colori.";
  ln["piechartDescription_it"] = "Un grafico a torta è un grafico statistico e circolare che è diviso in fette che mostrano la proporzione numerica. Nel grafico a torta la lunghezza dell'arco di ogni fetta, e di conseguenza il suo angolo al centro e l'area, è proporzionato alla quantita che rappresenta.";
  ln["scatterchartDescription_it"] = "Un grafico a dispersione è un tipo di grafico o diagramma matematico che utilizza coordinate cartesiane per mostrare valori tipicamente per due variabili per un set di dati. I dati sono mostrati come un insieme di punti, ciascuno avente il valore di una variabile che ne determina la posizione sull'asse orizzontale e il valore dell'altra variabile ne determina la posizione sull'asse verticale.";
  ln["bubblechartDescription_it"] = " Un diagramma a bolle è un tipo di diagramma che mostra tre dimensioni dei dati. Ciascuna entità con la sua tripletta (v1,v2,v3) di dati associati viene impostata come un disco che esprime due dei valori di vi attraverso la localizzazione dell'xy del disco mentre la terza vi è la dimensione del disco stessa.";
  ln["treemapDescription_it"] = " Una mappa ad albero è un diagramma per rappresentare dati gerarchicamente utilizzando rettangoli nidificati.";
a4b9ef13   Renato De Donato   css +ln
381
382
383
384
  ln["leafletjsDescription_it"] = "";
  ln["leafletjs-geojsonDescription_it"] = "";
  
  //inputs
893b1f01   Renato De Donato   ln
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
  ln["title_it"] = "Titolo"
  ln["description_it"] = "Descrizione";
  
  ln["sortAscending_it"] = "ORDINE CRESCENTE";
  ln["sortDescending_it"] = "ORDINE DECRESCENTE";
  ln["unsort_it"] = "NON ORDINATI";
  
  ln["TITLE_it"] = "TITOLO";
  ln["DESCRIPTION_it"] = "DESCRIZIONE";
  ln["XAxis_it"] = "ASSE X";
  ln["YAxis_it"] = "ASSE Y";
  ln["NumericXAxis_it"] = "ASSE X";
  ln["NumericYAxis_it"] = "ASSE Y";
  ln["Column_it"] = "COLONNA";
  ln["Level_it"] = "LIVELLO";
  ln["SliceLabels_it"] = "ETICHETTA";
  ln["SliceSizes_it"] = "DIMENSIONE";
  ln["Latitude_it"] = "LATITUDINE";
  ln["Longitude_it"] = "LONGITUDINE";
  ln["BalloonContent_it"] = "CONTENUTO DEL BALLOON";
a4b9ef13   Renato De Donato   css +ln
405
  ln["GEOJSON_it"] = "GEOJSON";
893b1f01   Renato De Donato   ln
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
  ln["GEOJSONContent_it"] = "CONTENUTO DEL GEOJSON";
  ln["BubbleContent_it"] = "CONTENUTO DELLA BOLLA";
  ln["BubbleSize_it"] = "DIMENSIONE DELLA BOLLA";
  ln["Categories_it"] = "CATEGORIA";
  
  ln["TITLEDescription_it"] = "Titolo del datalet";
  ln["DESCRIPTIONDescription_it"] = "Descrizione datalet";
  ln["XAxisDescription_it"] = "Asse x";
  ln["YAxisDescription_it"] = "Asse y";
  ln["NumericXAxisDescription_it"] = "Asse x";
  ln["NumericYAxisDescription_it"] = "Asse y";
  ln["ColumnDescription_it"] = "Colonna della tabella";
  ln["LevelDescription_it"] = "Livello della mappa ad albero";
  ln["SliceLabelsDescription_it"] = "Etichette delle fette";
  ln["SliceSizesDescription_it"] = "Dimensione delle fette";
  ln["LatitudeDescription_it"] = "Latitudine della posizione";
  ln["LongitudeDescription_it"] = "Longitudine della posizione";
  ln["BalloonContentDescription_it"] = "Contenuto dei balloons";
  ln["GEOJSONDescription_it"] = "Dati GeoJSON.";
  ln["GEOJSONContentDescription_it"] = "Contenuto del GeoJSON.";
  ln["BubbleContentDescription_it"] = "Contenuto delle bolle.";
  ln["BubbleSizeDescription_it"] = "Dimensione delle bolle.";
  ln["CategoriesDescription_it"] = "Categoria che separa l'asse y. Se selezionata, solo l'asse y scelta per prima sarà considerata.";
a4b9ef13   Renato De Donato   css +ln
429
430
  
  //options
893b1f01   Renato De Donato   ln
431
432
433
434
435
436
437
438
439
440
  ln["x-axis-label_it"] = "Etichetta asse X";
  ln["y-axis-label_it"] = "Etichetta asse Y";
  ln["suffix_it"] = "Suffisso Tooltip";
  ln["legend_it"] = "Leggenda";
  ln["data-labels_it"] = "Mostra etichette dati";
  ln["stack_it"] = "Pila";
  ln["theme_it"] = "Tema";
  ln["donut_it"] = "Ciambella";
  
  ln["true_it"] = "Si";
a4b9ef13   Renato De Donato   css +ln
441
  ln["false_it"] = "No";
893b1f01   Renato De Donato   ln
442
443
444
445
  ln["bottom_it"] = "Si: in fondo";
  ln["topRight_it"] = "Si: in alto a destra";
  ln["normal_it"] = "Si: Normale";
  ln["percent_it"] = "Si: Percentuale";
a4b9ef13   Renato De Donato   css +ln
446
447
448
449
450
451
  ln["themeBase_it"] = "Base";
  ln["themeDarkUnika_it"] = "Dark Unika";
  ln["themeSandSignika_it"] = "Sand Signika";
  ln["themeGridLight_it"] = "Grid Light";
  ln["themeSpod_it"] = "Spod";
  
893b1f01   Renato De Donato   ln
452
453
454
455
456
457
458
459
  ln["x-axis-labelDescription_it"] = "Etichetta asse X";
  ln["y-axis-labelDescription_it"] = "Etichetta asse Y";
  ln["suffixDescription_it"] = " Suffisso aggiunto all'etichette dati nel tooltip.";
  ln["legendDescription_it"] = "Posizione leggenda";
  ln["data-labelsDescription_it"] = "Mostra/Nascondi etichette dati";
  ln["themeDescription_it"] = "Il tema influenza l'aspetto e i colori del grafico.";
  ln["stackDescription_it"] = "Tipologia di pila";
  ln["donutDescription_it"] = "La torta si trasforma in ciambella! :) (o viceversa).";
a4b9ef13   Renato De Donato   css +ln
460
461
462
463
464
  
  /******** FR ********/
  
  //PAGE SLIDER
  
893b1f01   Renato De Donato   ln
465
466
467
468
469
470
471
472
  ln["slide1Title_fr"] = "SÉLECTIONNER UN JEU DE DONNÉES";
  ln["slide1Subtitle_fr"] = "Rechercher ou copier/coller l’url du jeu de données.";
  ln["slide2Title_fr"] = "SÉLECTIONNER DONNÉES";
  ln["slide2Subtitle_fr"] = "Sélectionner les champs sur la gauche. Le tableau présentera les valeurs liées aux champs sélectionnés.";
  ln["slide3Title_fr"] = "SÉLECTIONNER UN MODE DE VISUALISATION";
  ln["slide3Subtitle_fr"] = "Sélectionner une visualisation, compléter les données et les options.";
  ln["back_fr"] = "RETOUR";
  ln["forward_fr"] = "AVANT";
a4b9ef13   Renato De Donato   css +ln
473
474
475
  
  //SELECT DATASET
  
893b1f01   Renato De Donato   ln
476
477
478
479
480
481
482
  ln["selectedUrl_fr"] = "API URL sélectionné";
  ln["wrongUrl_fr"] = "URL invalide ou fournisseur de données pas encore supporté.";
  
  ln["providersDatasets_fr"] = "DATASET DE PROVIDER";
  ln["spodUsersDatasets_fr"] = "DATASET COCRÉÉ";
  ln["datasets_fr"] = "LISTE DE DATASET";
  
a4b9ef13   Renato De Donato   css +ln
483
  ln["provider_fr"] = "Provider";
893b1f01   Renato De Donato   ln
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
  ln["all_fr"] = "Tout";
  ln["allDescription_fr"] = "Hows les ensembles de données de tous les fournisseurs associés.";
  ln["providerName_fr"] = "Provider";
  ln["providerNameDescription_fr"] = "Affiche uniquement les ensembles de données du fournisseur sélectionné.";
  
  ln["search_fr"] = "Rechercher";
  ln["standard_fr"] = "Standard";
  ln["standardDescription_fr"] = "La fonction de recherche ne fonctionne que sur des ensembles de données des noms.";
  ln["extended_fr"] = "Extended [NON DISPONIBLE]";
  ln["extendedDescription_fr"] = "La fonction de recherche fonctionne tout le contenu des ensembles de données.";
  
  ln["version_fr"] = "Version";
  ln["showLast_fr"] = "Montre la dernière";
  ln["showLastDescription_fr"] = "Indique que la dernière version des ensembles de données.";
  ln["showAll_fr"] = "Montre tout";
  ln["showAllDescription_fr"] = "Montre toutes les versions des ensembles de données.";
  
  //select-dataset-controllet
  ln["datasetsInfo_fr"] = "INFORMATIONS SUR DATASET";
  ln["showing_fr"] = "Aperçu";
  ln["to_fr"] = "à";
  ln["of_fr"] = "de";
90562b46   Renato De Donato   ln
506
  ln["datasetsRows_fr"] = "dataset";
893b1f01   Renato De Donato   ln
507
  ln["search_fr"] = "Rechercher";
a4b9ef13   Renato De Donato   css +ln
508
509
510
511
  
  //SELECT DATA
  
  //select-fields
893b1f01   Renato De Donato   ln
512
  ln["fields_fr"] = "CHAMPS";
a4b9ef13   Renato De Donato   css +ln
513
514
  
  //data-table
893b1f01   Renato De Donato   ln
515
516
517
518
519
  ln["selectedData_fr"] = "DONNÉES SÉLECTIONNÉES";
  ln["showing_fr"] = "Aperçu";
  ln["to_fr"] = "à";
  ln["of_fr"] = "de";
  ln["rows_fr"] = "rangées";
a4b9ef13   Renato De Donato   css +ln
520
  ln["type_fr"] = "TYPE";
893b1f01   Renato De Donato   ln
521
  ln["warning_fr"] = "AVERTISSEMENT";
a4b9ef13   Renato De Donato   css +ln
522
523
  
  //expert
893b1f01   Renato De Donato   ln
524
525
526
527
  ln["expert_fr"] = "MODE EXPERT";
  ln["filters_fr"] = "FILTRES";
  ln["groupBy_fr"] = "GROUPE PAR";
  ln["query_fr"] = "REQUÊTE";
a4b9ef13   Renato De Donato   css +ln
528
529
  
  //filters
893b1f01   Renato De Donato   ln
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
  ln["filterField_fr"] = "Champ";
  ln["filterOperation_fr"] = "Opération";
  ln["filterValue_fr"] = "Valeur";
  
  ln["disableFilters_fr"] = "DÉSACTIVER LES FILTRES";
  ln["enableFilters_fr"] = "ACTIVER LES FILTRES";
  
  ln["=_fr"] = "=";   //est égal à
  ln["!=_fr"] = "not =";  //n'est pas égal à
  ln[">_fr"] = ">";   //est plus grand que
  ln[">=_fr"] = ">="; //est plus grand ou égal à
  ln["<_fr"] = "<";   //est inférieur à
  ln["<=_fr"] = "<="; //est inférieur ou égal à
  ln["contains_fr"] = "contient";
  ln["notContains_fr"] = "ne contient pas";
  ln["start_fr"] = "commence par";
  ln["ends_fr"] = "se finit par";
a4b9ef13   Renato De Donato   css +ln
547
548
  
  //aggregators
893b1f01   Renato De Donato   ln
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
  ln["GROUP BY_fr"] = "GROUPE PAR";
  ln["CALCULATE_fr"] = "CALCULER";
  ln["Calculate_fr"] = "Calculer";
  ln["aggregatorField_fr"] = "Champ";
  
  ln["disableGroupBy_fr"] = "DÉSACTIVER LE GROUPE PAR";
  ln["enableGroupBy_fr"] = "ACTIVER LE GROUPE PAR";
  
  ln["COUNT_fr"] = "COMPTE de";
  ln["SUM_fr"] = "SOMME de";
  ln["MIN_fr"] = "MIN de";
  ln["MAX_fr"] = "MAX de";
  ln["AVG_fr"] = "AVG de";
  ln["FIRST_fr"] = "PREMIER de";
  ln["LAST_fr"] = "DERNIER de";
a4b9ef13   Renato De Donato   css +ln
564
565
566
  
  //SELECT VISUALIZATION
  
893b1f01   Renato De Donato   ln
567
568
  ln["addDatalet_fr"] = "AJOUTER";
  ln["modifyDatalet_fr"] = "MODIFIER";
a4b9ef13   Renato De Donato   css +ln
569
570
  
  //datalet-preview
893b1f01   Renato De Donato   ln
571
572
  ln["previewTab_fr"] = "APERÇU DU DATALET";
  ln["infoTab_fr"] = "INFORMATIONS DU DATALET";
a4b9ef13   Renato De Donato   css +ln
573
574
  
  //select-inputs
893b1f01   Renato De Donato   ln
575
576
  ln["baseInfo_fr"] = "INFORMATIONS DE BASE";
  ln["inputs_fr"] = "DONNÉES";
a4b9ef13   Renato De Donato   css +ln
577
578
579
  ln["options_fr"] = "OPTIONS";
  
  //vslider
893b1f01   Renato De Donato   ln
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
  ln["search_fr"] = "Rechercher";
  
  ln["datatable_fr"] = "Tableau";
  ln["barchart_fr"] = "Diagramme à barres";
  ln["columnchart_fr"] = "Histogramme";
  ln["areachart_fr"] = "Diagramme de zone";
  ln["linechart_fr"] = "Diagramme linéaire";
  ln["heatmap_fr"] = "Carte Thermique";
  ln["piechart_fr"] = "Diagramme Circulaire";
  ln["scatterchart_fr"] = "Diagramme de dispersion";
  ln["bubblechart_fr"] = "Diagramme à bulles";
  ln["treemap_fr"] = "Carte d'arborescence";
  ln["leafletjs_fr"] = "Carte";
  ln["leafletjs-geojson_fr"] = "Carte Geojson";
  
  ln["datatableDescription_fr"] = "Un tableau est un moyen d'organiser les données dans des rangées et des colonnes.";
  ln["barchartDescription_fr"] = "Un diagramme à barres est un graphique qui représente des données groupées au moyen de barres rectangulaires disposées horizontallement avec des longueurs proportionnelles aux valeurs qu'elles représentent.";
  ln["columnchartDescription_fr"] = "Un histogramme est un graphique qui représente des données groupées au moyen de barres rectangulaires disposées verticallement avec des longueurs proportionnelles aux valeurs qu'elles représentent.";
  ln["areachartDescription_fr"] = "Un diagramme de zone est un graphique qui propose des données quantitatives de manière graphique. La zone entre l'axe et la ligne est accentuée par des couleurs et des textures. En général, minimum deux données quantitatives sont utilisées pour être comparées dans ce genre de graphique.";
  ln["linechartDescription_fr"] = "Un diagramme linéaire est un graphique qui propose des informations sous forme d'une série de points de données appelés des 'marqueurs', reliés entre eux pour former des lignes continues. Un diagramme linéaire est souvent utilisé pour visualiser une tendance dans les données en parallèle avec des périodes de temps données.";
  ln["heatmapDescription_fr"] = "Une carte thermique est une représentation graphique de données dans laquelle les valeurs individuelles contenues dans une matrice sont représentées à l'aide de couleurs.";
  ln["piechartDescription_fr"] = "Un diagramme circulaire est un graphique statistique qui est séparé en deux pour illustrer des proportions numériques. Dans un diagramme circulaire, la longueur de l'arc de chaque parties, et par conséquent son angle central et sa superficie, est proportionnelle à la quantité qu'elle représente.";
  ln["scatterchartDescription_fr"] = "Un diagramme de dispersion est un type de graphique ou de diagramme mathématque qui utilise des coordonnées cartésiennes pour mettre en évidence des valeurs pour deux variables d'un jeu de données. Les données sont mises se traduisent par un regroupement de points, chacun ayant la valeur d'une variable déterminant la position sur l'axe horizontal et la valeur de l'autre variable qui détermine la position sur l'axe vertical.";
  ln["bubblechartDescription_fr"] = "Un diagramme à bulles est un graphique qui propose des données à trois dimensions. Chaque entité avec ses triplets (v1, v2, v3) de données associées est agencée comme un disque qui exprime deux des valeurs vi au moyen de l'emplacement xy du disque ainsi que de la taille du troisième.";
  ln["treemapDescription_fr"] = "Une arte d'arborescence est un graphique qui permet de visualiser les données hiérarchiques à l'aide de rectangles imbriqués.";
a4b9ef13   Renato De Donato   css +ln
605
606
607
608
  ln["leafletjsDescription_fr"] = "";
  ln["leafletjs-geojsonDescription_fr"] = "";
  
  //inputs
893b1f01   Renato De Donato   ln
609
  ln["title_fr"] = "Titre";
a4b9ef13   Renato De Donato   css +ln
610
611
  ln["description_fr"] = "Description";
  
893b1f01   Renato De Donato   ln
612
613
614
  ln["sortAscending_fr"] = "CLASSÉ DE MANIÈRE ASCENDANTE";
  ln["sortDescending_fr"] = "CLASSÉ DE MANIÈRE DESCENDANTE";
  ln["unsort_fr"] = "PAS CLASSÉ";
a4b9ef13   Renato De Donato   css +ln
615
  
893b1f01   Renato De Donato   ln
616
  ln["TITLE_fr"] = "TITRE";
a4b9ef13   Renato De Donato   css +ln
617
  ln["DESCRIPTION_fr"] = "DESCRIPTION";
893b1f01   Renato De Donato   ln
618
619
620
621
622
623
  ln["XAxis_fr"] = "AXE DES X";
  ln["YAxis_fr"] = "AXE DES Y";
  ln["NumericXAxis_fr"] = "AXE DES X";
  ln["NumericYAxis_fr"] = "AXE DES Y";
  ln["Column_fr"] = "COLONNE";
  ln["Level_fr"] = "NIVEAU";
a4b9ef13   Renato De Donato   css +ln
624
  ln["SliceLabels_fr"] = "LABEL";
893b1f01   Renato De Donato   ln
625
  ln["SliceSizes_fr"] = "TAILLE";
a4b9ef13   Renato De Donato   css +ln
626
627
  ln["Latitude_fr"] = "LATITUDE";
  ln["Longitude_fr"] = "LONGITUDE";
893b1f01   Renato De Donato   ln
628
  ln["BalloonContent_fr"] = "CONTENU DE LA BULLE";
a4b9ef13   Renato De Donato   css +ln
629
  ln["GEOJSON_fr"] = "GEOJSON";
893b1f01   Renato De Donato   ln
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
  ln["GEOJSONContent_fr"] = "CONTENU GEOJSON";
  ln["BubbleContent_fr"] = "CONTENU DE LA BULLE";
  ln["BubbleSize_fr"] = "TAILLE DE LA BULLE";
  ln["Categories_fr"] = "CATÉGORIE";
  
  ln["TITLEDescription_fr"] = "Le titre du datalet.";
  ln["DESCRIPTIONDescription_fr"] = "La description du datalet.";
  ln["XAxisDescription_fr"] = "L'axe des x.";
  ln["YAxisDescription_fr"] = "L'axe des y.";
  ln["NumericXAxisDescription_fr"] = "L'axe des x.";
  ln["NumericYAxisDescription_fr"] = "L'axe des y.";
  ln["ColumnDescription_fr"] = "La colonne du tableau.";
  ln["LevelDescription_fr"] = "Le niveau de la carte d'arborescence.";
  ln["SliceLabelsDescription_fr"] = "Le label des parts.";
  ln["SliceSizesDescription_fr"] = "La taille des parts.";
  ln["LatitudeDescription_fr"] = "La latitude des localisations.";
  ln["LongitudeDescription_fr"] = "La longitude des localisations.";
  ln["BalloonContentDescription_fr"] = "Le contenu des bulles.";
  ln["GEOJSONDescription_fr"] = "Les données GeoJSON.";
  ln["GEOJSONContentDescription_fr"] = "Le contenu de GeoJSON.";
  ln["BubbleContentDescription_fr"] = "Le contenu des bulles.";
  ln["BubbleSizeDescription_fr"] = "La taille des bulles.";
  ln["CategoriesDescription_fr"] = "La catégorie qui sépare les valeurs de l'axe des x. Si sélectionné, seulement le premier axe des y sera considéré.";
a4b9ef13   Renato De Donato   css +ln
653
654
  
  //options
893b1f01   Renato De Donato   ln
655
656
657
658
659
660
661
  ln["x-axis-label_fr"] = "Label de l'Axe des X";
  ln["y-axis-label_fr"] = "Label de l'Axe des Y";
  ln["suffix_fr"] = "Suffixe d'aide";
  ln["legend_fr"] = "Légende";
  ln["data-labels_fr"] = "Montrer les labels de données";
  ln["stack_fr"] = "Empiler";
  ln["theme_fr"] = "Thème";
a4b9ef13   Renato De Donato   css +ln
662
663
  ln["donut_fr"] = "Donut";
  
893b1f01   Renato De Donato   ln
664
665
666
667
668
669
  ln["true_fr"] = "Oui";
  ln["false_fr"] = "Non";
  ln["bottom_fr"] = "Oui: En Bas";
  ln["topRight_fr"] = "Oui: En Haut à Droite";
  ln["normal_fr"] = "Oui: Normal";
  ln["percent_fr"] = "Oui: Pourcentage";
a4b9ef13   Renato De Donato   css +ln
670
671
672
673
674
675
  ln["themeBase_fr"] = "Base";
  ln["themeDarkUnika_fr"] = "Dark Unika";
  ln["themeSandSignika_fr"] = "Sand Signika";
  ln["themeGridLight_fr"] = "Grid Light";
  ln["themeSpod_fr"] = "Spod";
  
893b1f01   Renato De Donato   ln
676
677
678
679
680
681
682
683
  ln["x-axis-labelDescription_fr"] = "Le label de l'axe des x.";
  ln["y-axis-labelDescription_fr"] = "Le label de l'axe des y.";
  ln["suffixDescription_fr"] = "Le suffixe ajouté aux labels des données dans l'aide.";
  ln["legendDescription_fr"] = "La position de la légende.";
  ln["data-labelsDescription_fr"] = "Montrer/cacher les labels de données.";
  ln["themeDescription_fr"] = "Le thème affecte l'apparence des couleurs du graphique.";
  ln["stackDescription_fr"] = "Le type de regroupement.";
  ln["donutDescription_fr"] = "La Tarte va devenir un Donut! :) (ou vice versa).";
a4b9ef13   Renato De Donato   css +ln
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
  
  /******** NL ********/
  
  //PAGE SLIDER
  
  ln["slide1Title_nl"] = "SELECT DATASET";
  ln["slide1Subtitle_nl"] = "Select a dataset from the list or copy and paste the url of dataset.";
  ln["slide2Title_nl"] = "SELECT DATA";
  ln["slide2Subtitle_nl"] = "Select the fields on the left. The table will show the values related to the selected fields.";
  ln["slide3Title_nl"] = "SELECT VISUALIZATION";
  ln["slide3Subtitle_nl"] = "Select a visualization, fill out inputs and options.";
  ln["back_nl"] = "BACK TO THE FUTURE";
  ln["forward_nl"] = "FORWARD";
  
  //SELECT DATASET
  
893b1f01   Renato De Donato   ln
700
701
702
703
704
705
706
  ln["selectedUrl_nl"] = "Selected url";
  ln["wrongUrl_nl"] = "Invalid url or data provider not supported yet.";
  
  ln["providersDatasets_nl"] = "PROVIDERS DATASETS";
  ln["spodUsersDatasets_nl"] = "COCREATED DATASETS";
  ln["datasets_nl"] = "DATASETS LIST";
  
a4b9ef13   Renato De Donato   css +ln
707
  ln["provider_nl"] = "Provider";
893b1f01   Renato De Donato   ln
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
  ln["all_nl"] = "All";
  ln["allDescription_nl"] = "Shows the datasets of all associated providers.";
  ln["providerName_nl"] = "Provider";
  ln["providerNameDescription_nl"] = "Shows only the datasets of the selected provider.";
  
  ln["search_nl"] = "Search";
  ln["standard_nl"] = "Standard";
  ln["standardDescription_nl"] = "The search function works only on datasets names.";
  ln["extended_nl"] = "Extended [NOT AVAILABLE]";
  ln["extendedDescription_nl"] = "The search function works the entire contents of the datasets.";
  
  ln["version_nl"] = "Version";
  ln["showLast_nl"] = "Show last";
  ln["showLastDescription_nl"] = "Shows only the latest version of the datasets.";
  ln["showAll_nl"] = "Show all";
  ln["showAllDescription_nl"] = "Shows all versions of the datasets.";
  
  //select-dataset-controllet
  ln["datasetsInfo_nl"] = "DATASET INFO";
a4b9ef13   Renato De Donato   css +ln
727
728
729
  ln["showing_nl"] = "Showing";
  ln["to_nl"] = "to";
  ln["of_nl"] = "of";
90562b46   Renato De Donato   ln
730
  ln["datasetsRows_nl"] = "dataset";
893b1f01   Renato De Donato   ln
731
  ln["search_nl"] = "Search";
a4b9ef13   Renato De Donato   css +ln
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
  
  //SELECT DATA
  
  //select-fields
  ln["fields_nl"] = "FIELDS";
  
  //data-table
  ln["selectedData_nl"] = "SELECTED DATA";
  ln["showing_nl"] = "Showing";
  ln["to_nl"] = "to";
  ln["of_nl"] = "of";
  ln["rows_nl"] = "rows";
  ln["type_nl"] = "TYPE";
  ln["warning_nl"] = "WARNING";
  
  //expert
  ln["expert_nl"] = "EXPERT MODE";
  ln["filters_nl"] = "FILTERS";
  ln["groupBy_nl"] = "GROUP BY";
  ln["query_nl"] = "QUERY";
  
  //filters
  ln["filterField_nl"] = "Field";
  ln["filterOperation_nl"] = "Operation";
  ln["filterValue_nl"] = "Value";
  
  ln["disableFilters_nl"] = "DISABLE FILTERS";
  ln["enableFilters_nl"] = "ENABLE FILTERS";
  
  ln["=_nl"] = "=";   //is equal to
  ln["!=_nl"] = "not =";  //is not equal to
  ln[">_nl"] = ">";   //is greater than
  ln[">=_nl"] = ">="; //is greater than or equal to
  ln["<_nl"] = "<";   //is less than
  ln["<=_nl"] = "<="; //is less than or equal to
  ln["contains_nl"] = "contains";
  ln["notContains_nl"] = "not contains";
  ln["start_nl"] = "start with";
  ln["ends_nl"] = "ends with";
  
  //aggregators
  ln["GROUP BY_nl"] = "GROUP BY";
  ln["CALCULATE_nl"] = "CALCULATE";
  ln["Calculate_nl"] = "Calculate";
  ln["aggregatorField_nl"] = "Field";
  
  ln["disableGroupBy_nl"] = "DISABLE GROUP BY";
  ln["enableGroupBy_nl"] = "ENABLE GROUP BY";
  
  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";
  
  //SELECT VISUALIZATION
  
  ln["addDatalet_nl"] = "ADD";
  ln["modifyDatalet_nl"] = "MODIFY";
  
  //datalet-preview
  ln["previewTab_nl"] = "DATALET PREVIEW";
  ln["infoTab_nl"] = "DATALET INFO";
  
  //select-inputs
  ln["baseInfo_nl"] = "BASE INFO";
  ln["inputs_nl"] = "INPUTS";
  ln["options_nl"] = "OPTIONS";
  
  //vslider
  ln["search_nl"] = "Search";
  
  ln["datatable_nl"] = "Table";
  ln["barchart_nl"] = "Bar Chart";
  ln["columnchart_nl"] = "Column Chart";
  ln["areachart_nl"] = "Area Chart";
  ln["linechart_nl"] = "Line Chart";
  ln["heatmap_nl"] = "Heat Map";
  ln["piechart_nl"] = "Pie Chart";
  ln["scatterchart_nl"] = "Scatter Chart";
  ln["bubblechart_nl"] = "Bubble Chart";
  ln["treemap_nl"] = "Tree Map";
  ln["leafletjs_nl"] = "Map";
  ln["leafletjs-geojson_nl"] = "Geojson Map";
  
  ln["datatableDescription_nl"] = "A table is a means of arranging data in rows and columns.";
  ln["barchartDescription_nl"] = "A bar chart is a chart that presents grouped data with rectangular bars plotted horizontally with lengths proportional to the values that they represent.";
  ln["columnchartDescription_nl"] = "A column chart is a chart that presents grouped data with rectangular bars plotted vertically with lengths proportional to the values that they represent.";
  ln["areachartDescription_nl"] = "An area chart is a chart which displays graphically quantitive data. The area between axis and line are emphasized with colors and textures. Commonly one compares with the area chart two or more quantities.";
  ln["linechartDescription_nl"] = "A line chart is chart which displays information as a series of data points called 'markers' connected by straight line segments. A line chart is often used to visualize a trend in data over intervals of time.";
  ln["heatmapDescription_nl"] = "A heat map is a graphical representation of data where the individual values contained in a matrix are represented as colors.";
  ln["piechartDescription_nl"] = "A pie chart is a circular statistical graphic, which is divided into slices to illustrate numerical proportion. In the pie chart, the arc length of each slice, and consequently its central angle and area, is proportional to the quantity it represents.";
  ln["scatterchartDescription_nl"] = "A scatter chart is a type of plot or mathematical diagram using Cartesian coordinates to display values for typically two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.";
  ln["bubblechartDescription_nl"] = "A bubble chart is a type of chart that displays three dimensions of data. Each entity with its triplet (v1, v2, v3) of associated data is plotted as a disk that expresses two of the vi values through the disk's xy location and the third through its size.";
  ln["treemapDescription_nl"] = "A tree map is a chart for displaying hierarchical data by using nested rectangles.";
  ln["leafletjsDescription_nl"] = "";
  ln["leafletjs-geojsonDescription_nl"] = "";
  
  //inputs
  ln["title_nl"] = "Title"
  ln["description_nl"] = "Description";
  
  ln["sortAscending_nl"] = "SORTED ASCENDING";
  ln["sortDescending_nl"] = "SORTED DESCENDING";
  ln["unsort_nl"] = "UNSORTED";
  
a4b9ef13   Renato De Donato   css +ln
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
  ln["TITLE_nl"] = "TITLE";
  ln["DESCRIPTION_nl"] = "DESCRIPTION";
  ln["XAxis_nl"] = "X-AXIS";
  ln["YAxis_nl"] = "Y-AXIS";
  ln["NumericXAxis_nl"] = "X-AXIS";
  ln["NumericYAxis_nl"] = "Y-AXIS";
  ln["Column_nl"] = "COLUMN";
  ln["Level_nl"] = "LEVEL";
  ln["SliceLabels_nl"] = "LABEL";
  ln["SliceSizes_nl"] = "SIZE";
  ln["Latitude_nl"] = "LATITUDE";
  ln["Longitude_nl"] = "LONGITUDE";
  ln["BalloonContent_nl"] = "BALLOON CONTENT";
  ln["GEOJSON_nl"] = "GEOJSON";
  ln["GEOJSONContent_nl"] = "GEOJSON CONTENT";
  ln["BubbleContent_nl"] = "BUBBLE CONTENT";
  ln["BubbleSize_nl"] = "BUBBLE SIZE";
  ln["Categories_nl"] = "CATEGORY";
  
  ln["TITLEDescription_nl"] = "The datalet title.";
  ln["DESCRIPTIONDescription_nl"] = "The datalet description.";
  ln["XAxisDescription_nl"] = "The x-axis.";
  ln["YAxisDescription_nl"] = "The y-axis.";
  ln["NumericXAxisDescription_nl"] = "The x-axis.";
  ln["NumericYAxisDescription_nl"] = "The y-axis.";
  ln["ColumnDescription_nl"] = "The column of the table.";
  ln["LevelDescription_nl"] = "The level of the tree map.";
  ln["SliceLabelsDescription_nl"] = "The label of the slices.";
  ln["SliceSizesDescription_nl"] = "The size of the slices.";
  ln["LatitudeDescription_nl"] = "The latitude of locations.";
  ln["LongitudeDescription_nl"] = "The longitude of locations.";
  ln["BalloonContentDescription_nl"] = "The content of balloons.";
  ln["GEOJSONDescription_nl"] = "The GeoJSON data.";
  ln["GEOJSONContentDescription_nl"] = "The content of GeoJSON.";
  ln["BubbleContentDescription_nl"] = "The content of bubbles.";
  ln["BubbleSizeDescription_nl"] = "The size of bubbles.";
  ln["CategoriesDescription_nl"] = "The category that splits the y-axis values. If selected only the first selected y-axis will be considered.";
  
  //options
  ln["x-axis-label_nl"] = "X Axis Label";
  ln["y-axis-label_nl"] = "Y Axis Label";
  ln["suffix_nl"] = "Tooltip Suffix";
893b1f01   Renato De Donato   ln
882
  ln["legend_nl"] = "Legend";
a4b9ef13   Renato De Donato   css +ln
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
  ln["data-labels_nl"] = "Show Data Labels";
  ln["stack_nl"] = "Stack";
  ln["theme_nl"] = "Theme";
  ln["donut_nl"] = "Donut";
  
  ln["true_nl"] = "Yes";
  ln["false_nl"] = "No";
  ln["bottom_nl"] = "Yes: Bottom";
  ln["topRight_nl"] = "Yes: Top Right";
  ln["normal_nl"] = "Yes: Normal";
  ln["percent_nl"] = "Yes: Percent";
  ln["themeBase_nl"] = "Base";
  ln["themeDarkUnika_nl"] = "Dark Unika";
  ln["themeSandSignika_nl"] = "Sand Signika";
  ln["themeGridLight_nl"] = "Grid Light";
  ln["themeSpod_nl"] = "Spod";
  
  ln["x-axis-labelDescription_nl"] = "The x-axis label.";
  ln["y-axis-labelDescription_nl"] = "The y-axis label.";
  ln["suffixDescription_nl"] = "The suffix added to data labels in the tooltip.";
893b1f01   Renato De Donato   ln
903
  ln["legendDescription_nl"] = "The legend position.";
a4b9ef13   Renato De Donato   css +ln
904
905
906
907
  ln["data-labelsDescription_nl"] = "Show/hide data labels.";
  ln["themeDescription_nl"] = "The theme affects the appearance and colors of the chart.";
  ln["stackDescription_nl"] = "The stack type.";
  ln["donutDescription_nl"] = "Pie will become Donut! :) (or viceversa).";