umap-project 2.1.3__py3-none-any.whl → 2.2.0b0__py3-none-any.whl

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.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (196) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/en/LC_MESSAGES/django.po +32 -32
  5. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  8. umap/migrations/0020_alter_tilelayer_url_template.py +19 -0
  9. umap/migrations/0021_remove_map_description.py +16 -0
  10. umap/models.py +8 -6
  11. umap/settings/base.py +1 -0
  12. umap/static/umap/base.css +29 -151
  13. umap/static/umap/content.css +7 -25
  14. umap/static/umap/css/icon.css +112 -0
  15. umap/static/umap/css/panel.css +140 -0
  16. umap/static/umap/img/16-white.svg +5 -1
  17. umap/static/umap/img/16.svg +7 -4
  18. umap/static/umap/img/24-white.svg +3 -1
  19. umap/static/umap/img/24.svg +3 -4
  20. umap/static/umap/img/source/16-white.svg +176 -940
  21. umap/static/umap/img/source/16.svg +8 -5
  22. umap/static/umap/img/source/24-white.svg +5 -3
  23. umap/static/umap/img/source/24.svg +6 -7
  24. umap/static/umap/js/modules/browser.js +82 -73
  25. umap/static/umap/js/modules/dompurify.js +12 -0
  26. umap/static/umap/js/modules/facets.js +148 -0
  27. umap/static/umap/js/modules/global.js +9 -1
  28. umap/static/umap/js/modules/i18n.js +7 -0
  29. umap/static/umap/js/modules/orderable.js +84 -0
  30. umap/static/umap/js/modules/panel.js +76 -0
  31. umap/static/umap/js/modules/request.js +0 -1
  32. umap/static/umap/js/modules/schema.js +324 -223
  33. umap/static/umap/js/modules/urls.js +1 -16
  34. umap/static/umap/js/modules/utils.js +340 -0
  35. umap/static/umap/js/umap.controls.js +183 -330
  36. umap/static/umap/js/umap.core.js +60 -364
  37. umap/static/umap/js/umap.datalayer.permissions.js +1 -1
  38. umap/static/umap/js/umap.features.js +60 -40
  39. umap/static/umap/js/umap.forms.js +111 -25
  40. umap/static/umap/js/umap.icon.js +11 -4
  41. umap/static/umap/js/umap.importer.js +24 -17
  42. umap/static/umap/js/umap.js +170 -145
  43. umap/static/umap/js/umap.layer.js +71 -40
  44. umap/static/umap/js/umap.permissions.js +9 -11
  45. umap/static/umap/js/umap.popup.js +10 -21
  46. umap/static/umap/js/umap.share.js +11 -8
  47. umap/static/umap/js/umap.tableeditor.js +4 -6
  48. umap/static/umap/js/umap.ui.js +0 -51
  49. umap/static/umap/locale/am_ET.js +242 -227
  50. umap/static/umap/locale/am_ET.json +18 -7
  51. umap/static/umap/locale/ar.js +242 -227
  52. umap/static/umap/locale/ar.json +18 -7
  53. umap/static/umap/locale/ast.js +242 -227
  54. umap/static/umap/locale/ast.json +18 -7
  55. umap/static/umap/locale/bg.js +242 -227
  56. umap/static/umap/locale/bg.json +18 -7
  57. umap/static/umap/locale/br.js +252 -237
  58. umap/static/umap/locale/br.json +22 -11
  59. umap/static/umap/locale/ca.js +242 -227
  60. umap/static/umap/locale/ca.json +18 -7
  61. umap/static/umap/locale/cs_CZ.js +242 -227
  62. umap/static/umap/locale/cs_CZ.json +18 -7
  63. umap/static/umap/locale/da.js +242 -227
  64. umap/static/umap/locale/da.json +18 -7
  65. umap/static/umap/locale/de.js +242 -227
  66. umap/static/umap/locale/de.json +18 -7
  67. umap/static/umap/locale/el.js +242 -227
  68. umap/static/umap/locale/el.json +18 -7
  69. umap/static/umap/locale/en.js +242 -234
  70. umap/static/umap/locale/en.json +19 -8
  71. umap/static/umap/locale/en_US.json +18 -7
  72. umap/static/umap/locale/es.js +242 -227
  73. umap/static/umap/locale/es.json +18 -7
  74. umap/static/umap/locale/et.js +242 -227
  75. umap/static/umap/locale/et.json +18 -7
  76. umap/static/umap/locale/eu.js +227 -199
  77. umap/static/umap/locale/eu.json +1 -1
  78. umap/static/umap/locale/fa_IR.js +242 -227
  79. umap/static/umap/locale/fa_IR.json +18 -7
  80. umap/static/umap/locale/fi.js +242 -227
  81. umap/static/umap/locale/fi.json +18 -7
  82. umap/static/umap/locale/fr.js +242 -234
  83. umap/static/umap/locale/fr.json +18 -7
  84. umap/static/umap/locale/gl.js +242 -227
  85. umap/static/umap/locale/gl.json +18 -7
  86. umap/static/umap/locale/he.js +242 -227
  87. umap/static/umap/locale/he.json +18 -7
  88. umap/static/umap/locale/hr.js +242 -227
  89. umap/static/umap/locale/hr.json +18 -7
  90. umap/static/umap/locale/hu.js +242 -234
  91. umap/static/umap/locale/hu.json +18 -7
  92. umap/static/umap/locale/id.js +242 -227
  93. umap/static/umap/locale/id.json +18 -7
  94. umap/static/umap/locale/is.js +242 -227
  95. umap/static/umap/locale/is.json +18 -7
  96. umap/static/umap/locale/it.js +242 -234
  97. umap/static/umap/locale/it.json +18 -7
  98. umap/static/umap/locale/ja.js +242 -227
  99. umap/static/umap/locale/ja.json +18 -7
  100. umap/static/umap/locale/ko.js +242 -227
  101. umap/static/umap/locale/ko.json +18 -7
  102. umap/static/umap/locale/lt.js +242 -227
  103. umap/static/umap/locale/lt.json +18 -7
  104. umap/static/umap/locale/ms.js +242 -234
  105. umap/static/umap/locale/ms.json +19 -8
  106. umap/static/umap/locale/nl.js +245 -230
  107. umap/static/umap/locale/nl.json +18 -7
  108. umap/static/umap/locale/no.js +242 -227
  109. umap/static/umap/locale/no.json +18 -7
  110. umap/static/umap/locale/pl.js +242 -227
  111. umap/static/umap/locale/pl.json +18 -7
  112. umap/static/umap/locale/pl_PL.json +18 -7
  113. umap/static/umap/locale/pt.js +242 -227
  114. umap/static/umap/locale/pt.json +18 -7
  115. umap/static/umap/locale/pt_BR.js +242 -227
  116. umap/static/umap/locale/pt_BR.json +18 -7
  117. umap/static/umap/locale/pt_PT.js +242 -227
  118. umap/static/umap/locale/pt_PT.json +18 -7
  119. umap/static/umap/locale/ro.js +242 -227
  120. umap/static/umap/locale/ro.json +18 -7
  121. umap/static/umap/locale/ru.js +242 -227
  122. umap/static/umap/locale/ru.json +18 -7
  123. umap/static/umap/locale/si.js +1 -1
  124. umap/static/umap/locale/si.json +1 -1
  125. umap/static/umap/locale/sk_SK.js +242 -227
  126. umap/static/umap/locale/sk_SK.json +18 -7
  127. umap/static/umap/locale/sl.js +242 -227
  128. umap/static/umap/locale/sl.json +18 -7
  129. umap/static/umap/locale/sr.js +242 -227
  130. umap/static/umap/locale/sr.json +18 -7
  131. umap/static/umap/locale/sv.js +242 -227
  132. umap/static/umap/locale/sv.json +18 -7
  133. umap/static/umap/locale/th_TH.js +242 -227
  134. umap/static/umap/locale/th_TH.json +18 -7
  135. umap/static/umap/locale/tr.js +242 -227
  136. umap/static/umap/locale/tr.json +18 -7
  137. umap/static/umap/locale/uk_UA.js +242 -227
  138. umap/static/umap/locale/uk_UA.json +18 -7
  139. umap/static/umap/locale/vi.js +242 -227
  140. umap/static/umap/locale/vi.json +18 -7
  141. umap/static/umap/locale/vi_VN.json +18 -7
  142. umap/static/umap/locale/zh.js +242 -227
  143. umap/static/umap/locale/zh.json +18 -7
  144. umap/static/umap/locale/zh_CN.json +18 -7
  145. umap/static/umap/locale/zh_TW.Big5.json +18 -7
  146. umap/static/umap/locale/zh_TW.js +242 -234
  147. umap/static/umap/locale/zh_TW.json +18 -7
  148. umap/static/umap/map.css +114 -265
  149. umap/static/umap/test/DataLayer.js +463 -0
  150. umap/static/umap/test/Feature.js +0 -226
  151. umap/static/umap/test/TableEditor.js +104 -0
  152. umap/static/umap/test/Util.js +0 -521
  153. umap/static/umap/test/index.html +0 -1
  154. umap/static/umap/unittests/URLs.js +1 -1
  155. umap/static/umap/unittests/utils.js +610 -0
  156. umap/static/umap/vars.css +9 -0
  157. umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
  158. umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
  159. umap/templates/umap/css.html +2 -0
  160. umap/templates/umap/js.html +0 -1
  161. umap/templates/umap/map_detail.html +4 -0
  162. umap/templates/umap/map_table.html +12 -10
  163. umap/templatetags/umap_tags.py +5 -0
  164. umap/tests/integration/conftest.py +12 -1
  165. umap/tests/integration/test_anonymous_owned_map.py +6 -5
  166. umap/tests/integration/test_browser.py +12 -25
  167. umap/tests/integration/test_choropleth.py +1 -1
  168. umap/tests/integration/test_dashboard.py +10 -0
  169. umap/tests/integration/test_datalayer.py +8 -6
  170. umap/tests/integration/test_edit_datalayer.py +24 -19
  171. umap/tests/integration/test_edit_map.py +182 -2
  172. umap/tests/integration/test_edit_marker.py +120 -0
  173. umap/tests/integration/test_edit_polygon.py +122 -0
  174. umap/tests/integration/test_facets_browser.py +104 -14
  175. umap/tests/integration/test_import.py +70 -20
  176. umap/tests/integration/test_map.py +19 -17
  177. umap/tests/integration/test_map_list.py +28 -0
  178. umap/tests/integration/test_owned_map.py +10 -10
  179. umap/tests/integration/test_picto.py +5 -5
  180. umap/tests/integration/test_querystring.py +9 -15
  181. umap/tests/integration/test_slideshow.py +0 -5
  182. umap/tests/integration/test_statics.py +3 -2
  183. umap/tests/integration/test_tableeditor.py +1 -5
  184. umap/tests/integration/test_view_marker.py +64 -0
  185. umap/tests/integration/test_view_polygon.py +59 -0
  186. umap/tests/integration/test_view_polyline.py +51 -0
  187. umap/tests/test_map_views.py +13 -0
  188. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/METADATA +8 -8
  189. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/RECORD +194 -178
  190. umap/static/umap/vendors/dompurify/purify.min.js +0 -3
  191. umap/static/umap/vendors/dompurify/purify.min.js.map +0 -1
  192. /umap/tests/integration/{test_polygon.py → test_draw_polygon.py} +0 -0
  193. /umap/tests/integration/{test_polyline.py → test_draw_polyline.py} +0 -0
  194. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/WHEEL +0 -0
  195. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/entry_points.txt +0 -0
  196. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -1,92 +1,33 @@
