Commit 79627d7e8478ce04d2e8c06f43e154b97b32593f
1 parent
8afcd1ba
controllet ln
Showing
7 changed files
with
257 additions
and
262 deletions
controllets/filters-controllet/filters-controllet.html
| ... | ... | @@ -201,7 +201,7 @@ |
| 201 | 201 | }, |
| 202 | 202 | |
| 203 | 203 | _translate : function() { |
| 204 | - this.$.addFilters.innerHTML = ln["addFilters_" + ln["localization"]]; | |
| 204 | + this.$.addFilters.innerHTML = ln["expertAddFilters_" + ln["localization"]]; | |
| 205 | 205 | this.$.filter_field.setAttribute("label", ln["filterField_" + ln["localization"]]); |
| 206 | 206 | this.$.filter_operation.setAttribute("label", ln["filterOperation_" + ln["localization"]]); |
| 207 | 207 | this.$.filter_value.setAttribute("label", ln["filterValue_" + ln["localization"]]); | ... | ... |
controllets/items-vslider-controllet/items-vslider-controllet.html
| ... | ... | @@ -86,9 +86,9 @@ |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | #items_vslider_search{ |
| 89 | - height: 48px; | |
| 90 | - padding: 0px 8px; | |
| 91 | - /*padding-top: 8px;*/ | |
| 89 | + /*height: 48px;*/ | |
| 90 | + /*padding: 0px 8px;*/ | |
| 91 | + padding: 4px 8px 4px 8px; | |
| 92 | 92 | background-color: #B6B6B6; |
| 93 | 93 | --paper-input-container-focus-color: #2196F3; |
| 94 | 94 | } | ... | ... |
controllets/select-dataset-controllet/demo/test.json
0 → 100644
controllets/select-visualization-controllet/select-datalet-inputs.html
| ... | ... | @@ -295,7 +295,8 @@ |
| 295 | 295 | |
| 296 | 296 | _translate : function(){ |
| 297 | 297 | this.$.inputs.innerHTML = ln["inputs_" + ln["localization"]]; |
| 298 | - this.$.groupBy.innerHTML = ln["groupBy_" + ln["localization"]]; | |
| 298 | + this.$.groupBy.innerHTML = ln["expertGroupBy_" + ln["localization"]]; | |
| 299 | + | |
| 299 | 300 | this.$.group_by.setAttribute("label", ln["groupBy_" + ln["localization"]]); |
| 300 | 301 | }, |
| 301 | 302 | ... | ... |
controllets/select-visualization-controllet/select-datalet-inputs_series.html
| ... | ... | @@ -251,7 +251,8 @@ |
| 251 | 251 | |
| 252 | 252 | _translate : function(){ |
| 253 | 253 | this.$.inputs.innerHTML = ln["inputs_" + ln["localization"]]; |
| 254 | - this.$.groupBy.innerHTML = ln["groupBy_" + ln["localization"]]; | |
| 254 | + this.$.groupBy.innerHTML = ln["expertGroupBy_" + ln["localization"]]; | |
| 255 | + | |
| 255 | 256 | this.$.group_by.setAttribute("label", ln["groupBy_" + ln["localization"]]); |
| 256 | 257 | }, |
| 257 | 258 | ... | ... |
datalets/bubblechart-datalet/bubblechart-datalet.html
| ... | ... | @@ -120,9 +120,9 @@ Examples: |
| 120 | 120 | title: { |
| 121 | 121 | text: this._component.title |
| 122 | 122 | }, |
| 123 | - subtitle: { | |
| 124 | - text: this._component.description | |
| 125 | - }, | |
| 123 | +// subtitle: { | |
| 124 | +// text: this._component.description | |
| 125 | +// }, | |
| 126 | 126 | xAxis: { |
| 127 | 127 | title: { |
| 128 | 128 | text: this._component.xAxisLabel | ... | ... |
locales/controllet_ln.js
| ... | ... | @@ -21,7 +21,7 @@ ln["selectedUrl_en"] = "Selected url"; |
| 21 | 21 | ln["wrongUrl_en"] = "Invalid url or data provider not supported yet."; |
| 22 | 22 | |
| 23 | 23 | //SELECT DATA |
| 24 | -ln["addFilters_en"] = "ADD FILTERS"; | |
| 24 | +ln["expertAddFilters_en"] = "EXPERT : ADD FILTERS"; | |
| 25 | 25 | |
| 26 | 26 | //filters |
| 27 | 27 | ln["filterField_en"] = "Field"; |
| ... | ... | @@ -58,6 +58,8 @@ ln["treemap_en"] = "Tree Map"; |
| 58 | 58 | ln["leafletjs_en"] = "Map"; |
| 59 | 59 | |
| 60 | 60 | //inputs |
| 61 | +ln["expertGroupBy_en"] = "EXPERT : GROUP BY"; | |
| 62 | + | |
| 61 | 63 | ln["sortAscending_en"] = "sorted ascending"; |
| 62 | 64 | ln["sortDescending_en"] = "sorted descending"; |
| 63 | 65 | ln["unsort_en"] = "unsorted"; |
| ... | ... | @@ -99,54 +101,80 @@ ln["theme_en"] = "Theme"; |
| 99 | 101 | ln["stack_en"] = "Stack"; |
| 100 | 102 | ln["donut_en"] = "Donut"; |
| 101 | 103 | |
| 102 | -ln["x-axis-label_description_en"] = "X Axis Label"; | |
| 103 | -ln["y-axis-label_description_en"] = "Y Axis Label"; | |
| 104 | -ln["suffix_description_en"] = "Tooltip Suffix"; | |
| 105 | -ln["theme_description_en"] = "Theme"; | |
| 106 | -ln["stack_description_en"] = "Stack"; | |
| 107 | -ln["donut_description_en"] = "Donut"; | |
| 104 | +ln["x-axis-label_description_en"] = "The label shown on the X axis"; | |
| 105 | +ln["y-axis-label_description_en"] = "The label shown on the Y axis"; | |
| 106 | +ln["suffix_description_en"] = "The suffix added to values ($,%, Kg, ...)"; | |
| 107 | +ln["theme_description_en"] = "The theme affects the appearance and colors of the graph"; | |
| 108 | +ln["stack_description_en"] = "If 'percent' normalization to 100 will be applied"; | |
| 109 | +ln["donut_description_en"] = "If 'true' Pie will become Donut! :)"; | |
| 108 | 110 | |
| 109 | 111 | /******** IT ********/ |
| 110 | 112 | |
| 113 | +//PAGE SLIDER | |
| 111 | 114 | ln["slide1Title_it"] = "SELEZIONA IL DATASET"; |
| 112 | 115 | ln["slide1Subtitle_it"] = "Ricerca o copia e incolla la url del dataset."; |
| 113 | 116 | ln["slide2Title_it"] = "SELEZIONA I DATI"; |
| 114 | 117 | ln["slide2Subtitle_it"] = "Seleziona i campi dalla struttura ad albero. Nella tabella saranno mostrati i valori dei campi selezionati."; |
| 115 | 118 | ln["slide3Title_it"] = "SELEZIONA LA VISUALIZZAZIONE"; |
| 116 | 119 | ln["slide3Subtitle_it"] = "Seleziona una visualizzazione, inserisci dati di input ed etichette (opzionale)."; |
| 120 | +ln["back_it"] = "Indietro"; | |
| 121 | +ln["forward_it"] = "Avanti"; | |
| 117 | 122 | |
| 118 | -ln["back_it"] = "INDIETRO"; | |
| 119 | -ln["forward_it"] = "AVANTI"; | |
| 120 | - | |
| 123 | +//SELECT DATASET | |
| 121 | 124 | ln["listView_it"] = "ELENCO"; |
| 122 | 125 | ln["treeMapView_it"] = "GRAFICO AD ALBERO"; |
| 123 | -ln["mostPopular_it"] = "I PIÙ VISTI"; | |
| 124 | 126 | ln["availableDatasets_it"] = "Dataset disponibili"; |
| 125 | 127 | ln["suggestedDatasets_it"] = "Dataset suggeriti"; |
| 126 | 128 | ln["selectedUrl_it"] = "Url selezionata"; |
| 127 | 129 | ln["wrongUrl_it"] = "Url invalido o data provider non ancora supportato."; |
| 128 | 130 | |
| 129 | -ln["inputs_it"] = "DATI DI INPUT"; | |
| 130 | -ln["layouts_it"] = "ETICHETTE / OPZIONI"; | |
| 131 | -ln["baseInfo_it"] = "INFORMAZIONI DI BASE"; | |
| 132 | -ln["comment_it"] = "COMMENTO"; | |
| 133 | -ln["commentLabel_it"] = "commento (massimo 100 caratteri)"; | |
| 134 | -ln["dataletPreview_it"] = "ANTEPRIMA"; | |
| 135 | -ln["addDatalet_it"] = "AGGIUNGI"; | |
| 136 | -ln["modifyDatalet_it"] = "MODIFICA"; | |
| 131 | +//SELECT DATA | |
| 132 | +ln["expertAddFilters_it"] = "ESPERTO : AGGIUNGI FILTRI"; | |
| 137 | 133 | |
| 138 | -ln["addFilters_it"] = "AGGIUNGI FILTRI"; | |
| 134 | +//filters | |
| 139 | 135 | ln["filterField_it"] = "Campo"; |
| 140 | 136 | ln["filterOperation_it"] = "Operazione"; |
| 141 | 137 | ln["filterValue_it"] = "Valore"; |
| 142 | 138 | ln["contains_it"] = "contiene"; |
| 143 | 139 | ln["start_it"] = "inizia con"; |
| 144 | 140 | ln["ends_it"] = "finisce con"; |
| 141 | + | |
| 142 | +//SELECT VISUALIZATION | |
| 143 | +ln["inputs_it"] = "DATI DI INPUT"; | |
| 144 | +ln["baseInfo_it"] = "INFORMAZIONI DI BASE"; | |
| 145 | +ln["layouts_it"] = "ETICHETTE / OPZIONI"; | |
| 146 | +ln["dataletPreview_it"] = "ANTEPRIMA DELLA DATALET"; | |
| 147 | +ln["addDatalet_it"] = "AGGIUNGI"; | |
| 148 | +ln["modifyDatalet_it"] = "MODIFICA"; | |
| 149 | + | |
| 150 | +//vslider | |
| 151 | +ln["search_it"] = "Cerca"; | |
| 152 | + | |
| 153 | +ln["datatable_it"] = "Tabella"; | |
| 154 | +ln["barchart_it"] = "Grafico a barre"; | |
| 155 | +ln["columnchart_it"] = "Grafico a colonne"; | |
| 156 | +ln["areachart_it"] = "Grafico ad area"; | |
| 157 | +ln["linechart_it"] = "Grafico a linee"; | |
| 158 | +ln["heatmap_it"] = "Mappa termica"; | |
| 159 | +ln["barchart_stacked_it"] = "Grafico a barre in pila"; | |
| 160 | +ln["columnchart_stacked_it"] = "Grafico a colonne in pila"; | |
| 161 | +ln["areachart_stacked_it"] = "Grafico ad area in pila"; | |
| 162 | +ln["piechart_it"] = "Grafico a torta"; | |
| 163 | +ln["scatterchart_it"] = "Grafico a dispersione"; | |
| 164 | +ln["bubblechart_it"] = "Grafico a bolle"; | |
| 165 | +ln["treemap_it"] = "Grafico ad albero"; | |
| 166 | +ln["leafletjs_it"] = "Mappa"; | |
| 167 | + | |
| 168 | +//inputs | |
| 169 | +ln["expertGroupBy_it"] = "ESPERTO : RAGGRUPPA"; | |
| 170 | + | |
| 145 | 171 | ln["sortAscending_it"] = "ordinamento crescente"; |
| 146 | 172 | ln["sortDescending_it"] = "ordinamento decrescente"; |
| 147 | 173 | ln["unsort_it"] = "non ordinato"; |
| 174 | + | |
| 148 | 175 | ln["groupBy_it"] = "RAGGRUPPA"; |
| 149 | 176 | ln["calculate_it"] = "CALCOLA"; |
| 177 | + | |
| 150 | 178 | ln["COUNT_it"] = "CONTEGGIO di"; |
| 151 | 179 | ln["SUM_it"] = "SOMMA di"; |
| 152 | 180 | ln["MIN_it"] = "MINIMO di"; |
| ... | ... | @@ -155,109 +183,106 @@ ln["AVG_it"] = "MEDIA di"; |
| 155 | 183 | ln["FIRST_it"] = "PRIMO di"; |
| 156 | 184 | ln["LAST_it"] = "ULTIMO di"; |
| 157 | 185 | |
| 158 | -ln["datatable_it"] = "tabella"; | |
| 159 | -ln["barchart_it"] = "bar-chart"; | |
| 160 | -ln["columnchart_it"] = "column-chart"; | |
| 161 | -ln["linechart_it"] = "line-chart"; | |
| 162 | -ln["column3Dchart_it"] = "3D column-chart"; | |
| 163 | -ln["areachart_it"] = "area-chart"; | |
| 164 | -ln["donutpie3dchart_it"] = "3D donutpie-chart"; | |
| 165 | -ln["piechart_it"] = "pie-chart"; | |
| 166 | -ln["treemap_it"] = "tree-map"; | |
| 167 | -ln["leafletjs_it"] = "map"; | |
| 168 | -ln["bubble3d_it"] = "3D bubble-chart"; | |
| 169 | -ln["bubblechart_it"] = "bubble-chart"; | |
| 170 | -ln["scatterchart_it"] = "scatter-chart"; | |
| 171 | -ln["heatmap_it"] = "heat-map"; | |
| 172 | - | |
| 173 | -ln["title_it"] = "titolo"; | |
| 174 | -ln["description_it"] = "descrizione"; | |
| 175 | - | |
| 176 | -ln["Cell_it"] = "Cella"; | |
| 177 | -ln["Level_it"] = "Livello"; | |
| 178 | -ln["Categories_it"] = "Categorie"; | |
| 179 | -ln["Series_it"] = "Serie"; | |
| 180 | -ln["x-axis-label_it"] = "etichetta asse X"; | |
| 181 | -ln["y-axis-label_it"] = "etichetta asse Y"; | |
| 182 | -ln["z-axis-label_it"] = "etichetta asse Z"; | |
| 183 | -ln["suffix_it"] = "Suffisso"; | |
| 184 | -ln["Size_it"] = "Dimensione"; | |
| 185 | -ln["Latitude_it"] = "Latitudine"; | |
| 186 | -ln["Longitude_it"] = "Longitudine"; | |
| 187 | -ln["Balloon content_it"] = "Contenuto della bolla"; | |
| 188 | -ln["X values_it"] = "Valori asse X"; | |
| 189 | -ln["Y values_it"] = "Valori asse Y"; | |
| 190 | -ln["Z values_it"] = "Valori asse Z"; | |
| 191 | - | |
| 192 | -ln["cellDescription_it"] = "Cella della tabella."; | |
| 193 | -ln["levelDescription_it"] = "Livello utilizzato per il raggruppamento dei valori corrispondenti."; | |
| 194 | - | |
| 195 | -ln["categoriesDescription_it"] = "Categorie del grafico. I valori saranno inseriti sull’asse orizzontale. Inserire un valore per ciascuna serie."; | |
| 196 | -ln["seriesDescription_it"] = "Serie del grafico. I valori saranno inseriti sull’asse verticale."; | |
| 197 | - | |
| 198 | -ln["XAxisLabelDescription_it"] = "Etichetta asse X."; | |
| 199 | -ln["YAxisLabelDescription_it"] = "Etichetta asse Y."; | |
| 200 | -ln["suffixDescription_it"] = "Suffisso valore (e.g. unità di misura, dollari, euro,…)."; | |
| 201 | - | |
| 202 | -ln["pieSeriesDescription_it"] = "Serie del grafico. I valori saranno inseriti sulla porzione corrispondente alla relativa serie."; | |
| 203 | -ln["pieSizeDescription_it"] = "Dimensione di ciascuna serie per creare anelli concentrici"; | |
| 204 | - | |
| 205 | -ln["bubbleCategoriesDescription_it"] = "Serie del grafico. Inserire un valore per ciascuna serie."; | |
| 206 | -ln["bubbleYValuesDescription_it"] = "Valori y del grafico. I valori saranno inseriti sull’asse verticale"; | |
| 207 | -ln["bubbleZValuesDescription_it"] = "Valori z del grafico. I valori rappresentano la dimensione della bolla."; | |
| 208 | -ln["bubbleSeriesDescription_it"] = "Serie del grafico. I valori visualizzano un grafico a bolle a serie multipla."; | |
| 209 | - | |
| 210 | -ln["scatterCategoriesDescription_it"] = "Categorie del grafico. Inserire un valore per ciascuna serie."; | |
| 211 | -ln["scatterXValuesDescription_it"] = "Serie del grafico. I valori saranno inseriti sull’asse orizzontale."; | |
| 212 | -ln["scatterYValuesDescription_it"] = "Serie del grafico. I valori saranno inseriti sull’asse verticale.."; | |
| 213 | - | |
| 214 | -ln["heatmapCategoriesDescription_it"] = "Categorie del grafico. I valori saranno inseriti sull’asse orizzontale."; | |
| 215 | - | |
| 216 | -ln["LatitudeDescription_it"] = "Latitudine del punto da riportare sulla mappa."; | |
| 217 | -ln["LongitudeDescription_it"] = "Longitudine del punto da riportare sulla mappa."; | |
| 218 | -ln["BalloonContentDescription_it"] = "Descrizione del segnaposto o link all'immagine che visualizza il luogo specificato sulla mappa."; | |
| 186 | +ln["XAxis_it"] = "ASSE X"; | |
| 187 | +ln["YAxis_it"] = "ASSE Y"; | |
| 188 | +ln["NumericXAxis_it"] = "ASSE X [num]"; | |
| 189 | +ln["NumericYAxis_it"] = "ASSE Y [num]"; | |
| 190 | +ln["Column_it"] = "COLONNA"; | |
| 191 | +ln["Level_it"] = "LIVELLO"; | |
| 192 | +ln["SliceLabels_it"] = "ETICHETTA"; | |
| 193 | +ln["SliceSizes_it"] = "DIMENSIONE [num]"; | |
| 194 | +ln["Latitude_it"] = "LATITUDINE"; | |
| 195 | +ln["Longitude_it"] = "LONGITUDINE"; | |
| 196 | +ln["BalloonContent_it"] = "CONTENUTO"; | |
| 197 | +ln["BubbleContent_it"] = "CONTENUTO BOLLA"; | |
| 198 | +ln["BubbleSize_it"] = "DIMENSIONE BOLLA [num]"; | |
| 199 | +ln["Categories_it"] = "CATEGORIA [opt]"; | |
| 200 | + | |
| 201 | +//options | |
| 202 | +ln["title_it"] = "Titolo" | |
| 203 | +ln["description_it"] = "Descrizione"; | |
| 204 | + | |
| 205 | +ln["x-axis-label_it"] = "Etichetta asse X"; | |
| 206 | +ln["y-axis-label_it"] = "Etichetta asse Y"; | |
| 207 | +ln["suffix_it"] = "Suffisso tooltip"; | |
| 208 | +ln["theme_it"] = "Tema"; | |
| 209 | +ln["stack_it"] = "Stack"; | |
| 210 | +ln["donut_it"] = "Ciambella"; | |
| 211 | + | |
| 212 | +ln["x-axis-label_description_it"] = "L'etichetta che verrà visualizzata sull'asse delle X"; | |
| 213 | +ln["y-axis-label_description_it"] = "L'etichetta che verrà visualizzata sull'asse delle Y"; | |
| 214 | +ln["suffix_description_it"] = "Il suffisso che verrà aggiunto ai valori ($, %, Kg, ...)"; | |
| 215 | +ln["theme_description_it"] = "Il tema influenza l'estetica e i colori del grafico"; | |
| 216 | +ln["stack_description_it"] = "Se 'percent' sarà applicata la normalizzazione a 100"; | |
| 217 | +ln["donut_description_it"] = "Se 'true' il grafico a torta diventerà a ciambella! :)"; | |
| 219 | 218 | |
| 220 | 219 | /******** FR ********/ |
| 221 | 220 | |
| 222 | -ln["slide1Title_fr"] = "SELECTIONNER UN JEU DE DONNEES"; | |
| 223 | -ln["slide1Subtitle_fr"] = "Rechercher ou copier/coller l’url du jeu de données."; | |
| 224 | -ln["slide2Title_fr"] = "SELECTIONNER DONNEES"; | |
| 225 | -ln["slide2Subtitle_fr"] = "Sélectionner les champs à partir de l’arborescence. Une fenêtre vous indiquera les valeurs relatives aux champs sélectionnés."; | |
| 226 | -ln["slide3Title_fr"] = "SELECTIONNER UN MODE DE VISUALISATION"; | |
| 227 | -ln["slide3Subtitle_fr"] = "Sélectionner un mode de visualisation, remplir les entrées et les vignettes (optionnel)."; | |
| 228 | - | |
| 229 | -ln["back_fr"] = "RETOUR"; | |
| 230 | -ln["forward_fr"] = "AVANT"; | |
| 231 | - | |
| 232 | -ln["listView_fr"] = "VUE EN LISTE"; | |
| 233 | -ln["treeMapView_fr"] = "VUE EN ARBORESCENCE"; | |
| 234 | -ln["mostPopular_fr"] = "LES PLUS POPULAIRES"; | |
| 235 | -ln["availableDatasets_fr"] = "Jeux de données disponibles"; | |
| 236 | -ln["suggestedDatasets_fr"] = "Jeux de données suggérés"; | |
| 237 | -ln["selectedUrl_fr"] = "Sélectionner URL"; | |
| 221 | +//PAGE SLIDER | |
| 222 | +ln["slide1Title_fr"] = "SELECT DATASET"; | |
| 223 | +ln["slide1Subtitle_fr"] = "Search or copy and paste the url of dataset."; | |
| 224 | +ln["slide2Title_fr"] = "SELECT DATA"; | |
| 225 | +ln["slide2Subtitle_fr"] = "Select the fields from tree-view. The multi-table will show the values related to the selected fields."; | |
| 226 | +ln["slide3Title_fr"] = "SELECT VISUALIZATION"; | |
| 227 | +ln["slide3Subtitle_fr"] = "Select a visualization, fill out inputs and labels (optional)."; | |
| 228 | +ln["back_fr"] = "Back"; | |
| 229 | +ln["forward_fr"] = "Forward"; | |
| 230 | + | |
| 231 | +//SELECT DATASET | |
| 232 | +ln["listView_fr"] = "LIST VIEW"; | |
| 233 | +ln["treeMapView_fr"] = "TREE MAP VIEW"; | |
| 234 | +ln["availableDatasets_fr"] = "Available datasets"; | |
| 235 | +ln["suggestedDatasets_fr"] = "Suggested datasets"; | |
| 236 | +ln["selectedUrl_fr"] = "Selected url"; | |
| 238 | 237 | ln["wrongUrl_fr"] = "Invalid url or data provider not supported yet."; |
| 239 | 238 | |
| 240 | -ln["inputs_fr"] = "SORTIES"; | |
| 241 | -ln["layouts_fr"] = "VIGNETTES/OPTIONSs"; | |
| 242 | -ln["baseInfo_fr"] = "INFORMATION DE BASE"; | |
| 243 | -ln["comment_fr"] = "COMMENTAIRES"; | |
| 244 | -ln["commentLabel_fr"] = "Commentaires (maximum 100 caractères)"; | |
| 245 | -ln["dataletPreview_fr"] = "PREVISUALISATION"; | |
| 246 | -ln["addDatalet_fr"] = "AJOUTER"; | |
| 247 | -ln["modifyDatalet_fr"] = "MODIFIER"; | |
| 239 | +//SELECT DATA | |
| 240 | +ln["expertAddFilters_fr"] = "EXPERT : ADD FILTERS"; | |
| 248 | 241 | |
| 249 | -ln["addFilters_fr"] = "ADD FILTERS"; | |
| 242 | +//filters | |
| 250 | 243 | ln["filterField_fr"] = "Field"; |
| 251 | 244 | ln["filterOperation_fr"] = "Operation"; |
| 252 | 245 | ln["filterValue_fr"] = "Value"; |
| 253 | 246 | ln["contains_fr"] = "contains"; |
| 254 | 247 | ln["start_fr"] = "start with"; |
| 255 | 248 | ln["ends_fr"] = "ends with"; |
| 249 | + | |
| 250 | +//SELECT VISUALIZATION | |
| 251 | +ln["inputs_fr"] = "INPUTS"; | |
| 252 | +ln["baseInfo_fr"] = "BASE INFO"; | |
| 253 | +ln["layouts_fr"] = "LABELS / OPTIONS"; | |
| 254 | +ln["dataletPreview_fr"] = "DATALET PREVIEW"; | |
| 255 | +ln["addDatalet_fr"] = "ADD"; | |
| 256 | +ln["modifyDatalet_fr"] = "MODIFY"; | |
| 257 | + | |
| 258 | +//vslider | |
| 259 | +ln["search_fr"] = "Search"; | |
| 260 | + | |
| 261 | +ln["datatable_fr"] = "Table"; | |
| 262 | +ln["barchart_fr"] = "Bar"; | |
| 263 | +ln["columnchart_fr"] = "Column"; | |
| 264 | +ln["areachart_fr"] = "Area"; | |
| 265 | +ln["linechart_fr"] = "Line"; | |
| 266 | +ln["heatmap_fr"] = "Heat Map"; | |
| 267 | +ln["barchart_stacked_fr"] = "Stacked Bar"; | |
| 268 | +ln["columnchart_stacked_fr"] = "Stacked Column"; | |
| 269 | +ln["areachart_stacked_fr"] = "Stacked Area"; | |
| 270 | +ln["piechart_fr"] = "Pie"; | |
| 271 | +ln["scatterchart_fr"] = "Scatter"; | |
| 272 | +ln["bubblechart_fr"] = "Bubble"; | |
| 273 | +ln["treemap_fr"] = "Tree Map"; | |
| 274 | +ln["leafletjs_fr"] = "Map"; | |
| 275 | + | |
| 276 | +//inputs | |
| 277 | +ln["expertGroupBy_fr"] = "EXPERT : GROUP BY"; | |
| 278 | + | |
| 256 | 279 | ln["sortAscending_fr"] = "sorted ascending"; |
| 257 | 280 | ln["sortDescending_fr"] = "sorted descending"; |
| 258 | 281 | ln["unsort_fr"] = "unsorted"; |
| 282 | + | |
| 259 | 283 | ln["groupBy_fr"] = "GROUP BY"; |
| 260 | 284 | ln["calculate_fr"] = "CALCULATE"; |
| 285 | + | |
| 261 | 286 | ln["COUNT_fr"] = "COUNT of"; |
| 262 | 287 | ln["SUM_fr"] = "SUM of"; |
| 263 | 288 | ln["MIN_fr"] = "MIN of"; |
| ... | ... | @@ -266,109 +291,106 @@ ln["AVG_fr"] = "AVG of"; |
| 266 | 291 | ln["FIRST_fr"] = "FIRST of"; |
| 267 | 292 | ln["LAST_fr"] = "LAST of"; |
| 268 | 293 | |
| 269 | -ln["datatable_fr"] = "table fr"; | |
| 270 | -ln["barchart_fr"] = "barchart"; | |
| 271 | -ln["columnchart_fr"] = "columnchart"; | |
| 272 | -ln["linechart_fr"] = "linechart"; | |
| 273 | -ln["column3Dchart_fr"] = "column3Dchart"; | |
| 274 | -ln["areachart_fr"] = "areachart"; | |
| 275 | -ln["donutpie3dchart_fr"] = "donutpie3dchart"; | |
| 276 | -ln["piechart_fr"] = "piechart"; | |
| 277 | -ln["treemap_fr"] = "treemap"; | |
| 278 | -ln["leafletjs_fr"] = "map"; | |
| 279 | -ln["bubble3d_fr"] = "bubble3d"; | |
| 280 | -ln["bubblechart_fr"] = "bubblechart"; | |
| 281 | -ln["scatterchart_fr"] = "scatterchart"; | |
| 282 | -ln["heatmap_fr"] = "heatmap"; | |
| 283 | - | |
| 284 | -ln["title_fr"] = "title"; | |
| 285 | -ln["description_fr"] = "description"; | |
| 286 | - | |
| 287 | -ln["Cell_fr"] = "Cell"; | |
| 288 | -ln["Level_fr"] = "Level"; | |
| 289 | -ln["Categories_fr"] = "Categories"; | |
| 290 | -ln["Series_fr"] = "Series"; | |
| 291 | -ln["x-axis-label_fr"] = "x-axis-label"; | |
| 292 | -ln["y-axis-label_fr"] = "y-axis-label"; | |
| 293 | -ln["z-axis-label_fr"] = "z-axis-label"; | |
| 294 | -ln["suffix_fr"] = "suffix"; | |
| 295 | -ln["Size_fr"] = "Size"; | |
| 296 | -ln["Latitude_fr"] = "Latitude"; | |
| 297 | -ln["Longitude_fr"] = "Longitude"; | |
| 298 | -ln["Balloon content_fr"] = "Balloon content"; | |
| 299 | -ln["X values_fr"] = "X values"; | |
| 300 | -ln["Y values_fr"] = "Y values"; | |
| 301 | -ln["Z values_fr"] = "Z values"; | |
| 302 | - | |
| 303 | -ln["cellDescription_fr"] = "Cellules du tableau."; | |
| 304 | -ln["levelDescription_fr"] = "C’est le niveau local que le graphique utilisera pour grouper les valeurs correspondantes au nombre de niveaux de champs"; | |
| 305 | - | |
| 306 | -ln["categoriesDescription_fr"] = "Catégories de graphiques. Ces valeurs seront insérées dans l’axe horizontal. Vous devez insérer une valeur pour chaque série."; | |
| 307 | -ln["seriesDescription_fr"] = "Catégories de graphique. Ces valeurs seront insérées dans l’axe vertical."; | |
| 308 | - | |
| 309 | -ln["XAxisLabelDescription_fr"] = "Vignette pour l’axe X."; | |
| 310 | -ln["YAxisLabelDescription_fr"] = "Vignette pour l’axe Y."; | |
| 311 | -ln["suffixDescription_fr"] = "Unités de mesures (ex: dollars, euros."; | |
| 312 | - | |
| 313 | -ln["pieSeriesDescription_fr"] = "Série de graphiques. Ces valeurs seront intégrées au sein des segments de chaque série."; | |
| 314 | -ln["pieSizeDescription_fr"] = "Taille de chaque série afin de créer un anneau concentrique."; | |
| 315 | - | |
| 316 | -ln["bubbleCategoriesDescription_fr"] = "Catégories de graphique. Ces valeurs seront insérées dans l’axe horizontal. Vous devez insérer une valeur pour chaque série."; | |
| 317 | -ln["bubbleYValuesDescription_fr"] = "Le graphique présente les valeurs Y. Ces valeurs seront insérées dans l’axe vertical."; | |
| 318 | -ln["bubbleZValuesDescription_fr"] = "Le graphique présente les valeurs Z. Ces valeurs représentent la taille des bulles."; | |
| 319 | -ln["bubbleSeriesDescription_fr"] = "The chart series. Its values visualize multi- series bubbles chart."; | |
| 320 | - | |
| 321 | -ln["scatterCategoriesDescription_fr"] = "The chart categories. You need one value for each series."; | |
| 322 | -ln["scatterXValuesDescription_fr"] = "The chart plots x values. Its values will be put in the horizontal axis."; | |
| 323 | -ln["scatterYValuesDescription_fr"] = "The chart plots y value. Its values will be put in the vertical axis."; | |
| 324 | - | |
| 325 | -ln["heatmapCategoriesDescription_fr"] = "The chart categories. Its values will be put in the horizontal axis."; | |
| 326 | - | |
| 327 | -ln["LatitudeDescription_fr"] = "Latitude des points que vous souhaitez montrer sur la carte."; | |
| 328 | -ln["LongitudeDescription_fr"] = "Longitude des points que vous souhaitez montrer sur la carte."; | |
| 329 | -ln["BalloonContentDescription_fr"] = "It is the text associated to the marker or the link to the image related to the camera associated to each points."; | |
| 294 | +ln["XAxis_fr"] = "X AXIS"; | |
| 295 | +ln["YAxis_fr"] = "Y AXIS"; | |
| 296 | +ln["NumericXAxis_fr"] = "X AXIS [num]"; | |
| 297 | +ln["NumericYAxis_fr"] = "Y AXIS [num]"; | |
| 298 | +ln["Column_fr"] = "COLUMN"; | |
| 299 | +ln["Level_fr"] = "LEVEL"; | |
| 300 | +ln["SliceLabels_fr"] = "LABEL"; | |
| 301 | +ln["SliceSizes_fr"] = "SIZE [num]"; | |
| 302 | +ln["Latitude_fr"] = "LATITUDE"; | |
| 303 | +ln["Longitude_fr"] = "LONGITUDE"; | |
| 304 | +ln["BalloonContent_fr"] = "BALLOON CONTENT";// [opt] | |
| 305 | +ln["BubbleContent_fr"] = "BUBBLE CONTENT"; | |
| 306 | +ln["BubbleSize_fr"] = "BUBBLE SIZE [num]"; | |
| 307 | +ln["Categories_fr"] = "CATEGORY [opt]"; | |
| 308 | + | |
| 309 | +//options | |
| 310 | +ln["title_fr"] = "Title" | |
| 311 | +ln["description_fr"] = "Description"; | |
| 312 | + | |
| 313 | +ln["x-axis-label_fr"] = "X Axis Label"; | |
| 314 | +ln["y-axis-label_fr"] = "Y Axis Label"; | |
| 315 | +ln["suffix_fr"] = "Tooltip Suffix"; | |
| 316 | +ln["theme_fr"] = "Theme"; | |
| 317 | +ln["stack_fr"] = "Stack"; | |
| 318 | +ln["donut_fr"] = "Donut"; | |
| 319 | + | |
| 320 | +ln["x-axis-label_description_fr"] = "X Axis Label"; | |
| 321 | +ln["y-axis-label_description_fr"] = "Y Axis Label"; | |
| 322 | +ln["suffix_description_fr"] = "Tooltip Suffix"; | |
| 323 | +ln["theme_description_fr"] = "Theme"; | |
| 324 | +ln["stack_description_fr"] = "Stack"; | |
| 325 | +ln["donut_description_fr"] = "Donut"; | |
| 330 | 326 | |
| 331 | 327 | /******** NL ********/ |
| 332 | 328 | |
| 333 | -ln["slide1Title_nl"] = "SELECTEER DATASET"; | |
| 334 | -ln["slide1Subtitle_nl"] = "Zoek of kopieer en plak de url van de dataset."; | |
| 335 | -ln["slide2Title_nl"] = "SELECTEER DATA"; | |
| 336 | -ln["slide2Subtitle_nl"] = "Selecteer de velden uit de boomstructuur. De multi-tabel laat de waarden zien van de geselecteerde velden."; | |
| 337 | -ln["slide3Title_nl"] = "SELECTEER VISUALISATIE"; | |
| 338 | -ln["slide3Subtitle_nl"] = "Selecteer een visualisatie, vul de invoer en labels in."; | |
| 329 | +//PAGE SLIDER | |
| 330 | +ln["slide1Title_nl"] = "SELECT DATASET"; | |
| 331 | +ln["slide1Subtitle_nl"] = "Search or copy and paste the url of dataset."; | |
| 332 | +ln["slide2Title_nl"] = "SELECT DATA"; | |
| 333 | +ln["slide2Subtitle_nl"] = "Select the fields from tree-view. The multi-table will show the values related to the selected fields."; | |
| 334 | +ln["slide3Title_nl"] = "SELECT VISUALIZATION"; | |
| 335 | +ln["slide3Subtitle_nl"] = "Select a visualization, fill out inputs and labels (optional)."; | |
| 336 | +ln["back_nl"] = "Back"; | |
| 337 | +ln["forward_nl"] = "Forward"; | |
| 339 | 338 | |
| 340 | -ln["back_nl"] = "TERUG"; | |
| 341 | -ln["forward_nl"] = "VOOTUIT"; | |
| 339 | +//SELECT DATASET | |
| 340 | +ln["listView_nl"] = "LIST VIEW"; | |
| 341 | +ln["treeMapView_nl"] = "TREE MAP VIEW"; | |
| 342 | +ln["availableDatasets_nl"] = "Available datasets"; | |
| 343 | +ln["suggestedDatasets_nl"] = "Suggested datasets"; | |
| 344 | +ln["selectedUrl_nl"] = "Selected url"; | |
| 345 | +ln["wrongUrl_nl"] = "Invalid url or data provider not supported yet."; | |
| 342 | 346 | |
| 343 | -ln["listView_nl"] = "LIJSTWEERGAVE"; | |
| 344 | -ln["treeMapView_nl"] = "BOOMSTRUCTUUR WEEERGAVE"; | |
| 345 | -ln["mostPopular_nl"] = "POPULAIRSTE"; | |
| 346 | -ln["availableDatasets_nl"] = "Beschikbare datasets"; | |
| 347 | -ln["suggestedDatasets_nl"] = "Voeg aanbevolen datasets"; | |
| 348 | -ln["selectedUrl_nl"] = "selecteer url"; | |
| 349 | -ln["wrongUrl_nl"] = "Ongeldige url of data provider nog niet ondersteund."; | |
| 347 | +//SELECT DATA | |
| 348 | +ln["expertAddFilters_nl"] = "EXPERT : ADD FILTERS"; | |
| 350 | 349 | |
| 351 | -ln["inputs_nl"] = "INPUTS"; | |
| 352 | -ln["layouts_nl"] = "LABELS / OPTIES"; | |
| 353 | -ln["baseInfo_nl"] = "BASIS INFO"; | |
| 354 | -ln["comment_nl"] = "COMMENTAAR"; | |
| 355 | -ln["commentLabel_nl"] = "commentaar (maximaal 100 tekens)"; | |
| 356 | -ln["dataletPreview_nl"] = "VOORBEELD"; | |
| 357 | -ln["addDatalet_nl"] = "TOEVOEGEN"; | |
| 358 | -ln["modifyDatalet_nl"] = "WIJZIGEN"; | |
| 359 | - | |
| 360 | -ln["addFilters_nl"] = "ADD FILTERS"; | |
| 350 | +//filters | |
| 361 | 351 | ln["filterField_nl"] = "Field"; |
| 362 | 352 | ln["filterOperation_nl"] = "Operation"; |
| 363 | 353 | ln["filterValue_nl"] = "Value"; |
| 364 | 354 | ln["contains_nl"] = "contains"; |
| 365 | 355 | ln["start_nl"] = "start with"; |
| 366 | 356 | ln["ends_nl"] = "ends with"; |
| 357 | + | |
| 358 | +//SELECT VISUALIZATION | |
| 359 | +ln["inputs_nl"] = "INPUTS"; | |
| 360 | +ln["baseInfo_nl"] = "BASE INFO"; | |
| 361 | +ln["layouts_nl"] = "LABELS / OPTIONS"; | |
| 362 | +ln["dataletPreview_nl"] = "DATALET PREVIEW"; | |
| 363 | +ln["addDatalet_nl"] = "ADD"; | |
| 364 | +ln["modifyDatalet_nl"] = "MODIFY"; | |
| 365 | + | |
| 366 | +//vslider | |
| 367 | +ln["search_nl"] = "Search"; | |
| 368 | + | |
| 369 | +ln["datatable_nl"] = "Table"; | |
| 370 | +ln["barchart_nl"] = "Bar"; | |
| 371 | +ln["columnchart_nl"] = "Column"; | |
| 372 | +ln["areachart_nl"] = "Area"; | |
| 373 | +ln["linechart_nl"] = "Line"; | |
| 374 | +ln["heatmap_nl"] = "Heat Map"; | |
| 375 | +ln["barchart_stacked_nl"] = "Stacked Bar"; | |
| 376 | +ln["columnchart_stacked_nl"] = "Stacked Column"; | |
| 377 | +ln["areachart_stacked_nl"] = "Stacked Area"; | |
| 378 | +ln["piechart_nl"] = "Pie"; | |
| 379 | +ln["scatterchart_nl"] = "Scatter"; | |
| 380 | +ln["bubblechart_nl"] = "Bubble"; | |
| 381 | +ln["treemap_nl"] = "Tree Map"; | |
| 382 | +ln["leafletjs_nl"] = "Map"; | |
| 383 | + | |
| 384 | +//inputs | |
| 385 | +ln["expertGroupBy_nl"] = "EXPERT : GROUP BY"; | |
| 386 | + | |
| 367 | 387 | ln["sortAscending_nl"] = "sorted ascending"; |
| 368 | 388 | ln["sortDescending_nl"] = "sorted descending"; |
| 369 | 389 | ln["unsort_nl"] = "unsorted"; |
| 390 | + | |
| 370 | 391 | ln["groupBy_nl"] = "GROUP BY"; |
| 371 | 392 | ln["calculate_nl"] = "CALCULATE"; |
| 393 | + | |
| 372 | 394 | ln["COUNT_nl"] = "COUNT of"; |
| 373 | 395 | ln["SUM_nl"] = "SUM of"; |
| 374 | 396 | ln["MIN_nl"] = "MIN of"; |
| ... | ... | @@ -377,64 +399,35 @@ ln["AVG_nl"] = "AVG of"; |
| 377 | 399 | ln["FIRST_nl"] = "FIRST of"; |
| 378 | 400 | ln["LAST_nl"] = "LAST of"; |
| 379 | 401 | |
| 380 | -ln["datatable_nl"] = "tafel"; | |
| 381 | -ln["barchart_nl"] = "barchart"; | |
| 382 | -ln["columnchart_nl"] = "columnchart"; | |
| 383 | -ln["linechart_nl"] = "linechart"; | |
| 384 | -ln["column3Dchart_nl"] = "column3Dchart"; | |
| 385 | -ln["areachart_nl"] = "areachart"; | |
| 386 | -ln["donutpie3dchart_nl"] = "donutpie3dchart"; | |
| 387 | -ln["piechart_nl"] = "piechart"; | |
| 388 | -ln["treemap_nl"] = "treemap"; | |
| 389 | -ln["leafletjs_nl"] = "map"; | |
| 390 | -ln["bubble3d_nl"] = "bubble3d"; | |
| 391 | -ln["bubblechart_nl"] = "bubblechart"; | |
| 392 | -ln["scatterchart_nl"] = "scatterchart"; | |
| 393 | -ln["heatmap_nl"] = "heatmap"; | |
| 394 | - | |
| 395 | -ln["title_fr"] = "title"; | |
| 396 | -ln["description_fr"] = "description"; | |
| 397 | - | |
| 398 | -ln["Cell_nl"] = "Cell"; | |
| 399 | -ln["Level_nl"] = "Level"; | |
| 400 | -ln["Categories_nl"] = "Categories"; | |
| 401 | -ln["Series_nl"] = "Series"; | |
| 402 | -ln["x-axis-label_nl"] = "x-axis-label"; | |
| 403 | -ln["y-axis-label_nl"] = "y-axis-label"; | |
| 404 | -ln["z-axis-label_nl"] = "z-axis-label"; | |
| 405 | -ln["suffix_nl"] = "suffix"; | |
| 406 | -ln["Size_nl"] = "Size"; | |
| 407 | -ln["Latitude_nl"] = "Latitude"; | |
| 408 | -ln["Longitude_nl"] = "Longitude"; | |
| 409 | -ln["Balloon content_nl"] = "Balloon content"; | |
| 410 | -ln["X values_nl"] = "X values"; | |
| 411 | -ln["Y values_nl"] = "Y values"; | |
| 412 | -ln["Z values_nl"] = "Z values"; | |
| 413 | - | |
| 414 | -ln["cellDescription_nl"] = "De cel van een tabel."; | |
| 415 | -ln["levelDescription_nl"] = "Het is het veldniveau dat de datalet gebruikt om waarden te groeperen die corresponderen met veldniveau aantallen."; | |
| 416 | - | |
| 417 | -ln["categoriesDescription_nl"] = "De categorieen van het diagram. De waarden worden op de horizontale as geplaatst. Voor elke reeks is één waarde nodig."; | |
| 418 | -ln["seriesDescription_nl"] = "De reeksen van het diagram. De waarden worden op de verticale as geplaatst."; | |
| 419 | - | |
| 420 | -ln["XAxisLabelDescription_nl"] = "Label voor de x-as."; | |
| 421 | -ln["YAxisLabelDescription_nl"] = "Label voor de y-as."; | |
| 422 | -ln["suffixDescription_nl"] = "De waarden van de index (bijvoorbeeld de eenheid)."; | |
| 423 | - | |
| 424 | -ln["pieSeriesDescription_nl"] = "De reeksen van het diagram. De waarden zullen worden opgedeeld voor iedere reeks."; | |
| 425 | -ln["pieSizeDescription_nl"] = "De grootte van iedere reeks die samen een cirkelvormige ring vormen."; | |
| 426 | - | |
| 427 | -ln["bubbleCategoriesDescription_nl"] = "De categorieen van het diagram. Voor elke reeks is één waarde nodig."; | |
| 428 | -ln["bubbleYValuesDescription_nl"] = "De grafiek plot Y-waarden. De waarden worden op de verticale as geplaatst."; | |
| 429 | -ln["bubbleZValuesDescription_nl"] = "De grafiek plot Z-waarden. De waarden representeren de grootte van de bellen."; | |
| 430 | -ln["bubbleSeriesDescription_nl"] = "De reeksen van het diagram. De waarden visualiseren meerdere reeksen van bellen."; | |
| 431 | - | |
| 432 | -ln["scatterCategoriesDescription_nl"] = "De categorieen van het diagram. Voor elke reeks is één waarde nodig."; | |
| 433 | -ln["scatterXValuesDescription_nl"] = "De grafiek plot X-waarden. De waarden worden op de horizontale as geplaatst."; | |
| 434 | -ln["scatterYValuesDescription_nl"] = "De grafiek plot Y-waarden. De waarden worden op de verticale as geplaatst."; | |
| 435 | - | |
| 436 | -ln["heatmapCategoriesDescription_nl"] = "De categorieën van het diagram. De waarden worden op de horizontale as geplaatst."; | |
| 437 | - | |
| 438 | -ln["LatitudeDescription_nl"] = "Het is de breedtegraad van de punten in de kaart."; | |
| 439 | -ln["LongitudeDescription_nl"] = "Het is de hoogtegraad van de punten in de kaart"; | |
| 440 | -ln["BalloonContentDescription_nl"] = "Het is de tekst die hoort bij de markering of link (naar een foto van de camera van ieder punt)."; | |
| 441 | 402 | \ No newline at end of file |
| 403 | +ln["XAxis_nl"] = "X AXIS"; | |
| 404 | +ln["YAxis_nl"] = "Y AXIS"; | |
| 405 | +ln["NumericXAxis_nl"] = "X AXIS [num]"; | |
| 406 | +ln["NumericYAxis_nl"] = "Y AXIS [num]"; | |
| 407 | +ln["Column_nl"] = "COLUMN"; | |
| 408 | +ln["Level_nl"] = "LEVEL"; | |
| 409 | +ln["SliceLabels_nl"] = "LABEL"; | |
| 410 | +ln["SliceSizes_nl"] = "SIZE [num]"; | |
| 411 | +ln["Latitude_nl"] = "LATITUDE"; | |
| 412 | +ln["Longitude_nl"] = "LONGITUDE"; | |
| 413 | +ln["BalloonContent_nl"] = "BALLOON CONTENT";// [opt] | |
| 414 | +ln["BubbleContent_nl"] = "BUBBLE CONTENT"; | |
| 415 | +ln["BubbleSize_nl"] = "BUBBLE SIZE [num]"; | |
| 416 | +ln["Categories_nl"] = "CATEGORY [opt]"; | |
| 417 | + | |
| 418 | +//options | |
| 419 | +ln["title_nl"] = "Title" | |
| 420 | +ln["description_nl"] = "Description"; | |
| 421 | + | |
| 422 | +ln["x-axis-label_nl"] = "X Axis Label"; | |
| 423 | +ln["y-axis-label_nl"] = "Y Axis Label"; | |
| 424 | +ln["suffix_nl"] = "Tooltip Suffix"; | |
| 425 | +ln["theme_nl"] = "Theme"; | |
| 426 | +ln["stack_nl"] = "Stack"; | |
| 427 | +ln["donut_nl"] = "Donut"; | |
| 428 | + | |
| 429 | +ln["x-axis-label_description_nl"] = "X Axis Label"; | |
| 430 | +ln["y-axis-label_description_nl"] = "Y Axis Label"; | |
| 431 | +ln["suffix_description_nl"] = "Tooltip Suffix"; | |
| 432 | +ln["theme_description_nl"] = "Theme"; | |
| 433 | +ln["stack_description_nl"] = "Stack"; | |
| 434 | +ln["donut_description_nl"] = "Donut"; | |
| 442 | 435 | \ No newline at end of file | ... | ... |