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
@@ -1,11 +1,9 @@
1
1
  {
2
- "Add symbol": "Add symbol",
3
2
  "Allow scroll wheel zoom?": "Allow scroll wheel zoom?",
4
3
  "Automatic": "ස්වයංක්‍රීය",
5
4
  "Ball": "Ball",
6
5
  "Cancel": "අවලංගු",
7
6
  "Caption": "Caption",
8
- "Change symbol": "Change symbol",
9
7
  "Choose the data format": "Choose the data format",
10
8
  "Choose the layer of the feature": "Choose the layer of the feature",
11
9
  "Circle": "Circle",
@@ -46,10 +44,8 @@
46
44
  "On the right": "දකුණෙහි",
47
45
  "On the top": "මුදුනෙහි",
48
46
  "Popup content template": "Popup content template",
49
- "Set symbol": "Set symbol",
50
47
  "Side panel": "Side panel",
51
48
  "Simplify": "Simplify",
52
- "Symbol or url": "සංකේතය හෝ ඒ.ස.නි.",
53
49
  "Table": "වගුව",
54
50
  "always": "සැමවිට",
55
51
  "clear": "මකන්න",
@@ -80,8 +76,6 @@
80
76
  "## two hashes for second heading": "## two hashes for second heading",
81
77
  "### three hashes for third heading": "### three hashes for third heading",
82
78
  "**double star for bold**": "**double star for bold**",
83
- "*simple star for italic*": "*simple star for italic*",
84
- "--- for an horizontal rule": "--- for an horizontal rule",
85
79
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".",
86
80
  "About": "පිළිබඳව",
87
81
  "Action not allowed :(": "Action not allowed :(",
@@ -148,7 +142,6 @@
148
142
  "Delete this shape": "Delete this shape",
149
143
  "Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
150
144
  "Directions from here": "Directions from here",
151
- "Disable editing": "Disable editing",
152
145
  "Display measure": "Display measure",
153
146
  "Display on load": "Display on load",
154
147
  "Download": "Download",
@@ -166,21 +159,17 @@
166
159
  "Edit map settings": "Edit map settings",
167
160
  "Edit properties in a table": "Edit properties in a table",
168
161
  "Edit this feature": "Edit this feature",
169
- "Editing": "Editing",
170
162
  "Embed and share this map": "Embed and share this map",
171
163
  "Embed the map": "Embed the map",
172
164
  "Empty": "Empty",
173
- "Enable editing": "Enable editing",
174
165
  "Error in the tilelayer URL": "Error in the tilelayer URL",
175
166
  "Error while fetching {url}": "Error while fetching {url}",
176
167
  "Exit Fullscreen": "Exit Fullscreen",
177
168
  "Extract shape to separate feature": "Extract shape to separate feature",
178
169
  "Fetch data each time map view changes.": "Fetch data each time map view changes.",
179
170
  "Filter keys": "Filter keys",
180
- "Filter…": "Filter…",
181
171
  "Format": "Format",
182
172
  "From zoom": "From zoom",
183
- "Full map data": "Full map data",
184
173
  "Go to «{feature}»": "Go to «{feature}»",
185
174
  "Heatmap intensity property": "Heatmap intensity property",
186
175
  "Heatmap radius": "Heatmap radius",
@@ -254,7 +243,6 @@
254
243
  "Save this location as new feature": "Save this location as new feature",
255
244
  "Search a place name": "Search a place name",
256
245
  "Search location": "Search location",
257
- "Secret edit link is:<br>{link}": "Secret edit link is:<br>{link}",
258
246
  "See all": "See all",
259
247
  "See data layers": "See data layers",
260
248
  "See full screen": "See full screen",
@@ -277,7 +265,6 @@
277
265
  "TMS format": "TMS format",
278
266
  "Text color for the cluster label": "Text color for the cluster label",
279
267
  "Text formatting": "Text formatting",
280
- "The name of the property to use as feature label (ex.: \"nom\")": "The name of the property to use as feature label (ex.: \"nom\")",
281
268
  "To use if remote server doesn't allow cross domain (slower)": "To use if remote server doesn't allow cross domain (slower)",
282
269
  "To zoom": "To zoom",
283
270
  "Transfer shape to edited feature": "Transfer shape to edited feature",
@@ -304,7 +291,6 @@
304
291
  "Will be displayed in the bottom right corner of the map": "Will be displayed in the bottom right corner of the map",
305
292
  "Will be visible in the caption of the map": "Will be visible in the caption of the map",
306
293
  "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.",
307
- "You have unsaved changes.": "You have unsaved changes.",
308
294
  "Zoom in": "Zoom in",
309
295
  "Zoom level for automatic zooms": "Zoom level for automatic zooms",
310
296
  "Zoom out": "Zoom out",
@@ -352,14 +338,10 @@
352
338
  "Open current feature on load": "Open current feature on load",
353
339
  "Permalink": "Permalink",
354
340
  "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
355
- "Advanced filter keys": "Advanced filter keys",
356
- "Comma separated list of properties to use for checkbox filtering": "Comma separated list of properties to use for checkbox filtering",
357
- "Data filters": "Data filters",
358
341
  "Do you want to display caption menus?": "Do you want to display caption menus?",
359
342
  "Example: key1,key2,key3": "Example: key1,key2,key3",
360
343
  "Invalid latitude or longitude": "Invalid latitude or longitude",
361
344
  "Invalide property name: {name}": "Invalide property name: {name}",
362
- "No results for these filters": "No results for these filters",
363
345
  "Permanent credits": "Permanent credits",
364
346
  "Permanent credits background": "Permanent credits background",
365
347
  "Select data": "Select data",
@@ -396,7 +378,60 @@
396
378
  "Send me the link": "Send me the link",
397
379
  "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
398
380
  "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
399
- "Issue reaching that URL (network problem or CORS protection)": "Issue reaching that URL (network problem or CORS protection)",
400
381
  "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
401
- "icon opacity": "icon opacity"
382
+ "icon opacity": "icon opacity",
383
+ "*single star for italic*": "*single star for italic*",
384
+ "--- for a horizontal rule": "--- for a horizontal rule",
385
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
386
+ "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)",
387
+ "Default view": "Default view",
388
+ "Facet keys": "Facet keys",
389
+ "Facet search": "Facet search",
390
+ "Feature properties": "Feature properties",
391
+ "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
392
+ "Latest feature": "Latest feature",
393
+ "No results for these facets": "No results for these facets",
394
+ "Saved center and zoom": "Saved center and zoom",
395
+ "User location": "User location",
396
+ "Visibility: {status}": "Visibility: {status}",
397
+ "Fit all data": "Fit all data",
398
+ "Verify remote URL": "Verify remote URL",
399
+ "Add": "Add",
400
+ "Change": "Change",
401
+ "Powered by uMap": "Powered by uMap",
402
+ "Search": "Search",
403
+ "Datalayers": "Datalayers",
404
+ "Secret edit link:": "Secret edit link:",
405
+ "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
406
+ "Current map view": "Current map view",
407
+ "Filter": "Filter",
408
+ "Choropleth": "Choropleth",
409
+ "Choropleth breakpoints": "Choropleth breakpoints",
410
+ "Choropleth classes": "Choropleth classes",
411
+ "Choropleth color palette": "Choropleth color palette",
412
+ "Choropleth mode": "Choropleth mode",
413
+ "Choropleth property value": "Choropleth property value",
414
+ "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
415
+ "Equidistant": "Equidistant",
416
+ "Jenks-Fisher": "Jenks-Fisher",
417
+ "K-means": "K-means",
418
+ "Manual": "Manual",
419
+ "Number of desired classes (default 5)": "Number of desired classes (default 5)",
420
+ "Quantiles": "Quantiles",
421
+ "Show this layer in the caption": "Show this layer in the caption",
422
+ "Back to preview": "Back to preview",
423
+ "Drawing": "Drawing",
424
+ "Edit the title of the map": "Edit the title of the map",
425
+ "Go to the homepage": "Go to the homepage",
426
+ "Switch to edit mode": "Switch to edit mode",
427
+ "Update who can see and edit the map": "Update who can see and edit the map",
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"
402
437
  }
