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
@@ -60,6 +60,16 @@ L.U.Layer.Cluster = L.MarkerClusterGroup.extend({
60
60
  this._layers = []
61
61
  },
62
62
 
63
+ onRemove: function (map) {
64
+ // In some situation, the onRemove is called before the layer is really
65
+ // added to the map: basically when combining a defaultView=data + max/minZoom
66
+ // and loading the map at a zoom outside of that zoom range.
67
+ // FIXME: move this upstream (_unbindEvents should accept a map parameter
68
+ // instead of relying on this._map)
69
+ this._map = map
70
+ return L.MarkerClusterGroup.prototype.onRemove.call(this, map)
71
+ },
72
+
63
73
  addLayer: function (layer) {
64
74
  this._layers.push(layer)
65
75
  return L.MarkerClusterGroup.prototype.addLayer.call(this, layer)
@@ -1337,13 +1347,14 @@ L.U.DataLayer = L.Evented.extend({
1337
1347
  const date = new Date(parseInt(data.at, 10))
1338
1348
  const content = `${date.toLocaleString(L.lang)} (${parseInt(data.size) / 1000}Kb)`
1339
1349
  const el = L.DomUtil.create('div', 'umap-datalayer-version', versionsContainer)
1340
- const a = L.DomUtil.createButton(
1350
+ const button = L.DomUtil.createButton(
1341
1351
  '',
1342
1352
  el,
1343
- L._('Restore this version'),
1353
+ '',
1344
1354
  () => this.restore(data.name),
1345
1355
  this
1346
1356
  )
1357
+ button.title = L._('Restore this version')
1347
1358
  L.DomUtil.add('span', '', el, content)
1348
1359
  }
1349
1360
 
@@ -68,10 +68,28 @@ L.U.Popup.Panel = L.U.Popup.extend({
68
68
  data: { html: this._content },
69
69
  actions: [this.allButton()],
70
70
  })
71
+
72
+ // fire events as in base class Popup.js:onAdd
73
+ map.fire('popupopen', { popup: this })
74
+ if (this._source) {
75
+ this._source.fire('popupopen', { popup: this }, true)
76
+ if (!(this._source instanceof L.Path)) {
77
+ this._source.on('preclick', L.DomEvent.stopPropagation)
78
+ }
79
+ }
71
80
  },
72
81
 
73
82
  onRemove: function (map) {
74
83
  map.ui.closePanel()
84
+
85
+ // fire events as in base class Popup.js:onRemove
86
+ map.fire('popupclose', { popup: this })
87
+ if (this._source) {
88
+ this._source.fire('popupclose', { popup: this }, true)
89
+ if (!(this._source instanceof L.Path)) {
90
+ this._source.off('preclick', L.DomEvent.stopPropagation)
91
+ }
92
+ }
75
93
  },
76
94
 
77
95
  update: function () {},
@@ -120,6 +138,9 @@ L.U.PopupTemplate.Default = L.Class.extend({
120
138
  nextLi = L.DomUtil.create('li', 'next', footer),
121
139
  next = this.feature.getNext(),
122
140
  prev = this.feature.getPrevious()
141
+ // Fixme: remove me when this is merged and released
142
+ // https://github.com/Leaflet/Leaflet/pull/9052
143
+ L.DomEvent.disableClickPropagation(footer)
123
144
  if (next)
124
145
  nextLi.title = L._('Go to «{feature}»', {
125
146
  feature: next.properties.name || L._('next'),
@@ -46,7 +46,6 @@ const locale = {
46
46
  "Popup content template": "የፖፕ-አፕ ኮንቴንት ተምሳሌ",
47
47
  "Side panel": "የጎን ፓኔል",
48
48
  "Simplify": "Simplify",
49
- "Symbol or url": "Symbol or url",
50
49
  "Table": "ሰንጠረዥ",
51
50
  "always": "always",
52
51
  "clear": "clear",
@@ -171,7 +170,6 @@ const locale = {
171
170
  "Filter keys": "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("am_ET", locale)
434
439
  L.setLocale("am_ET")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "የፖፕ-አፕ ኮንቴንት ተምሳሌ",
47
47
  "Side panel": "የጎን ፓኔል",
48
48
  "Simplify": "Simplify",
49
- "Symbol or url": "Symbol or url",
50
49
  "Table": "ሰንጠረዥ",
51
50
  "always": "always",
52
51
  "clear": "clear",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "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
  }
@@ -46,7 +46,6 @@ const locale = {
46
46
  "Popup content template": "Popup content template",
47
47
  "Side panel": "لوحة جانبية",
48
48
  "Simplify": "بسّط",
49
- "Symbol or url": "Symbol or url",
50
49
  "Table": "جدول",
51
50
  "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("ar", locale)
434
439
  L.setLocale("ar")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Popup content template",
47
47
  "Side panel": "لوحة جانبية",
48
48
  "Simplify": "بسّط",
49
- "Symbol or url": "Symbol or url",
50
49
  "Table": "جدول",
51
50
  "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": "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("ast", locale)
434
439
  L.setLocale("ast")
@@ -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": "Popup content template",
47
47
  "Side panel": "Страничен панел",
48
48
  "Simplify": "Опрости",
49
- "Symbol or url": "Символ или URL",
50
49
  "Table": "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": "От мащабиране",
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": "радиус на Топлинна карта",
@@ -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("bg", locale)
434
439
  L.setLocale("bg")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Popup content template",
47
47
  "Side panel": "Страничен панел",
48
48
  "Simplify": "Опрости",
49
- "Symbol or url": "Символ или URL",
50
49
  "Table": "Table",
51
50
  "always": "винаги",
52
51
  "clear": "изчисти",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Filter keys",
172
171
  "Format": "формат",
173
172
  "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": "радиус на Топлинна карта",
@@ -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": "Panell gostez",
48
48
  "Simplify": "Eeunaat",
49
- "Symbol or url": "Arouez pe URL",
50
49
  "Table": "Taolenn",
51
50
  "always": "bepred",
52
51
  "clear": "skarzhañ",
@@ -171,7 +170,6 @@ const locale = {
171
170
  "Filter keys": "Filter keys",
172
171
  "Format": "Furmad",
173
172
  "From zoom": "Adalek ar zoum",
174
- "Full map data": "Roadennoù klok ar gartenn",
175
173
  "Go to «{feature}»": "Mont da «{feature}»",
176
174
  "Heatmap intensity property": "Heatmap intensity property",
177
175
  "Heatmap radius": "Skin ar gartenn dermek",
@@ -402,7 +400,6 @@ const locale = {
402
400
  "Change": "Kemmañ",
403
401
  "Powered by uMap": "Lusket gant uMap",
404
402
  "Search": "Klask",
405
- "Toggle direct input (advanced)": "Toggle direct input (advanced)",
406
403
  "Datalayers": "Gwiskadoù",
407
404
  "Secret edit link:": "Liamm aozañ kuzh:",
408
405
  "Who can edit \"{layer}\"": "Piv a c'hall aozañ \"{layer}\"",
@@ -415,20 +412,28 @@ const locale = {
415
412
  "Choropleth mode": "Choropleth mode",
416
413
  "Choropleth property value": "Choropleth property value",
417
414
  "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
418
- "Equidistant": "Equidistant",
415
+ "Equidistant": "Keitpell",
419
416
  "Jenks-Fisher": "Jenks-Fisher",
420
417
  "K-means": "K-means",
421
- "Manual": "Manual",
422
- "Number of desired classes (default 5)": "Number of desired classes (default 5)",
423
- "Quantiles": "Quantiles",
424
- "Show this layer in the caption": "Show this layer in the caption",
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"
418
+ "Manual": "Sturlevr",
419
+ "Number of desired classes (default 5)": "Niver a renkadoù hoc'h eus c'hoant (5 dre ziouer)",
420
+ "Quantiles": "Kwantiloù",
421
+ "Show this layer in the caption": "Diskouez ar gwiskad-mañ en alc'hwez",
422
+ "Back to preview": "Distreiñ d'ar rakwel",
423
+ "Drawing": "Tres",
424
+ "Edit the title of the map": "Kemmañ titl ar gartenn",
425
+ "Go to the homepage": "Mont d'ar bajenn degemer",
426
+ "Switch to edit mode": "Mod aozañ",
427
+ "Update who can see and edit the map": "Termenañ piv a c'hall gwelet ha kemmañ ar gartenn",
428
+ "View": "Gwelet",
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("br", locale)
434
439
  L.setLocale("br")
@@ -46,7 +46,6 @@
46
46
  "Popup content template": "Popup content template",
47
47
  "Side panel": "Panell gostez",
48
48
  "Simplify": "Eeunaat",
49
- "Symbol or url": "Arouez pe URL",
50
49
  "Table": "Taolenn",
51
50
  "always": "bepred",
52
51
  "clear": "skarzhañ",
@@ -171,7 +170,6 @@
171
170
  "Filter keys": "Filter keys",
172
171
  "Format": "Furmad",
173
172
  "From zoom": "Adalek ar zoum",
174
- "Full map data": "Roadennoù klok ar gartenn",
175
173
  "Go to «{feature}»": "Mont da «{feature}»",
176
174
  "Heatmap intensity property": "Heatmap intensity property",
177
175
  "Heatmap radius": "Skin ar gartenn dermek",
@@ -402,7 +400,6 @@
402
400
  "Change": "Kemmañ",
403
401
  "Powered by uMap": "Lusket gant uMap",
404
402
  "Search": "Klask",
405
- "Toggle direct input (advanced)": "Toggle direct input (advanced)",
406
403
  "Datalayers": "Gwiskadoù",
407
404
  "Secret edit link:": "Liamm aozañ kuzh:",
408
405
  "Who can edit \"{layer}\"": "Piv a c'hall aozañ \"{layer}\"",
@@ -415,18 +412,26 @@
415
412
  "Choropleth mode": "Choropleth mode",
416
413
  "Choropleth property value": "Choropleth property value",
417
414
  "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
418
- "Equidistant": "Equidistant",
415
+ "Equidistant": "Keitpell",
419
416
  "Jenks-Fisher": "Jenks-Fisher",
420
417
  "K-means": "K-means",
421
- "Manual": "Manual",
422
- "Number of desired classes (default 5)": "Number of desired classes (default 5)",
423
- "Quantiles": "Quantiles",
424
- "Show this layer in the caption": "Show this layer in the caption",
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"
418
+ "Manual": "Sturlevr",
419
+ "Number of desired classes (default 5)": "Niver a renkadoù hoc'h eus c'hoant (5 dre ziouer)",
420
+ "Quantiles": "Kwantiloù",
421
+ "Show this layer in the caption": "Diskouez ar gwiskad-mañ en alc'hwez",
422
+ "Back to preview": "Distreiñ d'ar rakwel",
423
+ "Drawing": "Tres",
424
+ "Edit the title of the map": "Kemmañ titl ar gartenn",
425
+ "Go to the homepage": "Mont d'ar bajenn degemer",
426
+ "Switch to edit mode": "Mod aozañ",
427
+ "Update who can see and edit the map": "Termenañ piv a c'hall gwelet ha kemmañ ar gartenn",
428
+ "View": "Gwelet",
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": "Símbol o URL",
50
49
  "Table": "Taula",
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": "Del zoom",
174
- "Full map data": "Full map data",
175
173
  "Go to «{feature}»": "Vés a «{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("ca", locale)
434
439
  L.setLocale("ca")
@@ -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": "Símbol o URL",
50
49
  "Table": "Taula",
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": "Del zoom",
174
- "Full map data": "Full map data",
175
173
  "Go to «{feature}»": "Vés a «{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": "Š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 @@ const locale = {
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 @@ const locale = {
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,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("cs_CZ", locale)
434
439
  L.setLocale("cs_CZ")