umap-project 2.8.1__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/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +10 -10
- 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 +39 -27
- umap/static/umap/js/modules/utils.js +196 -12
- umap/static/umap/js/umap.controls.js +1 -13
- 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 +34 -26
- umap/static/umap/locale/hu.json +34 -26
- 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.1.dist-info → umap_project-2.9.0b0.dist-info}/METADATA +15 -15
- {umap_project-2.8.1.dist-info → umap_project-2.9.0b0.dist-info}/RECORD +148 -147
- {umap_project-2.8.1.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.1.dist-info → umap_project-2.9.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.8.1.dist-info → umap_project-2.9.0b0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/ca.js
CHANGED
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "Add a new property",
|
|
20
20
|
"Add a polygon to the current multi": "Add a polygon to the current multi",
|
|
21
21
|
"Add image URL": "Add image URL",
|
|
22
|
-
"Add": "Add",
|
|
23
22
|
"Advanced actions": "Opcions avançades",
|
|
24
23
|
"Advanced properties": "Propietats avançades",
|
|
25
24
|
"All data and settings of the map": "Totes les dades i configuracions del mapa",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "Mostra el control de ubicar",
|
|
121
120
|
"Display the measure control": "Mostra el botó mesura",
|
|
122
121
|
"Display the search control": "Mostra el control de cerca",
|
|
123
|
-
"Display the star map button": "Mostra el botó per a destacar el mapa",
|
|
124
122
|
"Display the tile layers control": "Mostra el botó de les capes de tessel·les",
|
|
125
123
|
"Display the zoom control": "Mostra el control del zoom",
|
|
126
124
|
"Do you want to display a caption bar?": "Voleu mostrar la barra de llegenda?",
|
|
@@ -516,11 +514,21 @@ const locale = {
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
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": "Save draft"
|
|
520
|
+
"Save draft": "Save draft",
|
|
521
|
+
"No data has been found for import": "No data has been found for import",
|
|
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("ca", locale)
|
|
526
534
|
L.setLocale("ca")
|
umap/static/umap/locale/ca.json
CHANGED
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"Add a new property": "Add a new property",
|
|
20
20
|
"Add a polygon to the current multi": "Add a polygon to the current multi",
|
|
21
21
|
"Add image URL": "Add image URL",
|
|
22
|
-
"Add": "Add",
|
|
23
22
|
"Advanced actions": "Opcions avançades",
|
|
24
23
|
"Advanced properties": "Propietats avançades",
|
|
25
24
|
"All data and settings of the map": "Totes les dades i configuracions del mapa",
|
|
@@ -120,7 +119,6 @@
|
|
|
120
119
|
"Display the locate control": "Mostra el control de ubicar",
|
|
121
120
|
"Display the measure control": "Mostra el botó mesura",
|
|
122
121
|
"Display the search control": "Mostra el control de cerca",
|
|
123
|
-
"Display the star map button": "Mostra el botó per a destacar el mapa",
|
|
124
122
|
"Display the tile layers control": "Mostra el botó de les capes de tessel·les",
|
|
125
123
|
"Display the zoom control": "Mostra el control del zoom",
|
|
126
124
|
"Do you want to display a caption bar?": "Voleu mostrar la barra de llegenda?",
|
|
@@ -516,9 +514,19 @@
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
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": "Save draft"
|
|
520
|
+
"Save draft": "Save draft",
|
|
521
|
+
"No data has been found for import": "No data has been found for import",
|
|
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
|
}
|
umap/static/umap/locale/cs_CZ.js
CHANGED
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "Přidat novou vlastnost",
|
|
20
20
|
"Add a polygon to the current multi": "Přidat polygon k současnému multi",
|
|
21
21
|
"Add image URL": "Přidat URL obrázku",
|
|
22
|
-
"Add": "Přidat",
|
|
23
22
|
"Advanced actions": "Pokročilé akce",
|
|
24
23
|
"Advanced properties": "Pokročilé vlastnosti",
|
|
25
24
|
"All data and settings of the map": "Všechna data a nastavení mapy",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "Zobrazit tlačítko pro určení polohy",
|
|
121
120
|
"Display the measure control": "Zobrazit tlačítko pro měření vzdálenosti",
|
|
122
121
|
"Display the search control": "Zobrazit vyhledávání",
|
|
123
|
-
"Display the star map button": "Zobrazit tlačítko mapy označené hvězdičkou",
|
|
124
122
|
"Display the tile layers control": "Zobrazit tlačítko pro změnu mapového podkladu",
|
|
125
123
|
"Display the zoom control": "Zobrazit ovládání přiblížení",
|
|
126
124
|
"Do you want to display a caption bar?": "Chcete zobrazit panel s popiskem?",
|
|
@@ -516,13 +514,21 @@ const locale = {
|
|
|
516
514
|
"show/hide all layers": "zobrazit/skrýt všechny vrstvy",
|
|
517
515
|
"zoom to data extent": "přiblížit na rozsah dat",
|
|
518
516
|
"download visible data": "stáhnout viditelná data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "K této mapě je aktuálně připojeno {connectedPeers} vrstevník(ů)",
|
|
520
517
|
"Import helpers": "Pomocníci pro import",
|
|
521
518
|
"Import helpers will fill the URL field for you.": "Pomocníci pro import vyplní pole URL za vás.",
|
|
522
519
|
"Wikipedia": "Wikipedie",
|
|
523
520
|
"Save draft": "Uložit koncept",
|
|
524
521
|
"No data has been found for import": "Nebyla nalezena žádná data pro import",
|
|
525
|
-
"Successfully imported {count} feature(s)": "Počet úspěšně importovaných prvků: {count}"
|
|
522
|
+
"Successfully imported {count} feature(s)": "Počet úspěšně importovaných prvků: {count}",
|
|
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"
|
|
526
532
|
}
|
|
527
533
|
L.registerLocale("cs_CZ", locale)
|
|
528
534
|
L.setLocale("cs_CZ")
|
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"Add a new property": "Přidat novou vlastnost",
|
|
20
20
|
"Add a polygon to the current multi": "Přidat polygon k současnému multi",
|
|
21
21
|
"Add image URL": "Přidat URL obrázku",
|
|
22
|
-
"Add": "Přidat",
|
|
23
22
|
"Advanced actions": "Pokročilé akce",
|
|
24
23
|
"Advanced properties": "Pokročilé vlastnosti",
|
|
25
24
|
"All data and settings of the map": "Všechna data a nastavení mapy",
|
|
@@ -120,7 +119,6 @@
|
|
|
120
119
|
"Display the locate control": "Zobrazit tlačítko pro určení polohy",
|
|
121
120
|
"Display the measure control": "Zobrazit tlačítko pro měření vzdálenosti",
|
|
122
121
|
"Display the search control": "Zobrazit vyhledávání",
|
|
123
|
-
"Display the star map button": "Zobrazit tlačítko mapy označené hvězdičkou",
|
|
124
122
|
"Display the tile layers control": "Zobrazit tlačítko pro změnu mapového podkladu",
|
|
125
123
|
"Display the zoom control": "Zobrazit ovládání přiblížení",
|
|
126
124
|
"Do you want to display a caption bar?": "Chcete zobrazit panel s popiskem?",
|
|
@@ -516,11 +514,19 @@
|
|
|
516
514
|
"show/hide all layers": "zobrazit/skrýt všechny vrstvy",
|
|
517
515
|
"zoom to data extent": "přiblížit na rozsah dat",
|
|
518
516
|
"download visible data": "stáhnout viditelná data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "K této mapě je aktuálně připojeno {connectedPeers} vrstevník(ů)",
|
|
520
517
|
"Import helpers": "Pomocníci pro import",
|
|
521
518
|
"Import helpers will fill the URL field for you.": "Pomocníci pro import vyplní pole URL za vás.",
|
|
522
519
|
"Wikipedia": "Wikipedie",
|
|
523
520
|
"Save draft": "Uložit koncept",
|
|
524
521
|
"No data has been found for import": "Nebyla nalezena žádná data pro import",
|
|
525
|
-
"Successfully imported {count} feature(s)": "Počet úspěšně importovaných prvků: {count}"
|
|
522
|
+
"Successfully imported {count} feature(s)": "Počet úspěšně importovaných prvků: {count}",
|
|
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"
|
|
526
532
|
}
|
umap/static/umap/locale/de.js
CHANGED
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "Ein Merkmal hinzufügen",
|
|
20
20
|
"Add a polygon to the current multi": "Fläche zur vorhandene Gruppe hinzufügen",
|
|
21
21
|
"Add image URL": "Bild-URL hinzufügen",
|
|
22
|
-
"Add": "Hinzufügen",
|
|
23
22
|
"Advanced actions": "Erweiterte Aktionen",
|
|
24
23
|
"Advanced properties": "Erweiterte Eigenschaften",
|
|
25
24
|
"All data and settings of the map": "Alle Daten und Karteneinstellungen",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "Den Ortungsbutton anzeigen.",
|
|
121
120
|
"Display the measure control": "Messsteuerung anzeigen",
|
|
122
121
|
"Display the search control": "Suchsteuerung anzeigen",
|
|
123
|
-
"Display the star map button": "Schalter für Bewertungsfunktion anzeigen",
|
|
124
122
|
"Display the tile layers control": "Kachelebenensteuerung anzeigen",
|
|
125
123
|
"Display the zoom control": "Zoomsteuerung anzeigen",
|
|
126
124
|
"Do you want to display a caption bar?": "Möchtest du eine Überschrift (Fußzeile) anzeigen?",
|
|
@@ -516,11 +514,21 @@ const locale = {
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
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": "Save draft"
|
|
520
|
+
"Save draft": "Save draft",
|
|
521
|
+
"No data has been found for import": "No data has been found for import",
|
|
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("de", locale)
|
|
526
534
|
L.setLocale("de")
|
umap/static/umap/locale/de.json
CHANGED
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"Add a new property": "Ein Merkmal hinzufügen",
|
|
20
20
|
"Add a polygon to the current multi": "Fläche zur vorhandene Gruppe hinzufügen",
|
|
21
21
|
"Add image URL": "Bild-URL hinzufügen",
|
|
22
|
-
"Add": "Hinzufügen",
|
|
23
22
|
"Advanced actions": "Erweiterte Aktionen",
|
|
24
23
|
"Advanced properties": "Erweiterte Eigenschaften",
|
|
25
24
|
"All data and settings of the map": "Alle Daten und Karteneinstellungen",
|
|
@@ -120,7 +119,6 @@
|
|
|
120
119
|
"Display the locate control": "Den Ortungsbutton anzeigen.",
|
|
121
120
|
"Display the measure control": "Messsteuerung anzeigen",
|
|
122
121
|
"Display the search control": "Suchsteuerung anzeigen",
|
|
123
|
-
"Display the star map button": "Schalter für Bewertungsfunktion anzeigen",
|
|
124
122
|
"Display the tile layers control": "Kachelebenensteuerung anzeigen",
|
|
125
123
|
"Display the zoom control": "Zoomsteuerung anzeigen",
|
|
126
124
|
"Do you want to display a caption bar?": "Möchtest du eine Überschrift (Fußzeile) anzeigen?",
|
|
@@ -516,9 +514,19 @@
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
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": "Save draft"
|
|
520
|
+
"Save draft": "Save draft",
|
|
521
|
+
"No data has been found for import": "No data has been found for import",
|
|
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
|
}
|
umap/static/umap/locale/el.js
CHANGED
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "Προσθήκη νέας ιδιότητας",
|
|
20
20
|
"Add a polygon to the current multi": "Προσθήκη πολυγώνου στο παρόν πολυδεδομένο",
|
|
21
21
|
"Add image URL": "Προσθήκη URL εικόνας",
|
|
22
|
-
"Add": "Προσθήκη",
|
|
23
22
|
"Advanced actions": "Εξειδικευμένες ενέργειες",
|
|
24
23
|
"Advanced properties": "Εξειδικευμένες ιδιότητες",
|
|
25
24
|
"All data and settings of the map": "Όλα τα δεδομένα και ρυθμίσεις του χάρτη",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "Εμφάνιση εικονιδίου γεωεντοπισμού",
|
|
121
120
|
"Display the measure control": "Εμφάνιση εικονιδίου μέτρησης",
|
|
122
121
|
"Display the search control": "Εμφάνιση εικονιδίου αναζήτησης",
|
|
123
|
-
"Display the star map button": "Εμφάνιση του κουμπιού για χάρτη με αστέρι",
|
|
124
122
|
"Display the tile layers control": "Εμφάνιση εικονιδίου αλλαγής υποβάθρων",
|
|
125
123
|
"Display the zoom control": "Εμφάνιση εικονιδίου εστίασης",
|
|
126
124
|
"Do you want to display a caption bar?": "Εμφάνιση λεζάντας",
|
|
@@ -516,11 +514,21 @@ const locale = {
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
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": "Save draft"
|
|
520
|
+
"Save draft": "Save draft",
|
|
521
|
+
"No data has been found for import": "No data has been found for import",
|
|
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("el", locale)
|
|
526
534
|
L.setLocale("el")
|
umap/static/umap/locale/el.json
CHANGED
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"Add a new property": "Προσθήκη νέας ιδιότητας",
|
|
20
20
|
"Add a polygon to the current multi": "Προσθήκη πολυγώνου στο παρόν πολυδεδομένο",
|
|
21
21
|
"Add image URL": "Προσθήκη URL εικόνας",
|
|
22
|
-
"Add": "Προσθήκη",
|
|
23
22
|
"Advanced actions": "Εξειδικευμένες ενέργειες",
|
|
24
23
|
"Advanced properties": "Εξειδικευμένες ιδιότητες",
|
|
25
24
|
"All data and settings of the map": "Όλα τα δεδομένα και ρυθμίσεις του χάρτη",
|
|
@@ -120,7 +119,6 @@
|
|
|
120
119
|
"Display the locate control": "Εμφάνιση εικονιδίου γεωεντοπισμού",
|
|
121
120
|
"Display the measure control": "Εμφάνιση εικονιδίου μέτρησης",
|
|
122
121
|
"Display the search control": "Εμφάνιση εικονιδίου αναζήτησης",
|
|
123
|
-
"Display the star map button": "Εμφάνιση του κουμπιού για χάρτη με αστέρι",
|
|
124
122
|
"Display the tile layers control": "Εμφάνιση εικονιδίου αλλαγής υποβάθρων",
|
|
125
123
|
"Display the zoom control": "Εμφάνιση εικονιδίου εστίασης",
|
|
126
124
|
"Do you want to display a caption bar?": "Εμφάνιση λεζάντας",
|
|
@@ -516,9 +514,19 @@
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
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": "Save draft"
|
|
520
|
+
"Save draft": "Save draft",
|
|
521
|
+
"No data has been found for import": "No data has been found for import",
|
|
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
|
}
|
umap/static/umap/locale/en.js
CHANGED
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "Add a new property",
|
|
20
20
|
"Add a polygon to the current multi": "Add a polygon to the current multi",
|
|
21
21
|
"Add image URL": "Add image URL",
|
|
22
|
-
"Add": "Add",
|
|
23
22
|
"Advanced actions": "Advanced actions",
|
|
24
23
|
"Advanced properties": "Advanced properties",
|
|
25
24
|
"All data and settings of the map": "All data and settings of the map",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "Display the locate control",
|
|
121
120
|
"Display the measure control": "Display the measure control",
|
|
122
121
|
"Display the search control": "Display the search control",
|
|
123
|
-
"Display the star map button": "Display the star map button",
|
|
124
122
|
"Display the tile layers control": "Display the tile layers control",
|
|
125
123
|
"Display the zoom control": "Display the zoom control",
|
|
126
124
|
"Do you want to display a caption bar?": "Do you want to display a caption bar?",
|
|
@@ -516,14 +514,21 @@ const locale = {
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
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
520
|
"Save draft": "Save draft",
|
|
524
521
|
"No data has been found for import": "No data has been found for import",
|
|
525
522
|
"Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
|
|
526
|
-
"Disconnected": "Disconnected"
|
|
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"
|
|
527
532
|
}
|
|
528
533
|
L.registerLocale("en", locale)
|
|
529
534
|
L.setLocale("en")
|
umap/static/umap/locale/en.json
CHANGED
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"Add a new property": "Add a new property",
|
|
20
20
|
"Add a polygon to the current multi": "Add a polygon to the current multi",
|
|
21
21
|
"Add image URL": "Add image URL",
|
|
22
|
-
"Add": "Add",
|
|
23
22
|
"Advanced actions": "Advanced actions",
|
|
24
23
|
"Advanced properties": "Advanced properties",
|
|
25
24
|
"All data and settings of the map": "All data and settings of the map",
|
|
@@ -120,7 +119,6 @@
|
|
|
120
119
|
"Display the locate control": "Display the locate control",
|
|
121
120
|
"Display the measure control": "Display the measure control",
|
|
122
121
|
"Display the search control": "Display the search control",
|
|
123
|
-
"Display the star map button": "Display the star map button",
|
|
124
122
|
"Display the tile layers control": "Display the tile layers control",
|
|
125
123
|
"Display the zoom control": "Display the zoom control",
|
|
126
124
|
"Do you want to display a caption bar?": "Do you want to display a caption bar?",
|
|
@@ -516,12 +514,19 @@
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
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
520
|
"Save draft": "Save draft",
|
|
524
521
|
"No data has been found for import": "No data has been found for import",
|
|
525
522
|
"Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
|
|
526
|
-
"Disconnected": "Disconnected"
|
|
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"
|
|
527
532
|
}
|
umap/static/umap/locale/es.js
CHANGED
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "Añadir una nueva propiedad",
|
|
20
20
|
"Add a polygon to the current multi": "Añadir un polígono al multielemento actual",
|
|
21
21
|
"Add image URL": "Añadir URL de imagen",
|
|
22
|
-
"Add": "Añadir",
|
|
23
22
|
"Advanced actions": "Acciones avanzadas",
|
|
24
23
|
"Advanced properties": "Propiedades avanzadas",
|
|
25
24
|
"All data and settings of the map": "Todos los datos y ajustes del mapa",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "Mostrar el control de ubicación",
|
|
121
120
|
"Display the measure control": "Mostrar el control de medición",
|
|
122
121
|
"Display the search control": "Mostrar el control de búsqueda",
|
|
123
|
-
"Display the star map button": "Mostrar el botón de mapa destacado",
|
|
124
122
|
"Display the tile layers control": "Mostrar el control de capas de teselas",
|
|
125
123
|
"Display the zoom control": "Mostrar el control de zoom",
|
|
126
124
|
"Do you want to display a caption bar?": "¿Quieres mostrar una barra de título?",
|
|
@@ -183,12 +181,12 @@ const locale = {
|
|
|
183
181
|
"Icon shape": "Forma del icono",
|
|
184
182
|
"Icon symbol": "Símbolo del icono",
|
|
185
183
|
"If false, the polygon or line will act as a part of the underlying map.": "Si es falso, el polígono o la línea actuarán como parte del mapa subyacente.",
|
|
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 altura personalizada (en px): {{{https://iframe.url.com|height}}}",
|
|
185
|
+
"Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe con altura y ancho personalizados (en 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}}": "Imagen con ancho personalizado (en px): {{https://image.url.com|width}}",
|
|
189
|
+
"Image: {{https://image.url.com}}": "Imagen: {{https://image.url.com}}",
|
|
192
190
|
"Import data": "Importar datos",
|
|
193
191
|
"Import in a new layer": "Importar en una nueva capa",
|
|
194
192
|
"Imports all umap data, including layers and settings.": "Importa todos los datos de uMap, incluyendo capas y configuraciones.",
|
|
@@ -216,7 +214,7 @@ const locale = {
|
|
|
216
214
|
"Limit bounds": "Límites",
|
|
217
215
|
"Link to view the map": "Enlace para ver el mapa",
|
|
218
216
|
"Link to…": "Enlace a...",
|
|
219
|
-
"Link with text: [[https://example.com|text of the link]]": "
|
|
217
|
+
"Link with text: [[https://example.com|text of the link]]": "Enlace con texto: [[https://example.com|text of the link]]",
|
|
220
218
|
"Long credits": "Créditos largos",
|
|
221
219
|
"Longitude": "Longitud",
|
|
222
220
|
"Make main shape": "Convertir en forma principal",
|
|
@@ -320,7 +318,7 @@ const locale = {
|
|
|
320
318
|
"Show this layer in the caption": "Mostrar esta capa en la leyenda",
|
|
321
319
|
"Show/hide layer": "Mostrar/ocultar capa",
|
|
322
320
|
"Side panel": "Panel lateral",
|
|
323
|
-
"Simple link: [[https://example.com]]": "
|
|
321
|
+
"Simple link: [[https://example.com]]": "Enlace simple: [[https://example.com]]",
|
|
324
322
|
"Simplify": "Simplificar",
|
|
325
323
|
"Skipping unknown geometry.type: {type}": "Omitiendo geometry.type desconocido: {type}",
|
|
326
324
|
"Slideshow": "Presentación de diapositivas",
|
|
@@ -516,11 +514,21 @@ const locale = {
|
|
|
516
514
|
"show/hide all layers": "mostrar/ocultar todas las capas",
|
|
517
515
|
"zoom to data extent": "zoom a la extensión de los datos",
|
|
518
516
|
"download visible data": "descargar datos visibles",
|
|
519
|
-
"
|
|
520
|
-
"Import helpers": "
|
|
521
|
-
"Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
|
|
517
|
+
"Import helpers": "Ayudas para importar",
|
|
518
|
+
"Import helpers will fill the URL field for you.": "Las ayudas para importar completarán el campo de URL por ti.",
|
|
522
519
|
"Wikipedia": "Wikipedia",
|
|
523
|
-
"Save draft": "
|
|
520
|
+
"Save draft": "Guardar borrador",
|
|
521
|
+
"No data has been found for import": "No se han encontrado datos para importar",
|
|
522
|
+
"Successfully imported {count} feature(s)": "{count} elemento(s) importado(s) con éxito",
|
|
523
|
+
"Disconnected": "Desconectado",
|
|
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("es", locale)
|
|
526
534
|
L.setLocale("es")
|
umap/static/umap/locale/es.json
CHANGED
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"Add a new property": "Añadir una nueva propiedad",
|
|
20
20
|
"Add a polygon to the current multi": "Añadir un polígono al multielemento actual",
|
|
21
21
|
"Add image URL": "Añadir URL de imagen",
|
|
22
|
-
"Add": "Añadir",
|
|
23
22
|
"Advanced actions": "Acciones avanzadas",
|
|
24
23
|
"Advanced properties": "Propiedades avanzadas",
|
|
25
24
|
"All data and settings of the map": "Todos los datos y ajustes del mapa",
|
|
@@ -120,7 +119,6 @@
|
|
|
120
119
|
"Display the locate control": "Mostrar el control de ubicación",
|
|
121
120
|
"Display the measure control": "Mostrar el control de medición",
|
|
122
121
|
"Display the search control": "Mostrar el control de búsqueda",
|
|
123
|
-
"Display the star map button": "Mostrar el botón de mapa destacado",
|
|
124
122
|
"Display the tile layers control": "Mostrar el control de capas de teselas",
|
|
125
123
|
"Display the zoom control": "Mostrar el control de zoom",
|
|
126
124
|
"Do you want to display a caption bar?": "¿Quieres mostrar una barra de título?",
|
|
@@ -183,12 +181,12 @@
|
|
|
183
181
|
"Icon shape": "Forma del icono",
|
|
184
182
|
"Icon symbol": "Símbolo del icono",
|
|
185
183
|
"If false, the polygon or line will act as a part of the underlying map.": "Si es falso, el polígono o la línea actuarán como parte del mapa subyacente.",
|
|
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 altura personalizada (en px): {{{https://iframe.url.com|height}}}",
|
|
185
|
+
"Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe con altura y ancho personalizados (en 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}}": "Imagen con ancho personalizado (en px): {{https://image.url.com|width}}",
|
|
189
|
+
"Image: {{https://image.url.com}}": "Imagen: {{https://image.url.com}}",
|
|
192
190
|
"Import data": "Importar datos",
|
|
193
191
|
"Import in a new layer": "Importar en una nueva capa",
|
|
194
192
|
"Imports all umap data, including layers and settings.": "Importa todos los datos de uMap, incluyendo capas y configuraciones.",
|
|
@@ -216,7 +214,7 @@
|
|
|
216
214
|
"Limit bounds": "Límites",
|
|
217
215
|
"Link to view the map": "Enlace para ver el mapa",
|
|
218
216
|
"Link to…": "Enlace a...",
|
|
219
|
-
"Link with text: [[https://example.com|text of the link]]": "
|
|
217
|
+
"Link with text: [[https://example.com|text of the link]]": "Enlace con texto: [[https://example.com|text of the link]]",
|
|
220
218
|
"Long credits": "Créditos largos",
|
|
221
219
|
"Longitude": "Longitud",
|
|
222
220
|
"Make main shape": "Convertir en forma principal",
|
|
@@ -320,7 +318,7 @@
|
|
|
320
318
|
"Show this layer in the caption": "Mostrar esta capa en la leyenda",
|
|
321
319
|
"Show/hide layer": "Mostrar/ocultar capa",
|
|
322
320
|
"Side panel": "Panel lateral",
|
|
323
|
-
"Simple link: [[https://example.com]]": "
|
|
321
|
+
"Simple link: [[https://example.com]]": "Enlace simple: [[https://example.com]]",
|
|
324
322
|
"Simplify": "Simplificar",
|
|
325
323
|
"Skipping unknown geometry.type: {type}": "Omitiendo geometry.type desconocido: {type}",
|
|
326
324
|
"Slideshow": "Presentación de diapositivas",
|
|
@@ -516,9 +514,19 @@
|
|
|
516
514
|
"show/hide all layers": "mostrar/ocultar todas las capas",
|
|
517
515
|
"zoom to data extent": "zoom a la extensión de los datos",
|
|
518
516
|
"download visible data": "descargar datos visibles",
|
|
519
|
-
"
|
|
520
|
-
"Import helpers": "
|
|
521
|
-
"Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
|
|
517
|
+
"Import helpers": "Ayudas para importar",
|
|
518
|
+
"Import helpers will fill the URL field for you.": "Las ayudas para importar completarán el campo de URL por ti.",
|
|
522
519
|
"Wikipedia": "Wikipedia",
|
|
523
|
-
"Save draft": "
|
|
520
|
+
"Save draft": "Guardar borrador",
|
|
521
|
+
"No data has been found for import": "No se han encontrado datos para importar",
|
|
522
|
+
"Successfully imported {count} feature(s)": "{count} elemento(s) importado(s) con éxito",
|
|
523
|
+
"Disconnected": "Desconectado",
|
|
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
|
}
|
umap/static/umap/locale/eu.js
CHANGED
|
@@ -19,7 +19,6 @@ const locale = {
|
|
|
19
19
|
"Add a new property": "Gehitu jabe berri bat",
|
|
20
20
|
"Add a polygon to the current multi": "Gehitu poligono bat uneko multiari",
|
|
21
21
|
"Add image URL": "Gehitu irudiaren URLa",
|
|
22
|
-
"Add": "Gehitu",
|
|
23
22
|
"Advanced actions": "Ekintza aurreratuak",
|
|
24
23
|
"Advanced properties": "Propietate aurreratuak",
|
|
25
24
|
"All data and settings of the map": "Maparen datu eta ezarpen guztiak",
|
|
@@ -120,7 +119,6 @@ const locale = {
|
|
|
120
119
|
"Display the locate control": "Bistaratu lokalizazio kontrola",
|
|
121
120
|
"Display the measure control": "Bistaratu neurrien kontrola",
|
|
122
121
|
"Display the search control": "Bistaratu bilaketa-kontrola",
|
|
123
|
-
"Display the star map button": "Bistaratu gogoko mapen botoia",
|
|
124
122
|
"Display the tile layers control": "Bistaratu lauzen geruzaren kontrola",
|
|
125
123
|
"Display the zoom control": "Bistaratu zoom kontrola",
|
|
126
124
|
"Do you want to display a caption bar?": "Epigrafeen barra bistaratu nahi duzu?",
|
|
@@ -516,11 +514,21 @@ const locale = {
|
|
|
516
514
|
"show/hide all layers": "show/hide all layers",
|
|
517
515
|
"zoom to data extent": "zoom to data extent",
|
|
518
516
|
"download visible data": "download visible data",
|
|
519
|
-
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
|
|
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": "Save draft"
|
|
520
|
+
"Save draft": "Save draft",
|
|
521
|
+
"No data has been found for import": "No data has been found for import",
|
|
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("eu", locale)
|
|
526
534
|
L.setLocale("eu")
|