Commit a4b9ef1399d786c426f37f2067ed94f82c9f0365

Authored by Renato De Donato
1 parent a05908c5

css +ln

controllets/datalet-preview-controllet/datalet-preview-controllet.html
... ... @@ -89,18 +89,25 @@
89 89  
90 90 paper-tabs {
91 91 background: #B6B6B6;
92   - --paper-tabs-selection-bar-color: #2196F3;
  92 + /*--paper-tabs-selection-bar-color: #00BCD4;*/
93 93 }
94 94  
95 95 paper-tab {
96   - --paper-tab-ink: #2196F3;
  96 + font-weight: 700;
  97 + border-right: 2px solid #FFFFFF;
  98 + /*--paper-tab-ink: #2196F3;*/
  99 + }
  100 +
  101 + paper-tab:nth-child(2) {
  102 + border-right: 0;
97 103 }
98 104  
99 105 paper-tab.iron-selected {
100   - font-weight: 700;
  106 + color: #FFFFFF;
  107 + background: #2196F3;;
101 108 }
102 109  
103   - paper-tab:hover {
  110 + paper-tab:not(.iron-selected):hover {
104 111 color: #2196F3;
105 112 }
106 113  
... ... @@ -108,9 +115,9 @@
108 115  
109 116 <paper-material id="preview_container" elevation="5">
110 117  
111   - <paper-tabs selected="{{tabIndex}}">
112   - <paper-tab><span id="previewTab"></span></paper-tab>
113   - <paper-tab><span id="infoTab"></span></paper-tab>
  118 + <paper-tabs selected="{{tabIndex}}" no-bar>
  119 + <paper-tab noink><span id="previewTab"></span></paper-tab>
  120 + <paper-tab noink><span id="infoTab"></span></paper-tab>
114 121 </paper-tabs>
115 122  
116 123 <neon-animated-pages id="neon_container" selected="{{_getNeonIndex(tabIndex)}}" entry-animation="fade-in-animation" exit-animation="fade-out-animation">
... ...
controllets/expert-query-controllet/expert-query-controllet.html
... ... @@ -125,22 +125,25 @@
125 125  
126 126 paper-tabs {
127 127 background: #B6B6B6;
128   - --paper-tabs-selection-bar-color: #2196F3;
  128 + /*--paper-tabs-selection-bar-color: #00BCD4;*/
129 129 }
130 130  
131 131 paper-tab {
132   - --paper-tab-ink: #2196F3;
  132 + font-weight: 700;
  133 + border-right: 2px solid #FFFFFF;
  134 + /*--paper-tab-ink: #2196F3;*/
133 135 }
134 136  
135   - paper-tab.iron-selected {
136   - font-weight: 700;
  137 + paper-tab:nth-child(3) {
  138 + border-right: 0;
137 139 }
138 140  
139   - /*paper-tab:not(.iron-selected):hover {*/
140   - /*color: #2196F3;*/
141   - /*}*/
  141 + paper-tab.iron-selected {
  142 + color: #FFFFFF;
  143 + background: #2196F3;;
  144 + }
142 145  
143   - paper-tab:hover {
  146 + paper-tab:not(.iron-selected):hover {
144 147 color: #2196F3;
145 148 }
146 149  
... ... @@ -162,10 +165,10 @@
162 165 <paper-material id="expert_container" elevation="5">
163 166  
164 167 <div id="header_open">
165   - <paper-tabs selected="{{tabIndex}}">
166   - <paper-tab><span id="filtersTab"></span></paper-tab>
167   - <paper-tab><span id="groupByTab"></span></paper-tab>
168   - <paper-tab><span id="queryTab"></span></paper-tab>
  168 + <paper-tabs selected="{{tabIndex}}" no-bar>
  169 + <paper-tab noink><span id="filtersTab"></span></paper-tab>
  170 + <paper-tab noink><span id="groupByTab"></span></paper-tab>
  171 + <paper-tab noink><span id="queryTab"></span></paper-tab>
169 172 </paper-tabs>
170 173  
171 174 <paper-icon-button icon="fullscreen-exit" on-click="_fullscreenExit"></paper-icon-button>
... ...
controllets/select-inputs-controllet/select-inputs-controllet.html
... ... @@ -78,6 +78,7 @@
78 78 #inputs_container p .title{
79 79 font-weight: 700;
80 80 color: #2196F3;
  81 + white-space: nowrap;
81 82 }
82 83  
83 84 #inputs_container p .description{
... ... @@ -99,23 +100,6 @@
99 100 margin-top: -4px;
100 101 }
101 102  
102   - paper-tabs {
103   - background: #B6B6B6;
104   - --paper-tabs-selection-bar-color: #2196F3;
105   - }
106   -
107   - paper-tab {
108   - --paper-tab-ink: #2196F3;
109   - }
110   -
111   - paper-tab.iron-selected {
112   - font-weight: 700;
113   - }
114   -
115   - paper-tab:hover {
116   - color: #2196F3;
117   - }
118   -
119 103 paper-input {
120 104 width: calc(100% - 24px - 48px);
121 105 margin-left: 12px;
... ... @@ -165,6 +149,35 @@
165 149 --paper-tooltip-background: black;
166 150 }
167 151  
  152 + paper-tooltip.order {
  153 + min-width: 0;
  154 + white-space: nowrap;
  155 + }
  156 +
  157 + paper-tabs {
  158 + background: #B6B6B6;
  159 + /*--paper-tabs-selection-bar-color: #00BCD4;*/
  160 + }
  161 +
  162 + paper-tab {
  163 + font-weight: 700;
  164 + border-right: 2px solid #FFFFFF;
  165 + /*--paper-tab-ink: #2196F3;*/
  166 + }
  167 +
  168 + paper-tab:nth-child(2) {
  169 + border-right: 0;
  170 + }
  171 +
  172 + paper-tab.iron-selected {
  173 + color: #FFFFFF;
  174 + background: #2196F3;;
  175 + }
  176 +
  177 + paper-tab:not(.iron-selected):hover {
  178 + color: #2196F3;
  179 + }
  180 +
168 181 </style>
169 182  
170 183 <paper-material id="inputs_container" elevation="5">
... ... @@ -199,9 +212,9 @@
199 212 </paper-tooltip>
200 213 </div>
201 214  
202   - <paper-tabs selected="{{tabIndex}}">
203   - <paper-tab><span id="inputsTab"></span></paper-tab>
204   - <paper-tab><span id="optionsTab"></span></paper-tab>
  215 + <paper-tabs selected="{{tabIndex}}" no-bar>
  216 + <paper-tab noink><span id="inputsTab"></span></paper-tab>
  217 + <paper-tab noink><span id="optionsTab"></span></paper-tab>
205 218 </paper-tabs>
206 219  
207 220 <neon-animated-pages id="neon_container" selected="{{_getNeonIndex(tabIndex)}}" entry-animation="fade-in-animation" exit-animation="fade-out-animation">
... ... @@ -220,7 +233,7 @@
220 233 </paper-menu>
221 234 </paper-dropdown-menu>
222 235 <div class="order_button">
223   - <paper-icon-button id="{{input_index}}" icon="unfold-more" on-click="_addOrder" disabled></paper-icon-button>
  236 + <paper-icon-button id="order_input_{{input_index}}" icon="unfold-more" on-click="_addOrder" disabled></paper-icon-button>
224 237 </div>
225 238 <div class="info_button">
226 239 <paper-icon-button id="info_input_{{input_index}}" icon="info-outline" noink></paper-icon-button>
... ... @@ -237,6 +250,12 @@
237 250 <span class="description">{{_getInputDescription(item.name)}}</span>
238 251 </p>
239 252 </paper-tooltip>
  253 +
  254 + <paper-tooltip class="order" for="{{_getInputOrderId(index)}}" position="right" offset="22">
  255 + <p>
  256 + <span id="order_{{index}}">{{_getInputOrder(index)}}</span>
  257 + </p>
  258 + </paper-tooltip>
240 259 </template>
241 260  
242 261 </neon-animatable>
... ... @@ -493,20 +512,24 @@
493 512 t = $(e.target).parents("paper-icon-button")[0];
494 513  
495 514 var icon = t.getAttribute("icon");
496   - var id = t.getAttribute("id");
  515 + var id = t.getAttribute("id").replace("order_input_", "");
497 516 var field = this.selectedInputs[id].value;
  517 + var tooltip = $("#order_"+id)[0];
498 518  
499 519 this.orders = this.orders.filter(function (el) { return el.field !== field; });
500 520  
501 521 if(icon.indexOf("unfold-more") > -1){
502 522 t.setAttribute("icon", "expand-less");
  523 + tooltip.innerHTML = ln["sortAscending_" +ln["localization"]];
503 524 this.orders.unshift({"field": field, "operation": "ASC"});
504 525 }
505 526 else if(icon.indexOf("expand-less") > -1){
506 527 t.setAttribute("icon", "expand-more");
  528 + tooltip.innerHTML = ln["sortDescending_" +ln["localization"]];
507 529 this.orders.unshift({"field": field, "operation": "DESC"});
508 530 }
509 531 else if(icon.indexOf("expand-more") > -1){
  532 + tooltip.innerHTML = ln["unsort_" +ln["localization"]];
510 533 t.setAttribute("icon", "unfold-more");
511 534 }
512 535  
... ... @@ -585,6 +608,14 @@
585 608 return "info_input_" + index;
586 609 },
587 610  
  611 + _getInputOrderId : function(index) {
  612 + return "order_input_" + index;
  613 + },
  614 +
  615 + _getInputOrder : function(index) {
  616 + return ln["unsort_" +ln["localization"]];
  617 + },
  618 +
