controllet_ln.js 38.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 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 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 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 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 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906
var ln = [];

ln["localization"] = "en";

/******** EN ********/

//PAGE SLIDER

ln["slide1Title_en"] = "SELECT DATASET";
ln["slide1Subtitle_en"] = "Select a dataset from the list or copy and paste the url of dataset.";
ln["slide2Title_en"] = "SELECT DATA";
ln["slide2Subtitle_en"] = "Select the fields on the left. The table will show the values related to the selected fields.";
ln["slide3Title_en"] = "SELECT VISUALIZATION";
ln["slide3Subtitle_en"] = "Select a visualization, fill out inputs and options.";
ln["back_en"] = "BACK TO THE FUTURE";
ln["forward_en"] = "FORWARD";

//SELECT DATASET

ln["selectedUrl_en"] = "Selected url";
ln["wrongUrl_en"] = "Invalid url or data provider not supported yet.";

ln["providersDatasets_en"] = "PROVIDERS DATASETS";
ln["spodUsersDatasets_en"] = "COCREATED DATASETS";
ln["datasets_en"] = "DATASETS LIST";

ln["provider_en"] = "Provider";
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.";

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.";

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";
ln["showing_en"] = "Showing";
ln["to_en"] = "to";
ln["of_en"] = "of";
ln["datasetsRows_en"] = "datasets";
ln["search_en"] = "Search";

//SELECT DATA

//select-fields
ln["fields_en"] = "FIELDS";

//data-table
ln["selectedData_en"] = "SELECTED DATA";
ln["showing_en"] = "Showing";
ln["to_en"] = "to";
ln["of_en"] = "of";
ln["rows_en"] = "rows";
ln["type_en"] = "TYPE";
ln["warning_en"] = "WARNING";

//expert
ln["expert_en"] = "EXPERT MODE";
ln["filters_en"] = "FILTERS";
ln["groupBy_en"] = "GROUP BY";
ln["query_en"] = "QUERY";

//filters
ln["filterField_en"] = "Field";
ln["filterOperation_en"] = "Operation";
ln["filterValue_en"] = "Value";

ln["disableFilters_en"] = "DISABLE FILTERS";
ln["enableFilters_en"] = "ENABLE FILTERS";

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
ln["contains_en"] = "contains";
ln["notContains_en"] = "not contains";
ln["start_en"] = "start with";
ln["ends_en"] = "ends with";

//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";

//SELECT VISUALIZATION

ln["addDatalet_en"] = "ADD";
ln["modifyDatalet_en"] = "MODIFY";

//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";

//vslider
ln["search_en"] = "Search";

ln["datatable_en"] = "Table";
ln["barchart_en"] = "Bar Chart";
ln["columnchart_en"] = "Column Chart";
ln["areachart_en"] = "Area Chart";
ln["linechart_en"] = "Line Chart";
ln["heatmap_en"] = "Heat Map";
ln["piechart_en"] = "Pie Chart";
ln["scatterchart_en"] = "Scatter Chart";
ln["bubblechart_en"] = "Bubble Chart";
ln["treemap_en"] = "Tree Map";
ln["leafletjs_en"] = "Map";
ln["leafletjs-geojson_en"] = "Geojson Map";

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"] = "";

//inputs
ln["title_en"] = "Title"
ln["description_en"] = "Description";

ln["sortAscending_en"] = "SORTED ASCENDING";
ln["sortDescending_en"] = "SORTED DESCENDING";
ln["unsort_en"] = "UNSORTED";

//--> "_" not allowed!
ln["TITLE_en"] = "TITLE";
ln["DESCRIPTION_en"] = "DESCRIPTION";
ln["XAxis_en"] = "X-AXIS";
ln["YAxis_en"] = "Y-AXIS";
ln["NumericXAxis_en"] = "X-AXIS";
ln["NumericYAxis_en"] = "Y-AXIS";
ln["Column_en"] = "COLUMN";
ln["Level_en"] = "LEVEL";
ln["SliceLabels_en"] = "LABEL";
ln["SliceSizes_en"] = "SIZE";
ln["Latitude_en"] = "LATITUDE";
ln["Longitude_en"] = "LONGITUDE";
ln["BalloonContent_en"] = "BALLOON CONTENT";
ln["GEOJSON_en"] = "GEOJSON";
ln["GEOJSONContent_en"] = "GEOJSON CONTENT";
ln["BubbleContent_en"] = "BUBBLE CONTENT";
ln["BubbleSize_en"] = "BUBBLE SIZE";
ln["Categories_en"] = "CATEGORY";

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.";

//options
ln["x-axis-label_en"] = "X Axis Label";
ln["y-axis-label_en"] = "Y Axis Label";
ln["suffix_en"] = "Tooltip Suffix";
ln["legend_en"] = "Legend";
ln["data-labels_en"] = "Show Data Labels";
ln["stack_en"] = "Stack";
ln["theme_en"] = "Theme";
ln["donut_en"] = "Donut";

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";

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.";
ln["legendDescription_en"] = "The legend position.";
ln["data-labelsDescription_en"] = "Show/hide data labels.";
ln["themeDescription_en"] = "The theme affects the appearance and colors of the chart.";
ln["stackDescription_en"] = "The stack type.";
ln["donutDescription_en"] = "Pie will become Donut! :) (or viceversa).";

/******** IT ********/

//PAGE SLIDER

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";

