umap-project 1.10.0__py3-none-any.whl → 1.11.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/admin.py +7 -3
- umap/autocomplete.py +3 -5
- umap/bin/__init__.py +2 -5
- umap/decorators.py +4 -5
- umap/forms.py +5 -5
- umap/locale/en/LC_MESSAGES/django.po +23 -23
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +28 -27
- umap/management/commands/generate_js_locale.py +9 -11
- umap/management/commands/import_pictograms.py +49 -28
- umap/managers.py +5 -3
- umap/middleware.py +2 -3
- umap/migrations/0001_initial.py +204 -56
- umap/migrations/0002_tilelayer_tms.py +3 -4
- umap/migrations/0003_add_tilelayer.py +13 -9
- umap/migrations/0004_add_licence.py +3 -6
- umap/migrations/0005_remove_map_tilelayer.py +3 -4
- umap/migrations/0006_auto_20190407_0719.py +6 -5
- umap/migrations/0007_auto_20190416_1757.py +13 -5
- umap/migrations/0008_alter_map_settings.py +0 -1
- umap/migrations/0009_star.py +27 -8
- umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +20 -8
- umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +21 -8
- umap/migrations/0014_map_created_at.py +1 -1
- umap/migrations/0015_alter_pictogram_pictogram.py +17 -0
- umap/migrations/0016_pictogram_category.py +17 -0
- umap/models.py +9 -7
- umap/settings/base.py +1 -4
- umap/static/umap/base.css +59 -20
- umap/static/umap/content.css +2 -13
- umap/static/umap/favicons/apple-touch-icon.png +0 -0
- umap/static/umap/favicons/favicon.ico +0 -0
- umap/static/umap/favicons/icon-192.png +0 -0
- umap/static/umap/favicons/icon-512.png +0 -0
- umap/static/umap/favicons/icon.svg +5 -0
- umap/static/umap/img/16-white.svg +20 -9
- umap/static/umap/img/24-white.svg +2 -2
- umap/static/umap/img/source/16-white.svg +25 -13
- umap/static/umap/img/source/24-white.svg +5 -5
- umap/static/umap/js/umap.controls.js +15 -23
- umap/static/umap/js/umap.core.js +33 -24
- umap/static/umap/js/umap.features.js +24 -2
- umap/static/umap/js/umap.forms.js +182 -84
- umap/static/umap/js/umap.icon.js +19 -14
- umap/static/umap/js/umap.js +14 -32
- umap/static/umap/js/umap.layer.js +13 -2
- umap/static/umap/js/umap.popup.js +21 -0
- umap/static/umap/locale/am_ET.js +9 -4
- umap/static/umap/locale/am_ET.json +9 -4
- umap/static/umap/locale/ar.js +9 -4
- umap/static/umap/locale/ar.json +9 -4
- umap/static/umap/locale/ast.js +9 -4
- umap/static/umap/locale/ast.json +9 -4
- umap/static/umap/locale/bg.js +9 -4
- umap/static/umap/locale/bg.json +9 -4
- umap/static/umap/locale/br.js +20 -15
- umap/static/umap/locale/br.json +20 -15
- umap/static/umap/locale/ca.js +9 -4
- umap/static/umap/locale/ca.json +9 -4
- umap/static/umap/locale/cs_CZ.js +9 -4
- umap/static/umap/locale/cs_CZ.json +9 -4
- umap/static/umap/locale/da.js +9 -4
- umap/static/umap/locale/da.json +9 -4
- umap/static/umap/locale/de.js +9 -4
- umap/static/umap/locale/de.json +9 -4
- umap/static/umap/locale/el.js +9 -4
- umap/static/umap/locale/el.json +9 -4
- umap/static/umap/locale/en.js +9 -4
- umap/static/umap/locale/en.json +9 -4
- umap/static/umap/locale/en_US.json +9 -4
- umap/static/umap/locale/es.js +15 -10
- umap/static/umap/locale/es.json +15 -10
- umap/static/umap/locale/et.js +9 -4
- umap/static/umap/locale/et.json +9 -4
- umap/static/umap/locale/fa_IR.js +9 -4
- umap/static/umap/locale/fa_IR.json +9 -4
- umap/static/umap/locale/fi.js +9 -4
- umap/static/umap/locale/fi.json +9 -4
- umap/static/umap/locale/fr.js +10 -5
- umap/static/umap/locale/fr.json +10 -5
- umap/static/umap/locale/gl.js +9 -4
- umap/static/umap/locale/gl.json +9 -4
- umap/static/umap/locale/he.js +9 -4
- umap/static/umap/locale/he.json +9 -4
- umap/static/umap/locale/hr.js +9 -4
- umap/static/umap/locale/hr.json +9 -4
- umap/static/umap/locale/hu.js +64 -59
- umap/static/umap/locale/hu.json +64 -59
- umap/static/umap/locale/id.js +9 -4
- umap/static/umap/locale/id.json +9 -4
- umap/static/umap/locale/is.js +9 -4
- umap/static/umap/locale/is.json +9 -4
- umap/static/umap/locale/it.js +9 -4
- umap/static/umap/locale/it.json +9 -4
- umap/static/umap/locale/ja.js +9 -4
- umap/static/umap/locale/ja.json +9 -4
- umap/static/umap/locale/ko.js +9 -4
- umap/static/umap/locale/ko.json +9 -4
- umap/static/umap/locale/lt.js +9 -4
- umap/static/umap/locale/lt.json +9 -4
- umap/static/umap/locale/ms.js +15 -10
- umap/static/umap/locale/ms.json +15 -10
- umap/static/umap/locale/nl.js +9 -4
- umap/static/umap/locale/nl.json +9 -4
- umap/static/umap/locale/no.js +9 -4
- umap/static/umap/locale/no.json +9 -4
- umap/static/umap/locale/pl.js +9 -4
- umap/static/umap/locale/pl.json +9 -4
- umap/static/umap/locale/pl_PL.json +9 -4
- umap/static/umap/locale/pt.js +9 -4
- umap/static/umap/locale/pt.json +9 -4
- umap/static/umap/locale/pt_BR.js +9 -4
- umap/static/umap/locale/pt_BR.json +9 -4
- umap/static/umap/locale/pt_PT.js +9 -4
- umap/static/umap/locale/pt_PT.json +9 -4
- umap/static/umap/locale/ro.js +9 -4
- umap/static/umap/locale/ro.json +9 -4
- umap/static/umap/locale/ru.js +9 -4
- umap/static/umap/locale/ru.json +9 -4
- umap/static/umap/locale/si.js +55 -20
- umap/static/umap/locale/si.json +55 -20
- umap/static/umap/locale/sk_SK.js +9 -4
- umap/static/umap/locale/sk_SK.json +9 -4
- umap/static/umap/locale/sl.js +9 -4
- umap/static/umap/locale/sl.json +9 -4
- umap/static/umap/locale/sr.js +9 -4
- umap/static/umap/locale/sr.json +9 -4
- umap/static/umap/locale/sv.js +9 -4
- umap/static/umap/locale/sv.json +9 -4
- umap/static/umap/locale/th_TH.js +9 -4
- umap/static/umap/locale/th_TH.json +9 -4
- umap/static/umap/locale/tr.js +9 -4
- umap/static/umap/locale/tr.json +9 -4
- umap/static/umap/locale/uk_UA.js +9 -4
- umap/static/umap/locale/uk_UA.json +9 -4
- umap/static/umap/locale/vi.js +9 -4
- umap/static/umap/locale/vi.json +9 -4
- umap/static/umap/locale/vi_VN.json +9 -4
- umap/static/umap/locale/zh.js +9 -4
- umap/static/umap/locale/zh.json +9 -4
- umap/static/umap/locale/zh_CN.json +9 -4
- umap/static/umap/locale/zh_TW.Big5.json +9 -4
- umap/static/umap/locale/zh_TW.js +9 -4
- umap/static/umap/locale/zh_TW.json +9 -4
- umap/static/umap/map.css +104 -21
- umap/static/umap/nav.css +0 -1
- umap/static/umap/test/Controls.js +0 -1
- umap/static/umap/test/Feature.js +29 -0
- umap/static/umap/test/Map.Export.js +2 -127
- umap/static/umap/test/Util.js +10 -0
- umap/static/umap/test/_pre.js +2 -3
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +13 -2
- umap/static/umap/vendors/leaflet/leaflet-src.js +7144 -7144
- umap/templates/auth/user_form.html +2 -2
- umap/templates/base.html +11 -0
- umap/templates/umap/map_table.html +3 -3
- umap/templatetags/umap_tags.py +32 -34
- umap/tests/base.py +4 -4
- umap/tests/conftest.py +3 -6
- umap/tests/fixtures/circle.svg +4 -0
- umap/tests/fixtures/star.svg +4 -0
- umap/tests/integration/test_export_map.py +5 -18
- umap/tests/integration/test_picto.py +217 -0
- umap/tests/integration/test_slideshow.py +70 -0
- umap/tests/settings.py +11 -5
- umap/tests/test_datalayer.py +7 -6
- umap/tests/test_map.py +6 -5
- umap/tests/test_map_views.py +82 -10
- umap/tests/test_tilelayer.py +17 -11
- umap/tests/test_views.py +36 -9
- umap/urls.py +27 -4
- umap/utils.py +1 -2
- umap/views.py +67 -35
- umap/wsgi.py +2 -2
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/METADATA +11 -9
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/RECORD +180 -170
- umap/static/favicon.ico +0 -0
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/WHEEL +0 -0
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/entry_points.txt +0 -0
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "قالب محتوای بازشو",
|
|
47
47
|
"Side panel": "پنل کناری",
|
|
48
48
|
"Simplify": "ساده کنید",
|
|
49
|
-
"Symbol or url": "نماد یا آدرس اینترنتی",
|
|
50
49
|
"Table": "جدول",
|
|
51
50
|
"always": "همیشه",
|
|
52
51
|
"clear": "روشن/شفاف",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "کلیدهای فیلتر",
|
|
172
171
|
"Format": "قالب",
|
|
173
172
|
"From zoom": "از زوم",
|
|
174
|
-
"Full map data": "داده های نقشه کامل",
|
|
175
173
|
"Go to «{feature}»": "به «{ویژگی}» بروید",
|
|
176
174
|
"Heatmap intensity property": "ویژگی شدت حرارت",
|
|
177
175
|
"Heatmap radius": "شعاع نقشه حرارتی",
|
|
@@ -402,7 +400,6 @@
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,5 +425,13 @@
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
umap/static/umap/locale/fi.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Ponnahdusikkunan sisällön sapluuna",
|
|
47
47
|
"Side panel": "Sivupaneeli",
|
|
48
48
|
"Simplify": "Yksinkertaista",
|
|
49
|
-
"Symbol or url": "Symbol or url",
|
|
50
49
|
"Table": "Taulukko",
|
|
51
50
|
"always": "aina",
|
|
52
51
|
"clear": "clear",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Filter keys",
|
|
172
171
|
"Format": "Formaatti",
|
|
173
172
|
"From zoom": "Zoomaustasolta",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Mene piirteeseen «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Lämpökartan vahvuusominaisuus",
|
|
177
175
|
"Heatmap radius": "Lämpökartan säde",
|
|
@@ -402,7 +400,6 @@ const locale = {
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,7 +425,15 @@ const locale = {
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
|
433
438
|
L.registerLocale("fi", locale)
|
|
434
439
|
L.setLocale("fi")
|
umap/static/umap/locale/fi.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Ponnahdusikkunan sisällön sapluuna",
|
|
47
47
|
"Side panel": "Sivupaneeli",
|
|
48
48
|
"Simplify": "Yksinkertaista",
|
|
49
|
-
"Symbol or url": "Symbol or url",
|
|
50
49
|
"Table": "Taulukko",
|
|
51
50
|
"always": "aina",
|
|
52
51
|
"clear": "clear",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Filter keys",
|
|
172
171
|
"Format": "Formaatti",
|
|
173
172
|
"From zoom": "Zoomaustasolta",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Mene piirteeseen «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Lämpökartan vahvuusominaisuus",
|
|
177
175
|
"Heatmap radius": "Lämpökartan säde",
|
|
@@ -402,7 +400,6 @@
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,5 +425,13 @@
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
umap/static/umap/locale/fr.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Gabarit du contenu de la popup",
|
|
47
47
|
"Side panel": "Panneau latéral",
|
|
48
48
|
"Simplify": "Simplifier",
|
|
49
|
-
"Symbol or url": "Pictogramme ou URL",
|
|
50
49
|
"Table": "Tableau",
|
|
51
50
|
"always": "toujours",
|
|
52
51
|
"clear": "effacer",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Clés de filtre",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "À partir du zoom",
|
|
174
|
-
"Full map data": "Données complètes de la carte",
|
|
175
173
|
"Go to «{feature}»": "Naviguer jusqu'à «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Propriété pour l'intensité de la heatmap",
|
|
177
175
|
"Heatmap radius": "Rayon de heatmap",
|
|
@@ -402,13 +400,12 @@ const locale = {
|
|
|
402
400
|
"Change": "Modifier",
|
|
403
401
|
"Powered by uMap": "Propulsé par uMap",
|
|
404
402
|
"Search": "Chercher",
|
|
405
|
-
"Toggle direct input (advanced)": "Afficher le champ libre (avancé)",
|
|
406
403
|
"Datalayers": "Calques",
|
|
407
404
|
"Secret edit link:": "Lien d'édition secret :",
|
|
408
405
|
"Who can edit \"{layer}\"": "Qui peut modifier « {layer} »",
|
|
409
406
|
"Current map view": "Lister seulement les éléments visibles",
|
|
410
407
|
"Filter": "Filtrer",
|
|
411
|
-
"Choropleth": "
|
|
408
|
+
"Choropleth": "Choroplèthe",
|
|
412
409
|
"Choropleth breakpoints": "Seuils choropleth",
|
|
413
410
|
"Choropleth classes": "Classes choropleth",
|
|
414
411
|
"Choropleth color palette": "Palettes de couleurs choropleth",
|
|
@@ -428,7 +425,15 @@ const locale = {
|
|
|
428
425
|
"Go to the homepage": "Retour à la page d'accueil",
|
|
429
426
|
"Switch to edit mode": "Basculer en mode édition",
|
|
430
427
|
"Update who can see and edit the map": "Définir qui peut voir et modifier la carte",
|
|
431
|
-
"View": "Aperçu"
|
|
428
|
+
"View": "Aperçu",
|
|
429
|
+
"Add image URL": "URL d'une image",
|
|
430
|
+
"Backup data": "Sauvegarde des données",
|
|
431
|
+
"Download full data": "Télécharger les données complètes",
|
|
432
|
+
"Emoji & Character": "Emoji & texte",
|
|
433
|
+
"Generic": "Générique",
|
|
434
|
+
"Symbol": "Symbole",
|
|
435
|
+
"Type char or paste emoji": "Taper un caractère ou un émoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
|
433
438
|
L.registerLocale("fr", locale)
|
|
434
439
|
L.setLocale("fr")
|
umap/static/umap/locale/fr.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Gabarit du contenu de la popup",
|
|
47
47
|
"Side panel": "Panneau latéral",
|
|
48
48
|
"Simplify": "Simplifier",
|
|
49
|
-
"Symbol or url": "Pictogramme ou URL",
|
|
50
49
|
"Table": "Tableau",
|
|
51
50
|
"always": "toujours",
|
|
52
51
|
"clear": "effacer",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Clés de filtre",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "À partir du zoom",
|
|
174
|
-
"Full map data": "Données complètes de la carte",
|
|
175
173
|
"Go to «{feature}»": "Naviguer jusqu'à «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Propriété pour l'intensité de la heatmap",
|
|
177
175
|
"Heatmap radius": "Rayon de heatmap",
|
|
@@ -402,13 +400,12 @@
|
|
|
402
400
|
"Change": "Modifier",
|
|
403
401
|
"Powered by uMap": "Propulsé par uMap",
|
|
404
402
|
"Search": "Chercher",
|
|
405
|
-
"Toggle direct input (advanced)": "Afficher le champ libre (avancé)",
|
|
406
403
|
"Datalayers": "Calques",
|
|
407
404
|
"Secret edit link:": "Lien d'édition secret :",
|
|
408
405
|
"Who can edit \"{layer}\"": "Qui peut modifier « {layer} »",
|
|
409
406
|
"Current map view": "Lister seulement les éléments visibles",
|
|
410
407
|
"Filter": "Filtrer",
|
|
411
|
-
"Choropleth": "
|
|
408
|
+
"Choropleth": "Choroplèthe",
|
|
412
409
|
"Choropleth breakpoints": "Seuils choropleth",
|
|
413
410
|
"Choropleth classes": "Classes choropleth",
|
|
414
411
|
"Choropleth color palette": "Palettes de couleurs choropleth",
|
|
@@ -428,5 +425,13 @@
|
|
|
428
425
|
"Go to the homepage": "Retour à la page d'accueil",
|
|
429
426
|
"Switch to edit mode": "Basculer en mode édition",
|
|
430
427
|
"Update who can see and edit the map": "Définir qui peut voir et modifier la carte",
|
|
431
|
-
"View": "Aperçu"
|
|
428
|
+
"View": "Aperçu",
|
|
429
|
+
"Add image URL": "URL d'une image",
|
|
430
|
+
"Backup data": "Sauvegarde des données",
|
|
431
|
+
"Download full data": "Télécharger les données complètes",
|
|
432
|
+
"Emoji & Character": "Emoji & texte",
|
|
433
|
+
"Generic": "Générique",
|
|
434
|
+
"Symbol": "Symbole",
|
|
435
|
+
"Type char or paste emoji": "Taper un caractère ou un émoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
umap/static/umap/locale/gl.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Padrón do contido da xanela emerxente",
|
|
47
47
|
"Side panel": "Lapela lateral",
|
|
48
48
|
"Simplify": "Simplificar",
|
|
49
|
-
"Symbol or url": "Icona ou URL",
|
|
50
49
|
"Table": "Táboa",
|
|
51
50
|
"always": "sempre",
|
|
52
51
|
"clear": "limpar",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Claves de filtrado",
|
|
172
171
|
"Format": "Formato",
|
|
173
172
|
"From zoom": "Dende o achegamento",
|
|
174
|
-
"Full map data": "Mapa completo de datos",
|
|
175
173
|
"Go to «{feature}»": "Ir cara «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Propiedade intensidade do mapa de calor",
|
|
177
175
|
"Heatmap radius": "Raio do mapa de calor",
|
|
@@ -402,7 +400,6 @@ const locale = {
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,7 +425,15 @@ const locale = {
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
|
433
438
|
L.registerLocale("gl", locale)
|
|
434
439
|
L.setLocale("gl")
|
umap/static/umap/locale/gl.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Padrón do contido da xanela emerxente",
|
|
47
47
|
"Side panel": "Lapela lateral",
|
|
48
48
|
"Simplify": "Simplificar",
|
|
49
|
-
"Symbol or url": "Icona ou URL",
|
|
50
49
|
"Table": "Táboa",
|
|
51
50
|
"always": "sempre",
|
|
52
51
|
"clear": "limpar",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Claves de filtrado",
|
|
172
171
|
"Format": "Formato",
|
|
173
172
|
"From zoom": "Dende o achegamento",
|
|
174
|
-
"Full map data": "Mapa completo de datos",
|
|
175
173
|
"Go to «{feature}»": "Ir cara «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Propiedade intensidade do mapa de calor",
|
|
177
175
|
"Heatmap radius": "Raio do mapa de calor",
|
|
@@ -402,7 +400,6 @@
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,5 +425,13 @@
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
umap/static/umap/locale/he.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "תבנית תוכן מוקפצת",
|
|
47
47
|
"Side panel": "לוח צד",
|
|
48
48
|
"Simplify": "פישוט",
|
|
49
|
-
"Symbol or url": "סמן או כתובת",
|
|
50
49
|
"Table": "טבלה",
|
|
51
50
|
"always": "תמיד",
|
|
52
51
|
"clear": "למחוק",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "סינון מפתחות",
|
|
172
171
|
"Format": "תצורה",
|
|
173
172
|
"From zoom": "מרמת תקריב",
|
|
174
|
-
"Full map data": "נתוני מפה מלאים",
|
|
175
173
|
"Go to «{feature}»": "מעבר אל «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "מאפיין עצמת מפת חום",
|
|
177
175
|
"Heatmap radius": "רדיוס מפת חום",
|
|
@@ -402,7 +400,6 @@ const locale = {
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,7 +425,15 @@ const locale = {
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
|
433
438
|
L.registerLocale("he", locale)
|
|
434
439
|
L.setLocale("he")
|
umap/static/umap/locale/he.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "תבנית תוכן מוקפצת",
|
|
47
47
|
"Side panel": "לוח צד",
|
|
48
48
|
"Simplify": "פישוט",
|
|
49
|
-
"Symbol or url": "סמן או כתובת",
|
|
50
49
|
"Table": "טבלה",
|
|
51
50
|
"always": "תמיד",
|
|
52
51
|
"clear": "למחוק",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "סינון מפתחות",
|
|
172
171
|
"Format": "תצורה",
|
|
173
172
|
"From zoom": "מרמת תקריב",
|
|
174
|
-
"Full map data": "נתוני מפה מלאים",
|
|
175
173
|
"Go to «{feature}»": "מעבר אל «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "מאפיין עצמת מפת חום",
|
|
177
175
|
"Heatmap radius": "רדיוס מפת חום",
|
|
@@ -402,7 +400,6 @@
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,5 +425,13 @@
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
umap/static/umap/locale/hr.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Popup content template",
|
|
47
47
|
"Side panel": "Side panel",
|
|
48
48
|
"Simplify": "Simplify",
|
|
49
|
-
"Symbol or url": "Symbol or url",
|
|
50
49
|
"Table": "Table",
|
|
51
50
|
"always": "always",
|
|
52
51
|
"clear": "clear",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Filter keys",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "Od uvećanja",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Idi na «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Heatmap intensity property",
|
|
177
175
|
"Heatmap radius": "Heatmap radius",
|
|
@@ -402,7 +400,6 @@ const locale = {
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,7 +425,15 @@ const locale = {
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
|
433
438
|
L.registerLocale("hr", locale)
|
|
434
439
|
L.setLocale("hr")
|
umap/static/umap/locale/hr.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Popup content template",
|
|
47
47
|
"Side panel": "Side panel",
|
|
48
48
|
"Simplify": "Simplify",
|
|
49
|
-
"Symbol or url": "Symbol or url",
|
|
50
49
|
"Table": "Table",
|
|
51
50
|
"always": "always",
|
|
52
51
|
"clear": "clear",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Filter keys",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "Od uvećanja",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Idi na «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Heatmap intensity property",
|
|
177
175
|
"Heatmap radius": "Heatmap radius",
|
|
@@ -402,7 +400,6 @@
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,5 +425,13 @@
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|