1
1
  const locale = {
2
- "Allow scroll wheel zoom?": "Abilitare la rotellina del mouse per lo zoom?",
3
- "Automatic": "Automatico",
4
- "Ball": "Palla",
5
- "Cancel": "Annulla",
6
- "Caption": "Didascalia",
7
- "Choose the data format": "Scegli il formato dati",
8
- "Choose the layer of the feature": "Scegli il layer dell'oggetto",
9
- "Circle": "Cerchio",
10
- "Clustered": "Raggruppata",
11
- "Data browser": "Visualizza i dati",
12
- "Default": "Predefinito",
13
- "Default zoom level": "Livello di zoom predefinito",
14
- "Default: name": "Predefinito: nome",
15
- "Display label": "Mostra etichetta",
16
- "Display the control to open OpenStreetMap editor": "Mostra il controllo per aprire l'editor di OpenStreetMap",
17
- "Display the data layers control": "Mostra il controllo dei dati per i layer",
18
- "Display the embed control": "Visualizza il controllo per l'incorporamento",
19
- "Display the fullscreen control": "Visualizza il controllo di schermo intero",
20
- "Display the locate control": "Visualizza il controllo di localizzazione",
21
- "Display the measure control": "Visualizza il controllo di misurazione",
22
- "Display the search control": "Visualizza il controllo di ricerca",
23
- "Display the tile layers control": "Visualizza il controllo del livello delle tile",
24
- "Display the zoom control": "Visualizza il controllo di zoom",
25
- "Do you want to display a caption bar?": "Visualizzare una didascalia?",
26
- "Do you want to display a minimap?": "Visualizzare una mappa panoramica?",
27
- "Do you want to display a panel on load?": "Visualizza un panello al caricamento?",
28
- "Do you want to display popup footer?": "Visualizzare la finestra di popup a piè pagina?",
29
- "Do you want to display the scale control?": "Visualizzare la scala?",
30
- "Do you want to display the «more» control?": "Vuoi visualizzare il controllo \"altro\"?",
31
- "Drop": "Goccia",
32
- "GeoRSS (only link)": "GeoRSS (solo il link)",
33
- "GeoRSS (title + image)": "GeoRSS (titolo + immagine)",
34
- "Heatmap": "Mappa di densità (heatmap)",
35
- "Icon shape": "Forma dell'icona",
36
- "Icon symbol": "Simbolo dell'icona",
37
- "Inherit": "Eredita",
38
- "Label direction": "Direzione dell'etichetta",
39
- "Label key": "Campo etichetta",
40
- "Labels are clickable": "Etichette cliccabili",
41
- "None": "Nulla",
42
- "On the bottom": "In basso",
43
- "On the left": "A sinistra",
44
- "On the right": "A destra",
45
- "On the top": "In alto",
46
- "Popup content template": "Modello del contenuto del popup",
47
- "Side panel": "Pannello laterale",
48
- "Simplify": "Semplifica",
49
- "Table": "Tabella",
50
- "always": "sempre",
51
- "clear": "pulisci",
52
- "collapsed": "contratto",
53
- "color": "colore",
54
- "dash array": "tratteggio",
55
- "define": "definisci",
56
- "description": "descrizione",
57
- "expanded": "espanso",
58
- "fill": "riempimento",
59
- "fill color": "colore di riempimento",
60
- "fill opacity": "opacità riempimento",
61
- "hidden": "nascosto",
62
- "iframe": "iframe",
63
- "inherit": "eredita",
64
- "name": "nome",
65
- "never": "mai",
66
- "new window": "nuova finestra",
67
- "no": "non",
68
- "on hover": "in sovrimpressione",
69
- "opacity": "opacità",
70
- "parent window": "finestra di origine",
71
- "stroke": "tratto",
72
- "weight": "peso",
73
- "yes": "sì",
74
- "{delay} seconds": "{ritardo} secondi",
2
+ " (area: {measure})": "(area: {measure})",
3
+ " (length: {measure})": "(length: {measure})",
75
4
  "# one hash for main heading": "# un cancelleto per l'intestazione principale",
76
5
  "## two hashes for second heading": "## due cancelletti per le intestazioni di secondo livello",
77
6
  "### three hashes for third heading": "### tre cancelletti per intestazione di terzo livello",
78
7
  "**double star for bold**": "**due asterischi per il testo marcato**",
8
+ "*single star for italic*": "*un solo asterisco per il corsivo*",
9
+ "--- for a horizontal rule": "--- per una linea orizzontale",
10
+ "1 day": "1 giorno",
11
+ "1 hour": "1 ora",
12
+ "5 min": "5 min",
79
13
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Una lista di numeri separati da virgola che definisce lo schema del tratto e del trattino. Es.: \"5, 10, 15\".",
80
14
  "About": "Informazioni",
15
+ "Action not allowed :(": "Azione non permessa :(",
81
16
  "Activate slideshow mode": "Attiva la modalità presentazione",
82
17
  "Add a layer": "Aggiungi un layer",
83
18
  "Add a line to the current multi": "Aggiungi una linea a quelle correnti",
84
19
  "Add a new property": "Aggiungi una nuova proprietà",
85
20
  "Add a polygon to the current multi": "Aggiungi un poligono a quell correnti",
21
+ "Add image URL": "Aggiungi URL immagine",
22
+ "Add": "Aggiungi",
86
23
  "Advanced actions": "Azioni avanzate",
87
24
  "Advanced properties": "Proprietà avanzate",
25
+ "All data and settings of the map": "Tutti i dati e le impostazioni della mappa",
88
26
  "All properties are imported.": "Tutte le proprietà sono state importate.",
89
27
  "Allow interactions": "Permetti interazioni",
28
+ "Allow scroll wheel zoom?": "Abilitare la rotellina del mouse per lo zoom?",
29
+ "always": "sempre",
30
+ "Animated transitions": "Transizioni animate",
90
31
  "Are you sure you want to cancel your changes?": "Vuoi realmente annullare le modifiche fatte?",
91
32
  "Are you sure you want to clone this map and all its datalayers?": "Confermi di duplicare questa mappa e tutti i suoi livelli?",
92
33
  "Are you sure you want to delete the feature?": "Si è sicuri di voler cancellare questo oggetto?",
@@ -95,186 +36,381 @@ const locale = {
95
36
  "Are you sure you want to delete this property on all the features?": "Si è sicuri di voler cancellare questa proprietà per tutti gli oggetti?",
96
37
  "Are you sure you want to restore this version?": "Si vuole veramente ripristinare questa versione?",
97
38
  "Attach the map to my account": "Collega la mappa al mio account",
39
+ "attribution": "attribuzione",
98
40
  "Auto": "Auto",
41
+ "Automatic": "Automatico",
99
42
  "Autostart when map is loaded": "Partenza automatica una volta che la mappa è stata caricata",
43
+ "Back to preview": "Torna all’anteprima",
44
+ "Background overlay url": "URL sfondo in sovrapposizione",
45
+ "Ball": "Palla",
46
+ "Bring feature to center": "Sposta l’oggetto al centro",
100
47
  "Browse data": "Visualizza i dati",
48
+ "by": "di",
49
+ "Cache proxied request": "Usa la cache per le richieste proxy",
101
50
  "Cancel edits": "Annulla le modifiche",
51
+ "Cancel": "Annulla",
52
+ "Caption": "Didascalia",
102
53
  "Center map on your location": "Centra la mappa sulla tua posizione",
103
54
  "Change map background": "Cambia la mappa di sfondo",
104
55
  "Change tilelayers": "Cambia i livelli di sfondo",
56
+ "Change": "Cambia",
105
57
  "Choose a preset": "Seleziona una preimpostazione",
58
+ "Choose the data format": "Scegli il formato dati",
106
59
  "Choose the format of the data to import": "Seleziona il formato dei dati da importare",
107
60
  "Choose the layer to import in": "Seleziona su quale livello fare l'importazione",
61
+ "Choropleth breakpoints": "Punti di interruzione coropletici",
62
+ "Choropleth classes": "Classi coropletiche",
63
+ "Choropleth color palette": "Palett dei colori coropletici",
64
+ "Choropleth mode": "Modo coropletico",
65
+ "Choropleth property value": "Valore della proprietà coropletica",
66
+ "Choropleth": "Coropletica",
67
+ "Circle": "Cerchio",
68
+ "clear": "pulisci",
108
69
  "Click last point to finish shape": "Click su ultimo punto per completare la geometria",
109
70
  "Click to add a marker": "Clicca per aggiungere un marcatore",
110
71
  "Click to continue drawing": "Clic per continuare a disegnare",
111
72
  "Click to edit": "Clic per la modifica",
112
73
  "Click to start drawing a line": "Clic per iniziare a disegnare una linea",
113
74
  "Click to start drawing a polygon": "Clicca per iniziare a disegnare un poligono",
114
- "Clone": "Clona",
115
75
  "Clone of {name}": "Clone di {name}",
116
76
  "Clone this feature": "Duplica questo oggetto",
117
77
  "Clone this map": "Duplica questa mappa",
78
+ "Clone": "Clona",
118
79
  "Close": "Chiudi",
80
+ "Clustered": "Raggruppata",
119
81
  "Clustering radius": "Raggio del raggruppamento",
82
+ "collapsed": "contratto",
83
+ "color": "colore",
84
+ "Comma separated list of numbers, including min and max values.": "Lista dei numeri separati da virgola, che includono i valori minimi e massimi",
85
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Elenco di proprietà separate da virgole da utilizzare per l'ordinamento degli oggetti. Per invertire l'ordinamento, inserire prima un segno meno (-). Per esempio. miocampo-altrocampo.",
120
86
  "Comma separated list of properties to use when filtering features": "Lista di proprietà separate da virgola da utilizzare per filtrare gli oggetti",
121
87
  "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Valori separati da virgola, tabulatore o punto e virgola. Il sistema di riferimento spaziale implementato è WGS84. Vengono importati solo punti. La funzione di importazione va a cercare nell'intestazione le colonne «lat» e «lon» indifferentemente se scritte in maiuscolo o minuscolo. Tutte le altre colonne sono importate come proprietà.",
122
- "Continue line": "Linea continua",
88
+ "Congratulations, your map has been created!": "Complimenti, la tua mappa è stata creata!!!",
123
89
  "Continue line (Ctrl+Click)": "Continua linea (Ctrl+Click)",
90
+ "Continue line": "Linea continua",
124
91
  "Coordinates": "Coordinate",
92
+ "Copy link": "Copia link",
93
+ "copy": "copia",
125
94
  "Credits": "Ringraziamenti",
95
+ "Current map view": "Vista della mappa corrente",
126
96
  "Current view instead of default map view?": "Vista attuale invece che quella della mappa preimpostata?",
127
97
  "Custom background": "Sfondo personalizzato",
98
+ "Custom overlay": "Sovrapposizione personalizzata",
99
+ "dash array": "tratteggio",
100
+ "Data browser": "Visualizza i dati",
128
101
  "Data is browsable": "I dati sono consultabili",
102
+ "Datalayers": "Strati di dati",
129
103
  "Default interaction options": "Opzioni di interazione predefinite",
130
104
  "Default properties": "Proprietà preimpostate",
131
105
  "Default shape properties": "Proprietà predefinite della forma",
106
+ "Default view": "Vista predefinita",
107
+ "Default zoom level": "Livello di zoom predefinito",
108
+ "Default": "Predefinito",
109
+ "Default: name": "Predefinito: nome",
132
110
  "Define link to open in a new window on polygon click.": "Definisci un link d'aprire in una nuova finestra al clic sul poligono.",
111
+ "define": "definisci",
133
112
  "Delay between two transitions when in play mode": "Ritardo tra le due transizioni in modalità di riproduzione",
134
- "Delete": "Cancella",
135
113
  "Delete all layers": "Elimina tutti i layer",
136
114
  "Delete layer": "Elimina layer",
137
115
  "Delete this feature": "Cancella questo oggetto",
138
116
  "Delete this property on all the features": "Cancella questa proprietà in tutti gli oggetti",
139
117
  "Delete this shape": "Cancella questa forma",
140
118
  "Delete this vertex (Alt+Click)": "Elimina questo vertice (Alt+Clic)",
119
+ "Delete": "Cancella",
120
+ "description": "descrizione",
121
+ "Direct link": "Link diretto",
141
122
  "Directions from here": "Indicazioni stradali da qui",
123
+ "Display label": "Mostra etichetta",
142
124
  "Display measure": "Calcola le distanze",
125
+ "display name": "visualizza il nome",
143
126
  "Display on load": "Mostra al caricamento",
127
+ "Display the control to open OpenStreetMap editor": "Mostra il controllo per aprire l'editor di OpenStreetMap",
128
+ "Display the data layers control": "Mostra il controllo dei dati per i layer",
129
+ "Display the embed control": "Visualizza il controllo per l'incorporamento",
130
+ "Display the fullscreen control": "Visualizza il controllo di schermo intero",
131
+ "Display the locate control": "Visualizza il controllo di localizzazione",
132
+ "Display the measure control": "Visualizza il controllo di misurazione",
133
+ "Display the search control": "Visualizza il controllo di ricerca",
134
+ "Display the star map button": "Visualizza il pulsante per aggiungere una mappa come speciale",
135
+ "Display the tile layers control": "Visualizza il controllo del livello delle tile",
136
+ "Display the zoom control": "Visualizza il controllo di zoom",
137
+ "Do you want to display a caption bar?": "Visualizzare una didascalia?",
138
+ "Do you want to display a minimap?": "Visualizzare una mappa panoramica?",
139
+ "Do you want to display a panel on load?": "Visualizza un panello al caricamento?",
140
+ "Do you want to display caption menus?": "Si vuole visualizzare le etichette dei menu? ",
141
+ "Do you want to display popup footer?": "Visualizzare la finestra di popup a piè pagina?",
142
+ "Do you want to display the scale control?": "Visualizzare la scala?",
143
+ "Do you want to display the «more» control?": "Vuoi visualizzare il controllo \"altro\"?",
144
144
  "Download": "Download",
145
145
  "Drag to reorder": "Trascina per riordinare",
146
146
  "Draw a marker": "Aggiungi un marcatore",
147
147
  "Draw a polygon": "Disegna un poligono",
148
148
  "Draw a polyline": "Disegna una polilinea",
149
- "Dynamic": "Dinamico",
149
+ "Drawing": "Disegno",
150
+ "Drop": "Goccia",
150
151
  "Dynamic properties": "Proprietà dinamiche",
151
- "Edit": "Modifica",
152
+ "Dynamic": "Dinamico",
152
153
  "Edit feature's layer": "Modifica gli oggetti del layer",
153
- "Edit map properties": "Modifica le proprietà della mappa",
154
154
  "Edit properties in a table": "Modifica le proprietà in una tabella",
155
+ "Edit the title of the map": "Modifica il titolo della mappa",
155
156
  "Edit this feature": "Modifica quest'oggetto",
157
+ "Edit": "Modifica",
158
+ "Email": "Email",
159
+ "Embed and link options": "Opzioni di inclusione e collegamento",
156
160
  "Embed the map": "Includi la mappa",
161
+ "Emoji & Character": "Emoji & caratteri",
157
162
  "Empty": "Vuoto",
163
+ "Equidistant": "Equidistante",
164
+ "Error in the overlay URL": "Errore nell'URL della sovrapposizione",
158
165
  "Error in the tilelayer URL": "Errore nell'URL nel servizio di tile",
159
166
  "Exit Fullscreen": "Esci da Schermo intero",
167
+ "expanded": "espanso",
160
168
  "Extract shape to separate feature": "Dividi la geometria in oggetti separati",
169
+ "Facet keys": "Campi delle faccette",
170
+ "Facet search": "Faccetta di ricerca",
171
+ "Feature identifier key": "Campo di identificativo dell'oggetto",
172
+ "Feature properties": "Proprietà dell'oggetto",
161
173
  "Fetch data each time map view changes.": "Recupera i dati ad ogni cambio della visualizzazione della mappa.",
174
+ "fill color": "colore di riempimento",
175
+ "fill opacity": "opacità riempimento",
176
+ "fill": "riempimento",
162
177
  "Filter keys": "Filtro sui campi",
178
+ "Filter": "Filtro",
179
+ "Fit all data": "Adatta tutti i dati",
163
180
  "Format": "Formato",
164
181
  "From zoom": "Dallo zoom",
182
+ "full backup": "backup completo",
183
+ "Generic": "Generico",
184
+ "GeoRSS (only link)": "GeoRSS (solo il link)",
185
+ "GeoRSS (title + image)": "GeoRSS (titolo + immagine)",
186
+ "Go to \"{coords}\"": "Vai a “{coords}”",
187
+ "Go to the homepage": "Vai all’homepage",
165
188
  "Go to «{feature}»": "Vai a «{feature}»",
166
189
  "Heatmap intensity property": "Proprietà intensità mappa di densità",
167
190
  "Heatmap radius": "Raggio mappa di densità",
191
+ "Heatmap": "Mappa di densità (heatmap)",
192
+ "height": "altezza",
168
193
  "Help": "Aiuto",
194
+ "hidden": "nascosto",
169
195
  "Hide controls": "Nascondi controlli",
170
196
  "Home": "Home",
171
197
  "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Quanto vuoi semplificare la polilinea per ogni zoom (più = maggiori performance a aspetto più semplificato, meno = maggior dettaglio)",
198
+ "icon opacity": "opacità dell'incona",
199
+ "Icon shape": "Forma dell'icona",
200
+ "Icon symbol": "Simbolo dell'icona",
201
+ "If false, the polygon or line will act as a part of the underlying map.": "Se falso, il poligono o la linea si comporterà come parte della mappa sottostante.",
172
202
  "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe con altezza (in px) personalizzata: {{{http://iframe.url.com|height}}}",
173
203
  "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe con altezza e larghezza personalizzata (in px): {{{http://iframe.url.com|height*width}}}",
204
+ "iframe": "iframe",
174
205
  "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
175
206
  "Image with custom width (in px): {{http://image.url.com|width}}": "Immagine con larghezza personalizzata (width) (in px): {{http://image.url.com|width}}",
176
207
  "Image: {{http://image.url.com}}": "Immagini: {{http://image.url.com}}",
177
- "Import": "Importa",
178
208
  "Import data": "Importa dati",
179
209
  "Import in a new layer": "Importa in un nuovo layer",
210
+ "Import": "Importa",
180
211
  "Imports all umap data, including layers and settings.": "importa tutti i dati di umap compresi layer e le impostazioni",
181
212
  "Include full screen link?": "inserire link per la vista a schemo intero?",
213
+ "Inherit": "Eredita",
214
+ "inherit": "eredita",
182
215
  "Interaction options": "Opzioni di interazione",
183
- "Invalid umap data": "dati di umap non validi",
216
+ "Invalid latitude or longitude": "Latitudine o longitudine non corrette",
184
217
  "Invalid umap data in {filename}": "dati umap non validi nel file {filename}",
218
+ "Invalid umap data": "dati di umap non validi",
219
+ "Invalide property name: {name}": "nome della proprietà non corretta: {name}",
220
+ "Jenks-Fisher": "Jenks-Fisher",
221
+ "K-means": "K-means",
185
222
  "Keep current visible layers": "Mantieni i layer attualmente visibili",
223
+ "kilometers": "chilometri",
224
+ "km": "km",
225
+ "Label direction": "Direzione dell'etichetta",
226
+ "Label key": "Campo etichetta",
227
+ "Labels are clickable": "Etichette cliccabili",
228
+ "Latest feature": "Ultimo oggetto",
186
229
  "Latitude": "Latitudine",
187
- "Layer": "Layer",
188
230
  "Layer properties": "Proprietà del layer",
231
+ "Layer": "Layer",
189
232
  "Licence": "Licenza",
233
+ "licence": "licenza",
190
234
  "Limit bounds": "Limiti di confine",
235
+ "Link to view the map": "Collega per vedere la mappa",
191
236
  "Link to…": "Link a…",
192
237
  "Link with text: [[http://example.com|text of the link]]": "Link con testo: [[http://example.com|testo del link]]",
193
238
  "Long credits": "Ringraziamenti estesi",
194
239
  "Longitude": "Longitudine",
195
240
  "Make main shape": "Genera geometria generale",
196
241
  "Manage layers": "Gestisci layer",
242
+ "Manual": "Manuale",
197
243
  "Map background credits": "Riconoscimenti per la mappa di sfondo",
198
244
  "Map has been attached to your account": "La mappa è stata associata al tuo account",
199
245
  "Map has been saved!": "La mappa è stata salvata",
246
+ "Map has been starred": "La mappa è stata contrassegnata come speciale",
247
+ "Map has been unstarred": "La mappa è stata rimossa dalle speciali",
200
248
  "Map user content has been published under licence": "I contenuti della mappa sono rilasciati secondo la licenza",
201
249
  "Map's editors": "Contributori alla mappa",
202
250
  "Map's owner": "Proprietario della mappa",
251
+ "max East": "max Est",
252
+ "max North": "max Nord",
253
+ "max South": "max Sud",
254
+ "max West": "max Ovest",
255
+ "max zoom": "zoom massimo",
256
+ "Measure distances": "Misura le distanze",
203
257
  "Merge lines": "Unisci linee",
258
+ "mi": "mi",
259
+ "miles": "miglia",
260
+ "min zoom": "zoom minimo",
204
261
  "More controls": "Maggiori controlli",
205
262
  "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Deve avere un valore CSS valido (es.: DarkBlue o #123456)",
263
+ "name": "nome",
264
+ "nautical miles": "miglia nautiche",
265
+ "never": "mai",
266
+ "new window": "nuova finestra",
267
+ "next": "prossimo",
268
+ "NM": "NM",
269
+ "No cache": "Nessuna cache",
206
270
  "No licence has been set": "Non è ancora stata impostata una licenza",
271
+ "No results for these facets": "Nessun risultato trovato per queste faccette",
207
272
  "No results": "Nessun risultato",
273
+ "no": "non",
274
+ "No.": "No.",
275
+ "None": "Nulla",
276
+ "Number of desired classes (default 5)": "Numero di classi desiderate (default 5)",
277
+ "On the bottom": "In basso",
278
+ "On the left": "A sinistra",
279
+ "On the right": "A destra",
280
+ "On the top": "In alto",
281
+ "Only visible layers' data": "Solo i dati dei livelli visibili",
282
+ "opacity": "opacità",
283
+ "Opacity": "Opacità",
284
+ "Open current feature on load": "Apri l'oggetto attuale al caricamento",
208
285
  "Open link in…": "Apri link in…",
286
+ "Open share & download panel": "Apri pannello di condivisione & scarico",
209
287
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Apri quest'area della mappa nell'editor in modo da fornire dati più accurati in OpenStreeetMap",
288
+ "OpenStreetMap": "OpenStreetMap",
210
289
  "Optional intensity property for heatmap": "Proprietà opzionale per la mappa di densità",
211
290
  "Optional. Same as color if not set.": "Opzionale. Stesso colore se non assegnato.",
291
+ "Optional.": "Opzionale.",
212
292
  "Override clustering radius (default 80)": "Sovrascrivi raggio di raggruppamento (predefinito 80)",
213
293
  "Override heatmap radius (default 25)": "Sovrascrivi raggio mappa di intensità (predefinito 25)",
294
+ "parent window": "finestra di origine",
295
+ "Paste your data here": "Incolla i tuoi dati qui",
296
+ "Permalink": "Link permanente",
297
+ "Permanent credits background": "Sfondo ringraziamenti permanenti",
298
+ "Permanent credits": "Ringraziamenti permanenti",
214
299
  "Please be sure the licence is compliant with your use.": "Si prega di verificare che la licenza è compatibile con quella in uso.",
215
300
  "Please choose a format": "Scegliere un formato",
216
301
  "Please enter the name of the property": "Inserire il nome della proprietà",
217
302
  "Please enter the new name of this property": "Inserire il nuovo nome per questa proprietà",
303
+ "Please save the map first": "Per favore prima salva la mappa",
304
+ "Popup (large)": "Popup (grande)",
305
+ "Popup content style": "Stile del contenuto del Popup",
306
+ "Popup content template": "Modello del contenuto del popup",
307
+ "Popup shape": "Forma del Popup",
308
+ "Popup": "Popup",
309
+ "Powered by uMap": "Alimentato da uMap",
310
+ "previous": "precedente",
311
+ "Problem in the response": "Problema nella risposta",
218
312
  "Properties imported:": "Proprietà importate:",
219
313
  "Provide an URL here": "Aggiungi una URL qui",
220
314
  "Proxy request": "Richiesta proxy",
315
+ "Quantiles": "Quantili",
316
+ "Recent": "Recente",
221
317
  "Remote data": "Dati remoti",
222
318
  "Remove shape from the multi": "Rimuovi geometria dalle altre",
223
319
  "Rename this property on all the features": "Rinomina questa proprietà in tutti gli oggetti",
224
320
  "Replace layer content": "Sostituisci il contenuto del layer",
225
321
  "Restore this version": "Ripristina questa versione",
226
- "Save": "Salva",
227
322
  "Save anyway": "Salva comunque",
228
323
  "Save current edits": "Salva le modifiche effettuate",
324
+ "Save map": "Salva mappa",
229
325
  "Save this center and zoom": "Salva il centro e lo zoom",
230
326
  "Save this location as new feature": "Salva questa posizione come nuovo oggetto",
327
+ "Save": "Salva",
328
+ "Saved center and zoom": "Centro e zoom salvati",
231
329
  "Search location": "Cerca un luogo",
232
- "See all": "Vedi tutto",
233
- "See data layers": "Vedi i layer di dati",
330
+ "Search": "Ricerca",
331
+ "Secret edit link copied to clipboard!": "Link della modifica segreta copiato in memoria!",
332
+ "Secret edit link:": "Link segreto per editare:",
333
+ "See layers": "See layers",
234
334
  "See full screen": "Visualizza a schermo intero",
335
+ "See on OpenStreetMap": "Vedi su OpenStreetMap",
336
+ "Select data": "Seleziona i dati",
337
+ "Send me the link": "Inviami il link",
235
338
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Impostalo su false per nascondere questo layer dalla presentazione, dal browser dati, dalla navigazione popup...",
339
+ "settings": "impostazioni",
236
340
  "Shape properties": "Proprietà della geometria",
341
+ "Share and download": "Condividi e scarica",
342
+ "Share this link to open a customized map view": "Condividi questo link per aprire una vista personalizzata della mappa",
237
343
  "Short credits": "Mostra i ringraziamenti",
344
+ "Short link": "Collegamento corto",
345
+ "Show this layer in the caption": "Mostra questo livello nella didascalia",
238
346
  "Show/hide layer": "Mostra/nascondi layer",
347
+ "Side panel": "Pannello laterale",
239
348
  "Simple link: [[http://example.com]]": "Link semplice: [[http://example.com]]",
349
+ "Simplify": "Semplifica",
350
+ "Skipping unknown geometry.type: {type}": "Salta le geometrie sconosciute di tipo: {type}",
240
351
  "Slideshow": "Presentazione",
241
352
  "Sort key": "Campo di ordinamento",
242
353
  "Split line": "Dividi linea",
354
+ "Star this map": "Segna come mappa speciale",
243
355
  "Start a hole here": "Comincia un buco qui",
244
356
  "Start slideshow": "Avvia presentazione",
245
357
  "Stop editing": "Ferma la modifica",
246
358
  "Stop slideshow": "Ferma presentazione",
359
+ "Street": "Strada",
360
+ "stroke": "tratto",
247
361
  "Supported scheme": "Schema supportato",
248
362
  "Supported variables that will be dynamically replaced": "Variabili supportate che verranno cambiate dinamicamente",
249
- "TMS format": "formato TMS",
363
+ "Switch to edit mode": "Passa alla modalità modifica",
364
+ "Symbol": "Simbolo",
365
+ "Table": "Tabella",
250
366
  "Text color for the cluster label": "Colore di testo per l'etichetta del raggruppamento",
251
367
  "Text formatting": "Formattazione testo",
368
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
369
+ "The name of the property to use as feature unique identifier.": "Nome della proprietà da utilizzare come identificatore univoco per ogni oggetto.",
370
+ "The zoom and center have been modified.": "Lo zoom e il centro sono stati modificati",
371
+ "TMS format": "formato TMS",
252
372
  "To use if remote server doesn't allow cross domain (slower)": "Da utilizzare se il server remoto non permette l'accesso incrociato ai domini (lento)",
253
373
  "To zoom": "Allo zoom",
374
+ "Toggle edit mode (⇧+Click)": "Attiva/disattiva la modalità di modifica (⇧+clic)",
375
+ "Toggle edit mode": "Commuta modalità di modifica",
254
376
  "Transfer shape to edited feature": "Trasforma la geometria in un oggetto modificabile",
255
377
  "Transform to lines": "Trasforma in linee",
256
378
  "Transform to polygon": "Trasforma in poligono",
379
+ "Type a place name or coordinates": "Inserisci il nome di un luogo o delle coordinate",
380
+ "Type char or paste emoji": "Inserisci carattere o incolla emoji",
257
381
  "Type of layer": "Tipo di layer",
258
382
  "Unable to detect format of file {filename}": "Impossibile individuare il formato del file {filename}",
259
383
  "Untitled layer": "Layer senza nome",
260
384
  "Untitled map": "Mappa senza nome",
261
- "Update permissions": "Aggiorna autorizzazioni",
262
385
  "Update permissions and editors": "Cambia i permessi e i contributori",
386
+ "Update permissions": "Aggiorna autorizzazioni",
387
+ "Update who can see and edit the map": "Cambia chi può vedere e modificare la mappa",
263
388
  "Url": "Url",
389
+ "URL": "URL",
264
390
  "Use current bounds": "Utilizza l'area in uso",
265
391
  "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Specificando le proprietà dell'oggetto attraverso le parentesi graffe es. {name} queste saranno automaticamente sostituite con i valori corrispondenti",
266
392
  "User content credits": "Riconoscimenti ai contenuti utente",
267
393
  "User interface options": "Opzioni interfaccia utente",
394
+ "User location": "Posizione dell'utente",
395
+ "Verify remote URL": "Verifica URL remota",
268
396
  "Versions": "Versioni",
269
397
  "View Fullscreen": "Visualizza a schermo intero",
398
+ "View": "Vedi",
399
+ "Visibility: {status}": "Visibilità: {status}",
400
+ "weight": "peso",
270
401
  "Where do we go from here?": "Da dove ci spostiamo da qui?",
271
402
  "Whether to display or not polygons paths.": "Indica se visualizzare o meno i lati dei poligoni.",
272
403
  "Whether to fill polygons with color.": "Indica se riempire i poligoni con il colore.",
404
+ "Who can edit \"{layer}\"": "Chi può editare \"{layer}\"",
273
405
  "Who can edit": "Chi può modificare",
274
406
  "Who can view": "Chi può vedere",
407
+ "width": "larghezza",
275
408
  "Will be displayed in the bottom right corner of the map": "Sarà visualizzato in un angolo in basso a destra sulla mappa",
409
+ "Will be permanently visible in the bottom left corner of the map": "Sarà permanentemente visibile nell'angolo in basso a sinistra della mappa",
276
410
  "Will be visible in the caption of the map": "Sarà visibile nella didascalia della mappa",
277
411
  "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "OPS! Qualcun altro sembra aver modificato i dati. È possibile comunque salvare, ma questo cancellerà le modifiche apportate da altri.",
412
+ "yes": "sì",
413
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "La tua mappa è stata creata! Dato che non hai effettuato l'accesso, eccoti il link segreto per modificare la mappa, da tenere al sicuro:",
278
414
  "Zoom in": "Ingrandisci",
279
415
  "Zoom level for automatic zooms": "Livelli di zoom per zoom automatici",
280
416
  "Zoom out": "Rimpicciolisci",
@@ -283,162 +419,34 @@ const locale = {
283
419
  "Zoom to the previous": "Zoom sul precedente",
284
420
  "Zoom to this feature": "Zoom su questo oggetto",
285
421
  "Zoom to this place": "Zoom in questo posto",
286
- "attribution": "attribuzione",
287
- "by": "di",
288
- "display name": "visualizza il nome",
289
- "height": "altezza",
290
- "licence": "licenza",
291
- "max East": "max Est",
292
- "max North": "max Nord",
293
- "max South": "max Sud",
294
- "max West": "max Ovest",
295
- "max zoom": "zoom massimo",
296
- "min zoom": "zoom minimo",
297
- "next": "prossimo",
298
- "previous": "precedente",
299
- "width": "larghezza",
300
- "{count} errors during import: {message}": "{count} errori durante l'importazione: {message}",
301
- "Measure distances": "Misura le distanze",
302
- "NM": "NM",
303
- "kilometers": "chilometri",
304
- "km": "km",
305
- "mi": "mi",
306
- "miles": "miglia",
307
- "nautical miles": "miglia nautiche",
308
- "1 day": "1 giorno",
309
- "1 hour": "1 ora",
310
- "5 min": "5 min",
311
- "Cache proxied request": "Usa la cache per le richieste proxy",
312
- "No cache": "Nessuna cache",
313
- "Popup": "Popup",
314
- "Popup (large)": "Popup (grande)",
315
- "Popup content style": "Stile del contenuto del Popup",
316
- "Popup shape": "Forma del Popup",
317
- "Skipping unknown geometry.type: {type}": "Salta le geometrie sconosciute di tipo: {type}",
318
- "Optional.": "Opzionale.",
319
- "Paste your data here": "Incolla i tuoi dati qui",
320
- "Please save the map first": "Per favore prima salva la mappa",
321
- "Feature identifier key": "Campo di identificativo dell'oggetto",
322
- "Open current feature on load": "Apri l'oggetto attuale al caricamento",
323
- "Permalink": "Link permanente",
324
- "The name of the property to use as feature unique identifier.": "Nome della proprietà da utilizzare come identificatore univoco per ogni oggetto.",
325
- "Do you want to display caption menus?": "Si vuole visualizzare le etichette dei menu? ",
326
- "Example: key1,key2,key3": "Esempio: campo1,campo2,campo3",
327
- "Invalid latitude or longitude": "Latitudine o longitudine non corrette",
328
- "Invalide property name: {name}": "nome della proprietà non corretta: {name}",
329
- "Permanent credits": "Ringraziamenti permanenti",
330
- "Permanent credits background": "Sfondo ringraziamenti permanenti",
331
- "Select data": "Seleziona i dati",
332
- "Will be permanently visible in the bottom left corner of the map": "Sarà permanentemente visibile nell'angolo in basso a sinistra della mappa",
333
422
  "{area} acres": "{area} acri",
334
423
  "{area} ha": "{area} ha",
335
424
  "{area} m²": "{area} m²",
336
425
  "{area} mi²": "{area} mi²",
337
426
  "{area} yd²": "{area} yd²",
338
- "{distance} NM": "{distance} NM",
427
+ "{count} errors during import: {message}": "{count} errori durante l'importazione: {message}",
428
+ "{delay} seconds": "{ritardo} secondi",
339
429
  "{distance} km": "{distance} km",
340
430
  "{distance} m": "{distance} m",
341
431
  "{distance} miles": "{distance} miglia",
432
+ "{distance} NM": "{distance} NM",
342
433
  "{distance} yd": "{distance} yd",
343
- " (area: {measure})": "(area: {measure})",
344
- " (length: {measure})": "(length: {measure})",
345
- "Animated transitions": "Transizioni animate",
346
- "Background overlay url": "URL sfondo in sovrapposizione",
347
- "Custom overlay": "Sovrapposizione personalizzata",
348
- "Display the star map button": "Visualizza il pulsante per aggiungere una mappa come speciale",
349
- "Error in the overlay URL": "Errore nell'URL della sovrapposizione",
350
- "Map has been starred": "La mappa è stata contrassegnata come speciale",
351
- "Map has been unstarred": "La mappa è stata rimossa dalle speciali",
352
- "Opacity": "Opacità",
353
- "Star this map": "Segna come mappa speciale",
354
- "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "Il simbolo può essere un carattere Unicode o un URL. Puoi utilizzare le proprietà dell'oggetto come variabili: es.: con \"http://myserver.org/images/{name}.png\", la variabile {name} verrà sostituita dal valore \"name\" di ciascun marcatore.",
355
- "Direct link": "Link diretto",
356
- "The zoom and center have been modified.": "Lo zoom e il centro sono stati modificati",
357
- "Congratulations, your map has been created!": "Complimenti, la tua mappa è stata creata!!!",
358
- "Copy link": "Copia link",
359
- "Email": "Email",
360
- "Secret edit link copied to clipboard!": "Link della modifica segreta copiato in memoria!",
361
- "Send me the link": "Inviami il link",
362
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "La tua mappa è stata creata! Dato che non hai effettuato l'accesso, eccoti il link segreto per modificare la mappa, da tenere al sicuro:",
363
- "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Elenco di proprietà separate da virgole da utilizzare per l'ordinamento degli oggetti. Per invertire l'ordinamento, inserire prima un segno meno (-). Per esempio. miocampo-altrocampo.",
364
- "Toggle edit mode (⇧+Click)": "Attiva/disattiva la modalità di modifica (⇧+clic)",
365
- "icon opacity": "opacità dell'incona",
366
- "*single star for italic*": "*un solo asterisco per il corsivo*",
367
- "--- for a horizontal rule": "--- per una linea orizzontale",
368
- "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "Il nome della proprietà da utilizzare come etichetta (es.: \"nome\"). Puoi anche essere utilizzata una proprietà tra parentesi per usarne più di una o combinarle con contenuto statico (ad esempio: \"{nome} in {luogo}\")",
369
- "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Elenco separato da virgole di proprietà da utilizzare per la ricerca a faccette (es.: miocampo,altrocampo). Per personalizzare l'etichetta va messo un | subito dopo (es.: miocampo|Il mio campo, altrocampo|Altro campo)",
370
- "Default view": "Vista predefinita",
371
- "Facet keys": "Campi delle faccette",
372
- "Facet search": "Faccetta di ricerca",
373
- "Feature properties": "Proprietà dell'oggetto",
374
- "Latest feature": "Ultimo oggetto",
375
- "No results for these facets": "Nessun risultato trovato per queste faccette",
376
- "Saved center and zoom": "Centro e zoom salvati",
377
- "User location": "Posizione dell'utente",
378
- "Visibility: {status}": "Visibilità: {status}",
379
- "Fit all data": "Adatta tutti i dati",
380
- "Verify remote URL": "Verifica URL remota",
381
- "Add": "Aggiungi",
382
- "Change": "Cambia",
383
- "Powered by uMap": "Alimentato da uMap",
384
- "Search": "Ricerca",
385
- "Datalayers": "Strati di dati",
386
- "Secret edit link:": "Link segreto per editare:",
387
- "Who can edit \"{layer}\"": "Chi può editare \"{layer}\"",
388
- "Choropleth": "Coropletica",
389
- "Choropleth breakpoints": "Punti di interruzione coropletici",
390
- "Choropleth classes": "Classi coropletiche",
391
- "Choropleth color palette": "Palett dei colori coropletici",
392
- "Choropleth mode": "Modo coropletico",
393
- "Choropleth property value": "Valore della proprietà coropletica",
394
- "Comma separated list of numbers, including min and max values.": "Lista dei numeri separati da virgola, che includono i valori minimi e massimi",
395
- "Equidistant": "Equidistante",
396
- "Jenks-Fisher": "Jenks-Fisher",
397
- "K-means": "K-means",
398
- "Manual": "Manuale",
399
- "Number of desired classes (default 5)": "Numero di classi desiderate (default 5)",
400
- "Quantiles": "Quantili",
401
- "Show this layer in the caption": "Mostra questo livello nella didascalia",
402
- "Back to preview": "Torna all’anteprima",
403
- "Drawing": "Disegno",
404
- "Edit the title of the map": "Modifica il titolo della mappa",
405
- "Go to the homepage": "Vai all’homepage",
406
- "Switch to edit mode": "Passa alla modalità modifica",
407
- "Update who can see and edit the map": "Cambia chi può vedere e modificare la mappa",
408
- "View": "Vedi",
409
- "Add image URL": "Aggiungi URL immagine",
410
- "Emoji & Character": "Emoji & caratteri",
411
- "Generic": "Generico",
412
- "Symbol": "Simbolo",
413
- "Type char or paste emoji": "Inserisci carattere o incolla emoji",
414
- "URL": "URL",
415
- "If false, the polygon or line will act as a part of the underlying map.": "Se falso, il poligono o la linea si comporterà come parte della mappa sottostante.",
416
- "Save map": "Salva mappa",
417
- "Toggle edit mode": "Commuta modalità di modifica",
418
- "All data and settings of the map": "Tutti i dati e le impostazioni della mappa",
419
- "Embed and link options": "Opzioni di inclusione e collegamento",
420
- "Go to \"{coords}\"": "Vai a “{coords}”",
421
- "Link to view the map": "Collega per vedere la mappa",
422
- "No.": "No.",
423
- "Only visible layers' data": "Solo i dati dei livelli visibili",
424
- "Open share & download panel": "Apri pannello di condivisione & scarico",
425
- "OpenStreetMap": "OpenStreetMap",
426
- "See on OpenStreetMap": "Vedi su OpenStreetMap",
427
- "Share and download": "Condividi e scarica",
428
- "Share this link to open a customized map view": "Condividi questo link per aprire una vista personalizzata della mappa",
429
- "Short link": "Collegamento corto",
430
- "Street": "Strada",
431
- "Type a place name or coordinates": "Inserisci il nome di un luogo o delle coordinate",
432
- "copy": "copia",
433
- "full backup": "backup completo",
434
- "settings": "impostazioni",
435
- "Action not allowed :(": "Azione non permessa :(",
436
- "Bring feature to center": "Sposta l’oggetto al centro",
437
- "Current map view": "Vista della mappa corrente",
438
- "Features in this layer: {count}": "Oggetti in questo livello: {count}",
439
- "Filter": "Filtro",
440
- "Problem in the response": "Problema nella risposta",
441
- "Recent": "Recente"
434
+ "Edit map name and caption": "Edit map name and caption",
435
+ "Map advanced properties": "Map advanced properties",
436
+ "Edit map details": "Edit map details",
437
+ "Back to browser": "Back to browser",
438
+ "Toggle size": "Toggle size",
439
+ "Layers": "Layers",
440
+ "Display the caption control": "Display the caption control",
441
+ "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
442
+ "<empty value>": "<empty value>",
443
+ "Min": "Min",
444
+ "Max": "Max",
445
+ "From": "From",
446
+ "Until": "Until",
447
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
448
+ "Edit in OpenStreetMap": "Edit in OpenStreetMap",
449
+ "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns."
442
450
  }
443
451
  L.registerLocale("it", locale)
444
452
  L.setLocale("it")