umap-project 2.9.2__py3-none-any.whl → 3.0.0__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/context_processors.py +1 -0
- umap/forms.py +1 -2
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +218 -96
- umap/locale/en/LC_MESSAGES/django.po +131 -55
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +175 -130
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +117 -72
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +132 -56
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +209 -88
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +296 -175
- umap/middleware.py +2 -1
- umap/migrations/0027_map_tags.py +23 -0
- umap/models.py +13 -2
- umap/settings/base.py +23 -5
- umap/static/umap/base.css +41 -8
- umap/static/umap/content.css +72 -37
- umap/static/umap/css/bar.css +43 -21
- umap/static/umap/css/dialog.css +4 -1
- umap/static/umap/css/form.css +40 -27
- umap/static/umap/css/icon.css +11 -1
- umap/static/umap/css/importers.css +7 -0
- umap/static/umap/img/16-white.svg +23 -2
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24.svg +4 -4
- umap/static/umap/img/home.svg +7 -0
- umap/static/umap/img/importers/banfr.svg +1 -0
- umap/static/umap/img/marker.svg +2 -5
- umap/static/umap/img/source/16-white.svg +24 -3
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24.svg +5 -5
- umap/static/umap/img/target.svg +1 -0
- umap/static/umap/js/components/alerts/alert.js +0 -1
- umap/static/umap/js/modules/browser.js +4 -4
- umap/static/umap/js/modules/caption.js +1 -1
- umap/static/umap/js/modules/data/features.js +25 -25
- umap/static/umap/js/modules/data/layer.js +91 -97
- umap/static/umap/js/modules/facets.js +9 -5
- umap/static/umap/js/modules/form/builder.js +21 -29
- umap/static/umap/js/modules/form/fields.js +40 -14
- umap/static/umap/js/modules/formatter.js +1 -1
- umap/static/umap/js/modules/global.js +9 -5
- umap/static/umap/js/modules/help.js +18 -5
- umap/static/umap/js/modules/importer.js +5 -2
- umap/static/umap/js/modules/importers/banfr.js +93 -0
- umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
- umap/static/umap/js/modules/importers/communesfr.js +1 -1
- umap/static/umap/js/modules/permissions.js +20 -10
- umap/static/umap/js/modules/rendering/icon.js +15 -2
- umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
- umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
- umap/static/umap/js/modules/rendering/map.js +14 -6
- umap/static/umap/js/modules/rendering/popup.js +2 -2
- umap/static/umap/js/modules/rendering/template.js +3 -3
- umap/static/umap/js/modules/rendering/ui.js +17 -11
- umap/static/umap/js/modules/rules.js +13 -16
- umap/static/umap/js/modules/schema.js +23 -1
- umap/static/umap/js/modules/share.js +1 -1
- umap/static/umap/js/modules/slideshow.js +1 -0
- umap/static/umap/js/modules/sync/engine.js +141 -19
- umap/static/umap/js/modules/sync/undo.js +101 -0
- umap/static/umap/js/modules/sync/updaters.js +51 -28
- umap/static/umap/js/modules/tableeditor.js +1 -1
- umap/static/umap/js/modules/ui/bar.js +61 -21
- umap/static/umap/js/modules/ui/tooltip.js +1 -1
- umap/static/umap/js/modules/umap.js +190 -176
- umap/static/umap/js/modules/utils.js +30 -4
- umap/static/umap/js/umap.controls.js +82 -38
- umap/static/umap/locale/am_ET.js +13 -7
- umap/static/umap/locale/am_ET.json +13 -7
- umap/static/umap/locale/ar.js +13 -7
- umap/static/umap/locale/ar.json +13 -7
- umap/static/umap/locale/ast.js +13 -7
- umap/static/umap/locale/ast.json +13 -7
- umap/static/umap/locale/bg.js +13 -7
- umap/static/umap/locale/bg.json +13 -7
- umap/static/umap/locale/br.js +13 -8
- umap/static/umap/locale/br.json +13 -8
- umap/static/umap/locale/ca.js +13 -7
- umap/static/umap/locale/ca.json +13 -7
- umap/static/umap/locale/cs_CZ.js +26 -20
- umap/static/umap/locale/cs_CZ.json +26 -20
- umap/static/umap/locale/da.js +13 -7
- umap/static/umap/locale/da.json +13 -7
- umap/static/umap/locale/de.js +47 -41
- umap/static/umap/locale/de.json +47 -41
- umap/static/umap/locale/el.js +13 -7
- umap/static/umap/locale/el.json +13 -7
- umap/static/umap/locale/en.js +12 -7
- umap/static/umap/locale/en.json +12 -7
- umap/static/umap/locale/en_US.json +13 -7
- umap/static/umap/locale/es.js +19 -13
- umap/static/umap/locale/es.json +19 -13
- umap/static/umap/locale/et.js +13 -7
- umap/static/umap/locale/et.json +13 -7
- umap/static/umap/locale/eu.js +43 -37
- umap/static/umap/locale/eu.json +43 -37
- umap/static/umap/locale/fa_IR.js +13 -7
- umap/static/umap/locale/fa_IR.json +13 -7
- umap/static/umap/locale/fi.js +13 -7
- umap/static/umap/locale/fi.json +13 -7
- umap/static/umap/locale/fr.js +12 -7
- umap/static/umap/locale/fr.json +12 -7
- umap/static/umap/locale/gl.js +19 -13
- umap/static/umap/locale/gl.json +19 -13
- umap/static/umap/locale/he.js +13 -7
- umap/static/umap/locale/he.json +13 -7
- umap/static/umap/locale/hr.js +13 -7
- umap/static/umap/locale/hr.json +13 -7
- umap/static/umap/locale/hu.js +25 -19
- umap/static/umap/locale/hu.json +25 -19
- umap/static/umap/locale/id.js +13 -7
- umap/static/umap/locale/id.json +13 -7
- umap/static/umap/locale/is.js +151 -145
- umap/static/umap/locale/is.json +151 -145
- umap/static/umap/locale/it.js +13 -7
- umap/static/umap/locale/it.json +13 -7
- umap/static/umap/locale/ja.js +13 -7
- umap/static/umap/locale/ja.json +13 -7
- umap/static/umap/locale/ko.js +13 -7
- umap/static/umap/locale/ko.json +13 -7
- umap/static/umap/locale/lt.js +13 -7
- umap/static/umap/locale/lt.json +13 -7
- umap/static/umap/locale/ms.js +13 -7
- umap/static/umap/locale/ms.json +13 -7
- umap/static/umap/locale/nl.js +12 -7
- umap/static/umap/locale/nl.json +12 -7
- umap/static/umap/locale/no.js +13 -7
- umap/static/umap/locale/no.json +13 -7
- umap/static/umap/locale/pl.js +13 -7
- umap/static/umap/locale/pl.json +13 -7
- umap/static/umap/locale/pl_PL.json +13 -7
- umap/static/umap/locale/pt.js +12 -7
- umap/static/umap/locale/pt.json +12 -7
- umap/static/umap/locale/pt_BR.js +13 -7
- umap/static/umap/locale/pt_BR.json +13 -7
- umap/static/umap/locale/pt_PT.js +13 -7
- umap/static/umap/locale/pt_PT.json +13 -7
- umap/static/umap/locale/ro.js +13 -7
- umap/static/umap/locale/ro.json +13 -7
- umap/static/umap/locale/ru.js +13 -7
- umap/static/umap/locale/ru.json +13 -7
- umap/static/umap/locale/sk_SK.js +13 -7
- umap/static/umap/locale/sk_SK.json +13 -7
- umap/static/umap/locale/sl.js +13 -7
- umap/static/umap/locale/sl.json +13 -7
- umap/static/umap/locale/sr.js +13 -7
- umap/static/umap/locale/sr.json +13 -7
- umap/static/umap/locale/sv.js +13 -7
- umap/static/umap/locale/sv.json +13 -7
- umap/static/umap/locale/th_TH.js +13 -7
- umap/static/umap/locale/th_TH.json +13 -7
- umap/static/umap/locale/tr.js +13 -7
- umap/static/umap/locale/tr.json +13 -7
- umap/static/umap/locale/uk_UA.js +13 -7
- umap/static/umap/locale/uk_UA.json +13 -7
- umap/static/umap/locale/vi.js +13 -7
- umap/static/umap/locale/vi.json +13 -7
- umap/static/umap/locale/vi_VN.json +13 -7
- umap/static/umap/locale/zh.js +13 -7
- umap/static/umap/locale/zh.json +13 -7
- umap/static/umap/locale/zh_CN.json +13 -7
- umap/static/umap/locale/zh_TW.Big5.json +13 -7
- umap/static/umap/locale/zh_TW.js +19 -13
- umap/static/umap/locale/zh_TW.json +19 -13
- umap/static/umap/map.css +58 -28
- umap/static/umap/unittests/sync.js +0 -57
- umap/static/umap/unittests/utils.js +47 -0
- umap/static/umap/vars.css +5 -2
- umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
- umap/sync/payloads.py +3 -2
- umap/templates/auth/user_detail.html +1 -1
- umap/templates/auth/user_stars.html +1 -1
- umap/templates/umap/content.html +17 -12
- umap/templates/umap/home.html +7 -5
- umap/templates/umap/map_fragment.html +1 -1
- umap/templates/umap/map_list.html +20 -13
- umap/templates/umap/search.html +7 -3
- umap/templates/umap/search_bar.html +13 -11
- umap/templates/umap/team_detail.html +1 -1
- umap/tests/base.py +2 -1
- umap/tests/fixtures/remote_data.umap +55 -0
- umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
- umap/tests/integration/test_browser.py +1 -3
- umap/tests/integration/test_conditional_rules.py +3 -0
- umap/tests/integration/test_edit_datalayer.py +2 -7
- umap/tests/integration/test_edit_map.py +15 -0
- umap/tests/integration/test_edit_polygon.py +1 -2
- umap/tests/integration/test_import.py +59 -2
- umap/tests/integration/test_optimistic_merge.py +4 -3
- umap/tests/integration/test_owned_map.py +0 -1
- umap/tests/integration/test_save.py +2 -4
- umap/tests/integration/test_undo_redo.py +267 -0
- umap/tests/integration/test_websocket_sync.py +78 -11
- umap/tests/settings.py +1 -3
- umap/tests/test_datalayer_s3.py +1 -0
- umap/tests/test_map_views.py +1 -0
- umap/tests/test_views.py +34 -0
- umap/utils.py +1 -1
- umap/views.py +23 -2
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/METADATA +13 -12
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/RECORD +211 -213
- umap/static/umap/js/modules/saving.js +0 -52
- umap/static/umap/test/.eslintrc +0 -21
- umap/static/umap/test/DataLayer.js +0 -463
- umap/static/umap/test/Feature.js +0 -131
- umap/static/umap/test/Map.js +0 -37
- umap/static/umap/test/Marker.js +0 -126
- umap/static/umap/test/Polygon.js +0 -111
- umap/static/umap/test/Polyline.js +0 -286
- umap/static/umap/test/Util.js +0 -28
- umap/static/umap/test/_pre.js +0 -455
- umap/static/umap/test/index.html +0 -139
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/WHEEL +0 -0
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/fi.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Salli zoomaus hiiren rullalla?",
|
|
28
28
|
"always": "aina",
|
|
29
29
|
"Animated transitions": "Animated transitions",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Oletko _ihan_ varma, että haluat peruuttaa muutoksesi?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Oletko varma että haluat kloonata tämän kartan ja kaikki sen data-kerrokset?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Oletko varma että haluat poistaa piirteen?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Oletko ihan täysin varma, että haluat poistaa tämän kartan? Poistettua karttaa ei voi palauttaa.",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Oletko varma että haluat poistaa tämän ominaisuuden kaikista piirteistä?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Oletko varma että haluat palauttaa tämän version?",
|
|
@@ -46,7 +43,6 @@ const locale = {
|
|
|
46
43
|
"Browse data": "Selaa tietoja",
|
|
47
44
|
"by": "taholta",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "Peruuta muokkaukset",
|
|
50
46
|
"Caption": "Kuvateksti",
|
|
51
47
|
"Center map on your location": "Keskitä kartta sijaintiisi",
|
|
52
48
|
"Change map background": "Vaihda taustakarttaa",
|
|
@@ -299,7 +295,6 @@ const locale = {
|
|
|
299
295
|
"Restore this version": "Palauta tämä versio",
|
|
300
296
|
"Save current edits": "Tallenna tämänhetkiset muokkaukset",
|
|
301
297
|
"Save map": "Save map",
|
|
302
|
-
"Save this location as new feature": "Save this location as new feature",
|
|
303
298
|
"Save": "Tallenna",
|
|
304
299
|
"Saved center and zoom": "Saved center and zoom",
|
|
305
300
|
"Search location": "Search location",
|
|
@@ -387,7 +382,6 @@ const locale = {
|
|
|
387
382
|
"Zoom to the next": "Kohdenna seuraavaan",
|
|
388
383
|
"Zoom to the previous": "Kohdenna edelliseen",
|
|
389
384
|
"Zoom to this feature": "Kohdenna tähän piirteeseen",
|
|
390
|
-
"Zoom to this place": "Kohdenna tähän paikkaan",
|
|
391
385
|
"{area} acres": "{area} acres",
|
|
392
386
|
"{area} ha": "{area} ha",
|
|
393
387
|
"{area} m²": "{area} m²",
|
|
@@ -532,7 +526,19 @@ const locale = {
|
|
|
532
526
|
"Default latitude": "Default latitude",
|
|
533
527
|
"Default longitude": "Default longitude",
|
|
534
528
|
"Edit map default view": "Edit map default view",
|
|
535
|
-
"Use current center and zoom": "Use current center and zoom"
|
|
529
|
+
"Use current center and zoom": "Use current center and zoom",
|
|
530
|
+
"Layer permalink": "Layer permalink",
|
|
531
|
+
"Back to home": "Back to home",
|
|
532
|
+
"Home logo": "Home logo",
|
|
533
|
+
"Add this geometry to my map": "Add this geometry to my map",
|
|
534
|
+
"Add this place to my map": "Add this place to my map",
|
|
535
|
+
"Cancel last edit": "Cancel last edit",
|
|
536
|
+
"Redo last edit": "Redo last edit",
|
|
537
|
+
"Links": "Links",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Tags",
|
|
541
|
+
"Geocode": "Geocode"
|
|
536
542
|
}
|
|
537
543
|
L.registerLocale("fi", locale)
|
|
538
544
|
L.setLocale("fi")
|
umap/static/umap/locale/fi.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Salli zoomaus hiiren rullalla?",
|
|
28
28
|
"always": "aina",
|
|
29
29
|
"Animated transitions": "Animated transitions",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Oletko _ihan_ varma, että haluat peruuttaa muutoksesi?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Oletko varma että haluat kloonata tämän kartan ja kaikki sen data-kerrokset?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Oletko varma että haluat poistaa piirteen?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Oletko ihan täysin varma, että haluat poistaa tämän kartan? Poistettua karttaa ei voi palauttaa.",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Oletko varma että haluat poistaa tämän ominaisuuden kaikista piirteistä?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Oletko varma että haluat palauttaa tämän version?",
|
|
@@ -46,7 +43,6 @@
|
|
|
46
43
|
"Browse data": "Selaa tietoja",
|
|
47
44
|
"by": "taholta",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "Peruuta muokkaukset",
|
|
50
46
|
"Caption": "Kuvateksti",
|
|
51
47
|
"Center map on your location": "Keskitä kartta sijaintiisi",
|
|
52
48
|
"Change map background": "Vaihda taustakarttaa",
|
|
@@ -299,7 +295,6 @@
|
|
|
299
295
|
"Restore this version": "Palauta tämä versio",
|
|
300
296
|
"Save current edits": "Tallenna tämänhetkiset muokkaukset",
|
|
301
297
|
"Save map": "Save map",
|
|
302
|
-
"Save this location as new feature": "Save this location as new feature",
|
|
303
298
|
"Save": "Tallenna",
|
|
304
299
|
"Saved center and zoom": "Saved center and zoom",
|
|
305
300
|
"Search location": "Search location",
|
|
@@ -387,7 +382,6 @@
|
|
|
387
382
|
"Zoom to the next": "Kohdenna seuraavaan",
|
|
388
383
|
"Zoom to the previous": "Kohdenna edelliseen",
|
|
389
384
|
"Zoom to this feature": "Kohdenna tähän piirteeseen",
|
|
390
|
-
"Zoom to this place": "Kohdenna tähän paikkaan",
|
|
391
385
|
"{area} acres": "{area} acres",
|
|
392
386
|
"{area} ha": "{area} ha",
|
|
393
387
|
"{area} m²": "{area} m²",
|
|
@@ -532,5 +526,17 @@
|
|
|
532
526
|
"Default latitude": "Default latitude",
|
|
533
527
|
"Default longitude": "Default longitude",
|
|
534
528
|
"Edit map default view": "Edit map default view",
|
|
535
|
-
"Use current center and zoom": "Use current center and zoom"
|
|
529
|
+
"Use current center and zoom": "Use current center and zoom",
|
|
530
|
+
"Layer permalink": "Layer permalink",
|
|
531
|
+
"Back to home": "Back to home",
|
|
532
|
+
"Home logo": "Home logo",
|
|
533
|
+
"Add this geometry to my map": "Add this geometry to my map",
|
|
534
|
+
"Add this place to my map": "Add this place to my map",
|
|
535
|
+
"Cancel last edit": "Cancel last edit",
|
|
536
|
+
"Redo last edit": "Redo last edit",
|
|
537
|
+
"Links": "Links",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Tags",
|
|
541
|
+
"Geocode": "Geocode"
|
|
536
542
|
}
|
umap/static/umap/locale/fr.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Autoriser le zoom avec la molette ?",
|
|
28
28
|
"always": "toujours",
|
|
29
29
|
"Animated transitions": "Transitions animées",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Êtes-vous sûr de vouloir annuler vos modifications ?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Êtes-vous sûr de vouloir cloner cette carte et ses calques de données?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Êtes-vous sûr de vouloir supprimer cet élément?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Voulez-vous vraiment supprimer ce calque ?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Êtes-vous sûr de vouloir supprimer cette carte?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Supprimer la propriété sur tous les éléments ?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Êtes-vous sûr de vouloir restaurer cette version ?",
|
|
@@ -46,7 +43,6 @@ const locale = {
|
|
|
46
43
|
"Browse data": "Visualiser les données",
|
|
47
44
|
"by": "par",
|
|
48
45
|
"Cache proxied request": "Cacher la requête avec proxy",
|
|
49
|
-
"Cancel edits": "Annuler les modifications",
|
|
50
46
|
"Caption": "Légende",
|
|
51
47
|
"Center map on your location": "Centrer la carte sur votre position",
|
|
52
48
|
"Change map background": "Changer le fond de carte",
|
|
@@ -299,7 +295,6 @@ const locale = {
|
|
|
299
295
|
"Restore this version": "Restaurer cette version",
|
|
300
296
|
"Save current edits": "Enregistrer les changements courants",
|
|
301
297
|
"Save map": "Enregistrer la carte",
|
|
302
|
-
"Save this location as new feature": "Enregistrer ce lieu comme élément de la carte",
|
|
303
298
|
"Save": "Enregistrer",
|
|
304
299
|
"Saved center and zoom": "Centre et zoom enregistrés",
|
|
305
300
|
"Search location": "Chercher un lieu",
|
|
@@ -387,7 +382,6 @@ const locale = {
|
|
|
387
382
|
"Zoom to the next": "Suivant",
|
|
388
383
|
"Zoom to the previous": "Précédent",
|
|
389
384
|
"Zoom to this feature": "Zoomer sur cet élément",
|
|
390
|
-
"Zoom to this place": "Zoomer vers ce lieu",
|
|
391
385
|
"{area} acres": "{area} acres",
|
|
392
386
|
"{area} ha": "{area} ha",
|
|
393
387
|
"{area} m²": "{area} m²",
|
|
@@ -533,7 +527,18 @@ const locale = {
|
|
|
533
527
|
"Default longitude": "Longitude par défaut",
|
|
534
528
|
"Edit map default view": "Régler la vue par défaut de la carte",
|
|
535
529
|
"Use current center and zoom": "Utiliser le centre et le zoom actuels",
|
|
536
|
-
"Layer permalink": "Permalien du calque"
|
|
530
|
+
"Layer permalink": "Permalien du calque",
|
|
531
|
+
"Back to home": "Retour à l'accueil",
|
|
532
|
+
"Home logo": "Logo uMap",
|
|
533
|
+
"Add this geometry to my map": "Ajouter cette géométrie à ma carte",
|
|
534
|
+
"Add this place to my map": "Ajouter ce lieu à ma carte",
|
|
535
|
+
"Cancel last edit": "Annuler la dernière modification",
|
|
536
|
+
"Redo last edit": "Rejouer la dernière modification",
|
|
537
|
+
"Links": "Liens",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Catégories",
|
|
541
|
+
"Geocode": "Géocoder"
|
|
537
542
|
}
|
|
538
543
|
L.registerLocale("fr", locale)
|
|
539
544
|
L.setLocale("fr")
|
umap/static/umap/locale/fr.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Autoriser le zoom avec la molette ?",
|
|
28
28
|
"always": "toujours",
|
|
29
29
|
"Animated transitions": "Transitions animées",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Êtes-vous sûr de vouloir annuler vos modifications ?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Êtes-vous sûr de vouloir cloner cette carte et ses calques de données?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Êtes-vous sûr de vouloir supprimer cet élément?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Voulez-vous vraiment supprimer ce calque ?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Êtes-vous sûr de vouloir supprimer cette carte?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Supprimer la propriété sur tous les éléments ?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Êtes-vous sûr de vouloir restaurer cette version ?",
|
|
@@ -46,7 +43,6 @@
|
|
|
46
43
|
"Browse data": "Visualiser les données",
|
|
47
44
|
"by": "par",
|
|
48
45
|
"Cache proxied request": "Cacher la requête avec proxy",
|
|
49
|
-
"Cancel edits": "Annuler les modifications",
|
|
50
46
|
"Caption": "Légende",
|
|
51
47
|
"Center map on your location": "Centrer la carte sur votre position",
|
|
52
48
|
"Change map background": "Changer le fond de carte",
|
|
@@ -299,7 +295,6 @@
|
|
|
299
295
|
"Restore this version": "Restaurer cette version",
|
|
300
296
|
"Save current edits": "Enregistrer les changements courants",
|
|
301
297
|
"Save map": "Enregistrer la carte",
|
|
302
|
-
"Save this location as new feature": "Enregistrer ce lieu comme élément de la carte",
|
|
303
298
|
"Save": "Enregistrer",
|
|
304
299
|
"Saved center and zoom": "Centre et zoom enregistrés",
|
|
305
300
|
"Search location": "Chercher un lieu",
|
|
@@ -387,7 +382,6 @@
|
|
|
387
382
|
"Zoom to the next": "Suivant",
|
|
388
383
|
"Zoom to the previous": "Précédent",
|
|
389
384
|
"Zoom to this feature": "Zoomer sur cet élément",
|
|
390
|
-
"Zoom to this place": "Zoomer vers ce lieu",
|
|
391
385
|
"{area} acres": "{area} acres",
|
|
392
386
|
"{area} ha": "{area} ha",
|
|
393
387
|
"{area} m²": "{area} m²",
|
|
@@ -533,5 +527,16 @@
|
|
|
533
527
|
"Default longitude": "Longitude par défaut",
|
|
534
528
|
"Edit map default view": "Régler la vue par défaut de la carte",
|
|
535
529
|
"Use current center and zoom": "Utiliser le centre et le zoom actuels",
|
|
536
|
-
"Layer permalink": "Permalien du calque"
|
|
530
|
+
"Layer permalink": "Permalien du calque",
|
|
531
|
+
"Back to home": "Retour à l'accueil",
|
|
532
|
+
"Home logo": "Logo uMap",
|
|
533
|
+
"Add this geometry to my map": "Ajouter cette géométrie à ma carte",
|
|
534
|
+
"Add this place to my map": "Ajouter ce lieu à ma carte",
|
|
535
|
+
"Cancel last edit": "Annuler la dernière modification",
|
|
536
|
+
"Redo last edit": "Rejouer la dernière modification",
|
|
537
|
+
"Links": "Liens",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Catégories",
|
|
541
|
+
"Geocode": "Géocoder"
|
|
537
542
|
}
|
umap/static/umap/locale/gl.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Permitir o zoom coa roda do rato?",
|
|
28
28
|
"always": "sempre",
|
|
29
29
|
"Animated transitions": "Transicións animadas",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Confirmas que queres desbotar os teus cambios?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Confirmas que queres clonar este mapa e todas as súas capas de datos?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Confirmas que queres eliminar este elemento?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Confirmas que queres eliminar esta capa?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Confirmas que queres eliminar este mapa?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Confirmas que queres eliminar esta propiedade en todos os elementos?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Confirmas que queres restabelecer esta versión?",
|
|
@@ -46,7 +43,6 @@ const locale = {
|
|
|
46
43
|
"Browse data": "Navegar polos datos",
|
|
47
44
|
"by": "por",
|
|
48
45
|
"Cache proxied request": "Solicitude de proxy da memoria tobo",
|
|
49
|
-
"Cancel edits": "Desbotar as edicións",
|
|
50
46
|
"Caption": "Lenda",
|
|
51
47
|
"Center map on your location": "Centrar o mapa na túa posición",
|
|
52
48
|
"Change map background": "Cambiar o mapa do fondo",
|
|
@@ -299,7 +295,6 @@ const locale = {
|
|
|
299
295
|
"Restore this version": "Restabelecer esta versión",
|
|
300
296
|
"Save current edits": "Gardar as edicións actuais",
|
|
301
297
|
"Save map": "Gardar o mapa",
|
|
302
|
-
"Save this location as new feature": "Gardar esta posición coma novo elemento",
|
|
303
298
|
"Save": "Gardar",
|
|
304
299
|
"Saved center and zoom": "Gardar o centrado e nivel de zoom",
|
|
305
300
|
"Search location": "Buscar posición",
|
|
@@ -387,7 +382,6 @@ const locale = {
|
|
|
387
382
|
"Zoom to the next": "Achegar ata o seguinte",
|
|
388
383
|
"Zoom to the previous": "Achegar ata o anterior",
|
|
389
384
|
"Zoom to this feature": "Achegar a este elemento",
|
|
390
|
-
"Zoom to this place": "Achegar a este lugar",
|
|
391
385
|
"{area} acres": "{area} acres",
|
|
392
386
|
"{area} ha": "{area} ha",
|
|
393
387
|
"{area} m²": "{area} m²",
|
|
@@ -526,13 +520,25 @@ const locale = {
|
|
|
526
520
|
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Non é posíbel analizar os datos remotos da capa «{layer}» co url «{url}»",
|
|
527
521
|
"Import failed: invalid data": "Produciuse un fallo na importación: os datos non son válidos",
|
|
528
522
|
"Anonymous": "Anónimo",
|
|
529
|
-
"created at {date}": "
|
|
530
|
-
"modified at {date}": "
|
|
531
|
-
"Default zoom": "
|
|
532
|
-
"Default latitude": "
|
|
533
|
-
"Default longitude": "
|
|
534
|
-
"Edit map default view": "
|
|
535
|
-
"Use current center and zoom": "
|
|
523
|
+
"created at {date}": "creado o {data}",
|
|
524
|
+
"modified at {date}": "modificado o {data}",
|
|
525
|
+
"Default zoom": "Zoom predeterminado",
|
|
526
|
+
"Default latitude": "Latitude predeterminada",
|
|
527
|
+
"Default longitude": "Lonxitude predeterminada",
|
|
528
|
+
"Edit map default view": "Editar a vista predeterminada do mapa",
|
|
529
|
+
"Use current center and zoom": "Usar o centrado e o nivel de zoom actual",
|
|
530
|
+
"Layer permalink": "Ligazón permanente de capa",
|
|
531
|
+
"Back to home": "Back to home",
|
|
532
|
+
"Home logo": "Home logo",
|
|
533
|
+
"Add this geometry to my map": "Add this geometry to my map",
|
|
534
|
+
"Add this place to my map": "Add this place to my map",
|
|
535
|
+
"Cancel last edit": "Cancel last edit",
|
|
536
|
+
"Redo last edit": "Redo last edit",
|
|
537
|
+
"Links": "Links",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Tags",
|
|
541
|
+
"Geocode": "Geocode"
|
|
536
542
|
}
|
|
537
543
|
L.registerLocale("gl", locale)
|
|
538
544
|
L.setLocale("gl")
|
umap/static/umap/locale/gl.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Permitir o zoom coa roda do rato?",
|
|
28
28
|
"always": "sempre",
|
|
29
29
|
"Animated transitions": "Transicións animadas",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Confirmas que queres desbotar os teus cambios?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Confirmas que queres clonar este mapa e todas as súas capas de datos?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Confirmas que queres eliminar este elemento?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Confirmas que queres eliminar esta capa?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Confirmas que queres eliminar este mapa?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Confirmas que queres eliminar esta propiedade en todos os elementos?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Confirmas que queres restabelecer esta versión?",
|
|
@@ -46,7 +43,6 @@
|
|
|
46
43
|
"Browse data": "Navegar polos datos",
|
|
47
44
|
"by": "por",
|
|
48
45
|
"Cache proxied request": "Solicitude de proxy da memoria tobo",
|
|
49
|
-
"Cancel edits": "Desbotar as edicións",
|
|
50
46
|
"Caption": "Lenda",
|
|
51
47
|
"Center map on your location": "Centrar o mapa na túa posición",
|
|
52
48
|
"Change map background": "Cambiar o mapa do fondo",
|
|
@@ -299,7 +295,6 @@
|
|
|
299
295
|
"Restore this version": "Restabelecer esta versión",
|
|
300
296
|
"Save current edits": "Gardar as edicións actuais",
|
|
301
297
|
"Save map": "Gardar o mapa",
|
|
302
|
-
"Save this location as new feature": "Gardar esta posición coma novo elemento",
|
|
303
298
|
"Save": "Gardar",
|
|
304
299
|
"Saved center and zoom": "Gardar o centrado e nivel de zoom",
|
|
305
300
|
"Search location": "Buscar posición",
|
|
@@ -387,7 +382,6 @@
|
|
|
387
382
|
"Zoom to the next": "Achegar ata o seguinte",
|
|
388
383
|
"Zoom to the previous": "Achegar ata o anterior",
|
|
389
384
|
"Zoom to this feature": "Achegar a este elemento",
|
|
390
|
-
"Zoom to this place": "Achegar a este lugar",
|
|
391
385
|
"{area} acres": "{area} acres",
|
|
392
386
|
"{area} ha": "{area} ha",
|
|
393
387
|
"{area} m²": "{area} m²",
|
|
@@ -526,11 +520,23 @@
|
|
|
526
520
|
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Non é posíbel analizar os datos remotos da capa «{layer}» co url «{url}»",
|
|
527
521
|
"Import failed: invalid data": "Produciuse un fallo na importación: os datos non son válidos",
|
|
528
522
|
"Anonymous": "Anónimo",
|
|
529
|
-
"created at {date}": "
|
|
530
|
-
"modified at {date}": "
|
|
531
|
-
"Default zoom": "
|
|
532
|
-
"Default latitude": "
|
|
533
|
-
"Default longitude": "
|
|
534
|
-
"Edit map default view": "
|
|
535
|
-
"Use current center and zoom": "
|
|
523
|
+
"created at {date}": "creado o {data}",
|
|
524
|
+
"modified at {date}": "modificado o {data}",
|
|
525
|
+
"Default zoom": "Zoom predeterminado",
|
|
526
|
+
"Default latitude": "Latitude predeterminada",
|
|
527
|
+
"Default longitude": "Lonxitude predeterminada",
|
|
528
|
+
"Edit map default view": "Editar a vista predeterminada do mapa",
|
|
529
|
+
"Use current center and zoom": "Usar o centrado e o nivel de zoom actual",
|
|
530
|
+
"Layer permalink": "Ligazón permanente de capa",
|
|
531
|
+
"Back to home": "Back to home",
|
|
532
|
+
"Home logo": "Home logo",
|
|
533
|
+
"Add this geometry to my map": "Add this geometry to my map",
|
|
534
|
+
"Add this place to my map": "Add this place to my map",
|
|
535
|
+
"Cancel last edit": "Cancel last edit",
|
|
536
|
+
"Redo last edit": "Redo last edit",
|
|
537
|
+
"Links": "Links",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Tags",
|
|
541
|
+
"Geocode": "Geocode"
|
|
536
542
|
}
|
umap/static/umap/locale/he.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "לאפשר תקריב עם גלגלת העכבר?",
|
|
28
28
|
"always": "תמיד",
|
|
29
29
|
"Animated transitions": "Animated transitions",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "לבטל את השינויים שלך?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "לשכפל את המפה הזאת ואת כל שכבות הנתונים שלה?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "למחוק את התכונה הזו?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "למחוק את השכבה הזו?",
|
|
34
31
|
"Are you sure you want to delete this map?": "למחוק את המפה הזו?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "למחוק את המאפיין הזה מכל התכונות?",
|
|
36
33
|
"Are you sure you want to restore this version?": "לשחזר את הגרסה הזו?",
|
|
@@ -46,7 +43,6 @@ const locale = {
|
|
|
46
43
|
"Browse data": "עיון בנתונים",
|
|
47
44
|
"by": "מאת",
|
|
48
45
|
"Cache proxied request": "שמירת בקשות שעברו דרך המתווך במטמון",
|
|
49
|
-
"Cancel edits": "ביטול עריכות",
|
|
50
46
|
"Caption": "כותרת",
|
|
51
47
|
"Center map on your location": "מרכוז המפה על המיקום שלך",
|
|
52
48
|
"Change map background": "החלפת רקע המפה",
|
|
@@ -299,7 +295,6 @@ const locale = {
|
|
|
299
295
|
"Restore this version": "שחזור הגרסה הזו",
|
|
300
296
|
"Save current edits": "לשמור את העריכות הנוכחיות",
|
|
301
297
|
"Save map": "Save map",
|
|
302
|
-
"Save this location as new feature": "לשמור את המיקום הזה כתכונה חדשה",
|
|
303
298
|
"Save": "לשמור",
|
|
304
299
|
"Saved center and zoom": "Saved center and zoom",
|
|
305
300
|
"Search location": "חיפוש מיקום",
|
|
@@ -387,7 +382,6 @@ const locale = {
|
|
|
387
382
|
"Zoom to the next": "התמקדות על הבא",
|
|
388
383
|
"Zoom to the previous": "התמקדות על הקודם",
|
|
389
384
|
"Zoom to this feature": "התמקדות על תכונה זו",
|
|
390
|
-
"Zoom to this place": "התמקדות על המקום הזה",
|
|
391
385
|
"{area} acres": "{area} acres",
|
|
392
386
|
"{area} ha": "{area} ha",
|
|
393
387
|
"{area} m²": "{area} m²",
|
|
@@ -532,7 +526,19 @@ const locale = {
|
|
|
532
526
|
"Default latitude": "Default latitude",
|
|
533
527
|
"Default longitude": "Default longitude",
|
|
534
528
|
"Edit map default view": "Edit map default view",
|
|
535
|
-
"Use current center and zoom": "Use current center and zoom"
|
|
529
|
+
"Use current center and zoom": "Use current center and zoom",
|
|
530
|
+
"Layer permalink": "Layer permalink",
|
|
531
|
+
"Back to home": "Back to home",
|
|
532
|
+
"Home logo": "Home logo",
|
|
533
|
+
"Add this geometry to my map": "Add this geometry to my map",
|
|
534
|
+
"Add this place to my map": "Add this place to my map",
|
|
535
|
+
"Cancel last edit": "Cancel last edit",
|
|
536
|
+
"Redo last edit": "Redo last edit",
|
|
537
|
+
"Links": "Links",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Tags",
|
|
541
|
+
"Geocode": "Geocode"
|
|
536
542
|
}
|
|
537
543
|
L.registerLocale("he", locale)
|
|
538
544
|
L.setLocale("he")
|
umap/static/umap/locale/he.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "לאפשר תקריב עם גלגלת העכבר?",
|
|
28
28
|
"always": "תמיד",
|
|
29
29
|
"Animated transitions": "Animated transitions",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "לבטל את השינויים שלך?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "לשכפל את המפה הזאת ואת כל שכבות הנתונים שלה?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "למחוק את התכונה הזו?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "למחוק את השכבה הזו?",
|
|
34
31
|
"Are you sure you want to delete this map?": "למחוק את המפה הזו?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "למחוק את המאפיין הזה מכל התכונות?",
|
|
36
33
|
"Are you sure you want to restore this version?": "לשחזר את הגרסה הזו?",
|
|
@@ -46,7 +43,6 @@
|
|
|
46
43
|
"Browse data": "עיון בנתונים",
|
|
47
44
|
"by": "מאת",
|
|
48
45
|
"Cache proxied request": "שמירת בקשות שעברו דרך המתווך במטמון",
|
|
49
|
-
"Cancel edits": "ביטול עריכות",
|
|
50
46
|
"Caption": "כותרת",
|
|
51
47
|
"Center map on your location": "מרכוז המפה על המיקום שלך",
|
|
52
48
|
"Change map background": "החלפת רקע המפה",
|
|
@@ -299,7 +295,6 @@
|
|
|
299
295
|
"Restore this version": "שחזור הגרסה הזו",
|
|
300
296
|
"Save current edits": "לשמור את העריכות הנוכחיות",
|
|
301
297
|
"Save map": "Save map",
|
|
302
|
-
"Save this location as new feature": "לשמור את המיקום הזה כתכונה חדשה",
|
|
303
298
|
"Save": "לשמור",
|
|
304
299
|
"Saved center and zoom": "Saved center and zoom",
|
|
305
300
|
"Search location": "חיפוש מיקום",
|
|
@@ -387,7 +382,6 @@
|
|
|
387
382
|
"Zoom to the next": "התמקדות על הבא",
|
|
388
383
|
"Zoom to the previous": "התמקדות על הקודם",
|
|
389
384
|
"Zoom to this feature": "התמקדות על תכונה זו",
|
|
390
|
-
"Zoom to this place": "התמקדות על המקום הזה",
|
|
391
385
|
"{area} acres": "{area} acres",
|
|
392
386
|
"{area} ha": "{area} ha",
|
|
393
387
|
"{area} m²": "{area} m²",
|
|
@@ -532,5 +526,17 @@
|
|
|
532
526
|
"Default latitude": "Default latitude",
|
|
533
527
|
"Default longitude": "Default longitude",
|
|
534
528
|
"Edit map default view": "Edit map default view",
|
|
535
|
-
"Use current center and zoom": "Use current center and zoom"
|
|
529
|
+
"Use current center and zoom": "Use current center and zoom",
|
|
530
|
+
"Layer permalink": "Layer permalink",
|
|
531
|
+
"Back to home": "Back to home",
|
|
532
|
+
"Home logo": "Home logo",
|
|
533
|
+
"Add this geometry to my map": "Add this geometry to my map",
|
|
534
|
+
"Add this place to my map": "Add this place to my map",
|
|
535
|
+
"Cancel last edit": "Cancel last edit",
|
|
536
|
+
"Redo last edit": "Redo last edit",
|
|
537
|
+
"Links": "Links",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Tags",
|
|
541
|
+
"Geocode": "Geocode"
|
|
536
542
|
}
|
umap/static/umap/locale/hr.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Dopustiti uvećanje kotačićem miša?",
|
|
28
28
|
"always": "always",
|
|
29
29
|
"Animated transitions": "Animated transitions",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Are you sure you want to cancel your changes?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Jeste li sigurni da želite obrisati ovaj element?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
|
@@ -46,7 +43,6 @@ const locale = {
|
|
|
46
43
|
"Browse data": "Pregledaj unose",
|
|
47
44
|
"by": "by",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "Cancel edits",
|
|
50
46
|
"Caption": "Napomena",
|
|
51
47
|
"Center map on your location": "Center map on your location",
|
|
52
48
|
"Change map background": "Promjeni pozadinu karte",
|
|
@@ -299,7 +295,6 @@ const locale = {
|
|
|
299
295
|
"Restore this version": "Restore this version",
|
|
300
296
|
"Save current edits": "Save current edits",
|
|
301
297
|
"Save map": "Save map",
|
|
302
|
-
"Save this location as new feature": "Save this location as new feature",
|
|
303
298
|
"Save": "Spremi",
|
|
304
299
|
"Saved center and zoom": "Saved center and zoom",
|
|
305
300
|
"Search location": "Search location",
|
|
@@ -387,7 +382,6 @@ const locale = {
|
|
|
387
382
|
"Zoom to the next": "Zoom to the next",
|
|
388
383
|
"Zoom to the previous": "Zoom to the previous",
|
|
389
384
|
"Zoom to this feature": "Uvećaj odabrano",
|
|
390
|
-
"Zoom to this place": "Zoom to this place",
|
|
391
385
|
"{area} acres": "{area} acres",
|
|
392
386
|
"{area} ha": "{area} ha",
|
|
393
387
|
"{area} m²": "{area} m²",
|
|
@@ -532,7 +526,19 @@ const locale = {
|
|
|
532
526
|
"Default latitude": "Default latitude",
|
|
533
527
|
"Default longitude": "Default longitude",
|
|
534
528
|
"Edit map default view": "Edit map default view",
|
|
535
|
-
"Use current center and zoom": "Use current center and zoom"
|
|
529
|
+
"Use current center and zoom": "Use current center and zoom",
|
|
530
|
+
"Layer permalink": "Layer permalink",
|
|
531
|
+
"Back to home": "Back to home",
|
|
532
|
+
"Home logo": "Home logo",
|
|
533
|
+
"Add this geometry to my map": "Add this geometry to my map",
|
|
534
|
+
"Add this place to my map": "Add this place to my map",
|
|
535
|
+
"Cancel last edit": "Cancel last edit",
|
|
536
|
+
"Redo last edit": "Redo last edit",
|
|
537
|
+
"Links": "Links",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Tags",
|
|
541
|
+
"Geocode": "Geocode"
|
|
536
542
|
}
|
|
537
543
|
L.registerLocale("hr", locale)
|
|
538
544
|
L.setLocale("hr")
|
umap/static/umap/locale/hr.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Dopustiti uvećanje kotačićem miša?",
|
|
28
28
|
"always": "always",
|
|
29
29
|
"Animated transitions": "Animated transitions",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Are you sure you want to cancel your changes?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Jeste li sigurni da želite obrisati ovaj element?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
|
@@ -46,7 +43,6 @@
|
|
|
46
43
|
"Browse data": "Pregledaj unose",
|
|
47
44
|
"by": "by",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "Cancel edits",
|
|
50
46
|
"Caption": "Napomena",
|
|
51
47
|
"Center map on your location": "Center map on your location",
|
|
52
48
|
"Change map background": "Promjeni pozadinu karte",
|
|
@@ -299,7 +295,6 @@
|
|
|
299
295
|
"Restore this version": "Restore this version",
|
|
300
296
|
"Save current edits": "Save current edits",
|
|
301
297
|
"Save map": "Save map",
|
|
302
|
-
"Save this location as new feature": "Save this location as new feature",
|
|
303
298
|
"Save": "Spremi",
|
|
304
299
|
"Saved center and zoom": "Saved center and zoom",
|
|
305
300
|
"Search location": "Search location",
|
|
@@ -387,7 +382,6 @@
|
|
|
387
382
|
"Zoom to the next": "Zoom to the next",
|
|
388
383
|
"Zoom to the previous": "Zoom to the previous",
|
|
389
384
|
"Zoom to this feature": "Uvećaj odabrano",
|
|
390
|
-
"Zoom to this place": "Zoom to this place",
|
|
391
385
|
"{area} acres": "{area} acres",
|
|
392
386
|
"{area} ha": "{area} ha",
|
|
393
387
|
"{area} m²": "{area} m²",
|
|
@@ -532,5 +526,17 @@
|
|
|
532
526
|
"Default latitude": "Default latitude",
|
|
533
527
|
"Default longitude": "Default longitude",
|
|
534
528
|
"Edit map default view": "Edit map default view",
|
|
535
|
-
"Use current center and zoom": "Use current center and zoom"
|
|
529
|
+
"Use current center and zoom": "Use current center and zoom",
|
|
530
|
+
"Layer permalink": "Layer permalink",
|
|
531
|
+
"Back to home": "Back to home",
|
|
532
|
+
"Home logo": "Home logo",
|
|
533
|
+
"Add this geometry to my map": "Add this geometry to my map",
|
|
534
|
+
"Add this place to my map": "Add this place to my map",
|
|
535
|
+
"Cancel last edit": "Cancel last edit",
|
|
536
|
+
"Redo last edit": "Redo last edit",
|
|
537
|
+
"Links": "Links",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Tags",
|
|
541
|
+
"Geocode": "Geocode"
|
|
536
542
|
}
|