588 619 _getOptionInfoId : function(index) {
589 620 return "info_option_" + index;
590 621 },
... ...
locales/controllet_ln.js
... ... @@ -36,9 +36,9 @@ ln[&quot;fields_en&quot;] = &quot;FIELDS&quot;;
36 36  
37 37 //data-table
38 38 ln["selectedData_en"] = "SELECTED DATA";
39   -//ln["showing_en"] = "Showing";
40   -//ln["to_en"] = "to";
41   -//ln["of_en"] = "of";
  39 +ln["showing_en"] = "Showing";
  40 +ln["to_en"] = "to";
  41 +ln["of_en"] = "of";
42 42 ln["rows_en"] = "rows";
43 43 ln["type_en"] = "TYPE";
44 44 ln["warning_en"] = "WARNING";
... ... @@ -49,11 +49,6 @@ ln[&quot;filters_en&quot;] = &quot;FILTERS&quot;;
49 49 ln["groupBy_en"] = "GROUP BY";
50 50 ln["query_en"] = "QUERY";
51 51  
52   -//ln["disableFilters_en"] = "DISABLE FILTERS";
53   -//ln["enableFilters_en"] = "ENABLE FILTERS";
54   -//ln["disableGroupBy_en"] = "DISABLE GROUP BY";
55   -//ln["enableGroupBy_en"] = "ENABLE GROUP BY";
56   -
57 52 //filters
58 53 ln["filterField_en"] = "Field";
59 54 ln["filterOperation_en"] = "Operation";
... ... @@ -62,18 +57,12 @@ ln[&quot;filterValue_en&quot;] = &quot;Value&quot;;
62 57 ln["disableFilters_en"] = "DISABLE FILTERS";
63 58 ln["enableFilters_en"] = "ENABLE FILTERS";
64 59  
65   -//ln["=_en"] = "is equal to";
66   -//ln["!=_en"] = "is not equal to";
67   -//ln[">_en"] = "is greater than";
68   -//ln[">=_en"] = "is greater than or equal to";
69   -//ln["<_en"] = "is less than";
70   -//ln["<=_en"] = "is less than or equal to";
71   -ln["=_en"] = "=";
72   -ln["!=_en"] = "not =";
73   -ln[">_en"] = ">";
74   -ln[">=_en"] = ">=";
75   -ln["<_en"] = "<";
76   -ln["<=_en"] = "<=";
  60 +ln["=_en"] = "="; //is equal to
  61 +ln["!=_en"] = "not ="; //is not equal to
  62 +ln[">_en"] = ">"; //is greater than
  63 +ln[">=_en"] = ">="; //is greater than or equal to
  64 +ln["<_en"] = "<"; //is less than
  65 +ln["<=_en"] = "<="; //is less than or equal to
77 66 ln["contains_en"] = "contains";
78 67 ln["notContains_en"] = "not contains";
79 68 ln["start_en"] = "start with";
... ... @@ -126,34 +115,34 @@ ln[&quot;treemap_en&quot;] = &quot;Tree Map&quot;;
126 115 ln["leafletjs_en"] = "Map";
127 116 ln["leafletjs-geojson_en"] = "Geojson Map";
128 117  
129   -ln["datatableDescription_en"] = "Table";
130   -ln["barchartDescription_en"] = "A bar chart is a chart that presents grouped data with rectangular bars with lengths proportional to the values that they represent.";
131   -ln["columnchartDescription_en"] = "Column Chart";
132   -ln["areachartDescription_en"] = "Area Chart";
133   -ln["linechartDescription_en"] = "Line Chart";
134   -ln["heatmapDescription_en"] = "Heat Map";
135   -ln["piechartDescription_en"] = "Pie Chart";
136   -ln["scatterchartDescription_en"] = "Scatter Chart";
137   -ln["bubblechartDescription_en"] = "Bubble Chart";
138   -ln["treemapDescription_en"] = "Tree Map";
139   -ln["leafletjsDescription_en"] = "Map";
140   -ln["leafletjs-geojsonDescription_en"] = "Geojson Map";
  118 +ln["datatableDescription_en"] = "A table is a means of arranging data in rows and columns.";
  119 +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.";
  120 +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.";
  121 +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.";
  122 +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.";
  123 +ln["heatmapDescription_en"] = "A heat map is a graphical representation of data where the individual values contained in a matrix are represented as colors.";
  124 +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.";
  125 +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.";
  126 +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.";
  127 +ln["treemapDescription_en"] = "A tree map is a chart for displaying hierarchical data by using nested rectangles.";
  128 +ln["leafletjsDescription_en"] = "";
  129 +ln["leafletjs-geojsonDescription_en"] = "";
141 130  
142 131 //inputs
143 132 ln["title_en"] = "Title"
144 133 ln["description_en"] = "Description";
145 134  
146   -//ln["sortAscending_en"] = "sorted ascending";
147   -//ln["sortDescending_en"] = "sorted descending";
148   -//ln["unsort_en"] = "unsorted";
  135 +ln["sortAscending_en"] = "SORTED ASCENDING";
  136 +ln["sortDescending_en"] = "SORTED DESCENDING";
  137 +ln["unsort_en"] = "UNSORTED";
149 138  
150 139 //--> "_" not allowed!
151 140 ln["TITLE_en"] = "TITLE";
152 141 ln["DESCRIPTION_en"] = "DESCRIPTION";
153   -ln["XAxis_en"] = "X AXIS";
154   -ln["YAxis_en"] = "Y AXIS";
155   -ln["NumericXAxis_en"] = "X AXIS";
156   -ln["NumericYAxis_en"] = "Y AXIS";
  142 +ln["XAxis_en"] = "X-AXIS";
  143 +ln["YAxis_en"] = "Y-AXIS";
  144 +ln["NumericXAxis_en"] = "X-AXIS";
  145 +ln["NumericYAxis_en"] = "Y-AXIS";
157 146 ln["Column_en"] = "COLUMN";
158 147 ln["Level_en"] = "LEVEL";
159 148 ln["SliceLabels_en"] = "LABEL";
... ... @@ -162,27 +151,29 @@ ln[&quot;Latitude_en&quot;] = &quot;LATITUDE&quot;;
162 151 ln["Longitude_en"] = "LONGITUDE";
163 152 ln["BalloonContent_en"] = "BALLOON CONTENT";
164 153 ln["GEOJSON_en"] = "GEOJSON";
  154 +ln["GEOJSONContent_en"] = "GEOJSON CONTENT";
165 155 ln["BubbleContent_en"] = "BUBBLE CONTENT";
166 156 ln["BubbleSize_en"] = "BUBBLE SIZE";
167 157 ln["Categories_en"] = "CATEGORY";
168 158  
169   -ln["TITLEDescription_en"] = "TITLE.";
170   -ln["DESCRIPTIONDescription_en"] = "DESCRIPTION.";
171   -ln["XAxisDescription_en"] = "X AXIS.";
172   -ln["YAxisDescription_en"] = "Y AXIS.";
173   -ln["NumericXAxisDescription_en"] = "X AXIS.";
174   -ln["NumericYAxisDescription_en"] = "Y AXIS.";
175   -ln["ColumnDescription_en"] = "COLUMN.";
176   -ln["LevelDescription_en"] = "LEVEL.";
177   -ln["SliceLabelsDescription_en"] = "LABEL.";
178   -ln["SliceSizesDescription_en"] = "SIZE.";
179   -ln["LatitudeDescription_en"] = "LATITUDE.";
180   -ln["LongitudeDescription_en"] = "LONGITUDE.";
181   -ln["BalloonContentDescription_en"] = "BALLOON CONTENT.";
182   -ln["GEOJSONDescription_en"] = "GEOJSON.";
183   -ln["BubbleContentDescription_en"] = "BUBBLE CONTENT.";
184   -ln["BubbleSizeDescription_en"] = "BUBBLE SIZE.";
185   -ln["CategoriesDescription_en"] = "CATEGORY.";
  159 +ln["TITLEDescription_en"] = "The datalet title.";
  160 +ln["DESCRIPTIONDescription_en"] = "The datalet description.";
  161 +ln["XAxisDescription_en"] = "The x-axis.";
  162 +ln["YAxisDescription_en"] = "The y-axis.";
  163 +ln["NumericXAxisDescription_en"] = "The x-axis.";
  164 +ln["NumericYAxisDescription_en"] = "The y-axis.";
  165 +ln["ColumnDescription_en"] = "The column of the table.";
  166 +ln["LevelDescription_en"] = "The level of the tree map.";
  167 +ln["SliceLabelsDescription_en"] = "The label of the slices.";
  168 +ln["SliceSizesDescription_en"] = "The size of the slices.";
  169 +ln["LatitudeDescription_en"] = "The latitude of locations.";
  170 +ln["LongitudeDescription_en"] = "The longitude of locations.";
  171 +ln["BalloonContentDescription_en"] = "The content of balloons.";
  172 +ln["GEOJSONDescription_en"] = "The GeoJSON data.";
  173 +ln["GEOJSONContentDescription_en"] = "The content of GeoJSON.";
  174 +ln["BubbleContentDescription_en"] = "The content of bubbles.";
  175 +ln["BubbleSizeDescription_en"] = "The size of bubbles.";
  176 +ln["CategoriesDescription_en"] = "The category that splits the y-axis values. If selected only the first selected y-axis will be considered.";
