umap-project 2.8.2__py3-none-any.whl → 2.9.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.
- umap/__init__.py +1 -1
- umap/asgi.py +12 -7
- umap/context_processors.py +1 -0
- umap/locale/en/LC_MESSAGES/django.po +102 -59
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +105 -61
- umap/management/commands/empty_trash.py +12 -1
- umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
- umap/models.py +23 -3
- umap/settings/base.py +4 -1
- umap/static/umap/base.css +1 -1
- umap/static/umap/content.css +2 -22
- umap/static/umap/css/bar.css +7 -10
- umap/static/umap/css/form.css +28 -29
- umap/static/umap/css/icon.css +8 -2
- umap/static/umap/css/panel.css +2 -1
- umap/static/umap/css/tooltip.css +33 -31
- umap/static/umap/img/16-white.svg +2 -0
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/providers/bitbucket.png +0 -0
- umap/static/umap/img/providers/github.png +0 -0
- umap/static/umap/img/providers/keycloak.png +0 -0
- umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
- umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- umap/static/umap/img/source/16-white.svg +3 -1
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.js +4 -1
- umap/static/umap/js/modules/browser.js +6 -6
- umap/static/umap/js/modules/caption.js +30 -7
- umap/static/umap/js/modules/data/features.js +21 -24
- umap/static/umap/js/modules/data/layer.js +71 -33
- umap/static/umap/js/modules/form/builder.js +241 -0
- umap/static/umap/js/modules/form/fields.js +1338 -0
- umap/static/umap/js/modules/formatter.js +5 -8
- umap/static/umap/js/modules/help.js +3 -1
- umap/static/umap/js/modules/importer.js +1 -1
- umap/static/umap/js/modules/permissions.js +5 -4
- umap/static/umap/js/modules/rendering/icon.js +5 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +11 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
- umap/static/umap/js/modules/rendering/map.js +0 -2
- umap/static/umap/js/modules/rules.js +2 -1
- umap/static/umap/js/modules/schema.js +5 -6
- umap/static/umap/js/modules/share.js +3 -3
- umap/static/umap/js/modules/sync/engine.js +18 -13
- umap/static/umap/js/modules/sync/updaters.js +8 -0
- umap/static/umap/js/modules/sync/websocket.js +10 -5
- umap/static/umap/js/modules/tableeditor.js +3 -2
- umap/static/umap/js/modules/ui/bar.js +17 -9
- umap/static/umap/js/modules/ui/base.js +7 -24
- umap/static/umap/js/modules/ui/tooltip.js +19 -11
- umap/static/umap/js/modules/umap.js +36 -24
- umap/static/umap/js/modules/utils.js +196 -12
- umap/static/umap/js/umap.controls.js +0 -12
- umap/static/umap/locale/br.js +21 -13
- umap/static/umap/locale/br.json +21 -13
- umap/static/umap/locale/ca.js +12 -4
- umap/static/umap/locale/ca.json +12 -4
- umap/static/umap/locale/cs_CZ.js +10 -4
- umap/static/umap/locale/cs_CZ.json +10 -4
- umap/static/umap/locale/de.js +12 -4
- umap/static/umap/locale/de.json +12 -4
- umap/static/umap/locale/el.js +12 -4
- umap/static/umap/locale/el.json +12 -4
- umap/static/umap/locale/en.js +9 -4
- umap/static/umap/locale/en.json +9 -4
- umap/static/umap/locale/es.js +20 -12
- umap/static/umap/locale/es.json +20 -12
- umap/static/umap/locale/eu.js +12 -4
- umap/static/umap/locale/eu.json +12 -4
- umap/static/umap/locale/fa_IR.js +12 -4
- umap/static/umap/locale/fa_IR.json +12 -4
- umap/static/umap/locale/fr.js +10 -5
- umap/static/umap/locale/fr.json +10 -5
- umap/static/umap/locale/gl.js +353 -345
- umap/static/umap/locale/gl.json +353 -345
- umap/static/umap/locale/hu.js +9 -4
- umap/static/umap/locale/hu.json +9 -4
- umap/static/umap/locale/it.js +100 -92
- umap/static/umap/locale/it.json +100 -92
- umap/static/umap/locale/ms.js +12 -4
- umap/static/umap/locale/ms.json +12 -4
- umap/static/umap/locale/nl.js +12 -4
- umap/static/umap/locale/nl.json +12 -4
- umap/static/umap/locale/pl.js +12 -4
- umap/static/umap/locale/pl.json +12 -4
- umap/static/umap/locale/pt.js +12 -4
- umap/static/umap/locale/pt.json +12 -4
- umap/static/umap/locale/pt_PT.js +12 -4
- umap/static/umap/locale/pt_PT.json +12 -4
- umap/static/umap/locale/th_TH.js +12 -4
- umap/static/umap/locale/th_TH.json +12 -4
- umap/static/umap/locale/zh_TW.js +10 -4
- umap/static/umap/locale/zh_TW.json +10 -4
- umap/static/umap/map.css +12 -8
- umap/static/umap/nav.css +2 -3
- umap/static/umap/unittests/utils.js +14 -0
- umap/static/umap/vars.css +2 -0
- umap/sync/__init__.py +0 -0
- umap/sync/app.py +181 -0
- umap/sync/payloads.py +49 -0
- umap/templates/auth/user_detail.html +4 -0
- umap/templates/auth/user_form.html +9 -6
- umap/templates/auth/user_stars.html +4 -0
- umap/templates/base.html +1 -1
- umap/templates/registration/login.html +2 -5
- umap/templates/umap/about.html +5 -0
- umap/templates/umap/about_summary.html +2 -2
- umap/templates/umap/components/provider.html +8 -0
- umap/templates/umap/js.html +0 -3
- umap/templates/umap/map_detail.html +1 -1
- umap/templates/umap/password_change.html +4 -0
- umap/templates/umap/password_change_done.html +4 -0
- umap/templates/umap/search.html +4 -0
- umap/templates/umap/team_confirm_delete.html +4 -0
- umap/templates/umap/team_detail.html +4 -0
- umap/templates/umap/team_form.html +4 -0
- umap/templates/umap/user_dashboard.html +1 -1
- umap/templates/umap/user_teams.html +4 -0
- umap/tests/base.py +3 -1
- umap/tests/integration/conftest.py +16 -23
- umap/tests/integration/test_basics.py +2 -2
- umap/tests/integration/test_caption.py +1 -0
- umap/tests/integration/test_draw_polygon.py +3 -3
- umap/tests/integration/test_edit_datalayer.py +1 -1
- umap/tests/integration/test_edit_map.py +3 -3
- umap/tests/integration/test_edit_polygon.py +1 -1
- umap/tests/integration/test_import.py +23 -1
- umap/tests/integration/test_optimistic_merge.py +1 -0
- umap/tests/integration/test_picto.py +8 -8
- umap/tests/integration/test_save.py +1 -0
- umap/tests/integration/test_star.py +13 -9
- umap/tests/integration/test_tableeditor.py +1 -0
- umap/tests/integration/test_websocket_sync.py +112 -33
- umap/tests/settings.py +2 -0
- umap/tests/test_datalayer.py +2 -3
- umap/tests/test_datalayer_views.py +20 -1
- umap/tests/test_empty_trash.py +10 -3
- umap/tests/test_map_views.py +11 -0
- umap/utils.py +24 -11
- umap/views.py +37 -6
- {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/METADATA +15 -15
- {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/RECORD +146 -145
- {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/WHEEL +1 -1
- umap/management/commands/run_websocket_server.py +0 -23
- umap/settings/local_s3.py +0 -45
- umap/static/umap/bitbucket.png +0 -0
- umap/static/umap/github.png +0 -0
- umap/static/umap/js/umap.forms.js +0 -1242
- umap/static/umap/keycloak.png +0 -0
- umap/static/umap/openstreetmap.png +0 -0
- umap/static/umap/twitter.png +0 -0
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
- umap/tests/test_websocket_server.py +0 -22
- umap/websocket_server.py +0 -202
- {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/hu.js
CHANGED
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "Új tulajdonság hozzáadása",
|
|
20
20
|
"Add a polygon to the current multi": "Sokszög hozzáadása a jelenlegi alakzatcsoporthoz",
|
|
21
21
|
"Add image URL": "Kép URL-je",
|
|
22
|
-
"Add": "Hozzáadás",
|
|
23
22
|
"Advanced actions": "Speciális műveletek",
|
|
24
23
|
"Advanced properties": "Speciális tulajdonságok",
|
|
25
24
|
"All data and settings of the map": "A térkép összes adata és beállítása",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "Saját pozícióhoz igazítás vezérlő megjelenítése",
|
|
121
120
|
"Display the measure control": "Mérés vezérlő megjelenítése",
|
|
122
121
|
"Display the search control": "Keresés vezérlő megjelenítése",
|
|
123
|
-
"Display the star map button": "Térképet megcsillagozó gomb megjelenítése",
|
|
124
122
|
"Display the tile layers control": "Mozaikrétegek vezérlő megjelenítése",
|
|
125
123
|
"Display the zoom control": "Nagyítás vezérlő megjelenítése",
|
|
126
124
|
"Do you want to display a caption bar?": "Szeretné megjeleníteni a leírást tartalmazó sávot?",
|
|
@@ -516,14 +514,21 @@ const locale = {
|
|
|
516
514
|
"show/hide all layers": "összes réteg megjelenítése/elrejtése",
|
|
517
515
|
"zoom to data extent": "nagyítás az adatok kiterjedésére",
|
|
518
516
|
"download visible data": "látható adatok letöltése",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "Jelenleg {connectedPeers} társ kapcsolódik ehhez a térképhez",
|
|
520
517
|
"Import helpers": "Importálássegítők",
|
|
521
518
|
"Import helpers will fill the URL field for you.": "Az importálássegítők kitöltik neked az URL-mezőt.",
|
|
522
519
|
"Wikipedia": "Wikipédia",
|
|
523
520
|
"Save draft": "Piszkozat mentése",
|
|
524
521
|
"No data has been found for import": "Nem található adat az importáláshoz",
|
|
525
522
|
"Successfully imported {count} feature(s)": "{count} objektum sikeresen importálva",
|
|
526
|
-
"Disconnected": "Kapcsolat megszakadt"
|
|
523
|
+
"Disconnected": "Kapcsolat megszakadt",
|
|
524
|
+
"You must be logged in": "You must be logged in",
|
|
525
|
+
"Created at {date}": "Created at {date}",
|
|
526
|
+
"Modified at {date}": "Modified at {date}",
|
|
527
|
+
"on hover": "on hover",
|
|
528
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
|
|
529
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
|
|
530
|
+
"Import failed: invalid data": "Import failed: invalid data",
|
|
531
|
+
"Anonymous": "Anonymous"
|
|
527
532
|
}
|
|
528
533
|
L.registerLocale("hu", locale)
|
|
529
534
|
L.setLocale("hu")
|
umap/static/umap/locale/hu.json
CHANGED
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"Add a new property": "Új tulajdonság hozzáadása",
|
|
20
20
|
"Add a polygon to the current multi": "Sokszög hozzáadása a jelenlegi alakzatcsoporthoz",
|
|
21
21
|
"Add image URL": "Kép URL-je",
|
|
22
|
-
"Add": "Hozzáadás",
|
|
23
22
|
"Advanced actions": "Speciális műveletek",
|
|
24
23
|
"Advanced properties": "Speciális tulajdonságok",
|
|
25
24
|
"All data and settings of the map": "A térkép összes adata és beállítása",
|
|
@@ -120,7 +119,6 @@
|
|
|
120
119
|
"Display the locate control": "Saját pozícióhoz igazítás vezérlő megjelenítése",
|
|
121
120
|
"Display the measure control": "Mérés vezérlő megjelenítése",
|
|
122
121
|
"Display the search control": "Keresés vezérlő megjelenítése",
|
|
123
|
-
"Display the star map button": "Térképet megcsillagozó gomb megjelenítése",
|
|
124
122
|
"Display the tile layers control": "Mozaikrétegek vezérlő megjelenítése",
|
|
125
123
|
"Display the zoom control": "Nagyítás vezérlő megjelenítése",
|
|
126
124
|
"Do you want to display a caption bar?": "Szeretné megjeleníteni a leírást tartalmazó sávot?",
|
|
@@ -516,12 +514,19 @@
|
|
|
516
514
|
"show/hide all layers": "összes réteg megjelenítése/elrejtése",
|
|
517
515
|
"zoom to data extent": "nagyítás az adatok kiterjedésére",
|
|
518
516
|
"download visible data": "látható adatok letöltése",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "Jelenleg {connectedPeers} társ kapcsolódik ehhez a térképhez",
|
|
520
517
|
"Import helpers": "Importálássegítők",
|
|
521
518
|
"Import helpers will fill the URL field for you.": "Az importálássegítők kitöltik neked az URL-mezőt.",
|
|
522
519
|
"Wikipedia": "Wikipédia",
|
|
523
520
|
"Save draft": "Piszkozat mentése",
|
|
524
521
|
"No data has been found for import": "Nem található adat az importáláshoz",
|
|
525
522
|
"Successfully imported {count} feature(s)": "{count} objektum sikeresen importálva",
|
|
526
|
-
"Disconnected": "Kapcsolat megszakadt"
|
|
523
|
+
"Disconnected": "Kapcsolat megszakadt",
|
|
524
|
+
"You must be logged in": "You must be logged in",
|
|
525
|
+
"Created at {date}": "Created at {date}",
|
|
526
|
+
"Modified at {date}": "Modified at {date}",
|
|
527
|
+
"on hover": "on hover",
|
|
528
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
|
|
529
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
|
|
530
|
+
"Import failed: invalid data": "Import failed: invalid data",
|
|
531
|
+
"Anonymous": "Anonymous"
|
|
527
532
|
}
|
umap/static/umap/locale/it.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
2
|
"(area: {measure})": "(area: {measure})",
|
|
3
|
-
"(length: {measure})": "(
|
|
3
|
+
"(length: {measure})": "(lunghezza: {measure})",
|
|
4
4
|
"# one hash for main heading": "# un cancelleto per l'intestazione principale",
|
|
5
5
|
"## two hashes for second heading": "## due cancelletti per le intestazioni di secondo livello",
|
|
6
6
|
"### three hashes for third heading": "### tre cancelletti per intestazione di terzo livello",
|
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "Aggiungi una nuova proprietà",
|
|
20
20
|
"Add a polygon to the current multi": "Aggiungi un poligono a quell correnti",
|
|
21
21
|
"Add image URL": "Aggiungi URL immagine",
|
|
22
|
-
"Add": "Aggiungi",
|
|
23
22
|
"Advanced actions": "Azioni avanzate",
|
|
24
23
|
"Advanced properties": "Proprietà avanzate",
|
|
25
24
|
"All data and settings of the map": "Tutti i dati e le impostazioni della mappa",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "Visualizza il controllo di localizzazione",
|
|
121
120
|
"Display the measure control": "Visualizza il controllo di misurazione",
|
|
122
121
|
"Display the search control": "Visualizza il controllo di ricerca",
|
|
123
|
-
"Display the star map button": "Visualizza il pulsante per aggiungere una mappa come speciale",
|
|
124
122
|
"Display the tile layers control": "Visualizza il controllo del livello delle tile",
|
|
125
123
|
"Display the zoom control": "Visualizza il controllo di zoom",
|
|
126
124
|
"Do you want to display a caption bar?": "Visualizzare una didascalia?",
|
|
@@ -183,12 +181,12 @@ const locale = {
|
|
|
183
181
|
"Icon shape": "Forma dell'icona",
|
|
184
182
|
"Icon symbol": "Simbolo dell'icona",
|
|
185
183
|
"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.",
|
|
186
|
-
"Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe
|
|
187
|
-
"Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe
|
|
184
|
+
"Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe con altezza (in px) personalizzata: {{{https://iframe.url.com|height}}}",
|
|
185
|
+
"Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe con altezza e larghezza personalizzata (in px): {{{https://iframe.url.com|height*width}}}",
|
|
188
186
|
"iframe": "iframe",
|
|
189
187
|
"Iframe: {{{https://iframe.url.com}}}": "Iframe: {{{https://iframe.url.com}}}",
|
|
190
|
-
"Image with custom width (in px): {{https://image.url.com|width}}": "
|
|
191
|
-
"Image: {{https://image.url.com}}": "
|
|
188
|
+
"Image with custom width (in px): {{https://image.url.com|width}}": "Immagine con larghezza personalizzata (in px): {{https://image.url.com|width}}",
|
|
189
|
+
"Image: {{https://image.url.com}}": "Immagine: {{https://image.url.com}}",
|
|
192
190
|
"Import data": "Importa dati",
|
|
193
191
|
"Import in a new layer": "Importa in un nuovo layer",
|
|
194
192
|
"Imports all umap data, including layers and settings.": "importa tutti i dati di umap compresi layer e le impostazioni",
|
|
@@ -216,7 +214,7 @@ const locale = {
|
|
|
216
214
|
"Limit bounds": "Limiti di confine",
|
|
217
215
|
"Link to view the map": "Collega per vedere la mappa",
|
|
218
216
|
"Link to…": "Link a…",
|
|
219
|
-
"Link with text: [[https://example.com|text of the link]]": "
|
|
217
|
+
"Link with text: [[https://example.com|text of the link]]": "Collegamento con testo: [[https://esempio.it|testo del collegamento]]",
|
|
220
218
|
"Long credits": "Ringraziamenti estesi",
|
|
221
219
|
"Longitude": "Longitudine",
|
|
222
220
|
"Make main shape": "Genera geometria generale",
|
|
@@ -320,7 +318,7 @@ const locale = {
|
|
|
320
318
|
"Show this layer in the caption": "Mostra questo livello nella didascalia",
|
|
321
319
|
"Show/hide layer": "Mostra/nascondi layer",
|
|
322
320
|
"Side panel": "Pannello laterale",
|
|
323
|
-
"Simple link: [[https://example.com]]": "
|
|
321
|
+
"Simple link: [[https://example.com]]": "Collegamento semplice: [[https://esempio.it]]",
|
|
324
322
|
"Simplify": "Semplifica",
|
|
325
323
|
"Skipping unknown geometry.type: {type}": "Salta le geometrie sconosciute di tipo: {type}",
|
|
326
324
|
"Slideshow": "Presentazione",
|
|
@@ -403,124 +401,134 @@ const locale = {
|
|
|
403
401
|
"{distance} miles": "{distance} miglia",
|
|
404
402
|
"{distance} NM": "{distance} NM",
|
|
405
403
|
"{distance} yd": "{distance} yd",
|
|
406
|
-
"Edit map name and caption": "
|
|
407
|
-
"Map advanced properties": "
|
|
408
|
-
"Edit map details": "
|
|
409
|
-
"Back to browser": "
|
|
404
|
+
"Edit map name and caption": "Modifica nome e descrizione della mappa",
|
|
405
|
+
"Map advanced properties": "Proprietà avanzata della mappa",
|
|
406
|
+
"Edit map details": "Modifica i dettagli della mappa",
|
|
407
|
+
"Back to browser": "Torna all'elenco",
|
|
410
408
|
"Toggle size": "Toggle size",
|
|
411
|
-
"Display the caption control": "
|
|
409
|
+
"Display the caption control": "Visualizza il controllo delle didascalie",
|
|
412
410
|
"<empty value>": "<empty value>",
|
|
413
411
|
"Min": "Min",
|
|
414
412
|
"Max": "Max",
|
|
415
|
-
"From": "
|
|
416
|
-
"Until": "
|
|
417
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "
|
|
418
|
-
"Edit in OpenStreetMap": "
|
|
419
|
-
"Cannot determine latitude and longitude columns.": "
|
|
420
|
-
"Back to layers": "
|
|
421
|
-
"Filters": "
|
|
413
|
+
"From": "Da",
|
|
414
|
+
"Until": "Fino a",
|
|
415
|
+
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Esempio: chiave1,chiave2|Etichetta 2,chiave3|Etichetta 3|checkbox",
|
|
416
|
+
"Edit in OpenStreetMap": "Modifica in OpenStreetMap",
|
|
417
|
+
"Cannot determine latitude and longitude columns.": "Non è stato possibile individuare le colonne con latitudine e longitudine.",
|
|
418
|
+
"Back to layers": "Torna ai livelli",
|
|
419
|
+
"Filters": "Filtri",
|
|
422
420
|
"Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
|
|
423
421
|
"Comma separated list of properties to use for filters (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 filters (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.",
|
|
424
|
-
"Search keys": "
|
|
422
|
+
"Search keys": "Chiavi di ricerca",
|
|
425
423
|
"Filters keys": "Filters keys",
|
|
426
424
|
"Filter data": "Filter data",
|
|
427
425
|
"Search map features…": "Search map features…",
|
|
428
426
|
"Reset all": "Reset all",
|
|
429
427
|
"Open browser": "Open browser",
|
|
430
428
|
"Open caption": "Open caption",
|
|
431
|
-
"Your map has been created with an anonymous account!": "
|
|
432
|
-
"Real-time collaboration": "
|
|
429
|
+
"Your map has been created with an anonymous account!": "La tua mappa è stata creata con un account anonimo!",
|
|
430
|
+
"Real-time collaboration": "Collaborazione in tempo reale",
|
|
433
431
|
"Cannot parse data": "Cannot parse data",
|
|
434
|
-
"Start typing...": "
|
|
435
|
-
"No result": "
|
|
432
|
+
"Start typing...": "Inizia a scrivere...",
|
|
433
|
+
"No result": "Nessun risultato",
|
|
436
434
|
"Data browser": "Data browser",
|
|
437
435
|
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.",
|
|
438
436
|
"Overpass supported expressions": "Overpass supported expressions",
|
|
439
|
-
"key (eg. building)": "
|
|
440
|
-
"!key (eg. !name)": "!
|
|
441
|
-
"key=value (eg. building=yes)": "
|
|
442
|
-
"key!=value (eg. building!=yes)": "
|
|
443
|
-
"key~value (eg. name~Grisy)": "
|
|
444
|
-
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "
|
|
445
|
-
"More info about Overpass syntax": "
|
|
437
|
+
"key (eg. building)": "chiave (es. building)",
|
|
438
|
+
"!key (eg. !name)": "!chiave (es. !name)",
|
|
439
|
+
"key=value (eg. building=yes)": "chiave=valore (es. building=yes)",
|
|
440
|
+
"key!=value (eg. building!=yes)": "chiave!=valore (es. building!=yes)",
|
|
441
|
+
"key~value (eg. name~Grisy)": "chiave~valore (es. name~Grisy)",
|
|
442
|
+
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "chiave=\"valore|valore2\" (es. name=\"Parigi|Berlino\")",
|
|
443
|
+
"More info about Overpass syntax": "Più informazioni sulla sintassi di Overpass",
|
|
446
444
|
"For more complex needs, see": "For more complex needs, see",
|
|
447
|
-
"Choose data": "
|
|
448
|
-
"Choose the format": "
|
|
449
|
-
"Choose the layer": "
|
|
450
|
-
"Layer name": "
|
|
451
|
-
"Choose import mode": "
|
|
452
|
-
"Copy into the layer": "
|
|
453
|
-
"Link to the layer as remote data": "
|
|
454
|
-
"Condition": "
|
|
455
|
-
"key=value or key!=value": "
|
|
456
|
-
"Are you sure you want to delete this rule?": "
|
|
457
|
-
"empty rule": "
|
|
458
|
-
"Conditional style rules": "
|
|
459
|
-
"Add rule": "
|
|
445
|
+
"Choose data": "Seleziona i dati",
|
|
446
|
+
"Choose the format": "Seleziona il formato",
|
|
447
|
+
"Choose the layer": "Seleziona il livello",
|
|
448
|
+
"Layer name": "Nome livello",
|
|
449
|
+
"Choose import mode": "Seleziona la modalità di importazione",
|
|
450
|
+
"Copy into the layer": "Copia nel livello",
|
|
451
|
+
"Link to the layer as remote data": "Collega il livello come dati remoti",
|
|
452
|
+
"Condition": "Condizione",
|
|
453
|
+
"key=value or key!=value": "chiave=valore or chiave!=valore",
|
|
454
|
+
"Are you sure you want to delete this rule?": "Si è certi di voler eliminare questa regola?",
|
|
455
|
+
"empty rule": "regola vuota",
|
|
456
|
+
"Conditional style rules": "Regole di stile condizionale",
|
|
457
|
+
"Add rule": "Aggiungi regola",
|
|
460
458
|
"Browser: data": "Browser: data",
|
|
461
459
|
"Browser: layers": "Browser: layers",
|
|
462
460
|
"Browser: filters": "Browser: filters",
|
|
463
|
-
"Enable real-time collaboration": "
|
|
464
|
-
"✅ Copied!": "✅
|
|
461
|
+
"Enable real-time collaboration": "Abilita collaborazione in tempo reale",
|
|
462
|
+
"✅ Copied!": "✅ Copiato!",
|
|
465
463
|
"Choose a dataset": "Choose a dataset",
|
|
466
464
|
"Choose this dataset": "Choose this dataset",
|
|
467
465
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
468
|
-
"Choose a theme": "
|
|
469
|
-
"Symplify all geometries to points": "
|
|
470
|
-
"Choose this data": "
|
|
471
|
-
"Search admin boundary": "
|
|
466
|
+
"Choose a theme": "Seleziona un tema",
|
|
467
|
+
"Symplify all geometries to points": "Semplifica tutte le geometrie in punti",
|
|
468
|
+
"Choose this data": "Seleziona questi dati",
|
|
469
|
+
"Search admin boundary": "Cerca confini amministrativi",
|
|
472
470
|
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
473
|
-
"Expression": "
|
|
474
|
-
"Geometry mode": "
|
|
471
|
+
"Expression": "Espressione",
|
|
472
|
+
"Geometry mode": "Modalità geometria",
|
|
475
473
|
"Only geometry centers": "Only geometry centers",
|
|
476
474
|
"Search area": "Search area",
|
|
477
|
-
"Type area name, or let empty to load data in current map view": "
|
|
478
|
-
"Data successfully imported!": "
|
|
479
|
-
"Clear data": "
|
|
480
|
-
"Remove layers": "
|
|
475
|
+
"Type area name, or let empty to load data in current map view": "Scrivi il nome dell'area, o lascia vuoto per caricare i dati nella vista della mappa corrente",
|
|
476
|
+
"Data successfully imported!": "Dati importati con successo!",
|
|
477
|
+
"Clear data": "Rimuovi i dati",
|
|
478
|
+
"Remove layers": "Rimuovi i livelli",
|
|
481
479
|
"Categorized": "Categorized",
|
|
482
|
-
"Alphabetical": "
|
|
480
|
+
"Alphabetical": "Alfabetico",
|
|
483
481
|
"Category property": "Category property",
|
|
484
|
-
"Color palette": "
|
|
485
|
-
"Categories": "
|
|
486
|
-
"Comma separated list of categories.": "
|
|
482
|
+
"Color palette": "Palette di colori",
|
|
483
|
+
"Categories": "Categorie",
|
|
484
|
+
"Comma separated list of categories.": "Lista di categorie separate da virgola.",
|
|
487
485
|
"Categories mode": "Categories mode",
|
|
488
|
-
"Remove filter for this column": "
|
|
489
|
-
"Add filter for this column": "
|
|
490
|
-
"Rename this column": "
|
|
491
|
-
"Delete this column": "
|
|
492
|
-
"Name “{name}” should not contain a dot.": "
|
|
493
|
-
"This name already exists: “{name}”": "
|
|
494
|
-
"Delete selected rows": "
|
|
495
|
-
"Found {count} rows. Are you sure you want to delete all?": "
|
|
496
|
-
"Expression is empty": "
|
|
486
|
+
"Remove filter for this column": "Rimuovi filtri da questa colonna",
|
|
487
|
+
"Add filter for this column": "Aggiungi filtri a questa colonna",
|
|
488
|
+
"Rename this column": "Rinomina questa colonna",
|
|
489
|
+
"Delete this column": "Rimuovi questa colonna",
|
|
490
|
+
"Name “{name}” should not contain a dot.": "Il nome \"{name}\" non può contenere punti.",
|
|
491
|
+
"This name already exists: “{name}”": "Questo nome esiste già: “{name}”",
|
|
492
|
+
"Delete selected rows": "Rimuovi le righe selezionate",
|
|
493
|
+
"Found {count} rows. Are you sure you want to delete all?": "{count} righe trovate. Si è certi di rimuoverle tutte?",
|
|
494
|
+
"Expression is empty": "L'espressione è vuota",
|
|
497
495
|
"OK": "OK",
|
|
498
|
-
"Cancel": "
|
|
499
|
-
"Attach map to a team": "
|
|
500
|
-
"Display the polygon inverted": "
|
|
501
|
-
"Proportional circles": "
|
|
502
|
-
"Property name to compute circles": "
|
|
503
|
-
"Min circle radius": "
|
|
504
|
-
"Max circle radius": "
|
|
496
|
+
"Cancel": "Annulla",
|
|
497
|
+
"Attach map to a team": "Collega la mappa ad un team",
|
|
498
|
+
"Display the polygon inverted": "Mostra il poligono invertito",
|
|
499
|
+
"Proportional circles": "Cerchi proporzionali",
|
|
500
|
+
"Property name to compute circles": "Proprietà per cui calcolare i cerchi",
|
|
501
|
+
"Min circle radius": "Raggio minimo del cerchio",
|
|
502
|
+
"Max circle radius": "Raggio massimo del cerchio",
|
|
505
503
|
"Display the open browser control": "Display the open browser control",
|
|
506
|
-
"Copy as GeoJSON": "
|
|
507
|
-
"Please zoom in to edit the geometry": "
|
|
508
|
-
"New map": "
|
|
509
|
-
"My maps": "
|
|
510
|
-
"My teams": "
|
|
511
|
-
"My profile": "
|
|
512
|
-
"Type new owner's username": "
|
|
504
|
+
"Copy as GeoJSON": "Copia come GeoJSON",
|
|
505
|
+
"Please zoom in to edit the geometry": "Ingrandisci per modificare la geometria",
|
|
506
|
+
"New map": "Nuova mappa",
|
|
507
|
+
"My maps": "Le mie mappe",
|
|
508
|
+
"My teams": "I miei gruppi",
|
|
509
|
+
"My profile": "Il mio profilo",
|
|
510
|
+
"Type new owner's username": "Inserisci il nome utente del nuovo proprietario",
|
|
513
511
|
"Type editor's username": "Type editor's username",
|
|
514
|
-
"Map": "
|
|
515
|
-
"Manage collaborators": "
|
|
516
|
-
"show/hide all layers": "
|
|
517
|
-
"zoom to data extent": "
|
|
518
|
-
"download visible data": "
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
512
|
+
"Map": "Mappa",
|
|
513
|
+
"Manage collaborators": "Gestisci chi può collaborare",
|
|
514
|
+
"show/hide all layers": "mostra/nascondi tutti i livelli",
|
|
515
|
+
"zoom to data extent": "ingrandisci sull'area dei dati",
|
|
516
|
+
"download visible data": "scarica i dati visibili",
|
|
520
517
|
"Import helpers": "Import helpers",
|
|
521
518
|
"Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
|
|
522
519
|
"Wikipedia": "Wikipedia",
|
|
523
|
-
"Save draft": "
|
|
520
|
+
"Save draft": "Salva bozza",
|
|
521
|
+
"No data has been found for import": "Non sono stati trovati dati da importare",
|
|
522
|
+
"Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
|
|
523
|
+
"Disconnected": "Disconnected",
|
|
524
|
+
"You must be logged in": "You must be logged in",
|
|
525
|
+
"Created at {date}": "Created at {date}",
|
|
526
|
+
"Modified at {date}": "Modified at {date}",
|
|
527
|
+
"on hover": "on hover",
|
|
528
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
|
|
529
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
|
|
530
|
+
"Import failed: invalid data": "Import failed: invalid data",
|
|
531
|
+
"Anonymous": "Anonymous"
|
|
524
532
|
}
|
|
525
533
|
L.registerLocale("it", locale)
|
|
526
534
|
L.setLocale("it")
|