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
umap/static/umap/locale/ja.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "ポップアップコンテンツのテンプレート",
|
|
47
47
|
"Side panel": "サイドパネル",
|
|
48
48
|
"Simplify": "簡略化",
|
|
49
|
-
"Symbol or url": "シンボルまたは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": "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("ja", locale)
|
|
434
439
|
L.setLocale("ja")
|
umap/static/umap/locale/ja.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "ポップアップコンテンツのテンプレート",
|
|
47
47
|
"Side panel": "サイドパネル",
|
|
48
48
|
"Simplify": "簡略化",
|
|
49
|
-
"Symbol or url": "シンボルまたは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": "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/ko.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "팝업 내용",
|
|
47
47
|
"Side panel": "가장자리 패널",
|
|
48
48
|
"Simplify": "단순화",
|
|
49
|
-
"Symbol or url": "심볼이나 URL",
|
|
50
49
|
"Table": "표",
|
|
51
50
|
"always": "항상",
|
|
52
51
|
"clear": "초기화",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Filter keys",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "From zoom",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Go to «{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("ko", locale)
|
|
434
439
|
L.setLocale("ko")
|
umap/static/umap/locale/ko.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "팝업 내용",
|
|
47
47
|
"Side panel": "가장자리 패널",
|
|
48
48
|
"Simplify": "단순화",
|
|
49
|
-
"Symbol or url": "심볼이나 URL",
|
|
50
49
|
"Table": "표",
|
|
51
50
|
"always": "항상",
|
|
52
51
|
"clear": "초기화",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Filter keys",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "From zoom",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Go to «{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
|
}
|
umap/static/umap/locale/lt.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Popup'o turinio šablonas",
|
|
47
47
|
"Side panel": "Šoninis skydelis",
|
|
48
48
|
"Simplify": "Simplify",
|
|
49
|
-
"Symbol or url": "Symbol or url",
|
|
50
49
|
"Table": "Lentelė",
|
|
51
50
|
"always": "always",
|
|
52
51
|
"clear": "clear",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Filter keys",
|
|
172
171
|
"Format": "Formatas",
|
|
173
172
|
"From zoom": "Mažiausias mastelis",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Eiti į «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Tankio žemėlpaio faktorius",
|
|
177
175
|
"Heatmap radius": "Tankio žemėlapio spindulys",
|
|
@@ -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("lt", locale)
|
|
434
439
|
L.setLocale("lt")
|
umap/static/umap/locale/lt.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Popup'o turinio šablonas",
|
|
47
47
|
"Side panel": "Šoninis skydelis",
|
|
48
48
|
"Simplify": "Simplify",
|
|
49
|
-
"Symbol or url": "Symbol or url",
|
|
50
49
|
"Table": "Lentelė",
|
|
51
50
|
"always": "always",
|
|
52
51
|
"clear": "clear",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Filter keys",
|
|
172
171
|
"Format": "Formatas",
|
|
173
172
|
"From zoom": "Mažiausias mastelis",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Eiti į «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Tankio žemėlpaio faktorius",
|
|
177
175
|
"Heatmap radius": "Tankio žemėlapio spindulys",
|
|
@@ -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/ms.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Templat kandungan tetingkap timbul",
|
|
47
47
|
"Side panel": "Panel sisi",
|
|
48
48
|
"Simplify": "Permudahkan",
|
|
49
|
-
"Symbol or url": "Simbol atau url",
|
|
50
49
|
"Table": "Meja",
|
|
51
50
|
"always": "sentiasa",
|
|
52
51
|
"clear": "kosongkan",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Kekunci tapisan",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "Dari zum",
|
|
174
|
-
"Full map data": "Data peta penuh",
|
|
175
173
|
"Go to «{feature}»": "Pergi ke «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Ciri-ciri keamatan peta tompokan",
|
|
177
175
|
"Heatmap radius": "Jejari peta tompokan",
|
|
@@ -402,7 +400,6 @@ const locale = {
|
|
|
402
400
|
"Change": "Tukar",
|
|
403
401
|
"Powered by uMap": "Dikuasakan oleh uMap",
|
|
404
402
|
"Search": "Cari",
|
|
405
|
-
"Toggle direct input (advanced)": "Togol input terus (lanjutan)",
|
|
406
403
|
"Datalayers": "Lapisan data",
|
|
407
404
|
"Secret edit link:": "Pautan suntingan rahsia:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Siapa boleh sunting \"{layer}\"",
|
|
@@ -422,13 +419,21 @@ const locale = {
|
|
|
422
419
|
"Number of desired classes (default 5)": "Jumlah kelas yang diingini (lalainya 5)",
|
|
423
420
|
"Quantiles": "Kuantil",
|
|
424
421
|
"Show this layer in the caption": "Tunjuk lapisan ini dalam keterangan",
|
|
425
|
-
"Back to preview": "
|
|
426
|
-
"Drawing": "
|
|
427
|
-
"Edit the title of the map": "
|
|
428
|
-
"Go to the homepage": "
|
|
429
|
-
"Switch to edit mode": "
|
|
430
|
-
"Update who can see and edit the map": "
|
|
431
|
-
"View": "
|
|
422
|
+
"Back to preview": "Kembali ke pralihat",
|
|
423
|
+
"Drawing": "Lukisan",
|
|
424
|
+
"Edit the title of the map": "Sunting tajuk peta",
|
|
425
|
+
"Go to the homepage": "Pergi ke halaman utama",
|
|
426
|
+
"Switch to edit mode": "Tukar ke mod suntingan",
|
|
427
|
+
"Update who can see and edit the map": "Kemas kini siapa boleh lihat dan sunting peta",
|
|
428
|
+
"View": "Lihat",
|
|
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("ms", locale)
|
|
434
439
|
L.setLocale("ms")
|
umap/static/umap/locale/ms.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Templat kandungan tetingkap timbul",
|
|
47
47
|
"Side panel": "Panel sisi",
|
|
48
48
|
"Simplify": "Permudahkan",
|
|
49
|
-
"Symbol or url": "Simbol atau url",
|
|
50
49
|
"Table": "Meja",
|
|
51
50
|
"always": "sentiasa",
|
|
52
51
|
"clear": "kosongkan",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Kekunci tapisan",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "Dari zum",
|
|
174
|
-
"Full map data": "Data peta penuh",
|
|
175
173
|
"Go to «{feature}»": "Pergi ke «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Ciri-ciri keamatan peta tompokan",
|
|
177
175
|
"Heatmap radius": "Jejari peta tompokan",
|
|
@@ -402,7 +400,6 @@
|
|
|
402
400
|
"Change": "Tukar",
|
|
403
401
|
"Powered by uMap": "Dikuasakan oleh uMap",
|
|
404
402
|
"Search": "Cari",
|
|
405
|
-
"Toggle direct input (advanced)": "Togol input terus (lanjutan)",
|
|
406
403
|
"Datalayers": "Lapisan data",
|
|
407
404
|
"Secret edit link:": "Pautan suntingan rahsia:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Siapa boleh sunting \"{layer}\"",
|
|
@@ -422,11 +419,19 @@
|
|
|
422
419
|
"Number of desired classes (default 5)": "Jumlah kelas yang diingini (lalainya 5)",
|
|
423
420
|
"Quantiles": "Kuantil",
|
|
424
421
|
"Show this layer in the caption": "Tunjuk lapisan ini dalam keterangan",
|
|
425
|
-
"Back to preview": "
|
|
426
|
-
"Drawing": "
|
|
427
|
-
"Edit the title of the map": "
|
|
428
|
-
"Go to the homepage": "
|
|
429
|
-
"Switch to edit mode": "
|
|
430
|
-
"Update who can see and edit the map": "
|
|
431
|
-
"View": "
|
|
422
|
+
"Back to preview": "Kembali ke pralihat",
|
|
423
|
+
"Drawing": "Lukisan",
|
|
424
|
+
"Edit the title of the map": "Sunting tajuk peta",
|
|
425
|
+
"Go to the homepage": "Pergi ke halaman utama",
|
|
426
|
+
"Switch to edit mode": "Tukar ke mod suntingan",
|
|
427
|
+
"Update who can see and edit the map": "Kemas kini siapa boleh lihat dan sunting peta",
|
|
428
|
+
"View": "Lihat",
|
|
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/nl.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Template voor de popup",
|
|
47
47
|
"Side panel": "Zijpaneel",
|
|
48
48
|
"Simplify": "Vereenvoudig",
|
|
49
|
-
"Symbol or url": "Symbool of URL",
|
|
50
49
|
"Table": "Tabel",
|
|
51
50
|
"always": "altijd",
|
|
52
51
|
"clear": "wis",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Filter op sleutel",
|
|
172
171
|
"Format": "Formaat",
|
|
173
172
|
"From zoom": "Van zoom",
|
|
174
|
-
"Full map data": "Alle kaartdata",
|
|
175
173
|
"Go to «{feature}»": "Ga naar «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Eigenschap die intensiteit van de heatmap bepaalt",
|
|
177
175
|
"Heatmap radius": "Doorsnede van de heatmap",
|
|
@@ -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("nl", locale)
|
|
434
439
|
L.setLocale("nl")
|
umap/static/umap/locale/nl.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Template voor de popup",
|
|
47
47
|
"Side panel": "Zijpaneel",
|
|
48
48
|
"Simplify": "Vereenvoudig",
|
|
49
|
-
"Symbol or url": "Symbool of URL",
|
|
50
49
|
"Table": "Tabel",
|
|
51
50
|
"always": "altijd",
|
|
52
51
|
"clear": "wis",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Filter op sleutel",
|
|
172
171
|
"Format": "Formaat",
|
|
173
172
|
"From zoom": "Van zoom",
|
|
174
|
-
"Full map data": "Alle kaartdata",
|
|
175
173
|
"Go to «{feature}»": "Ga naar «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Eigenschap die intensiteit van de heatmap bepaalt",
|
|
177
175
|
"Heatmap radius": "Doorsnede van de heatmap",
|
|
@@ -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/no.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Popup content template",
|
|
47
47
|
"Side panel": "Sidepanel",
|
|
48
48
|
"Simplify": "Simplifisere",
|
|
49
|
-
"Symbol or url": "Symbol eller URL",
|
|
50
49
|
"Table": "Tabell",
|
|
51
50
|
"always": "alltid",
|
|
52
51
|
"clear": "tøm",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Filtrer nøkler",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "Fra zoom",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Gå til \"{feature}\"",
|
|
176
174
|
"Heatmap intensity property": "Varmekart intensitet-egenskap",
|
|
177
175
|
"Heatmap radius": "Varmekart 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("no", locale)
|
|
434
439
|
L.setLocale("no")
|
umap/static/umap/locale/no.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Popup content template",
|
|
47
47
|
"Side panel": "Sidepanel",
|
|
48
48
|
"Simplify": "Simplifisere",
|
|
49
|
-
"Symbol or url": "Symbol eller URL",
|
|
50
49
|
"Table": "Tabell",
|
|
51
50
|
"always": "alltid",
|
|
52
51
|
"clear": "tøm",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Filtrer nøkler",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "Fra zoom",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Gå til \"{feature}\"",
|
|
176
174
|
"Heatmap intensity property": "Varmekart intensitet-egenskap",
|
|
177
175
|
"Heatmap radius": "Varmekart 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/pl.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Szablon treści dymku",
|
|
47
47
|
"Side panel": "Panel boczny",
|
|
48
48
|
"Simplify": "Uprość",
|
|
49
|
-
"Symbol or url": "Symbol lub adres URL",
|
|
50
49
|
"Table": "Tabela",
|
|
51
50
|
"always": "zawsze",
|
|
52
51
|
"clear": "wyczyść",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Klucze filtrów",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "Od przybliżenia",
|
|
174
|
-
"Full map data": "Pełne dane mapy",
|
|
175
173
|
"Go to «{feature}»": "Idź do „{feature}”",
|
|
176
174
|
"Heatmap intensity property": "Intensywność mapy cieplnej",
|
|
177
175
|
"Heatmap radius": "Promień mapy cieplnej",
|
|
@@ -402,7 +400,6 @@ const locale = {
|
|
|
402
400
|
"Change": "Zmiana",
|
|
403
401
|
"Powered by uMap": "Napędzane przez uMap",
|
|
404
402
|
"Search": "Szukaj",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Warstwy danych",
|
|
407
404
|
"Secret edit link:": "Sekretny odnośnik edycji:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Kto może edytować \"{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("pl", locale)
|
|
434
439
|
L.setLocale("pl")
|
umap/static/umap/locale/pl.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Szablon treści dymku",
|
|
47
47
|
"Side panel": "Panel boczny",
|
|
48
48
|
"Simplify": "Uprość",
|
|
49
|
-
"Symbol or url": "Symbol lub adres URL",
|
|
50
49
|
"Table": "Tabela",
|
|
51
50
|
"always": "zawsze",
|
|
52
51
|
"clear": "wyczyść",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Klucze filtrów",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "Od przybliżenia",
|
|
174
|
-
"Full map data": "Pełne dane mapy",
|
|
175
173
|
"Go to «{feature}»": "Idź do „{feature}”",
|
|
176
174
|
"Heatmap intensity property": "Intensywność mapy cieplnej",
|
|
177
175
|
"Heatmap radius": "Promień mapy cieplnej",
|
|
@@ -402,7 +400,6 @@
|
|
|
402
400
|
"Change": "Zmiana",
|
|
403
401
|
"Powered by uMap": "Napędzane przez uMap",
|
|
404
402
|
"Search": "Szukaj",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Warstwy danych",
|
|
407
404
|
"Secret edit link:": "Sekretny odnośnik edycji:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Kto może edytować \"{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
|
}
|
|
@@ -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": "From zoom",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Go to «{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
|
}
|