186 177  
187 178 //options
188 179 ln["x-axis-label_en"] = "X Axis Label";
... ... @@ -206,410 +197,623 @@ ln[&quot;themeSandSignika_en&quot;] = &quot;Sand Signika&quot;;
206 197 ln["themeGridLight_en"] = "Grid Light";
207 198 ln["themeSpod_en"] = "Spod";
208 199  
209   -ln["x-axis-labelDescription_en"] = "The label shown on the X axis.";
210   -ln["y-axis-labelDescription_en"] = "The label shown on the Y axis.";
211   -ln["suffixDescription_en"] = "The suffix added to values ($,%, Kg, ...).";
  200 +ln["x-axis-labelDescription_en"] = "The x-axis label.";
  201 +ln["y-axis-labelDescription_en"] = "The y-axis label.";
  202 +ln["suffixDescription_en"] = "The suffix added to data labels in the tooltip.";
212 203 ln["legendDescription_en"] = "The leged position.";
213 204 ln["data-labelsDescription_en"] = "Show/hide data labels.";
214 205 ln["themeDescription_en"] = "The theme affects the appearance and colors of the chart.";
215   -ln["stackDescription_en"] = "Stack type.";
216   -ln["donutDescription_en"] = "If 'true' Pie will become Donut! :).";
217   -
218   -///******** IT ********/
219   -//
220   -////PAGE SLIDER
221   -//ln["slide1Title_it"] = "SELEZIONA IL DATASET";
222   -//ln["slide1Subtitle_it"] = "Seleziona il dataset dalla lista o copia e incolla la url del dataset.";
223   -//ln["slide2Title_it"] = "SELEZIONA I DATI";
224   -//ln["slide2Subtitle_it"] = "Seleziona i campi sulla sinistra. Nella tabella saranno mostrati i valori dei campi selezionati.";
225   -//ln["slide3Title_it"] = "SELEZIONA LA VISUALIZZAZIONE";
226   -//ln["slide3Subtitle_it"] = "Seleziona una visualizzazione, inserisci dati di input ed etichette (opzionale).";
227   -//ln["back_it"] = "Indietro";
228   -//ln["forward_it"] = "Avanti";
229   -//
230   -////SELECT DATASET
231   -//ln["listView_it"] = "ELENCO";
232   -//ln["treeMapView_it"] = "GRAFICO AD ALBERO";
233   -//ln["extendedSearch_it"] = "RICERCA ESTESA";
234   -//ln["provider_it"] = "Provider";
235   -//ln["showing_it"] = "Visualizzati";
236   -//ln["to_it"] = "a";
237   -//ln["of_it"] = "di";
238   -//ln["datasets_it"] = "datasets";
239   -////ln["availableDatasets_it"] = "Dataset disponibili";
240   -//ln["suggestedDatasets_it"] = "Dataset suggeriti";
241   -//ln["selectedUrl_it"] = "Url selezionata";
242   -//ln["wrongUrl_it"] = "Url invalido o data provider non ancora supportato.";
243   -//
244   -////SELECT DATA
245   -//ln["expertAddFilters_it"] = "ESPERTO : AGGIUNGI FILTRI";
246   -//
247   -////select-fields
248   -//ln["fields_it"] = "CAMPI";
249   -//
250   -////data-table
251   -//ln["selectedData_it"] = "DATI SELEZIONATI";
252   -//ln["rows_it"] = "righe";
253   -//ln["type_it"] = "TIPO";
254   -//ln["warning_it"] = "ATTENZIONE";
255   -//
256   -////filters
257   -//ln["filterField_it"] = "Campo";
258   -//ln["filterOperation_it"] = "Operazione";
259   -//ln["filterValue_it"] = "Valore";
260   -//
261   -//ln["=_it"] = "รจ uguale a";
262   -//ln["!=_it"] = "รจ diverso da";
263   -//ln[">_it"] = "รจ maggiore di";
264   -//ln[">=_it"] = "รจ maggiore uguale di";
265   -//ln["<_it"] = "รจ minore di";
266   -//ln["<=_it"] = "รจ minore uguale di";
267   -//ln["contains_it"] = "contiene";
268   -//ln["notContains_it"] = "non contiene";
269   -//ln["start_it"] = "inizia con";
270   -//ln["ends_it"] = "finisce con";
271   -//
272   -////SELECT VISUALIZATION
273   -//ln["inputs_it"] = "DATI DI INPUT";
274   -//ln["baseInfo_it"] = "INFORMAZIONI DI BASE";
275   -//ln["layouts_it"] = "ETICHETTE / OPZIONI";
276   -//ln["dataletPreview_it"] = "ANTEPRIMA DELLA DATALET";
277   -//ln["addDatalet_it"] = "AGGIUNGI";
278   -//ln["modifyDatalet_it"] = "MODIFICA";
279   -//
280   -////vslider
281   -//ln["search_it"] = "Cerca";
282   -//
283   -//ln["datatable_it"] = "Tabella";
284   -//ln["barchart_it"] = "Grafico a barre";
285   -//ln["columnchart_it"] = "Grafico a colonne";
286   -//ln["areachart_it"] = "Grafico ad area";
287   -//ln["linechart_it"] = "Grafico a linee";
288   -//ln["heatmap_it"] = "Mappa termica";
289   -//ln["barchart_stacked_it"] = "Grafico a barre in pila";
290   -//ln["columnchart_stacked_it"] = "Grafico a colonne in pila";
291   -//ln["areachart_stacked_it"] = "Grafico ad area in pila";
292   -//ln["piechart_it"] = "Grafico a torta";
293   -//ln["scatterchart_it"] = "Grafico a dispersione";
294   -//ln["bubblechart_it"] = "Grafico a bolle";
295   -//ln["treemap_it"] = "Grafico ad albero";
296   -//ln["leafletjs_it"] = "Mappa";
297   -//ln["leafletjs-geojson_it"] = "Mappa geojson";
298   -//
299   -////inputs
300   -//ln["expertGroupBy_it"] = "ESPERTO : RAGGRUPPA";
301   -//
302   -//ln["sortAscending_it"] = "ordinamento crescente";
303   -//ln["sortDescending_it"] = "ordinamento decrescente";
304   -//ln["unsort_it"] = "non ordinato";
305   -//
306   -//ln["groupBy_it"] = "RAGGRUPPA";
307   -//ln["calculate_it"] = "CALCOLA";
308   -//
309   -//ln["COUNT_it"] = "CONTEGGIO di";
310   -//ln["SUM_it"] = "SOMMA di";
311   -//ln["MIN_it"] = "MINIMO di";
312   -//ln["MAX_it"] = "MASSIMO di";
313   -//ln["AVG_it"] = "MEDIA di";
314   -//ln["FIRST_it"] = "PRIMO di";
315   -//ln["LAST_it"] = "ULTIMO di";
316   -//
317   -//ln["XAxis_it"] = "ASSE X";
318   -//ln["YAxis_it"] = "ASSE Y";
319   -//ln["NumericXAxis_it"] = "ASSE X [num]";
320   -//ln["NumericYAxis_it"] = "ASSE Y [num]";
321   -//ln["Column_it"] = "COLONNA";
322   -//ln["Level_it"] = "LIVELLO";
323   -//ln["SliceLabels_it"] = "ETICHETTA";
324   -//ln["SliceSizes_it"] = "DIMENSIONE [num]";
325   -//ln["Latitude_it"] = "LATITUDINE";
326   -//ln["Longitude_it"] = "LONGITUDINE";
327   -//ln["BalloonContent_it"] = "CONTENUTO";
328   -//ln["GEOJSON_it"] = "GEOJSON";
329   -//ln["BubbleContent_it"] = "CONTENUTO BOLLA";
330   -//ln["BubbleSize_it"] = "DIMENSIONE BOLLA [num]";
331   -//ln["Categories_it"] = "CATEGORIA [opt]";
332   -//
333   -////options
334   -//ln["title_it"] = "Titolo"
335   -//ln["description_it"] = "Descrizione";
336   -//
337   -//ln["x-axis-label_it"] = "Etichetta asse X";
338   -//ln["y-axis-label_it"] = "Etichetta asse Y";
339   -//ln["suffix_it"] = "Suffisso tooltip";
340   -//ln["theme_it"] = "Tema";
341   -//ln["stack_it"] = "Stack";
342   -//ln["donut_it"] = "Ciambella";
343   -//
344   -//ln["x-axis-label_description_it"] = "L'etichetta che verrร  visualizzata sull'asse delle X";
345   -//ln["y-axis-label_description_it"] = "L'etichetta che verrร  visualizzata sull'asse delle Y";
346   -//ln["suffix_description_it"] = "Il suffisso che verrร  aggiunto ai valori ($, %, Kg, ...)";
347   -//ln["theme_description_it"] = "Il tema influenza l'estetica e i colori del grafico";
348   -//ln["stack_description_it"] = "Se 'percent' sarร  applicata la normalizzazione a 100";
349   -//ln["donut_description_it"] = "Se 'true' il grafico a torta diventerร  a ciambella! :)";
350   -//
351   -///******** FR ********/
352   -//
353   -////PAGE SLIDER
354   -//ln["slide1Title_fr"] = "SELECTIONNER UN JEU DE DONNEES";
355   -//ln["slide1Subtitle_fr"] = "Rechercher ou copier/coller lโ€™url du jeu de donnรฉes.";
356   -//ln["slide2Title_fr"] = "SELECTIONNER DONNEES";
357   -//ln["slide2Subtitle_fr"] = "Sรฉlectionner les champs ร  partir de lโ€™arborescence. Une fenรชtre vous indiquera les valeurs relatives aux champs sรฉlectionnรฉs.";
358   -//ln["slide3Title_fr"] = "SELECTIONNER UN MODE DE VISUALISATION";
359   -//ln["slide3Subtitle_fr"] = "Sรฉlectionner un mode de visualisation, remplir les entrรฉes et les vignettes (optionnel).";
360   -//ln["back_fr"] = "RETOUR";
361   -//ln["forward_fr"] = "AVANT";
362   -//
363   -////SELECT DATASET
364   -//ln["listView_fr"] = "VUE EN LISTE";
365   -//ln["treeMapView_fr"] = "VUE EN ARBORESCENCE";
366   -//ln["extendedSearch_fr"] = "EXTENDED SEARCH";
367   -//ln["provider_fr"] = "Provider";
368   -//ln["showing_fr"] = "Showing";
369   -//ln["to_fr"] = "to";
370   -//ln["of_fr"] = "of";
371   -//ln["datasets_fr"] = "datasets";
372   -////ln["availableDatasets_fr"] = "Jeux de donnรฉes disponibles";
373   -//ln["suggestedDatasets_fr"] = "Jeux de donnรฉes suggรฉrรฉs";
374   -//ln["selectedUrl_fr"] = "Sรฉlectionner URL";
375   -//ln["wrongUrl_fr"] = "Invalid url or data provider not supported yet.";
376   -//
377   -////SELECT DATA
378   -//ln["expertAddFilters_fr"] = "EXPERT : ADD FILTERS";
379   -//
380   -////select-fields
381   -//ln["fields_fr"] = "FIELDS";
382   -//
383   -////data-table
384   -//ln["selectedData_fr"] = "SELECTED DATA";
385   -//ln["rows_fr"] = "rows";
386   -//ln["type_fr"] = "TYPE";
387   -//ln["warning_fr"] = "WARNING";
388   -//
389   -////filters
390   -//ln["filterField_fr"] = "Field";
391   -//ln["filterOperation_fr"] = "Operation";
392   -//ln["filterValue_fr"] = "Value";
393   -//
394   -//ln["=_fr"] = "is equal to";
395   -//ln["!=_fr"] = "is different from";
396   -//ln[">_fr"] = "is greater than";
397   -//ln[">=_fr"] = "is greater than or equal to";
398   -//ln["<_fr"] = "is less than";
399   -//ln["<=_fr"] = "is less than or equal to";
400   -//ln["contains_fr"] = "contains";
401   -//ln["notContains_fr"] = "not contains";
402   -//ln["start_fr"] = "start with";
403   -//ln["ends_fr"] = "ends with";
404   -//
405   -////SELECT VISUALIZATION
406   -//ln["inputs_fr"] = "SORTIES";
407   -//ln["baseInfo_fr"] = "INFORMATION DE BASE";
408   -//ln["layouts_fr"] = "VIGNETTES/OPTIONSs";
409   -//ln["dataletPreview_fr"] = "PREVISUALISATION";
410   -//ln["addDatalet_fr"] = "AJOUTER";
411   -//ln["modifyDatalet_fr"] = "MODIFIER";
412   -//
413   -////vslider
414   -//ln["search_fr"] = "Search";
415   -//
416   -//ln["datatable_fr"] = "Table";
417   -//ln["barchart_fr"] = "Bar";
418   -//ln["columnchart_fr"] = "Column";
419   -//ln["areachart_fr"] = "Area";
420   -//ln["linechart_fr"] = "Line";
421   -//ln["heatmap_fr"] = "Heat Map";
422   -//ln["barchart_stacked_fr"] = "Stacked Bar";
423   -//ln["columnchart_stacked_fr"] = "Stacked Column";
424   -//ln["areachart_stacked_fr"] = "Stacked Area";
425   -//ln["piechart_fr"] = "Pie";
426   -//ln["scatterchart_fr"] = "Scatter";
427   -//ln["bubblechart_fr"] = "Bubble";
428   -//ln["treemap_fr"] = "Tree Map";
429   -//ln["leafletjs_fr"] = "Map";
430   -//ln["leafletjs-geojson_fr"] = "Map Geojson";
431   -//
432   -////inputs
433   -//ln["expertGroupBy_fr"] = "EXPERT : GROUP BY";
434   -//
435   -//ln["sortAscending_fr"] = "sorted ascending";
436   -//ln["sortDescending_fr"] = "sorted descending";
437   -//ln["unsort_fr"] = "unsorted";
438   -//
439   -//ln["groupBy_fr"] = "GROUP BY";
440   -//ln["calculate_fr"] = "CALCULATE";
441   -//
442   -//ln["COUNT_fr"] = "COUNT of";
443   -//ln["SUM_fr"] = "SUM of";
444   -//ln["MIN_fr"] = "MIN of";
445   -//ln["MAX_fr"] = "MAX of";
446   -//ln["AVG_fr"] = "AVG of";
447   -//ln["FIRST_fr"] = "FIRST of";
448   -//ln["LAST_fr"] = "LAST of";
449   -//
450   -//ln["XAxis_fr"] = "X AXIS";
451   -//ln["YAxis_fr"] = "Y AXIS";
452   -//ln["NumericXAxis_fr"] = "X AXIS [num]";
453   -//ln["NumericYAxis_fr"] = "Y AXIS [num]";
454   -//ln["Column_fr"] = "COLUMN";
455   -//ln["Level_fr"] = "LEVEL";
456   -//ln["SliceLabels_fr"] = "LABEL";
457   -//ln["SliceSizes_fr"] = "SIZE [num]";
458   -//ln["Latitude_fr"] = "LATITUDE";
459   -//ln["Longitude_fr"] = "LONGITUDE";
460   -//ln["BalloonContent_fr"] = "BALLOON CONTENT";// [opt]
461   -//ln["GEOJSON_fr"] = "GEOJSON";
462   -//ln["BubbleContent_fr"] = "BUBBLE CONTENT";
463   -//ln["BubbleSize_fr"] = "BUBBLE SIZE [num]";
464   -//ln["Categories_fr"] = "CATEGORY [opt]";
465   -//
466   -////options
467   -//ln["title_fr"] = "Title"
468   -//ln["description_fr"] = "Description";
469   -//
470   -//ln["x-axis-label_fr"] = "X Axis Label";
471   -//ln["y-axis-label_fr"] = "Y Axis Label";
472   -//ln["suffix_fr"] = "Tooltip Suffix";
473   -//ln["theme_fr"] = "Theme";
474   -//ln["stack_fr"] = "Stack";
475   -//ln["donut_fr"] = "Donut";
476   -//
477   -//ln["x-axis-label_description_fr"] = "Vignette pour lโ€™axe X.";
478   -//ln["y-axis-label_description_fr"] = "Vignette pour lโ€™axe Y.";
479   -//ln["suffix_description_fr"] = "Unitรฉs de mesures (ex: dollars, euros.";
480   -//ln["theme_description_fr"] = "Theme";
481   -//ln["stack_description_fr"] = "Stack";
482   -//ln["donut_description_fr"] = "Donut";
483   -//
484   -///******** NL ********/
485   -//
486   -////PAGE SLIDER
487   -//ln["slide1Title_nl"] = "SELECTEER DATASET";
488   -//ln["slide1Subtitle_nl"] = "Zoek of kopieer en plak de url van de dataset.";
489   -//ln["slide2Title_nl"] = "SELECTEER DATA";
490   -//ln["slide2Subtitle_nl"] = "Selecteer de velden uit de boomstructuur. De multi-tabel laat de waarden zien van de geselecteerde velden.";
491   -//ln["slide3Title_nl"] = "SELECTEER VISUALISATIE";
492   -//ln["slide3Subtitle_nl"] = "Selecteer een visualisatie, vul de invoer en labels in.";
493   -//ln["back_nl"] = "TERUG";
494   -//ln["forward_nl"] = "VOOTUIT";
495   -//
496   -////SELECT DATASET
497   -//ln["listView_nl"] = "LIJSTWEERGAVE";
498   -//ln["treeMapView_nl"] = "BOOMSTRUCTUUR WEEERGAVE";
499   -//ln["extendedSearch_nl"] = "EXTENDED SEARCH";
500   -//ln["provider_nl"] = "Provider";
501   -//ln["showing_nl"] = "Showing";
502   -//ln["to_nl"] = "to";
503   -//ln["of_nl"] = "of";
504   -//ln["datasets_nl"] = "datasets";
505   -////ln["availableDatasets_nl"] = "Beschikbare datasets";
506   -//ln["suggestedDatasets_nl"] = "Voeg aanbevolen datasets";
507   -//ln["selectedUrl_nl"] = "Selecteer url";
508   -//ln["wrongUrl_nl"] = "Ongeldige url of data provider nog niet ondersteund.";
509   -//
510   -////SELECT DATA
511   -//ln["expertAddFilters_nl"] = "EXPERT : ADD FILTERS";
512   -//
513   -////select-fields
514   -//ln["fields_nl"] = "FIELDS";
515   -//
516   -////data-table
517   -//ln["selectedData_nl"] = "SELECTED DATA";
518   -//ln["rows_nl"] = "rows";
519   -//ln["type_nl"] = "TYPE";
520   -//ln["warning_nl"] = "WARNING";
521   -//
522   -////filters
523   -//ln["filterField_nl"] = "Field";
524   -//ln["filterOperation_nl"] = "Operation";
525   -//ln["filterValue_nl"] = "Value";
526   -//
527   -//ln["=_nl"] = "is equal to";
528   -//ln["!=_nl"] = "is different from";
529   -//ln[">_nl"] = "is greater than";
530   -//ln[">=_nl"] = "is greater than or equal to";
531   -//ln["<_nl"] = "is less than";
532   -//ln["<=_nl"] = "is less than or equal to";
533   -//ln["contains_nl"] = "contains";
534   -//ln["notContains_nl"] = "not contains";
535   -//ln["start_nl"] = "start with";
536   -//ln["ends_nl"] = "ends with";
537   -//
538   -////SELECT VISUALIZATION
539   -//ln["inputs_nl"] = "INPUTS";
540   -//ln["baseInfo_nl"] = "BASIS INFO";
541   -//ln["layouts_nl"] = "LABELS / OPTIES";
542   -//ln["dataletPreview_nl"] = "VOORBEELD";
543   -//ln["addDatalet_nl"] = "TOEVOEGEN";
544   -//ln["modifyDatalet_nl"] = "WIJZIGEN";
545   -//
546   -////vslider
547   -//ln["search_nl"] = "Search";
548   -//
549   -//ln["datatable_nl"] = "Tafel";
550   -//ln["barchart_nl"] = "Bar";
551   -//ln["columnchart_nl"] = "Column";
552   -//ln["areachart_nl"] = "Area";
553   -//ln["linechart_nl"] = "Line";
554   -//ln["heatmap_nl"] = "Heat Map";
555   -//ln["barchart_stacked_nl"] = "Stacked Bar";
556   -//ln["columnchart_stacked_nl"] = "Stacked Column";
557   -//ln["areachart_stacked_nl"] = "Stacked Area";
558   -//ln["piechart_nl"] = "Pie";
559   -//ln["scatterchart_nl"] = "Scatter";
560   -//ln["bubblechart_nl"] = "Bubble";
561   -//ln["treemap_nl"] = "Tree Map";
562   -//ln["leafletjs_nl"] = "Map";
563   -//ln["leafletjs-geojson_nl"] = "Map Geojson";
564   -//
565   -////inputs
566   -//ln["expertGroupBy_nl"] = "EXPERT : GROUP BY";
567   -//
568   -//ln["sortAscending_nl"] = "sorted ascending";
569   -//ln["sortDescending_nl"] = "sorted descending";
570   -//ln["unsort_nl"] = "unsorted";
571   -//
572   -//ln["groupBy_nl"] = "GROUP BY";
573   -//ln["calculate_nl"] = "CALCULATE";
574   -//
575   -//ln["COUNT_nl"] = "COUNT of";
576   -//ln["SUM_nl"] = "SUM of";
577   -//ln["MIN_nl"] = "MIN of";
578   -//ln["MAX_nl"] = "MAX of";
579   -//ln["AVG_nl"] = "AVG of";
580   -//ln["FIRST_nl"] = "FIRST of";
581   -//ln["LAST_nl"] = "LAST of";
582   -//
583   -//ln["XAxis_nl"] = "X AXIS";
584   -//ln["YAxis_nl"] = "Y AXIS";
585   -//ln["NumericXAxis_nl"] = "X AXIS [num]";
586   -//ln["NumericYAxis_nl"] = "Y AXIS [num]";
587   -//ln["Column_nl"] = "COLUMN";
588   -//ln["Level_nl"] = "LEVEL";
589   -//ln["SliceLabels_nl"] = "LABEL";
590   -//ln["SliceSizes_nl"] = "SIZE [num]";
591   -//ln["Latitude_nl"] = "LATITUDE";
592   -//ln["Longitude_nl"] = "LONGITUDE";
593   -//ln["BalloonContent_nl"] = "BALLOON CONTENT";// [opt]
594   -//ln["GEOJSON_nl"] = "GEOJSON";
595   -//ln["BubbleContent_nl"] = "BUBBLE CONTENT";
596   -//ln["BubbleSize_nl"] = "BUBBLE SIZE [num]";
597   -//ln["Categories_nl"] = "CATEGORY [opt]";
598   -//
599   -////options
600   -//ln["title_nl"] = "Title"
601   -//ln["description_nl"] = "Description";
602   -//
603   -//ln["x-axis-label_nl"] = "X Axis Label";
604   -//ln["y-axis-label_nl"] = "Y Axis Label";
605   -//ln["suffix_nl"] = "Tooltip Suffix";
606   -//ln["theme_nl"] = "Theme";
607   -//ln["stack_nl"] = "Stack";
608   -//ln["donut_nl"] = "Donut";
609   -//
610   -//ln["x-axis-label_description_nl"] = "X Axis Label";
611   -//ln["y-axis-label_description_nl"] = "Y Axis Label";
612   -//ln["suffix_description_nl"] = "Tooltip Suffix";
613   -//ln["theme_description_nl"] = "Theme";
614   -//ln["stack_description_nl"] = "Stack";
615   -//ln["donut_description_nl"] = "Donut";
616 206 \ No newline at end of file
  207 +ln["stackDescription_en"] = "The stack type.";
  208 +ln["donutDescription_en"] = "Pie will become Donut! :) (or viceversa).";
  209 +
  210 +/******** IT ********/
  211 +
  212 +//PAGE SLIDER
  213 +
  214 +ln["slide1Title_it"] = "SELECT DATASET";
  215 +ln["slide1Subtitle_it"] = "Select a dataset from the list or copy and paste the url of dataset.";
  216 +ln["slide2Title_it"] = "SELECT DATA";
  217 +ln["slide2Subtitle_it"] = "Select the fields on the left. The table will show the values related to the selected fields.";
  218 +ln["slide3Title_it"] = "SELECT VISUALIZATION";
  219 +ln["slide3Subtitle_it"] = "Select a visualization, fill out inputs and options.";
  220 +ln["back_it"] = "BACK TO THE FUTURE";
  221 +ln["forward_it"] = "FORWARD";
  222 +
  223 +//SELECT DATASET
  224 +
  225 +ln["listView_it"] = "LIST VIEW";
  226 +ln["treeMapView_it"] = "TREE MAP VIEW";
  227 +ln["extendedSearch_it"] = "EXTENDED SEARCH";
  228 +ln["provider_it"] = "Provider";
  229 +ln["showing_it"] = "Showing";
  230 +ln["to_it"] = "to";
  231 +ln["of_it"] = "of";
  232 +ln["datasets_it"] = "datasets";
  233 +ln["suggestedDatasets_it"] = "Suggested datasets";
  234 +ln["selectedUrl_it"] = "Selected url";
  235 +ln["wrongUrl_it"] = "Invalid url or data provider not supported yet.";
  236 +
  237 +//SELECT DATA
  238 +
  239 +//select-fields
  240 +ln["fields_it"] = "FIELDS";
  241 +
  242 +//data-table
  243 +ln["selectedData_it"] = "SELECTED DATA";
  244 +ln["showing_it"] = "Showing";
  245 +ln["to_it"] = "to";
  246 +ln["of_it"] = "of";
  247 +ln["rows_it"] = "rows";
  248 +ln["type_it"] = "TYPE";
  249 +ln["warning_it"] = "WARNING";
  250 +
  251 +//expert
  252 +ln["expert_it"] = "EXPERT MODE";
  253 +ln["filters_it"] = "FILTERS";
  254 +ln["groupBy_it"] = "GROUP BY";
  255 +ln["query_it"] = "QUERY";
  256 +
  257 +//filters
  258 +ln["filterField_it"] = "Field";
  259 +ln["filterOperation_it"] = "Operation";
  260 +ln["filterValue_it"] = "Value";
  261 +
  262 +ln["disableFilters_it"] = "DISABLE FILTERS";
  263 +ln["enableFilters_it"] = "ENABLE FILTERS";
  264 +
  265 +ln["=_it"] = "="; //is equal to
  266 +ln["!=_it"] = "not ="; //is not equal to
  267 +ln[">_it"] = ">"; //is greater than
  268 +ln[">=_it"] = ">="; //is greater than or equal to
  269 +ln["<_it"] = "<"; //is less than
  270 +ln["<=_it"] = "<="; //is less than or equal to
  271 +ln["contains_it"] = "contains";
  272 +ln["notContains_it"] = "not contains";
  273 +ln["start_it"] = "start with";
  274 +ln["ends_it"] = "ends with";
  275 +
  276 +//aggregators
  277 +ln["GROUP BY_it"] = "GROUP BY";
  278 +ln["CALCULATE_it"] = "CALCULATE";
  279 +ln["Calculate_it"] = "Calculate";
  280 +ln["aggregatorField_it"] = "Field";
  281 +
  282 +ln["disableGroupBy_it"] = "DISABLE GROUP BY";
  283 +ln["enableGroupBy_it"] = "ENABLE GROUP BY";
  284 +
  285 +ln["COUNT_it"] = "COUNT of";
  286 +ln["SUM_it"] = "SUM of";
  287 +ln["MIN_it"] = "MIN of";
  288 +ln["MAX_it"] = "MAX of";
  289 +ln["AVG_it"] = "AVG of";
  290 +ln["FIRST_it"] = "FIRST of";
  291 +ln["LAST_it"] = "LAST of";
  292 +
  293 +//SELECT VISUALIZATION
  294 +
  295 +ln["addDatalet_it"] = "ADD";
  296 +ln["modifyDatalet_it"] = "MODIFY";
  297 +
  298 +//datalet-preview
  299 +ln["previewTab_it"] = "DATALET PREVIEW";
  300 +ln["infoTab_it"] = "DATALET INFO";
  301 +
  302 +//select-inputs
  303 +ln["baseInfo_it"] = "BASE INFO";
  304 +ln["inputs_it"] = "INPUTS";
  305 +ln["options_it"] = "OPTIONS";
  306 +
  307 +//vslider
  308 +ln["search_it"] = "Search";
  309 +
  310 +ln["datatable_it"] = "Table";
  311 +ln["barchart_it"] = "Bar Chart";
  312 +ln["columnchart_it"] = "Column Chart";
  313 +ln["areachart_it"] = "Area Chart";
  314 +ln["linechart_it"] = "Line Chart";
  315 +ln["heatmap_it"] = "Heat Map";
  316 +ln["piechart_it"] = "Pie Chart";
  317 +ln["scatterchart_it"] = "Scatter Chart";
  318 +ln["bubblechart_it"] = "Bubble Chart";
  319 +ln["treemap_it"] = "Tree Map";
  320 +ln["leafletjs_it"] = "Map";
  321 +ln["leafletjs-geojson_it"] = "Geojson Map";
  322 +
  323 +ln["datatableDescription_it"] = "A table is a means of arranging data in rows and columns.";
  324 +ln["barchartDescription_it"] = "A bar chart is a chart that presents grouped data with rectangular bars plotted horizontally with lengths proportional to the values that they represent.";
  325 +ln["columnchartDescription_it"] = "A column chart is a chart that presents grouped data with rectangular bars plotted vertically with lengths proportional to the values that they represent.";
  326 +ln["areachartDescription_it"] = "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.";
  327 +ln["linechartDescription_it"] = "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.";
  328 +ln["heatmapDescription_it"] = "A heat map is a graphical representation of data where the individual values contained in a matrix are represented as colors.";
  329 +ln["piechartDescription_it"] = "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.";
  330 +ln["scatterchartDescription_it"] = "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.";
  331 +ln["bubblechartDescription_it"] = "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.";
  332 +ln["treemapDescription_it"] = "A tree map is a chart for displaying hierarchical data by using nested rectangles.";
  333 +ln["leafletjsDescription_it"] = "";
  334 +ln["leafletjs-geojsonDescription_it"] = "";
  335 +
  336 +//inputs
  337 +ln["title_it"] = "Title"
  338 +ln["description_it"] = "Description";
  339 +
  340 +ln["sortAscending_it"] = "SORTED ASCENDING";
  341 +ln["sortDescending_it"] = "SORTED DESCENDING";
  342 +ln["unsort_it"] = "UNSORTED";
  343 +
  344 +//--> "_" not allowed!
  345 +ln["TITLE_it"] = "TITLE";
  346 +ln["DESCRIPTION_it"] = "DESCRIPTION";
  347 +ln["XAxis_it"] = "X-AXIS";
  348 +ln["YAxis_it"] = "Y-AXIS";
  349 +ln["NumericXAxis_it"] = "X-AXIS";
  350 +ln["NumericYAxis_it"] = "Y-AXIS";
  351 +ln["Column_it"] = "COLUMN";
  352 +ln["Level_it"] = "LEVEL";
  353 +ln["SliceLabels_it"] = "LABEL";
  354 +ln["SliceSizes_it"] = "SIZE";
  355 +ln["Latitude_it"] = "LATITUDE";
  356 +ln["Longitude_it"] = "LONGITUDE";
  357 +ln["BalloonContent_it"] = "BALLOON CONTENT";
  358 +ln["GEOJSON_it"] = "GEOJSON";
  359 +ln["GEOJSONContent_it"] = "GEOJSON CONTENT";
  360 +ln["BubbleContent_it"] = "BUBBLE CONTENT";
  361 +ln["BubbleSize_it"] = "BUBBLE SIZE";
  362 +ln["Categories_it"] = "CATEGORY";
  363 +
  364 +ln["TITLEDescription_it"] = "The datalet title.";
  365 +ln["DESCRIPTIONDescription_it"] = "The datalet description.";
  366 +ln["XAxisDescription_it"] = "The x-axis.";
  367 +ln["YAxisDescription_it"] = "The y-axis.";
  368 +ln["NumericXAxisDescription_it"] = "The x-axis.";
  369 +ln["NumericYAxisDescription_it"] = "The y-axis.";
  370 +ln["ColumnDescription_it"] = "The column of the table.";
  371 +ln["LevelDescription_it"] = "The level of the tree map.";
  372 +ln["SliceLabelsDescription_it"] = "The label of the slices.";
  373 +ln["SliceSizesDescription_it"] = "The size of the slices.";
  374 +ln["LatitudeDescription_it"] = "The latitude of locations.";
  375 +ln["LongitudeDescription_it"] = "The longitude of locations.";
  376 +ln["BalloonContentDescription_it"] = "The content of balloons.";
  377 +ln["GEOJSONDescription_it"] = "The GeoJSON data.";
  378 +ln["GEOJSONContentDescription_it"] = "The content of GeoJSON.";
  379 +ln["BubbleContentDescription_it"] = "The content of bubbles.";
  380 +ln["BubbleSizeDescription_it"] = "The size of bubbles.";
  381 +ln["CategoriesDescription_it"] = "The category that splits the y-axis values. If selected only the first selected y-axis will be considered.";
  382 +
  383 +//options
  384 +ln["x-axis-label_it"] = "X Axis Label";
  385 +ln["y-axis-label_it"] = "Y Axis Label";
  386 +ln["suffix_it"] = "Tooltip Suffix";
  387 +ln["legend_it"] = "Leged";
  388 +ln["data-labels_it"] = "Show Data Labels";
  389 +ln["stack_it"] = "Stack";
  390 +ln["theme_it"] = "Theme";
  391 +ln["donut_it"] = "Donut";
  392 +
  393 +ln["true_it"] = "Yes";
  394 +ln["false_it"] = "No";
  395 +ln["bottom_it"] = "Yes: Bottom";
  396 +ln["topRight_it"] = "Yes: Top Right";
  397 +ln["normal_it"] = "Yes: Normal";
  398 +ln["percent_it"] = "Yes: Percent";
  399 +ln["themeBase_it"] = "Base";
  400 +ln["themeDarkUnika_it"] = "Dark Unika";
  401 +ln["themeSandSignika_it"] = "Sand Signika";
  402 +ln["themeGridLight_it"] = "Grid Light";
  403 +ln["themeSpod_it"] = "Spod";
  404 +
  405 +ln["x-axis-labelDescription_it"] = "The x-axis label.";
  406 +ln["y-axis-labelDescription_it"] = "The y-axis label.";
  407 +ln["suffixDescription_it"] = "The suffix added to data labels in the tooltip.";
  408 +ln["legendDescription_it"] = "The leged position.";
  409 +ln["data-labelsDescription_it"] = "Show/hide data labels.";
  410 +ln["themeDescription_it"] = "The theme affects the appearance and colors of the chart.";
  411 +ln["stackDescription_it"] = "The stack type.";
  412 +ln["donutDescription_it"] = "Pie will become Donut! :) (or viceversa).";
  413 +
  414 +/******** FR ********/
  415 +
  416 +//PAGE SLIDER
  417 +
  418 +ln["slide1Title_fr"] = "SELECT DATASET";
  419 +ln["slide1Subtitle_fr"] = "Select a dataset from the list or copy and paste the url of dataset.";
  420 +ln["slide2Title_fr"] = "SELECT DATA";
  421 +ln["slide2Subtitle_fr"] = "Select the fields on the left. The table will show the values related to the selected fields.";
  422 +ln["slide3Title_fr"] = "SELECT VISUALIZATION";
  423 +ln["slide3Subtitle_fr"] = "Select a visualization, fill out inputs and options.";
  424 +ln["back_fr"] = "BACK TO THE FUTURE";
  425 +ln["forward_fr"] = "FORWARD";
  426 +
  427 +//SELECT DATASET
  428 +
  429 +ln["listView_fr"] = "LIST VIEW";
  430 +ln["treeMapView_fr"] = "TREE MAP VIEW";
  431 +ln["extendedSearch_fr"] = "EXTENDED SEARCH";
  432 +ln["provider_fr"] = "Provider";
  433 +ln["showing_fr"] = "Showing";
  434 +ln["to_fr"] = "to";
  435 +ln["of_fr"] = "of";
  436 +ln["datasets_fr"] = "datasets";
  437 +ln["suggestedDatasets_fr"] = "Suggested datasets";
  438 +ln["selectedUrl_fr"] = "Selected url";
  439 +ln["wrongUrl_fr"] = "Invalid url or data provider not supported yet.";
  440 +
  441 +//SELECT DATA
  442 +
  443 +//select-fields
  444 +ln["fields_fr"] = "FIELDS";
  445 +
  446 +//data-table
  447 +ln["selectedData_fr"] = "SELECTED DATA";
  448 +ln["showing_fr"] = "Showing";
  449 +ln["to_fr"] = "to";
  450 +ln["of_fr"] = "of";
  451 +ln["rows_fr"] = "rows";
  452 +ln["type_fr"] = "TYPE";
  453 +ln["warning_fr"] = "WARNING";
  454 +
  455 +//expert
  456 +ln["expert_fr"] = "EXPERT MODE";
  457 +ln["filters_fr"] = "FILTERS";
  458 +ln["groupBy_fr"] = "GROUP BY";
  459 +ln["query_fr"] = "QUERY";
  460 +
  461 +//filters
  462 +ln["filterField_fr"] = "Field";
  463 +ln["filterOperation_fr"] = "Operation";
  464 +ln["filterValue_fr"] = "Value";
  465 +
  466 +ln["disableFilters_fr"] = "DISABLE FILTERS";
  467 +ln["enableFilters_fr"] = "ENABLE FILTERS";
  468 +
  469 +ln["=_fr"] = "="; //is equal to
  470 +ln["!=_fr"] = "not ="; //is not equal to
  471 +ln[">_fr"] = ">"; //is greater than
  472 +ln[">=_fr"] = ">="; //is greater than or equal to
  473 +ln["<_fr"] = "<"; //is less than
  474 +ln["<=_fr"] = "<="; //is less than or equal to
  475 +ln["contains_fr"] = "contains";
  476 +ln["notContains_fr"] = "not contains";
  477 +ln["start_fr"] = "start with";
  478 +ln["ends_fr"] = "ends with";
  479 +
  480 +//aggregators
  481 +ln["GROUP BY_fr"] = "GROUP BY";
  482 +ln["CALCULATE_fr"] = "CALCULATE";
  483 +ln["Calculate_fr"] = "Calculate";
  484 +ln["aggregatorField_fr"] = "Field";
  485 +
  486 +ln["disableGroupBy_fr"] = "DISABLE GROUP BY";
  487 +ln["enableGroupBy_fr"] = "ENABLE GROUP BY";
  488 +
  489 +ln["COUNT_fr"] = "COUNT of";
  490 +ln["SUM_fr"] = "SUM of";
  491 +ln["MIN_fr"] = "MIN of";
  492 +ln["MAX_fr"] = "MAX of";
  493 +ln["AVG_fr"] = "AVG of";
  494 +ln["FIRST_fr"] = "FIRST of";
  495 +ln["LAST_fr"] = "LAST of";
  496 +
  497 +//SELECT VISUALIZATION
  498 +
  499 +ln["addDatalet_fr"] = "ADD";
  500 +ln["modifyDatalet_fr"] = "MODIFY";
  501 +
  502 +//datalet-preview
  503 +ln["previewTab_fr"] = "DATALET PREVIEW";
  504 +ln["infoTab_fr"] = "DATALET INFO";
  505 +
  506 +//select-inputs
  507 +ln["baseInfo_fr"] = "BASE INFO";
  508 +ln["inputs_fr"] = "INPUTS";
  509 +ln["options_fr"] = "OPTIONS";
  510 +
  511 +//vslider
  512 +ln["search_fr"] = "Search";
  513 +
  514 +ln["datatable_fr"] = "Table";
  515 +ln["barchart_fr"] = "Bar Chart";
  516 +ln["columnchart_fr"] = "Column Chart";
  517 +ln["areachart_fr"] = "Area Chart";
  518 +ln["linechart_fr"] = "Line Chart";
  519 +ln["heatmap_fr"] = "Heat Map";
  520 +ln["piechart_fr"] = "Pie Chart";
  521 +ln["scatterchart_fr"] = "Scatter Chart";
  522 +ln["bubblechart_fr"] = "Bubble Chart";
  523 +ln["treemap_fr"] = "Tree Map";
  524 +ln["leafletjs_fr"] = "Map";
  525 +ln["leafletjs-geojson_fr"] = "Geojson Map";
  526 +
  527 +ln["datatableDescription_fr"] = "A table is a means of arranging data in rows and columns.";
  528 +ln["barchartDescription_fr"] = "A bar chart is a chart that presents grouped data with rectangular bars plotted horizontally with lengths proportional to the values that they represent.";
  529 +ln["columnchartDescription_fr"] = "A column chart is a chart that presents grouped data with rectangular bars plotted vertically with lengths proportional to the values that they represent.";
  530 +ln["areachartDescription_fr"] = "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.";
  531 +ln["linechartDescription_fr"] = "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.";
  532 +ln["heatmapDescription_fr"] = "A heat map is a graphical representation of data where the individual values contained in a matrix are represented as colors.";
  533 +ln["piechartDescription_fr"] = "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.";
  534 +ln["scatterchartDescription_fr"] = "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.";
  535 +ln["bubblechartDescription_fr"] = "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.";
  536 +ln["treemapDescription_fr"] = "A tree map is a chart for displaying hierarchical data by using nested rectangles.";
  537 +ln["leafletjsDescription_fr"] = "";
  538 +ln["leafletjs-geojsonDescription_fr"] = "";
  539 +
  540 +//inputs
  541 +ln["title_fr"] = "Title"
  542 +ln["description_fr"] = "Description";
  543 +
  544 +ln["sortAscending_fr"] = "SORTED ASCENDING";
  545 +ln["sortDescending_fr"] = "SORTED DESCENDING";
  546 +ln["unsort_fr"] = "UNSORTED";
  547 +
  548 +//--> "_" not allowed!
  549 +ln["TITLE_fr"] = "TITLE";
  550 +ln["DESCRIPTION_fr"] = "DESCRIPTION";
  551 +ln["XAxis_fr"] = "X-AXIS";
  552 +ln["YAxis_fr"] = "Y-AXIS";
  553 +ln["NumericXAxis_fr"] = "X-AXIS";
  554 +ln["NumericYAxis_fr"] = "Y-AXIS";
  555 +ln["Column_fr"] = "COLUMN";
  556 +ln["Level_fr"] = "LEVEL";
  557 +ln["SliceLabels_fr"] = "LABEL";
  558 +ln["SliceSizes_fr"] = "SIZE";
  559 +ln["Latitude_fr"] = "LATITUDE";
  560 +ln["Longitude_fr"] = "LONGITUDE";
  561 +ln["BalloonContent_fr"] = "BALLOON CONTENT";
  562 +ln["GEOJSON_fr"] = "GEOJSON";
  563 +ln["GEOJSONContent_fr"] = "GEOJSON CONTENT";
  564 +ln["BubbleContent_fr"] = "BUBBLE CONTENT";
  565 +ln["BubbleSize_fr"] = "BUBBLE SIZE";
  566 +ln["Categories_fr"] = "CATEGORY";
  567 +
  568 +ln["TITLEDescription_fr"] = "The datalet title.";
  569 +ln["DESCRIPTIONDescription_fr"] = "The datalet description.";
  570 +ln["XAxisDescription_fr"] = "The x-axis.";
  571 +ln["YAxisDescription_fr"] = "The y-axis.";
  572 +ln["NumericXAxisDescription_fr"] = "The x-axis.";
  573 +ln["NumericYAxisDescription_fr"] = "The y-axis.";
  574 +ln["ColumnDescription_fr"] = "The column of the table.";
  575 +ln["LevelDescription_fr"] = "The level of the tree map.";
  576 +ln["SliceLabelsDescription_fr"] = "The label of the slices.";
  577 +ln["SliceSizesDescription_fr"] = "The size of the slices.";
  578 +ln["LatitudeDescription_fr"] = "The latitude of locations.";
  579 +ln["LongitudeDescription_fr"] = "The longitude of locations.";
  580 +ln["BalloonContentDescription_fr"] = "The content of balloons.";
  581 +ln["GEOJSONDescription_fr"] = "The GeoJSON data.";
  582 +ln["GEOJSONContentDescription_fr"] = "The content of GeoJSON.";
  583 +ln["BubbleContentDescription_fr"] = "The content of bubbles.";
  584 +ln["BubbleSizeDescription_fr"] = "The size of bubbles.";
  585 +ln["CategoriesDescription_fr"] = "The category that splits the y-axis values. If selected only the first selected y-axis will be considered.";
  586 +
  587 +//options
  588 +ln["x-axis-label_fr"] = "X Axis Label";
  589 +ln["y-axis-label_fr"] = "Y Axis Label";
  590 +ln["suffix_fr"] = "Tooltip Suffix";
  591 +ln["legend_fr"] = "Leged";
  592 +ln["data-labels_fr"] = "Show Data Labels";
  593 +ln["stack_fr"] = "Stack";
  594 +ln["theme_fr"] = "Theme";
  595 +ln["donut_fr"] = "Donut";
  596 +
  597 +ln["true_fr"] = "Yes";
  598 +ln["false_fr"] = "No";
  599 +ln["bottom_fr"] = "Yes: Bottom";
  600 +ln["topRight_fr"] = "Yes: Top Right";
  601 +ln["normal_fr"] = "Yes: Normal";
  602 +ln["percent_fr"] = "Yes: Percent";
  603 +ln["themeBase_fr"] = "Base";
  604 +ln["themeDarkUnika_fr"] = "Dark Unika";
  605 +ln["themeSandSignika_fr"] = "Sand Signika";
  606 +ln["themeGridLight_fr"] = "Grid Light";
  607 +ln["themeSpod_fr"] = "Spod";
  608 +
  609 +ln["x-axis-labelDescription_fr"] = "The x-axis label.";
  610 +ln["y-axis-labelDescription_fr"] = "The y-axis label.";
  611 +ln["suffixDescription_fr"] = "The suffix added to data labels in the tooltip.";
  612 +ln["legendDescription_fr"] = "The leged position.";
  613 +ln["data-labelsDescription_fr"] = "Show/hide data labels.";
  614 +ln["themeDescription_fr"] = "The theme affects the appearance and colors of the chart.";
  615 +ln["stackDescription_fr"] = "The stack type.";
  616 +ln["donutDescription_fr"] = "Pie will become Donut! :) (or viceversa).";
  617 +
  618 +/******** NL ********/
  619 +
  620 +//PAGE SLIDER
  621 +
  622 +ln["slide1Title_nl"] = "SELECT DATASET";
  623 +ln["slide1Subtitle_nl"] = "Select a dataset from the list or copy and paste the url of dataset.";
  624 +ln["slide2Title_nl"] = "SELECT DATA";
  625 +ln["slide2Subtitle_nl"] = "Select the fields on the left. The table will show the values related to the selected fields.";
  626 +ln["slide3Title_nl"] = "SELECT VISUALIZATION";
  627 +ln["slide3Subtitle_nl"] = "Select a visualization, fill out inputs and options.";
  628 +ln["back_nl"] = "BACK TO THE FUTURE";
  629 +ln["forward_nl"] = "FORWARD";
  630 +
  631 +//SELECT DATASET
  632 +
  633 +ln["listView_nl"] = "LIST VIEW";
  634 +ln["treeMapView_nl"] = "TREE MAP VIEW";
  635 +ln["extendedSearch_nl"] = "EXTENDED SEARCH";
  636 +ln["provider_nl"] = "Provider";
  637 +ln["showing_nl"] = "Showing";
  638 +ln["to_nl"] = "to";
  639 +ln["of_nl"] = "of";
  640 +ln["datasets_nl"] = "datasets";
  641 +ln["suggestedDatasets_nl"] = "Suggested datasets";
  642 +ln["selectedUrl_nl"] = "Selected url";
  643 +ln["wrongUrl_nl"] = "Invalid url or data provider not supported yet.";
  644 +
  645 +//SELECT DATA
  646 +
  647 +//select-fields
  648 +ln["fields_nl"] = "FIELDS";
  649 +
  650 +//data-table
  651 +ln["selectedData_nl"] = "SELECTED DATA";
  652 +ln["showing_nl"] = "Showing";
  653 +ln["to_nl"] = "to";
  654 +ln["of_nl"] = "of";
  655 +ln["rows_nl"] = "rows";
  656 +ln["type_nl"] = "TYPE";
  657 +ln["warning_nl"] = "WARNING";
  658 +
  659 +//expert
  660 +ln["expert_nl"] = "EXPERT MODE";
  661 +ln["filters_nl"] = "FILTERS";
  662 +ln["groupBy_nl"] = "GROUP BY";
  663 +ln["query_nl"] = "QUERY";
  664 +
  665 +//filters
  666 +ln["filterField_nl"] = "Field";
  667 +ln["filterOperation_nl"] = "Operation";
  668 +ln["filterValue_nl"] = "Value";
  669 +
  670 +ln["disableFilters_nl"] = "DISABLE FILTERS";
  671 +ln["enableFilters_nl"] = "ENABLE FILTERS";
  672 +
  673 +ln["=_nl"] = "="; //is equal to
  674 +ln["!=_nl"] = "not ="; //is not equal to
  675 +ln[">_nl"] = ">"; //is greater than
  676 +ln[">=_nl"] = ">="; //is greater than or equal to
  677 +ln["<_nl"] = "<"; //is less than
  678 +ln["<=_nl"] = "<="; //is less than or equal to
  679 +ln["contains_nl"] = "contains";
  680 +ln["notContains_nl"] = "not contains";
  681 +ln["start_nl"] = "start with";
  682 +ln["ends_nl"] = "ends with";
  683 +
  684 +//aggregators
  685 +ln["GROUP BY_nl"] = "GROUP BY";
  686 +ln["CALCULATE_nl"] = "CALCULATE";
  687 +ln["Calculate_nl"] = "Calculate";
  688 +ln["aggregatorField_nl"] = "Field";
  689 +
  690 +ln["disableGroupBy_nl"] = "DISABLE GROUP BY";
  691 +ln["enableGroupBy_nl"] = "ENABLE GROUP BY";
  692 +
  693 +ln["COUNT_nl"] = "COUNT of";
  694 +ln["SUM_nl"] = "SUM of";
  695 +ln["MIN_nl"] = "MIN of";
  696 +ln["MAX_nl"] = "MAX of";
  697 +ln["AVG_nl"] = "AVG of";
  698 +ln["FIRST_nl"] = "FIRST of";
  699 +ln["LAST_nl"] = "LAST of";
  700 +
  701 +//SELECT VISUALIZATION
  702 +
  703 +ln["addDatalet_nl"] = "ADD";
  704 +ln["modifyDatalet_nl"] = "MODIFY";
  705 +
  706 +//datalet-preview
  707 +ln["previewTab_nl"] = "DATALET PREVIEW";
  708 +ln["infoTab_nl"] = "DATALET INFO";
  709 +
  710 +//select-inputs
  711 +ln["baseInfo_nl"] = "BASE INFO";
  712 +ln["inputs_nl"] = "INPUTS";
  713 +ln["options_nl"] = "OPTIONS";
  714 +
  715 +//vslider
  716 +ln["search_nl"] = "Search";
  717 +
  718 +ln["datatable_nl"] = "Table";
  719 +ln["barchart_nl"] = "Bar Chart";
  720 +ln["columnchart_nl"] = "Column Chart";
  721 +ln["areachart_nl"] = "Area Chart";
  722 +ln["linechart_nl"] = "Line Chart";
  723 +ln["heatmap_nl"] = "Heat Map";
  724 +ln["piechart_nl"] = "Pie Chart";
  725 +ln["scatterchart_nl"] = "Scatter Chart";
  726 +ln["bubblechart_nl"] = "Bubble Chart";
  727 +ln["treemap_nl"] = "Tree Map";
  728 +ln["leafletjs_nl"] = "Map";
  729 +ln["leafletjs-geojson_nl"] = "Geojson Map";
  730 +
  731 +ln["datatableDescription_nl"] = "A table is a means of arranging data in rows and columns.";
  732 +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.";
  733 +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.";
  734 +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.";
  735 +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.";
  736 +ln["heatmapDescription_nl"] = "A heat map is a graphical representation of data where the individual values contained in a matrix are represented as colors.";
  737 +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.";
  738 +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.";
  739 +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.";
  740 +ln["treemapDescription_nl"] = "A tree map is a chart for displaying hierarchical data by using nested rectangles.";
  741 +ln["leafletjsDescription_nl"] = "";
  742 +ln["leafletjs-geojsonDescription_nl"] = "";
  743 +
  744 +//inputs
  745 +ln["title_nl"] = "Title"
  746 +ln["description_nl"] = "Description";
  747 +
  748 +ln["sortAscending_nl"] = "SORTED ASCENDING";
  749 +ln["sortDescending_nl"] = "SORTED DESCENDING";
  750 +ln["unsort_nl"] = "UNSORTED";
  751 +
  752 +//--> "_" not allowed!
  753 +ln["TITLE_nl"] = "TITLE";
  754 +ln["DESCRIPTION_nl"] = "DESCRIPTION";
  755 +ln["XAxis_nl"] = "X-AXIS";
  756 +ln["YAxis_nl"] = "Y-AXIS";
  757 +ln["NumericXAxis_nl"] = "X-AXIS";
  758 +ln["NumericYAxis_nl"] = "Y-AXIS";
  759 +ln["Column_nl"] = "COLUMN";
  760 +ln["Level_nl"] = "LEVEL";
  761 +ln["SliceLabels_nl"] = "LABEL";
  762 +ln["SliceSizes_nl"] = "SIZE";
  763 +ln["Latitude_nl"] = "LATITUDE";
  764 +ln["Longitude_nl"] = "LONGITUDE";
  765 +ln["BalloonContent_nl"] = "BALLOON CONTENT";
  766 +ln["GEOJSON_nl"] = "GEOJSON";
  767 +ln["GEOJSONContent_nl"] = "GEOJSON CONTENT";
  768 +ln["BubbleContent_nl"] = "BUBBLE CONTENT";
  769 +ln["BubbleSize_nl"] = "BUBBLE SIZE";
  770 +ln["Categories_nl"] = "CATEGORY";
  771 +
  772 +ln["TITLEDescription_nl"] = "The datalet title.";
  773 +ln["DESCRIPTIONDescription_nl"] = "The datalet description.";
  774 +ln["XAxisDescription_nl"] = "The x-axis.";
  775 +ln["YAxisDescription_nl"] = "The y-axis.";
  776 +ln["NumericXAxisDescription_nl"] = "The x-axis.";
  777 +ln["NumericYAxisDescription_nl"] = "The y-axis.";
  778 +ln["ColumnDescription_nl"] = "The column of the table.";
  779 +ln["LevelDescription_nl"] = "The level of the tree map.";
  780 +ln["SliceLabelsDescription_nl"] = "The label of the slices.";
  781 +ln["SliceSizesDescription_nl"] = "The size of the slices.";
  782 +ln["LatitudeDescription_nl"] = "The latitude of locations.";
  783 +ln["LongitudeDescription_nl"] = "The longitude of locations.";
  784 +ln["BalloonContentDescription_nl"] = "The content of balloons.";
  785 +ln["GEOJSONDescription_nl"] = "The GeoJSON data.";
  786 +ln["GEOJSONContentDescription_nl"] = "The content of GeoJSON.";
  787 +ln["BubbleContentDescription_nl"] = "The content of bubbles.";
  788 +ln["BubbleSizeDescription_nl"] = "The size of bubbles.";
  789 +ln["CategoriesDescription_nl"] = "The category that splits the y-axis values. If selected only the first selected y-axis will be considered.";
  790 +
  791 +//options
  792 +ln["x-axis-label_nl"] = "X Axis Label";
  793 +ln["y-axis-label_nl"] = "Y Axis Label";
  794 +ln["suffix_nl"] = "Tooltip Suffix";
  795 +ln["legend_nl"] = "Leged";
  796 +ln["data-labels_nl"] = "Show Data Labels";
  797 +ln["stack_nl"] = "Stack";
  798 +ln["theme_nl"] = "Theme";
  799 +ln["donut_nl"] = "Donut";
  800 +
  801 +ln["true_nl"] = "Yes";
  802 +ln["false_nl"] = "No";
  803 +ln["bottom_nl"] = "Yes: Bottom";
  804 +ln["topRight_nl"] = "Yes: Top Right";
  805 +ln["normal_nl"] = "Yes: Normal";
  806 +ln["percent_nl"] = "Yes: Percent";
  807 +ln["themeBase_nl"] = "Base";
  808 +ln["themeDarkUnika_nl"] = "Dark Unika";
  809 +ln["themeSandSignika_nl"] = "Sand Signika";
  810 +ln["themeGridLight_nl"] = "Grid Light";
  811 +ln["themeSpod_nl"] = "Spod";
  812 +
  813 +ln["x-axis-labelDescription_nl"] = "The x-axis label.";
  814 +ln["y-axis-labelDescription_nl"] = "The y-axis label.";
  815 +ln["suffixDescription_nl"] = "The suffix added to data labels in the tooltip.";
  816 +ln["legendDescription_nl"] = "The leged position.";
  817 +ln["data-labelsDescription_nl"] = "Show/hide data labels.";
  818 +ln["themeDescription_nl"] = "The theme affects the appearance and colors of the chart.";
  819 +ln["stackDescription_nl"] = "The stack type.";
  820 +ln["donutDescription_nl"] = "Pie will become Donut! :) (or viceversa).";
617 821 \ No newline at end of file
... ...