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.

Files changed (181) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +7 -3
  3. umap/autocomplete.py +3 -5
  4. umap/bin/__init__.py +2 -5
  5. umap/decorators.py +4 -5
  6. umap/forms.py +5 -5
  7. umap/locale/en/LC_MESSAGES/django.po +23 -23
  8. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/fr/LC_MESSAGES/django.po +28 -27
  10. umap/management/commands/generate_js_locale.py +9 -11
  11. umap/management/commands/import_pictograms.py +49 -28
  12. umap/managers.py +5 -3
  13. umap/middleware.py +2 -3
  14. umap/migrations/0001_initial.py +204 -56
  15. umap/migrations/0002_tilelayer_tms.py +3 -4
  16. umap/migrations/0003_add_tilelayer.py +13 -9
  17. umap/migrations/0004_add_licence.py +3 -6
  18. umap/migrations/0005_remove_map_tilelayer.py +3 -4
  19. umap/migrations/0006_auto_20190407_0719.py +6 -5
  20. umap/migrations/0007_auto_20190416_1757.py +13 -5
  21. umap/migrations/0008_alter_map_settings.py +0 -1
  22. umap/migrations/0009_star.py +27 -8
  23. umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +20 -8
  24. umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +21 -8
  25. umap/migrations/0014_map_created_at.py +1 -1
  26. umap/migrations/0015_alter_pictogram_pictogram.py +17 -0
  27. umap/migrations/0016_pictogram_category.py +17 -0
  28. umap/models.py +9 -7
  29. umap/settings/base.py +1 -4
  30. umap/static/umap/base.css +59 -20
  31. umap/static/umap/content.css +2 -13
  32. umap/static/umap/favicons/apple-touch-icon.png +0 -0
  33. umap/static/umap/favicons/favicon.ico +0 -0
  34. umap/static/umap/favicons/icon-192.png +0 -0
  35. umap/static/umap/favicons/icon-512.png +0 -0
  36. umap/static/umap/favicons/icon.svg +5 -0
  37. umap/static/umap/img/16-white.svg +20 -9
  38. umap/static/umap/img/24-white.svg +2 -2
  39. umap/static/umap/img/source/16-white.svg +25 -13
  40. umap/static/umap/img/source/24-white.svg +5 -5
  41. umap/static/umap/js/umap.controls.js +15 -23
  42. umap/static/umap/js/umap.core.js +33 -24
  43. umap/static/umap/js/umap.features.js +24 -2
  44. umap/static/umap/js/umap.forms.js +182 -84
  45. umap/static/umap/js/umap.icon.js +19 -14
  46. umap/static/umap/js/umap.js +14 -32
  47. umap/static/umap/js/umap.layer.js +13 -2
  48. umap/static/umap/js/umap.popup.js +21 -0
  49. umap/static/umap/locale/am_ET.js +9 -4
  50. umap/static/umap/locale/am_ET.json +9 -4
  51. umap/static/umap/locale/ar.js +9 -4
  52. umap/static/umap/locale/ar.json +9 -4
  53. umap/static/umap/locale/ast.js +9 -4
  54. umap/static/umap/locale/ast.json +9 -4
  55. umap/static/umap/locale/bg.js +9 -4
  56. umap/static/umap/locale/bg.json +9 -4
  57. umap/static/umap/locale/br.js +20 -15
  58. umap/static/umap/locale/br.json +20 -15
  59. umap/static/umap/locale/ca.js +9 -4
  60. umap/static/umap/locale/ca.json +9 -4
  61. umap/static/umap/locale/cs_CZ.js +9 -4
  62. umap/static/umap/locale/cs_CZ.json +9 -4
  63. umap/static/umap/locale/da.js +9 -4
  64. umap/static/umap/locale/da.json +9 -4
  65. umap/static/umap/locale/de.js +9 -4
  66. umap/static/umap/locale/de.json +9 -4
  67. umap/static/umap/locale/el.js +9 -4
  68. umap/static/umap/locale/el.json +9 -4
  69. umap/static/umap/locale/en.js +9 -4
  70. umap/static/umap/locale/en.json +9 -4
  71. umap/static/umap/locale/en_US.json +9 -4
  72. umap/static/umap/locale/es.js +15 -10
  73. umap/static/umap/locale/es.json +15 -10
  74. umap/static/umap/locale/et.js +9 -4
  75. umap/static/umap/locale/et.json +9 -4
  76. umap/static/umap/locale/fa_IR.js +9 -4
  77. umap/static/umap/locale/fa_IR.json +9 -4
  78. umap/static/umap/locale/fi.js +9 -4
  79. umap/static/umap/locale/fi.json +9 -4
  80. umap/static/umap/locale/fr.js +10 -5
  81. umap/static/umap/locale/fr.json +10 -5
  82. umap/static/umap/locale/gl.js +9 -4
  83. umap/static/umap/locale/gl.json +9 -4
  84. umap/static/umap/locale/he.js +9 -4
  85. umap/static/umap/locale/he.json +9 -4
  86. umap/static/umap/locale/hr.js +9 -4
  87. umap/static/umap/locale/hr.json +9 -4
  88. umap/static/umap/locale/hu.js +64 -59
  89. umap/static/umap/locale/hu.json +64 -59
  90. umap/static/umap/locale/id.js +9 -4
  91. umap/static/umap/locale/id.json +9 -4
  92. umap/static/umap/locale/is.js +9 -4
  93. umap/static/umap/locale/is.json +9 -4
  94. umap/static/umap/locale/it.js +9 -4
  95. umap/static/umap/locale/it.json +9 -4
  96. umap/static/umap/locale/ja.js +9 -4
  97. umap/static/umap/locale/ja.json +9 -4
  98. umap/static/umap/locale/ko.js +9 -4
  99. umap/static/umap/locale/ko.json +9 -4
  100. umap/static/umap/locale/lt.js +9 -4
  101. umap/static/umap/locale/lt.json +9 -4
  102. umap/static/umap/locale/ms.js +15 -10
  103. umap/static/umap/locale/ms.json +15 -10
  104. umap/static/umap/locale/nl.js +9 -4
  105. umap/static/umap/locale/nl.json +9 -4
  106. umap/static/umap/locale/no.js +9 -4
  107. umap/static/umap/locale/no.json +9 -4
  108. umap/static/umap/locale/pl.js +9 -4
  109. umap/static/umap/locale/pl.json +9 -4
  110. umap/static/umap/locale/pl_PL.json +9 -4
  111. umap/static/umap/locale/pt.js +9 -4
  112. umap/static/umap/locale/pt.json +9 -4
  113. umap/static/umap/locale/pt_BR.js +9 -4
  114. umap/static/umap/locale/pt_BR.json +9 -4
  115. umap/static/umap/locale/pt_PT.js +9 -4
  116. umap/static/umap/locale/pt_PT.json +9 -4
  117. umap/static/umap/locale/ro.js +9 -4
  118. umap/static/umap/locale/ro.json +9 -4
  119. umap/static/umap/locale/ru.js +9 -4
  120. umap/static/umap/locale/ru.json +9 -4
  121. umap/static/umap/locale/si.js +55 -20
  122. umap/static/umap/locale/si.json +55 -20
  123. umap/static/umap/locale/sk_SK.js +9 -4
  124. umap/static/umap/locale/sk_SK.json +9 -4
  125. umap/static/umap/locale/sl.js +9 -4
  126. umap/static/umap/locale/sl.json +9 -4
  127. umap/static/umap/locale/sr.js +9 -4
  128. umap/static/umap/locale/sr.json +9 -4
  129. umap/static/umap/locale/sv.js +9 -4
  130. umap/static/umap/locale/sv.json +9 -4
  131. umap/static/umap/locale/th_TH.js +9 -4
  132. umap/static/umap/locale/th_TH.json +9 -4
  133. umap/static/umap/locale/tr.js +9 -4
  134. umap/static/umap/locale/tr.json +9 -4
  135. umap/static/umap/locale/uk_UA.js +9 -4
  136. umap/static/umap/locale/uk_UA.json +9 -4
  137. umap/static/umap/locale/vi.js +9 -4
  138. umap/static/umap/locale/vi.json +9 -4
  139. umap/static/umap/locale/vi_VN.json +9 -4
  140. umap/static/umap/locale/zh.js +9 -4
  141. umap/static/umap/locale/zh.json +9 -4
  142. umap/static/umap/locale/zh_CN.json +9 -4
  143. umap/static/umap/locale/zh_TW.Big5.json +9 -4
  144. umap/static/umap/locale/zh_TW.js +9 -4
  145. umap/static/umap/locale/zh_TW.json +9 -4
  146. umap/static/umap/map.css +104 -21
  147. umap/static/umap/nav.css +0 -1
  148. umap/static/umap/test/Controls.js +0 -1
  149. umap/static/umap/test/Feature.js +29 -0
  150. umap/static/umap/test/Map.Export.js +2 -127
  151. umap/static/umap/test/Util.js +10 -0
  152. umap/static/umap/test/_pre.js +2 -3
  153. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +13 -2
  154. umap/static/umap/vendors/leaflet/leaflet-src.js +7144 -7144
  155. umap/templates/auth/user_form.html +2 -2
  156. umap/templates/base.html +11 -0
  157. umap/templates/umap/map_table.html +3 -3
  158. umap/templatetags/umap_tags.py +32 -34
  159. umap/tests/base.py +4 -4
  160. umap/tests/conftest.py +3 -6
  161. umap/tests/fixtures/circle.svg +4 -0
  162. umap/tests/fixtures/star.svg +4 -0
  163. umap/tests/integration/test_export_map.py +5 -18
  164. umap/tests/integration/test_picto.py +217 -0
  165. umap/tests/integration/test_slideshow.py +70 -0
  166. umap/tests/settings.py +11 -5
  167. umap/tests/test_datalayer.py +7 -6
  168. umap/tests/test_map.py +6 -5
  169. umap/tests/test_map_views.py +82 -10
  170. umap/tests/test_tilelayer.py +17 -11
  171. umap/tests/test_views.py +36 -9
  172. umap/urls.py +27 -4
  173. umap/utils.py +1 -2
  174. umap/views.py +67 -35
  175. umap/wsgi.py +2 -2
  176. {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/METADATA +11 -9
  177. {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/RECORD +180 -170
  178. umap/static/favicon.ico +0 -0
  179. {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/WHEEL +0 -0
  180. {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/entry_points.txt +0 -0
  181. {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": "Šablona obsahu bubliny",
47
47
  "Side panel": "Boční panel",
48
48
  "Simplify": "Zjednodušit",
49
- "Symbol or url": "Symbol nebo adresa URL",
50
49
  "Table": "Tabulka",
51
50
  "always": "vždy",
52
51
  "clear": "vymazat",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Filtrovací klávesy",
172
171
  "Format": "Formát",
173
172
  "From zoom": "Maximální oddálení",
174
- "Full map data": "Kompletní mapová data",
175
173
  "Go to «{feature}»": "Jdi na \"{feature}\"",
176
174
  "Heatmap intensity property": "Vlastnost pro intenzitu teplotní mapy",
177
175
  "Heatmap radius": "Poloměr teplotní mapy",
@@ -402,7 +400,6 @@
402
400
  "Change": "Změnit",
403
401
  "Powered by uMap": "Běží na uMap",
404
402
  "Search": "Hledat",
405
- "Toggle direct input (advanced)": "Přepínání přímého vstupu (pokročilé)",
406
403
  "Datalayers": "Datové vrstvy",
407
404
  "Secret edit link:": "Tajný odkaz na úpravy:",
408
405
  "Who can edit \"{layer}\"": "Kdo může upravovat \"{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 @@ const locale = {
46
46
  "Popup content template": "Popups indholdsskabelon",
47
47
  "Side panel": "Sidepanel",
48
48
  "Simplify": "Simplificer",
49
- "Symbol or url": "Symbol eller url",
50
49
  "Table": "Tabel",
51
50
  "always": "altid",
52
51
  "clear": "tøm",
@@ -171,7 +170,6 @@ const locale = {
171
170
  "Filter keys": "Filternøgler",
172
171
  "Format": "Format",
173
172
  "From zoom": "Fra zoom",
174
- "Full map data": "Komplette kortdata",
175
173
  "Go to «{feature}»": "Gå til \"{feature}\"",
176
174
  "Heatmap intensity property": "Heatmaps intensitetsegenskaber",
177
175
  "Heatmap radius": "Heatmaps 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("da", locale)
434
439
  L.setLocale("da")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Popups indholdsskabelon",
47
47
  "Side panel": "Sidepanel",
48
48
  "Simplify": "Simplificer",
49
- "Symbol or url": "Symbol eller url",
50
49
  "Table": "Tabel",
51
50
  "always": "altid",
52
51
  "clear": "tøm",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Filternøgler",
172
171
  "Format": "Format",
173
172
  "From zoom": "Fra zoom",
174
- "Full map data": "Komplette kortdata",
175
173
  "Go to «{feature}»": "Gå til \"{feature}\"",
176
174
  "Heatmap intensity property": "Heatmaps intensitetsegenskaber",
177
175
  "Heatmap radius": "Heatmaps 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
  }
@@ -46,7 +46,6 @@ const locale = {
46
46
  "Popup content template": "Popup Vorlage",
47
47
  "Side panel": "Seitenleiste",
48
48
  "Simplify": "Vereinfachen",
49
- "Symbol or url": "Symbol oder URL",
50
49
  "Table": "Tabelle",
51
50
  "always": "immer",
52
51
  "clear": "leeren",
@@ -171,7 +170,6 @@ const locale = {
171
170
  "Filter keys": "Schlüssel filtern",
172
171
  "Format": "Format",
173
172
  "From zoom": "Von Zoomstufe",
174
- "Full map data": "Vollständige Kartendaten",
175
173
  "Go to «{feature}»": "Zu „{feature}“ wechseln",
176
174
  "Heatmap intensity property": "Heatmap-Intensität",
177
175
  "Heatmap radius": "Radius der 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("de", locale)
434
439
  L.setLocale("de")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Popup Vorlage",
47
47
  "Side panel": "Seitenleiste",
48
48
  "Simplify": "Vereinfachen",
49
- "Symbol or url": "Symbol oder URL",
50
49
  "Table": "Tabelle",
51
50
  "always": "immer",
52
51
  "clear": "leeren",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Schlüssel filtern",
172
171
  "Format": "Format",
173
172
  "From zoom": "Von Zoomstufe",
174
- "Full map data": "Vollständige Kartendaten",
175
173
  "Go to «{feature}»": "Zu „{feature}“ wechseln",
176
174
  "Heatmap intensity property": "Heatmap-Intensität",
177
175
  "Heatmap radius": "Radius der 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
  }
@@ -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("el", locale)
434
439
  L.setLocale("el")
@@ -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
  }
@@ -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": "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("en", locale)
434
439
  L.setLocale("en")
@@ -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
  }
@@ -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
  }
@@ -46,7 +46,6 @@ const locale = {
46
46
  "Popup content template": "Plantilla de contenido emergente",
47
47
  "Side panel": "Panel lateral",
48
48
  "Simplify": "Simplificar",
49
- "Symbol or url": "Símbolo o URL",
50
49
  "Table": "Tabla",
51
50
  "always": "siempre",
52
51
  "clear": "limpiar",
@@ -171,7 +170,6 @@ const locale = {
171
170
  "Filter keys": "Claves de filtrado",
172
171
  "Format": "Formato",
173
172
  "From zoom": "Desde el acercamiento",
174
- "Full map data": "Datos completos del mapa",
175
173
  "Go to «{feature}»": "Ir a «{feature}»",
176
174
  "Heatmap intensity property": "Propiedad de la intensidad del mapa de calor",
177
175
  "Heatmap radius": "Radio del mapa de calor",
@@ -402,7 +400,6 @@ const locale = {
402
400
  "Change": "Cambiar",
403
401
  "Powered by uMap": "Desarrollado por uMap",
404
402
  "Search": "Buscar",
405
- "Toggle direct input (advanced)": "Conmutar entrada directa (avanzado)",
406
403
  "Datalayers": "Capas de datos",
407
404
  "Secret edit link:": "Enlace secreto de edición:",
408
405
  "Who can edit \"{layer}\"": "Quién puede editar \"{layer}\"",
@@ -422,13 +419,21 @@ const locale = {
422
419
  "Number of desired classes (default 5)": "Número de clases deseadas (predeterminadas 5)",
423
420
  "Quantiles": "Cuantiles",
424
421
  "Show this layer in the caption": "Mostrar esta capa en la leyenda",
425
- "Back to preview": "Back to preview",
426
- "Drawing": "Drawing",
427
- "Edit the title of the map": "Edit the title of the map",
428
- "Go to the homepage": "Go to the homepage",
429
- "Switch to edit mode": "Switch to edit mode",
430
- "Update who can see and edit the map": "Update who can see and edit the map",
431
- "View": "View"
422
+ "Back to preview": "Volver a la vista previa",
423
+ "Drawing": "Dibujo",
424
+ "Edit the title of the map": "Editar el título del mapa",
425
+ "Go to the homepage": "Ir a la página de inicio",
426
+ "Switch to edit mode": "Cambiar al modo de edición",
427
+ "Update who can see and edit the map": "Actualizar quién puede ver y editar el mapa",
428
+ "View": "Vista",
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("es", locale)
434
439
  L.setLocale("es")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Plantilla de contenido emergente",
47
47
  "Side panel": "Panel lateral",
48
48
  "Simplify": "Simplificar",
49
- "Symbol or url": "Símbolo o URL",
50
49
  "Table": "Tabla",
51
50
  "always": "siempre",
52
51
  "clear": "limpiar",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Claves de filtrado",
172
171
  "Format": "Formato",
173
172
  "From zoom": "Desde el acercamiento",
174
- "Full map data": "Datos completos del mapa",
175
173
  "Go to «{feature}»": "Ir a «{feature}»",
176
174
  "Heatmap intensity property": "Propiedad de la intensidad del mapa de calor",
177
175
  "Heatmap radius": "Radio del mapa de calor",
@@ -402,7 +400,6 @@
402
400
  "Change": "Cambiar",
403
401
  "Powered by uMap": "Desarrollado por uMap",
404
402
  "Search": "Buscar",
405
- "Toggle direct input (advanced)": "Conmutar entrada directa (avanzado)",
406
403
  "Datalayers": "Capas de datos",
407
404
  "Secret edit link:": "Enlace secreto de edición:",
408
405
  "Who can edit \"{layer}\"": "Quién puede editar \"{layer}\"",
@@ -422,11 +419,19 @@
422
419
  "Number of desired classes (default 5)": "Número de clases deseadas (predeterminadas 5)",
423
420
  "Quantiles": "Cuantiles",
424
421
  "Show this layer in the caption": "Mostrar esta capa en la leyenda",
425
- "Back to preview": "Back to preview",
426
- "Drawing": "Drawing",
427
- "Edit the title of the map": "Edit the title of the map",
428
- "Go to the homepage": "Go to the homepage",
429
- "Switch to edit mode": "Switch to edit mode",
430
- "Update who can see and edit the map": "Update who can see and edit the map",
431
- "View": "View"
422
+ "Back to preview": "Volver a la vista previa",
423
+ "Drawing": "Dibujo",
424
+ "Edit the title of the map": "Editar el título del mapa",
425
+ "Go to the homepage": "Ir a la página de inicio",
426
+ "Switch to edit mode": "Cambiar al modo de edición",
427
+ "Update who can see and edit the map": "Actualizar quién puede ver y editar el mapa",
428
+ "View": "Vista",
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 @@ const locale = {
46
46
  "Popup content template": "Hüpiku mall",
47
47
  "Side panel": "Külgpaneel",
48
48
  "Simplify": "Lihtsustamine",
49
- "Symbol or url": "Sümbol või URL",
50
49
  "Table": "Tabel",
51
50
  "always": "alati",
52
51
  "clear": "tühjenda",
@@ -171,7 +170,6 @@ const locale = {
171
170
  "Filter keys": "Filtri võtmed",
172
171
  "Format": "Vorming",
173
172
  "From zoom": "Suurendusastmest",
174
- "Full map data": "Kõik kaardi andmed",
175
173
  "Go to «{feature}»": "Mine «{feature}» juurde",
176
174
  "Heatmap intensity property": "Heatmap intensity property",
177
175
  "Heatmap radius": "Soojuskaardi raadius",
@@ -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("et", locale)
434
439
  L.setLocale("et")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Hüpiku mall",
47
47
  "Side panel": "Külgpaneel",
48
48
  "Simplify": "Lihtsustamine",
49
- "Symbol or url": "Sümbol või URL",
50
49
  "Table": "Tabel",
51
50
  "always": "alati",
52
51
  "clear": "tühjenda",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Filtri võtmed",
172
171
  "Format": "Vorming",
173
172
  "From zoom": "Suurendusastmest",
174
- "Full map data": "Kõik kaardi andmed",
175
173
  "Go to «{feature}»": "Mine «{feature}» juurde",
176
174
  "Heatmap intensity property": "Heatmap intensity property",
177
175
  "Heatmap radius": "Soojuskaardi raadius",
@@ -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
  }
@@ -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}»": "به «{ویژگی}» بروید",
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("fa_IR", locale)
434
439
  L.setLocale("fa_IR")