@@ -46,7 +46,6 @@ const locale = {
46
46
  "Popup content template": "Šablóna obsahu bubliny",
47
47
  "Side panel": "Bočný panel",
48
48
  "Simplify": "Zjednodušiť",
49
- "Symbol or url": "Symbol or url",
50
49
  "Table": "Tabuľka",
51
50
  "always": "vždy",
52
51
  "clear": "vyčistiť",
@@ -171,7 +170,6 @@ const locale = {
171
170
  "Filter keys": "Kľúče filtra",
172
171
  "Format": "Formát",
173
172
  "From zoom": "Max. oddialenie",
174
- "Full map data": "Údaje celej mapy",
175
173
  "Go to «{feature}»": "Prejsť na «{feature}»",
176
174
  "Heatmap intensity property": "Vlastnosti intenzity heatmapy",
177
175
  "Heatmap radius": "Polomer teplotnej mapy",
@@ -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("sk_SK", locale)
434
439
  L.setLocale("sk_SK")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Šablóna obsahu bubliny",
47
47
  "Side panel": "Bočný panel",
48
48
  "Simplify": "Zjednodušiť",
49
- "Symbol or url": "Symbol or url",
50
49
  "Table": "Tabuľka",
51
50
  "always": "vždy",
52
51
  "clear": "vyčistiť",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Kľúče filtra",
172
171
  "Format": "Formát",
173
172
  "From zoom": "Max. oddialenie",
174
- "Full map data": "Údaje celej mapy",
175
173
  "Go to «{feature}»": "Prejsť na «{feature}»",
176
174
  "Heatmap intensity property": "Vlastnosti intenzity heatmapy",
177
175
  "Heatmap radius": "Polomer teplotnej mapy",
@@ -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": "Predloga pojavne vsebine",
47
47
  "Side panel": "Bočno okno",
48
48
  "Simplify": "Poenostavi",
49
- "Symbol or url": "Symbol or url",
50
49
  "Table": "Razpredelnica",
51
50
  "always": "vedno",
52
51
  "clear": "počisti",
@@ -171,7 +170,6 @@ const locale = {
171
170
  "Filter keys": "Filtri",
172
171
  "Format": "zapis",
173
172
  "From zoom": "Iz približanja",
174
- "Full map data": "Polni podatki zemljevida",
175
173
  "Go to «{feature}»": "Skoči na »{feature}«",
176
174
  "Heatmap intensity property": "Lastnosti jakosti vročinskih točk",
177
175
  "Heatmap radius": "Radij vročinskih točk",
@@ -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("sl", locale)
434
439
  L.setLocale("sl")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Predloga pojavne vsebine",
47
47
  "Side panel": "Bočno okno",
48
48
  "Simplify": "Poenostavi",
49
- "Symbol or url": "Symbol or url",
50
49
  "Table": "Razpredelnica",
51
50
  "always": "vedno",
52
51
  "clear": "počisti",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Filtri",
172
171
  "Format": "zapis",
173
172
  "From zoom": "Iz približanja",
174
- "Full map data": "Polni podatki zemljevida",
175
173
  "Go to «{feature}»": "Skoči na »{feature}«",
176
174
  "Heatmap intensity property": "Lastnosti jakosti vročinskih točk",
177
175
  "Heatmap radius": "Radij vročinskih točk",
@@ -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": "Симбол или 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": "Формат",
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("sr", locale)
434
439
  L.setLocale("sr")
@@ -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": "Формат",
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": "Mall för popup-innehåll",
47
47
  "Side panel": "Sidopanel",
48
48
  "Simplify": "Förenkla",
49
- "Symbol or url": "Symbol eller URL",
50
49
  "Table": "Tabell",
51
50
  "always": "alltid",
52
51
  "clear": "återställ",
@@ -171,7 +170,6 @@ const locale = {
171
170
  "Filter keys": "Filternycklar",
172
171
  "Format": "Format",
173
172
  "From zoom": "Från zoom",
174
- "Full map data": "Komplett kartdata",
175
173
  "Go to «{feature}»": "Gå till «{feature}»",
176
174
  "Heatmap intensity property": "Värmekartans intensitet",
177
175
  "Heatmap radius": "Värmekartans radie",
@@ -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("sv", locale)
434
439
  L.setLocale("sv")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Mall för popup-innehåll",
47
47
  "Side panel": "Sidopanel",
48
48
  "Simplify": "Förenkla",
49
- "Symbol or url": "Symbol eller URL",
50
49
  "Table": "Tabell",
51
50
  "always": "alltid",
52
51
  "clear": "återställ",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Filternycklar",
172
171
  "Format": "Format",
173
172
  "From zoom": "Från zoom",
174
- "Full map data": "Komplett kartdata",
175
173
  "Go to «{feature}»": "Gå till «{feature}»",
176
174
  "Heatmap intensity property": "Värmekartans intensitet",
177
175
  "Heatmap radius": "Värmekartans radie",
@@ -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("th_TH", locale)
434
439
  L.setLocale("th_TH")
@@ -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": "Pop-up içerik şablonu",
47
47
  "Side panel": "Yan panel",
48
48
  "Simplify": "Basitleştir",
49
- "Symbol or url": "Sembol veya bağlantı",
50
49
  "Table": "Tablo",
51
50
  "always": "her zaman",
52
51
  "clear": "temizle",
@@ -171,7 +170,6 @@ const locale = {
171
170
  "Filter keys": "Anahtarları filtrele",
172
171
  "Format": "Format",
173
172
  "From zoom": "Yakınlaştırmadan",
174
- "Full map data": "Tam harita verileri",
175
173
  "Go to «{feature}»": "«{feature}» git",
176
174
  "Heatmap intensity property": "Isı haritası yoğunluk özelliği",
177
175
  "Heatmap radius": "Isı haritası yarıçapı",
@@ -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("tr", locale)
434
439
  L.setLocale("tr")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Pop-up içerik şablonu",
47
47
  "Side panel": "Yan panel",
48
48
  "Simplify": "Basitleştir",
49
- "Symbol or url": "Sembol veya bağlantı",
50
49
  "Table": "Tablo",
51
50
  "always": "her zaman",
52
51
  "clear": "temizle",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Anahtarları filtrele",
172
171
  "Format": "Format",
173
172
  "From zoom": "Yakınlaştırmadan",
174
- "Full map data": "Tam harita verileri",
175
173
  "Go to «{feature}»": "«{feature}» git",
176
174
  "Heatmap intensity property": "Isı haritası yoğunluk özelliği",
177
175
  "Heatmap radius": "Isı haritası yarıçapı",
@@ -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
  }