umap-project 2.9.3__py3-none-any.whl → 3.0.1__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 +128 -52
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +128 -52
- 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/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 +19 -27
- 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 +11 -6
- umap/static/umap/locale/am_ET.json +11 -6
- umap/static/umap/locale/ar.js +11 -6
- umap/static/umap/locale/ar.json +11 -6
- umap/static/umap/locale/ast.js +11 -6
- umap/static/umap/locale/ast.json +11 -6
- umap/static/umap/locale/bg.js +11 -6
- umap/static/umap/locale/bg.json +11 -6
- umap/static/umap/locale/br.js +12 -7
- umap/static/umap/locale/br.json +12 -7
- umap/static/umap/locale/ca.js +11 -6
- umap/static/umap/locale/ca.json +11 -6
- umap/static/umap/locale/cs_CZ.js +11 -6
- umap/static/umap/locale/cs_CZ.json +11 -6
- umap/static/umap/locale/da.js +11 -6
- umap/static/umap/locale/da.json +11 -6
- umap/static/umap/locale/de.js +47 -42
- umap/static/umap/locale/de.json +47 -42
- umap/static/umap/locale/el.js +11 -6
- umap/static/umap/locale/el.json +11 -6
- umap/static/umap/locale/en.js +11 -6
- umap/static/umap/locale/en.json +11 -6
- umap/static/umap/locale/en_US.json +11 -6
- umap/static/umap/locale/es.js +11 -6
- umap/static/umap/locale/es.json +11 -6
- umap/static/umap/locale/et.js +11 -6
- umap/static/umap/locale/et.json +11 -6
- umap/static/umap/locale/eu.js +11 -6
- umap/static/umap/locale/eu.json +11 -6
- umap/static/umap/locale/fa_IR.js +11 -6
- umap/static/umap/locale/fa_IR.json +11 -6
- umap/static/umap/locale/fi.js +11 -6
- umap/static/umap/locale/fi.json +11 -6
- umap/static/umap/locale/fr.js +11 -6
- umap/static/umap/locale/fr.json +11 -6
- umap/static/umap/locale/gl.js +12 -7
- umap/static/umap/locale/gl.json +12 -7
- umap/static/umap/locale/he.js +11 -6
- umap/static/umap/locale/he.json +11 -6
- umap/static/umap/locale/hr.js +11 -6
- umap/static/umap/locale/hr.json +11 -6
- umap/static/umap/locale/hu.js +25 -20
- umap/static/umap/locale/hu.json +25 -20
- umap/static/umap/locale/id.js +11 -6
- umap/static/umap/locale/id.json +11 -6
- umap/static/umap/locale/is.js +151 -146
- umap/static/umap/locale/is.json +151 -146
- umap/static/umap/locale/it.js +11 -6
- umap/static/umap/locale/it.json +11 -6
- umap/static/umap/locale/ja.js +11 -6
- umap/static/umap/locale/ja.json +11 -6
- umap/static/umap/locale/ko.js +11 -6
- umap/static/umap/locale/ko.json +11 -6
- umap/static/umap/locale/lt.js +11 -6
- umap/static/umap/locale/lt.json +11 -6
- umap/static/umap/locale/ms.js +11 -6
- umap/static/umap/locale/ms.json +11 -6
- umap/static/umap/locale/nl.js +12 -7
- umap/static/umap/locale/nl.json +12 -7
- umap/static/umap/locale/no.js +11 -6
- umap/static/umap/locale/no.json +11 -6
- umap/static/umap/locale/pl.js +11 -6
- umap/static/umap/locale/pl.json +11 -6
- umap/static/umap/locale/pl_PL.json +11 -6
- umap/static/umap/locale/pt.js +11 -6
- umap/static/umap/locale/pt.json +11 -6
- umap/static/umap/locale/pt_BR.js +11 -6
- umap/static/umap/locale/pt_BR.json +11 -6
- umap/static/umap/locale/pt_PT.js +11 -6
- umap/static/umap/locale/pt_PT.json +11 -6
- umap/static/umap/locale/ro.js +11 -6
- umap/static/umap/locale/ro.json +11 -6
- umap/static/umap/locale/ru.js +11 -6
- umap/static/umap/locale/ru.json +11 -6
- umap/static/umap/locale/sk_SK.js +11 -6
- umap/static/umap/locale/sk_SK.json +11 -6
- umap/static/umap/locale/sl.js +11 -6
- umap/static/umap/locale/sl.json +11 -6
- umap/static/umap/locale/sr.js +11 -6
- umap/static/umap/locale/sr.json +11 -6
- umap/static/umap/locale/sv.js +11 -6
- umap/static/umap/locale/sv.json +11 -6
- umap/static/umap/locale/th_TH.js +11 -6
- umap/static/umap/locale/th_TH.json +11 -6
- umap/static/umap/locale/tr.js +11 -6
- umap/static/umap/locale/tr.json +11 -6
- umap/static/umap/locale/uk_UA.js +11 -6
- umap/static/umap/locale/uk_UA.json +11 -6
- umap/static/umap/locale/vi.js +11 -6
- umap/static/umap/locale/vi.json +11 -6
- umap/static/umap/locale/vi_VN.json +11 -6
- umap/static/umap/locale/zh.js +11 -6
- umap/static/umap/locale/zh.json +11 -6
- umap/static/umap/locale/zh_CN.json +11 -6
- umap/static/umap/locale/zh_TW.Big5.json +11 -6
- umap/static/umap/locale/zh_TW.js +19 -14
- umap/static/umap/locale/zh_TW.json +19 -14
- 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.3.dist-info → umap_project-3.0.1.dist-info}/METADATA +13 -12
- {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/RECORD +206 -208
- 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.3.dist-info → umap_project-3.0.1.dist-info}/WHEEL +0 -0
- {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/entry_points.txt +0 -0
- {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/it.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Abilitare la rotellina del mouse per lo zoom?",
|
|
28
28
|
"always": "sempre",
|
|
29
29
|
"Animated transitions": "Transizioni animate",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Vuoi realmente annullare le modifiche fatte?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Confermi di duplicare questa mappa e tutti i suoi livelli?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Si è sicuri di voler cancellare questo oggetto?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Si è certi di volere eliminare questo livello?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Si è certi di voler eliminare questa mappa?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Si è sicuri di voler cancellare questa proprietà per tutti gli oggetti?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Si vuole veramente ripristinare questa versione?",
|
|
@@ -46,7 +43,6 @@ const locale = {
|
|
|
46
43
|
"Browse data": "Visualizza i dati",
|
|
47
44
|
"by": "di",
|
|
48
45
|
"Cache proxied request": "Usa la cache per le richieste proxy",
|
|
49
|
-
"Cancel edits": "Annulla le modifiche",
|
|
50
46
|
"Caption": "Didascalia",
|
|
51
47
|
"Center map on your location": "Centra la mappa sulla tua posizione",
|
|
52
48
|
"Change map background": "Cambia la mappa di sfondo",
|
|
@@ -532,8 +528,17 @@ const locale = {
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
|
538
543
|
L.registerLocale("it", locale)
|
|
539
544
|
L.setLocale("it")
|
umap/static/umap/locale/it.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Abilitare la rotellina del mouse per lo zoom?",
|
|
28
28
|
"always": "sempre",
|
|
29
29
|
"Animated transitions": "Transizioni animate",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Vuoi realmente annullare le modifiche fatte?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Confermi di duplicare questa mappa e tutti i suoi livelli?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Si è sicuri di voler cancellare questo oggetto?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Si è certi di volere eliminare questo livello?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Si è certi di voler eliminare questa mappa?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Si è sicuri di voler cancellare questa proprietà per tutti gli oggetti?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Si vuole veramente ripristinare questa versione?",
|
|
@@ -46,7 +43,6 @@
|
|
|
46
43
|
"Browse data": "Visualizza i dati",
|
|
47
44
|
"by": "di",
|
|
48
45
|
"Cache proxied request": "Usa la cache per le richieste proxy",
|
|
49
|
-
"Cancel edits": "Annulla le modifiche",
|
|
50
46
|
"Caption": "Didascalia",
|
|
51
47
|
"Center map on your location": "Centra la mappa sulla tua posizione",
|
|
52
48
|
"Change map background": "Cambia la mappa di sfondo",
|
|
@@ -532,6 +528,15 @@
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
umap/static/umap/locale/ja.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": "by",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "編集を破棄",
|
|
50
46
|
"Caption": "表題",
|
|
51
47
|
"Center map on your location": "閲覧者の位置をマップの中心に設定",
|
|
52
48
|
"Change map background": "背景地図を変更",
|
|
@@ -532,8 +528,17 @@ const locale = {
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
|
538
543
|
L.registerLocale("ja", locale)
|
|
539
544
|
L.setLocale("ja")
|
umap/static/umap/locale/ja.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": "by",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "編集を破棄",
|
|
50
46
|
"Caption": "表題",
|
|
51
47
|
"Center map on your location": "閲覧者の位置をマップの中心に設定",
|
|
52
48
|
"Change map background": "背景地図を変更",
|
|
@@ -532,6 +528,15 @@
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
umap/static/umap/locale/ko.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": "by",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "편집 내역 취소",
|
|
50
46
|
"Caption": "캡션",
|
|
51
47
|
"Center map on your location": "지도에서 나의 위치를 가운데로 놓기",
|
|
52
48
|
"Change map background": "배경 지도 변경",
|
|
@@ -532,8 +528,17 @@ const locale = {
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
|
538
543
|
L.registerLocale("ko", locale)
|
|
539
544
|
L.setLocale("ko")
|
umap/static/umap/locale/ko.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": "by",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "편집 내역 취소",
|
|
50
46
|
"Caption": "캡션",
|
|
51
47
|
"Center map on your location": "지도에서 나의 위치를 가운데로 놓기",
|
|
52
48
|
"Change map background": "배경 지도 변경",
|
|
@@ -532,6 +528,15 @@
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
umap/static/umap/locale/lt.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Leisti pelės ratuko veiksmus?",
|
|
28
28
|
"always": "always",
|
|
29
29
|
"Animated transitions": "Animated transitions",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Ar tikrai nori atšaukti savo pakeitimus?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Ar tikrai norite nukopijuoti šį žemėlapį ir visus jo duomenų sluoksnius?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Ar tikrai norite ištrinti šį objektą?",
|
|
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?": "Ar Jūs tikrai norite ištrinti šį žemėlapį?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Ar tikrai norite pašalinti šią savybę visiem objektams?",
|
|
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": "Peržiūrėti duomenis",
|
|
47
44
|
"by": "pagal",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "Atšaukti pakeitimus",
|
|
50
46
|
"Caption": "Antraštė",
|
|
51
47
|
"Center map on your location": "Centruoti pagal Jūsų vietovę",
|
|
52
48
|
"Change map background": "Keisti žemėlapio foną",
|
|
@@ -532,8 +528,17 @@ const locale = {
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
|
538
543
|
L.registerLocale("lt", locale)
|
|
539
544
|
L.setLocale("lt")
|
umap/static/umap/locale/lt.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Leisti pelės ratuko veiksmus?",
|
|
28
28
|
"always": "always",
|
|
29
29
|
"Animated transitions": "Animated transitions",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Ar tikrai nori atšaukti savo pakeitimus?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Ar tikrai norite nukopijuoti šį žemėlapį ir visus jo duomenų sluoksnius?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Ar tikrai norite ištrinti šį objektą?",
|
|
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?": "Ar Jūs tikrai norite ištrinti šį žemėlapį?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Ar tikrai norite pašalinti šią savybę visiem objektams?",
|
|
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": "Peržiūrėti duomenis",
|
|
47
44
|
"by": "pagal",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "Atšaukti pakeitimus",
|
|
50
46
|
"Caption": "Antraštė",
|
|
51
47
|
"Center map on your location": "Centruoti pagal Jūsų vietovę",
|
|
52
48
|
"Change map background": "Keisti žemėlapio foną",
|
|
@@ -532,6 +528,15 @@
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
umap/static/umap/locale/ms.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Benarkan zum dengan roda tatal?",
|
|
28
28
|
"always": "sentiasa",
|
|
29
29
|
"Animated transitions": "Transisi beranimasi",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Adakah anda ingin membatalkan perubahan anda?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Adakah anda ingin klon peta ini serta semua lapisan datanya?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Adakah anda ingin memadamkan sifat-sifat dipilih?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Adakah anda ingin memadamkan lapisan ini?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Adakah anda ingin memadamkan peta ini?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Adakah anda ingin memadamkan ciri-ciri ini di kesemua sifat-sifat?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Adakah anda ingin memulihkan versi ini?",
|
|
@@ -46,7 +43,6 @@ const locale = {
|
|
|
46
43
|
"Browse data": "Layari data",
|
|
47
44
|
"by": "oleh",
|
|
48
45
|
"Cache proxied request": "Cache permintaan diproksi",
|
|
49
|
-
"Cancel edits": "Batalkan suntingan",
|
|
50
46
|
"Caption": "Keterangan",
|
|
51
47
|
"Center map on your location": "Ketengahkan peta ke kedudukan anda",
|
|
52
48
|
"Change map background": "Tukar latar belakang peta",
|
|
@@ -532,8 +528,17 @@ const locale = {
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
|
538
543
|
L.registerLocale("ms", locale)
|
|
539
544
|
L.setLocale("ms")
|
umap/static/umap/locale/ms.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Benarkan zum dengan roda tatal?",
|
|
28
28
|
"always": "sentiasa",
|
|
29
29
|
"Animated transitions": "Transisi beranimasi",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Adakah anda ingin membatalkan perubahan anda?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Adakah anda ingin klon peta ini serta semua lapisan datanya?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Adakah anda ingin memadamkan sifat-sifat dipilih?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Adakah anda ingin memadamkan lapisan ini?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Adakah anda ingin memadamkan peta ini?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Adakah anda ingin memadamkan ciri-ciri ini di kesemua sifat-sifat?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Adakah anda ingin memulihkan versi ini?",
|
|
@@ -46,7 +43,6 @@
|
|
|
46
43
|
"Browse data": "Layari data",
|
|
47
44
|
"by": "oleh",
|
|
48
45
|
"Cache proxied request": "Cache permintaan diproksi",
|
|
49
|
-
"Cancel edits": "Batalkan suntingan",
|
|
50
46
|
"Caption": "Keterangan",
|
|
51
47
|
"Center map on your location": "Ketengahkan peta ke kedudukan anda",
|
|
52
48
|
"Change map background": "Tukar latar belakang peta",
|
|
@@ -532,6 +528,15 @@
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
umap/static/umap/locale/nl.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Zoomen met scrollwiel toestaan?",
|
|
28
28
|
"always": "altijd",
|
|
29
29
|
"Animated transitions": "Geavanceerde overgangen",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Weet je zeker dat je je wijzigingen wil annuleren?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Weet je zeker dat je deze kaart en alle gegevenslagen wil klonen?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Weet je zeker dat je het object wil verwijderen?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Weet je zeker dat je deze laag wil verwijderen?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Weet je zeker dat je deze kaart wilt verwijderen?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Ben je zeker dat je deze eigenschap bij alle objecten wil verwijderen?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Weet je zeker dat je deze versie wilt terugzetten?",
|
|
@@ -46,7 +43,6 @@ const locale = {
|
|
|
46
43
|
"Browse data": "Gegevens doorbladeren",
|
|
47
44
|
"by": "door",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "Bewerkingen annuleren",
|
|
50
46
|
"Caption": "Hoofding",
|
|
51
47
|
"Center map on your location": "Centreer kaart op je locatie",
|
|
52
48
|
"Change map background": "Verander kaartachtergrond",
|
|
@@ -531,9 +527,18 @@ const locale = {
|
|
|
531
527
|
"Default longitude": "Standaard lengtegraad",
|
|
532
528
|
"Edit map default view": "Standaardweergave van de kaart bewerken",
|
|
533
529
|
"Use current center and zoom": "Gebruik huidig centrum en zoomniveau",
|
|
534
|
-
"Layer permalink": "
|
|
535
|
-
"
|
|
536
|
-
"
|
|
530
|
+
"Layer permalink": "Permalink-laag",
|
|
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"
|
|
537
542
|
}
|
|
538
543
|
L.registerLocale("nl", locale)
|
|
539
544
|
L.setLocale("nl")
|
umap/static/umap/locale/nl.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Zoomen met scrollwiel toestaan?",
|
|
28
28
|
"always": "altijd",
|
|
29
29
|
"Animated transitions": "Geavanceerde overgangen",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Weet je zeker dat je je wijzigingen wil annuleren?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Weet je zeker dat je deze kaart en alle gegevenslagen wil klonen?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Weet je zeker dat je het object wil verwijderen?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Weet je zeker dat je deze laag wil verwijderen?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Weet je zeker dat je deze kaart wilt verwijderen?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Ben je zeker dat je deze eigenschap bij alle objecten wil verwijderen?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Weet je zeker dat je deze versie wilt terugzetten?",
|
|
@@ -46,7 +43,6 @@
|
|
|
46
43
|
"Browse data": "Gegevens doorbladeren",
|
|
47
44
|
"by": "door",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "Bewerkingen annuleren",
|
|
50
46
|
"Caption": "Hoofding",
|
|
51
47
|
"Center map on your location": "Centreer kaart op je locatie",
|
|
52
48
|
"Change map background": "Verander kaartachtergrond",
|
|
@@ -531,7 +527,16 @@
|
|
|
531
527
|
"Default longitude": "Standaard lengtegraad",
|
|
532
528
|
"Edit map default view": "Standaardweergave van de kaart bewerken",
|
|
533
529
|
"Use current center and zoom": "Gebruik huidig centrum en zoomniveau",
|
|
534
|
-
"Layer permalink": "
|
|
535
|
-
"
|
|
536
|
-
"
|
|
530
|
+
"Layer permalink": "Permalink-laag",
|
|
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"
|
|
537
542
|
}
|
umap/static/umap/locale/no.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Tillat rulling med zoom-hjulet?",
|
|
28
28
|
"always": "alltid",
|
|
29
29
|
"Animated transitions": "Animated transitions",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Er du sikker på at du vil du forkaste endringene dine?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på at du vil klone dette kartet og alle tilhørende datalag?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Er du sikker på at du vil slette dette objektet?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Er du sikker på at du vil slette dette laget?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kartet?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Er du sikker på at du vil slette denne egenskapen fra alle objektene?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Er du sikker på at du vil gjenopprette denne versjonen?",
|
|
@@ -46,7 +43,6 @@ const locale = {
|
|
|
46
43
|
"Browse data": "Se gjennom data",
|
|
47
44
|
"by": "by",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "Avbryt endringer",
|
|
50
46
|
"Caption": "Caption",
|
|
51
47
|
"Center map on your location": "Sentrer kartet på din posisjon",
|
|
52
48
|
"Change map background": "Endre bakgrunnskart",
|
|
@@ -532,8 +528,17 @@ const locale = {
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
|
538
543
|
L.registerLocale("no", locale)
|
|
539
544
|
L.setLocale("no")
|
umap/static/umap/locale/no.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Tillat rulling med zoom-hjulet?",
|
|
28
28
|
"always": "alltid",
|
|
29
29
|
"Animated transitions": "Animated transitions",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Er du sikker på at du vil du forkaste endringene dine?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på at du vil klone dette kartet og alle tilhørende datalag?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Er du sikker på at du vil slette dette objektet?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Er du sikker på at du vil slette dette laget?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kartet?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Er du sikker på at du vil slette denne egenskapen fra alle objektene?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Er du sikker på at du vil gjenopprette denne versjonen?",
|
|
@@ -46,7 +43,6 @@
|
|
|
46
43
|
"Browse data": "Se gjennom data",
|
|
47
44
|
"by": "by",
|
|
48
45
|
"Cache proxied request": "Cache proxied request",
|
|
49
|
-
"Cancel edits": "Avbryt endringer",
|
|
50
46
|
"Caption": "Caption",
|
|
51
47
|
"Center map on your location": "Sentrer kartet på din posisjon",
|
|
52
48
|
"Change map background": "Endre bakgrunnskart",
|
|
@@ -532,6 +528,15 @@
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
umap/static/umap/locale/pl.js
CHANGED
|
@@ -27,10 +27,7 @@ const locale = {
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Pozwalać na przybliżanie kółkiem?",
|
|
28
28
|
"always": "zawsze",
|
|
29
29
|
"Animated transitions": "Animowane przejścia",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Na pewno chcesz porzucić swoje zmiany?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Na pewno chcesz sklonować tę mapę razem z jej warstwami?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Na pewno chcesz usunąć ten obiekt?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Na pewno chcesz usunąć tę warstwę?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Na pewno chcesz usunąć tą mapę?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Na pewno chcesz usunąć tę właściwość we wszystkich obiektach?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Na pewno chcesz przywrócić tę wersję?",
|
|
@@ -46,7 +43,6 @@ const locale = {
|
|
|
46
43
|
"Browse data": "Przeglądaj dane",
|
|
47
44
|
"by": " ",
|
|
48
45
|
"Cache proxied request": "Zapytanie pośredniczące pamięci podręcznej",
|
|
49
|
-
"Cancel edits": "Anuluj edycje",
|
|
50
46
|
"Caption": "Podpis",
|
|
51
47
|
"Center map on your location": "Wyśrodkuj mapę na twojej lokalizacji",
|
|
52
48
|
"Change map background": "Zmień podkład mapy",
|
|
@@ -532,8 +528,17 @@ const locale = {
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|
|
538
543
|
L.registerLocale("pl", locale)
|
|
539
544
|
L.setLocale("pl")
|
umap/static/umap/locale/pl.json
CHANGED
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"Allow scroll wheel zoom?": "Pozwalać na przybliżanie kółkiem?",
|
|
28
28
|
"always": "zawsze",
|
|
29
29
|
"Animated transitions": "Animowane przejścia",
|
|
30
|
-
"Are you sure you want to cancel your changes?": "Na pewno chcesz porzucić swoje zmiany?",
|
|
31
30
|
"Are you sure you want to clone this map and all its datalayers?": "Na pewno chcesz sklonować tę mapę razem z jej warstwami?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Na pewno chcesz usunąć ten obiekt?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Na pewno chcesz usunąć tę warstwę?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Na pewno chcesz usunąć tą mapę?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Na pewno chcesz usunąć tę właściwość we wszystkich obiektach?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Na pewno chcesz przywrócić tę wersję?",
|
|
@@ -46,7 +43,6 @@
|
|
|
46
43
|
"Browse data": "Przeglądaj dane",
|
|
47
44
|
"by": " ",
|
|
48
45
|
"Cache proxied request": "Zapytanie pośredniczące pamięci podręcznej",
|
|
49
|
-
"Cancel edits": "Anuluj edycje",
|
|
50
46
|
"Caption": "Podpis",
|
|
51
47
|
"Center map on your location": "Wyśrodkuj mapę na twojej lokalizacji",
|
|
52
48
|
"Change map background": "Zmień podkład mapy",
|
|
@@ -532,6 +528,15 @@
|
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
529
|
"Use current center and zoom": "Use current center and zoom",
|
|
534
530
|
"Layer permalink": "Layer permalink",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
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"
|
|
537
542
|
}
|