//SELECT DATASET

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";

ln["provider_it"] = "Provider";
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";
ln["datasetsRows_it"] = "dataset";
ln["search_it"] = "Ricerca";

//SELECT DATA

//select-fields
ln["fields_it"] = "CAMPI";

//data-table
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";

//expert
ln["expert_it"] = "MODALITA' ESPERTO";
ln["filters_it"] = "FILTRI";
ln["groupBy_it"] = "RAGGRUPPA PER";
ln["query_it"] = "INTERROGARE";

//filters
ln["filterField_it"] = "Campo";
ln["filterOperation_it"] = "Operazione";
ln["filterValue_it"] = "Valore";

ln["disableFilters_it"] = "DISABILITA FILTRI";
ln["enableFilters_it"] = "ABILITA FILTRI";

ln["=_it"] = "=";   //is equal to
ln["!=_it"] = "non =";  //is not equal to
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
ln["contains_it"] = "contiene";
ln["notContains_it"] = "non contiene";
ln["start_it"] = "inizia con";
ln["ends_it"] = "termina con";

//aggregators
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";

//SELECT VISUALIZATION

ln["addDatalet_it"] = "AGGIUNGI";
ln["modifyDatalet_it"] = "MODIFICA";

//datalet-preview
ln["previewTab_it"] = "ANTEPRIMA DATALET";
ln["infoTab_it"] = "DATALET INFO";

//select-inputs
ln["baseInfo_it"] = "INFO BASE";
ln["inputs_it"] = "INPUT";
ln["options_it"] = "OPZIONI";

//vslider
ln["search_it"] = "Cerca";

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";
ln["heatmap_it"] = "Heat Map";
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.";
ln["leafletjsDescription_it"] = "";
ln["leafletjs-geojsonDescription_it"] = "";

//inputs
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";
ln["GEOJSON_it"] = "GEOJSON";
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.";

//options
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";
ln["false_it"] = "No";
ln["bottom_it"] = "Si: in fondo";
ln["topRight_it"] = "Si: in alto a destra";
ln["normal_it"] = "Si: Normale";
ln["percent_it"] = "Si: Percentuale";
ln["themeBase_it"] = "Base";
ln["themeDarkUnika_it"] = "Dark Unika";
ln["themeSandSignika_it"] = "Sand Signika";
ln["themeGridLight_it"] = "Grid Light";
ln["themeSpod_it"] = "Spod";

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).";

/******** FR ********/

//PAGE SLIDER

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";

//SELECT DATASET

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";

ln["provider_fr"] = "Provider";
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";
ln["datasetsRows_fr"] = "dataset";
ln["search_fr"] = "Rechercher";

//SELECT DATA

//select-fields
ln["fields_fr"] = "CHAMPS";

//data-table
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";
ln["type_fr"] = "TYPE";
ln["warning_fr"] = "AVERTISSEMENT";

//expert
ln["expert_fr"] = "MODE EXPERT";
ln["filters_fr"] = "FILTRES";
ln["groupBy_fr"] = "GROUPE PAR";
ln["query_fr"] = "REQUÊTE";

//filters
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";

//aggregators
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";

//SELECT VISUALIZATION

ln["addDatalet_fr"] = "AJOUTER";
ln["modifyDatalet_fr"] = "MODIFIER";

//datalet-preview
ln["previewTab_fr"] = "APERÇU DU DATALET";
ln["infoTab_fr"] = "INFORMATIONS DU DATALET";

//select-inputs
ln["baseInfo_fr"] = "INFORMATIONS DE BASE";
ln["inputs_fr"] = "DONNÉES";
ln["options_fr"] = "OPTIONS";

//vslider
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.";
ln["leafletjsDescription_fr"] = "";
ln["leafletjs-geojsonDescription_fr"] = "";

//inputs
ln["title_fr"] = "Titre";
ln["description_fr"] = "Description";

ln["sortAscending_fr"] = "CLASSÉ DE MANIÈRE ASCENDANTE";
ln["sortDescending_fr"] = "CLASSÉ DE MANIÈRE DESCENDANTE";
ln["unsort_fr"] = "PAS CLASSÉ";

ln["TITLE_fr"] = "TITRE";
ln["DESCRIPTION_fr"] = "DESCRIPTION";
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";
ln["SliceLabels_fr"] = "LABEL";
ln["SliceSizes_fr"] = "TAILLE";
ln["Latitude_fr"] = "LATITUDE";
ln["Longitude_fr"] = "LONGITUDE";
ln["BalloonContent_fr"] = "CONTENU DE LA BULLE";
ln["GEOJSON_fr"] = "GEOJSON";
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é.";

//options
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";
ln["donut_fr"] = "Donut";

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";
ln["themeBase_fr"] = "Base";
ln["themeDarkUnika_fr"] = "Dark Unika";
ln["themeSandSignika_fr"] = "Sand Signika";
ln["themeGridLight_fr"] = "Grid Light";
ln["themeSpod_fr"] = "Spod";

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).";

/******** 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

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";

ln["provider_nl"] = "Provider";
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";
ln["showing_nl"] = "Showing";
ln["to_nl"] = "to";
ln["of_nl"] = "of";
ln["datasetsRows_nl"] = "dataset";
ln["search_nl"] = "Search";

//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";

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";
ln["legend_nl"] = "Legend";
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.";
ln["legendDescription_nl"] = "The legend position.";
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).";