qwc2 2025.12.15 → 2025.12.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/AttributeForm.js +8 -8
- package/components/AttributeTableWidget.js +3 -3
- package/components/EditComboField.js +1 -1
- package/components/EditUploadField.js +1 -1
- package/components/IdentifyViewer.js +91 -38
- package/components/LinkFeatureForm.js +21 -4
- package/components/MeasureSwitcher.js +115 -0
- package/components/PluginsContainer.js +3 -2
- package/components/QtDesignerForm.js +2 -2
- package/components/ResizeableWindow.js +9 -1
- package/components/SearchBox.js +19 -12
- package/components/SideBar.js +4 -0
- package/components/map3d/drawtool/EditTool3D.js +1 -1
- package/components/style/IdentifyViewer.css +8 -6
- package/components/style/LocationRecorder.css +1 -6
- package/components/style/PluginsContainer.css +11 -6
- package/components/timeline/FixedTimeline.js +2 -2
- package/components/timeline/InfiniteTimeline.js +2 -2
- package/components/timeline/TimelineFeaturesSlider.js +1 -1
- package/components/widgets/EditableSelect.js +2 -1
- package/components/widgets/LayerCatalogWidget.js +26 -15
- package/components/widgets/MenuButton.js +7 -2
- package/components/widgets/NavBar.js +4 -2
- package/components/widgets/PopupMenu.js +44 -13
- package/components/widgets/SearchWidget.js +39 -50
- package/components/widgets/style/SearchWidget.css +3 -19
- package/package.json +1 -1
- package/plugins/Editing.js +20 -5
- package/plugins/FeatureForm.js +1 -1
- package/plugins/FeatureSearch.js +3 -3
- package/plugins/GeometryDigitizer.js +32 -18
- package/plugins/HeightProfile.js +4 -1
- package/plugins/Identify.js +5 -4
- package/plugins/LayerTree.js +5 -1
- package/plugins/MapExport.js +4 -4
- package/plugins/MapFilter.js +10 -10
- package/plugins/Measure.js +5 -1
- package/plugins/NewsPopup.js +1 -1
- package/plugins/ObliqueView.js +88 -17
- package/plugins/Print.js +8 -8
- package/plugins/Redlining.js +25 -73
- package/plugins/Reports.js +3 -3
- package/plugins/Routing.js +4 -4
- package/plugins/TopBar.js +2 -0
- package/plugins/ValueTool.js +1 -1
- package/plugins/View3D.js +2 -2
- package/plugins/ZoomButtons.js +1 -1
- package/plugins/map/EditingSupport.js +50 -20
- package/plugins/map/MeasurementSupport.js +1 -0
- package/plugins/map/RedliningSupport.js +9 -7
- package/plugins/map/SnapSupport.js +12 -10
- package/plugins/map/style/SnappingSupport.css +1 -8
- package/plugins/map3d/Draw3D.js +2 -2
- package/plugins/map3d/ExportObjects3D.js +2 -2
- package/plugins/map3d/MapExport3D.js +4 -4
- package/reducers/editing.js +6 -1
- package/reducers/layers.js +18 -36
- package/reducers/measurement.js +2 -1
- package/scripts/wmts_config_generator.py +1 -1
- package/static/translations/bg-BG.json +45 -75
- package/static/translations/ca-ES.json +45 -75
- package/static/translations/cs-CZ.json +45 -75
- package/static/translations/de-CH.json +45 -75
- package/static/translations/de-DE.json +45 -75
- package/static/translations/en-US.json +45 -75
- package/static/translations/es-ES.json +45 -75
- package/static/translations/fi-FI.json +45 -75
- package/static/translations/fr-FR.json +46 -76
- package/static/translations/hu-HU.json +45 -75
- package/static/translations/it-IT.json +45 -75
- package/static/translations/ja-JP.json +45 -75
- package/static/translations/nl-NL.json +45 -75
- package/static/translations/no-NO.json +45 -75
- package/static/translations/pl-PL.json +45 -75
- package/static/translations/pt-BR.json +45 -75
- package/static/translations/pt-PT.json +45 -75
- package/static/translations/ro-RO.json +45 -75
- package/static/translations/ru-RU.json +45 -75
- package/static/translations/sv-SE.json +45 -75
- package/static/translations/tr-TR.json +45 -75
- package/static/translations/tsconfig.json +35 -67
- package/static/translations/uk-UA.json +45 -75
- package/utils/FeatureStyles.js +18 -20
- package/utils/IdentifyUtils.js +14 -11
- package/utils/MiscUtils.js +2 -1
- package/utils/SearchProviders.js +1 -1
- package/utils/VectorLayerUtils.js +4 -2
|
@@ -67,7 +67,6 @@
|
|
|
67
67
|
"addfeature": "Aggiungi oggetto",
|
|
68
68
|
"commit": "Salva riga modificata",
|
|
69
69
|
"csvexport": "Esporta a CSV",
|
|
70
|
-
"delete": "Elimina",
|
|
71
70
|
"deletefailed": "Impossibile eliminare uno o più oggetti",
|
|
72
71
|
"deletefeatures": "Elimina gli oggetti selezionati",
|
|
73
72
|
"deleting": "Eliminando...",
|
|
@@ -76,12 +75,10 @@
|
|
|
76
75
|
"geomnoadd": "Utilizzare il formulario per creare nuovi oggetti per questo livello",
|
|
77
76
|
"limittoextent": "In estensione mappa",
|
|
78
77
|
"loadfailed": "Errore nel caricamento dei dati",
|
|
79
|
-
"loading": "Caricamento...",
|
|
80
78
|
"nodelete": "Non eliminare",
|
|
81
79
|
"nogeomnoform": "Il formulario non è disponibile per livelli senza geometria",
|
|
82
80
|
"pleasereload": "Premere 'Ricarica' per caricare la tabella attributi...",
|
|
83
81
|
"reload": "Ricarica",
|
|
84
|
-
"selectlayer": "Seleziona livello...",
|
|
85
82
|
"title": "Tabella attributi",
|
|
86
83
|
"zoomtoselection": "Zoomare sugli oggetti selezionati"
|
|
87
84
|
},
|
|
@@ -110,6 +107,37 @@
|
|
|
110
107
|
"terms_label": "Condizioni di uso",
|
|
111
108
|
"viewertitle_label": "Homepage"
|
|
112
109
|
},
|
|
110
|
+
"common": {
|
|
111
|
+
"all": "Tutti",
|
|
112
|
+
"cancel": "Annulla",
|
|
113
|
+
"circle": "Cerchio",
|
|
114
|
+
"clear": "Azzera",
|
|
115
|
+
"clone": "Copia",
|
|
116
|
+
"close": "Chiudi",
|
|
117
|
+
"delete": "Elimina",
|
|
118
|
+
"download": "Scarica",
|
|
119
|
+
"ellipse": "Ellisse",
|
|
120
|
+
"export": "Esporta",
|
|
121
|
+
"format": "Formato",
|
|
122
|
+
"line": "Linea",
|
|
123
|
+
"loading": "Caricamento...",
|
|
124
|
+
"lock2dview": "Muovi con visuale 2D",
|
|
125
|
+
"noresults": "Nessun risultato",
|
|
126
|
+
"pick": "Seleziona",
|
|
127
|
+
"point": "Punto",
|
|
128
|
+
"polygon": "Poligono",
|
|
129
|
+
"rectangle": "Rettangolo",
|
|
130
|
+
"resolution": "Risoluzione",
|
|
131
|
+
"save": "Salva",
|
|
132
|
+
"select": "Seleziona...",
|
|
133
|
+
"selectlayer": "Seleziona livello...",
|
|
134
|
+
"square": "Quadrato",
|
|
135
|
+
"sync2dview": "Sincronizza con visuale 2D",
|
|
136
|
+
"text": "Testo",
|
|
137
|
+
"wait": "Attendere...",
|
|
138
|
+
"zoomin": "Ingrandisci",
|
|
139
|
+
"zoomout": "Rimpicciolisci"
|
|
140
|
+
},
|
|
113
141
|
"compare3d": {
|
|
114
142
|
"clipplane": "Piano di taglio",
|
|
115
143
|
"compare_objects": "Confronta oggetti",
|
|
@@ -136,17 +164,14 @@
|
|
|
136
164
|
"title": "Visualizzatore Cyclomedia"
|
|
137
165
|
},
|
|
138
166
|
"draw3d": {
|
|
139
|
-
"clone": "Copia",
|
|
140
167
|
"cone": "Cono",
|
|
141
168
|
"cuboid": "Cuboide",
|
|
142
169
|
"cylinder": "Cilindro",
|
|
143
|
-
"delete": "Elimina",
|
|
144
170
|
"drawings": "Disegni",
|
|
145
171
|
"intersect": "Intersezione",
|
|
146
172
|
"label": "Ettichetta",
|
|
147
173
|
"newgroupprompt": "Nuovo gruppo disegni",
|
|
148
174
|
"numericinput": "Formulario numerico",
|
|
149
|
-
"pick": "Seleziona",
|
|
150
175
|
"position": "Posizione",
|
|
151
176
|
"pyramid": "Piramide",
|
|
152
177
|
"rotate": "Ruota",
|
|
@@ -169,7 +194,6 @@
|
|
|
169
194
|
"add": "Aggiungi",
|
|
170
195
|
"attrtable": "Tabella",
|
|
171
196
|
"canceldelete": "Annulla",
|
|
172
|
-
"clearpicture": "Cancella",
|
|
173
197
|
"clone_all": "Tutti",
|
|
174
198
|
"clone_copy": "Copia selezionati",
|
|
175
199
|
"clone_defaulted": "(valore predef.)",
|
|
@@ -182,23 +206,17 @@
|
|
|
182
206
|
"commitfailed": "Impossibile salvare",
|
|
183
207
|
"contraintviolation": "Violazione di un vincolo",
|
|
184
208
|
"create": "Crea",
|
|
185
|
-
"delete": "Elimina",
|
|
186
209
|
"discard": "Annulla",
|
|
187
210
|
"draw": "Disegna",
|
|
188
211
|
"feature": "Oggetto",
|
|
189
212
|
"geomnonzeroz": "La geometria contiene valori Z non nulli ed è quindi di sola lettura.",
|
|
190
213
|
"geomreadonly": "La geometria è di solo lettura.",
|
|
191
214
|
"invalidform": "Formulario invalido",
|
|
192
|
-
"maximize": "Massimizza",
|
|
193
|
-
"minimize": "Minimizza",
|
|
194
215
|
"noeditablelayers": "Nessun livello modificabile",
|
|
195
216
|
"paint": "Modifica",
|
|
196
|
-
"pick": "Seleziona",
|
|
197
217
|
"pickdrawfeature": "Copia geometria esistente",
|
|
198
218
|
"reallydelete": "Elimina",
|
|
199
219
|
"relationcommitfailed": "Alcune relazioni non sono state salvate, consultare i tooltip delle icone per i dettagli.",
|
|
200
|
-
"select": "Seleziona...",
|
|
201
|
-
"selectlayer": "Seleziona livello...",
|
|
202
220
|
"takepicture": "Foto",
|
|
203
221
|
"unsavedchanged": "Vi sono cambiamenti non salvati. Volete comunque lasciare la pagina?"
|
|
204
222
|
},
|
|
@@ -210,14 +228,11 @@
|
|
|
210
228
|
},
|
|
211
229
|
"featureform": {
|
|
212
230
|
"feature": "Oggetto",
|
|
213
|
-
"noresults": "Nessun risultato",
|
|
214
231
|
"querying": "Caricando...",
|
|
215
232
|
"title": "Formulario oggetto"
|
|
216
233
|
},
|
|
217
234
|
"featuresearch": {
|
|
218
|
-
"noresults": "Nessun risultato",
|
|
219
235
|
"query": "Ricerca",
|
|
220
|
-
"select": "Seleziona",
|
|
221
236
|
"title": "Ricerca oggetto"
|
|
222
237
|
},
|
|
223
238
|
"fileselector": {
|
|
@@ -235,8 +250,7 @@
|
|
|
235
250
|
"line_buffer": "Linea (da bufferizzare)",
|
|
236
251
|
"point_buffer": "Punto (da bufferizzare)",
|
|
237
252
|
"selfinter": "Uno o più poligoni contengono autointersecazioni",
|
|
238
|
-
"send": "Invia"
|
|
239
|
-
"wait": "Caricamento..."
|
|
253
|
+
"send": "Invia"
|
|
240
254
|
},
|
|
241
255
|
"heightprofile": {
|
|
242
256
|
"asl": "s.l.m.",
|
|
@@ -262,17 +276,17 @@
|
|
|
262
276
|
"clipboard": "Copia negli appunti",
|
|
263
277
|
"compare": "Confronta gli oggetti selezionati",
|
|
264
278
|
"comparing": "Confronto di {0} oggetti",
|
|
265
|
-
"download": "Scarica",
|
|
266
|
-
"export": "Esporta",
|
|
267
279
|
"featureReport": "Oggetto formulario",
|
|
268
280
|
"featurecount": "{0} oggetti",
|
|
269
281
|
"layerall": "Tutti i livelli",
|
|
270
282
|
"link": "Link",
|
|
283
|
+
"multiview": "Vista multipla",
|
|
271
284
|
"noattributes": "Nessun attributo",
|
|
272
285
|
"noresults": "Nessun risultato",
|
|
273
286
|
"querying": "Caricando...",
|
|
274
287
|
"reportfail": "Errore nella generazione del rapporto",
|
|
275
288
|
"results": "Risultati",
|
|
289
|
+
"selectforcompare": "Seleziona per confronto",
|
|
276
290
|
"selectreport": "Seleziona rapporto...",
|
|
277
291
|
"title": "Titolo"
|
|
278
292
|
},
|
|
@@ -290,7 +304,6 @@
|
|
|
290
304
|
"asgroup": "Aggiungi come gruppo",
|
|
291
305
|
"connect": "Connetti",
|
|
292
306
|
"filter": "Filtro",
|
|
293
|
-
"loading": "Caricamento...",
|
|
294
307
|
"localfile": "File locale",
|
|
295
308
|
"nofeatures": "Non è stato importato nessun oggetto ",
|
|
296
309
|
"noresults": "Nessun risultato o URL non valido",
|
|
@@ -331,6 +344,7 @@
|
|
|
331
344
|
"printlegend": "Stampa legenda",
|
|
332
345
|
"separator": "Separatore",
|
|
333
346
|
"separatortooltip": "Aggiungi separatore",
|
|
347
|
+
"togglegroup": "Attiva/disattiva gruppo e tutti i sottolivelli",
|
|
334
348
|
"transparency": "Trasparenza",
|
|
335
349
|
"visiblefilter": "Filtra livelli non visibili",
|
|
336
350
|
"zoomtolayer": "Zoom a tutto il livello"
|
|
@@ -345,8 +359,6 @@
|
|
|
345
359
|
"zoomtoobject": "Zooma su oggetto"
|
|
346
360
|
},
|
|
347
361
|
"linkfeatureform": {
|
|
348
|
-
"cancel": "Annulla",
|
|
349
|
-
"close": "Chiudi",
|
|
350
362
|
"drawhint": "Disegnare l'oggetto sulla mappa...",
|
|
351
363
|
"pickhint": "Seleziona un oggetto sulla mappa..."
|
|
352
364
|
},
|
|
@@ -371,32 +383,22 @@
|
|
|
371
383
|
"resetrotation": "Resetta orientamento"
|
|
372
384
|
},
|
|
373
385
|
"map3d": {
|
|
374
|
-
"lockview": "Auto-sincronizzazione delle viste 2D/3D",
|
|
375
|
-
"syncview": "Sincronizza con visuale 2D",
|
|
376
386
|
"terrain": "Terreno",
|
|
377
387
|
"title": "Visuale 3D"
|
|
378
388
|
},
|
|
379
389
|
"mapexport": {
|
|
380
390
|
"configuration": "Configurazione",
|
|
381
|
-
"format": "Formato",
|
|
382
391
|
"projection": "Proiezione",
|
|
383
|
-
"resolution": "Risoluzione",
|
|
384
392
|
"scale": "Scala",
|
|
385
393
|
"size": "Dimensione",
|
|
386
|
-
"
|
|
387
|
-
"usersize": "Seleziona sulla mappa...",
|
|
388
|
-
"wait": "Attendere..."
|
|
394
|
+
"usersize": "Seleziona sulla mappa..."
|
|
389
395
|
},
|
|
390
396
|
"mapfilter": {
|
|
391
397
|
"addcustomfilter": "Aggiungi filtro personalizzato",
|
|
392
398
|
"brokenrendering": "Il rendering della mappa potrebbe essere interrotto a causa di un'espressione filtro invalida",
|
|
393
|
-
"cancel": "Annulla",
|
|
394
399
|
"geomfilter": "Geometrico",
|
|
395
400
|
"hidefiltergeom": "Nascondi geometria filtro",
|
|
396
401
|
"invalidfilter": "Espressione filtro non valida",
|
|
397
|
-
"save": "Salva",
|
|
398
|
-
"select": "Seleziona...",
|
|
399
|
-
"selectlayer": "Seleziona livello",
|
|
400
402
|
"timefilter": "Temporale",
|
|
401
403
|
"timefrom": "Da",
|
|
402
404
|
"timeto": "A"
|
|
@@ -440,16 +442,18 @@
|
|
|
440
442
|
"imperial": "Imperiale",
|
|
441
443
|
"lengthLabel": "Lunghezza",
|
|
442
444
|
"metric": "Metrico",
|
|
443
|
-
"pointLabel": "Posizione"
|
|
445
|
+
"pointLabel": "Posizione",
|
|
446
|
+
"showmeasurements": "Mostra misurazioni"
|
|
444
447
|
},
|
|
445
448
|
"misc": {
|
|
446
449
|
"ctrlclickhint": "Apri con Ctrl+Click"
|
|
447
450
|
},
|
|
448
451
|
"navbar": {
|
|
449
|
-
"
|
|
452
|
+
"next": "Prossima pagina",
|
|
453
|
+
"perpage": "per pagina",
|
|
454
|
+
"prev": "Pagina precedente"
|
|
450
455
|
},
|
|
451
456
|
"newspopup": {
|
|
452
|
-
"dialogclose": "Chiudi",
|
|
453
457
|
"dontshowagain": "Non mostrare nuovamente",
|
|
454
458
|
"title": "Attualità"
|
|
455
459
|
},
|
|
@@ -479,28 +483,21 @@
|
|
|
479
483
|
},
|
|
480
484
|
"print": {
|
|
481
485
|
"atlasfeature": "Oggetto atlante",
|
|
482
|
-
"download": "Scarica",
|
|
483
486
|
"download_as_onepdf": "come singolo file PDF",
|
|
484
487
|
"download_as_onezip": "come singolo file ZIP",
|
|
485
488
|
"download_as_single": "come file singoli",
|
|
486
|
-
"format": "Formato",
|
|
487
489
|
"grid": "Griglia",
|
|
488
490
|
"layout": "Layout",
|
|
489
491
|
"legend": "Legenda",
|
|
490
|
-
"maximize": "Massimizza",
|
|
491
|
-
"minimize": "Minimizza",
|
|
492
492
|
"nolayouts": "Nessun layout di stampa",
|
|
493
493
|
"notheme": "Nessun tema selezionato",
|
|
494
494
|
"output": "Stampa",
|
|
495
495
|
"overlap": "Sovrapposizione",
|
|
496
496
|
"pickatlasfeature": "Seleziona nel livello {1}...",
|
|
497
|
-
"resolution": "Risoluzione",
|
|
498
497
|
"rotation": "Rotazione",
|
|
499
|
-
"save": "Salva",
|
|
500
498
|
"scale": "Scala",
|
|
501
499
|
"series": "Stampa serie",
|
|
502
|
-
"submit": "Stampa"
|
|
503
|
-
"wait": "Attendere..."
|
|
500
|
+
"submit": "Stampa"
|
|
504
501
|
},
|
|
505
502
|
"qtdesignerform": {
|
|
506
503
|
"loading": "Caricando formulario..."
|
|
@@ -513,35 +510,20 @@
|
|
|
513
510
|
"bufferlayer": "Destinazione",
|
|
514
511
|
"bufferlayername": "Buffer",
|
|
515
512
|
"bufferselectfeature": "Seleziona un oggetto...",
|
|
516
|
-
"circle": "Cerchio",
|
|
517
|
-
"clone": "Copia",
|
|
518
513
|
"ctrlhint": "Ctrl per selezione multipla...",
|
|
519
|
-
"delete": "Elimina",
|
|
520
514
|
"draw": "Disegna",
|
|
521
515
|
"edit": "Modifica",
|
|
522
|
-
"ellipse": "Ellisse",
|
|
523
|
-
"export": "Esporta",
|
|
524
516
|
"freehand": "Mano libera",
|
|
525
517
|
"label": "Ettichetta",
|
|
526
518
|
"layer": "Layer",
|
|
527
519
|
"layertitle": "Disegno",
|
|
528
|
-
"line": "Linea",
|
|
529
520
|
"markers": "Punte",
|
|
530
|
-
"measurements": "Mostra misurazioni",
|
|
531
521
|
"numericinput": "Formulario numerico",
|
|
532
|
-
"pick": "Seleziona",
|
|
533
|
-
"point": "Punto",
|
|
534
|
-
"polygon": "Poligono",
|
|
535
|
-
"rectangle": "Rettangolo",
|
|
536
522
|
"size": "Dimensione",
|
|
537
|
-
"
|
|
538
|
-
"text": "Testo",
|
|
523
|
+
"text": "",
|
|
539
524
|
"transform": "Transforma"
|
|
540
525
|
},
|
|
541
526
|
"reports": {
|
|
542
|
-
"all": "Tutti",
|
|
543
|
-
"download": "Scarica",
|
|
544
|
-
"pick": "Seleziona",
|
|
545
527
|
"region": "Seleziona area",
|
|
546
528
|
"selectlayer": "Seleziona livello del rapporto..."
|
|
547
529
|
},
|
|
@@ -550,11 +532,9 @@
|
|
|
550
532
|
"addlayer": "Esporta a livello",
|
|
551
533
|
"addviapoint": "Via qui",
|
|
552
534
|
"arriveat": "Arrivo il",
|
|
553
|
-
"clear": "Azzera",
|
|
554
535
|
"computefailed": "Errore durante il calcolo",
|
|
555
536
|
"computing": "Calcolo...",
|
|
556
537
|
"excludepolygons": "Escludi aree",
|
|
557
|
-
"export": "Esporta",
|
|
558
538
|
"fastest": "Più veloce",
|
|
559
539
|
"fromhere": "Da qui",
|
|
560
540
|
"importerror": "Impossibile importare. Il contenuto del file deve essere una GeoJSON FeatureCollection di punti.",
|
|
@@ -590,9 +570,7 @@
|
|
|
590
570
|
"finish": "Finito"
|
|
591
571
|
},
|
|
592
572
|
"search": {
|
|
593
|
-
"all": "Tutti",
|
|
594
573
|
"circleradius": "Raggio del cerchio",
|
|
595
|
-
"clearfilter": "Azzera",
|
|
596
574
|
"coordinates": "Coordinate",
|
|
597
575
|
"existinglayer": "Il layer esiste già nella mappa",
|
|
598
576
|
"filter": "Filtro",
|
|
@@ -601,7 +579,6 @@
|
|
|
601
579
|
"more": "{0} ulteriori risultati",
|
|
602
580
|
"nodescription": "Nessuna descrizione disponibile",
|
|
603
581
|
"none": "Nessuna",
|
|
604
|
-
"noresults": "Nessun risultato",
|
|
605
582
|
"placeholder": "Cerca luoghi o aggiungi cartina...",
|
|
606
583
|
"places": "Luoghi",
|
|
607
584
|
"providerselection": "Selezione provider",
|
|
@@ -689,7 +666,6 @@
|
|
|
689
666
|
"group": "Raggruppa per attributo",
|
|
690
667
|
"groupnone": "Nessuno",
|
|
691
668
|
"home": "Ripristina linea temporale",
|
|
692
|
-
"loading": "Caricamento...",
|
|
693
669
|
"loop": "Ripeti",
|
|
694
670
|
"markers": "Marker",
|
|
695
671
|
"notemporaldata": "Nessun layer con dimensioni temporali è attivo nella cartina.",
|
|
@@ -720,17 +696,13 @@
|
|
|
720
696
|
"months": "mesi",
|
|
721
697
|
"seconds": "secondi",
|
|
722
698
|
"years": "anni"
|
|
723
|
-
}
|
|
724
|
-
"zoomin": "Ingrandisci",
|
|
725
|
-
"zoomout": "Rimpicciolisci"
|
|
699
|
+
}
|
|
726
700
|
},
|
|
727
701
|
"tooltip": {
|
|
728
702
|
"background": "Cambia sfondo",
|
|
729
703
|
"fullscreendisable": "Disattiva modalità schermo intero",
|
|
730
704
|
"fullscreenenable": "Attiva modalitä schermo intero",
|
|
731
|
-
"home": "Mostra tutta la mappa intera"
|
|
732
|
-
"zoomin": "Ingrandisci",
|
|
733
|
-
"zoomout": "Rimpicciolisci"
|
|
705
|
+
"home": "Mostra tutta la mappa intera"
|
|
734
706
|
},
|
|
735
707
|
"tourguide": {
|
|
736
708
|
"done": "Finito",
|
|
@@ -738,7 +710,6 @@
|
|
|
738
710
|
"previous": "Indietro"
|
|
739
711
|
},
|
|
740
712
|
"valuetool": {
|
|
741
|
-
"all": "Tutte",
|
|
742
713
|
"allbands": "Tutte le bande",
|
|
743
714
|
"alllayers": "Tutti i livelli",
|
|
744
715
|
"bands": "Bande",
|
|
@@ -765,7 +736,6 @@
|
|
|
765
736
|
"storingstate": "Salvando vista 3D..."
|
|
766
737
|
},
|
|
767
738
|
"window": {
|
|
768
|
-
"close": "Chiudi",
|
|
769
739
|
"detach": "Staccare",
|
|
770
740
|
"dock": "Aggancia",
|
|
771
741
|
"embed": "Incorporare",
|