umap-project 1.14.0a4__py3-none-any.whl → 2.0.0a0__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 (226) hide show
  1. umap/__init__.py +1 -1
  2. umap/decorators.py +0 -14
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +137 -85
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +136 -84
  7. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/el/LC_MESSAGES/django.po +136 -84
  9. umap/locale/en/LC_MESSAGES/django.po +128 -88
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +136 -84
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +131 -91
  14. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/hu/LC_MESSAGES/django.po +137 -85
  16. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/it/LC_MESSAGES/django.po +136 -84
  18. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/ms/LC_MESSAGES/django.po +136 -84
  20. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/pl/LC_MESSAGES/django.po +136 -84
  22. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/sv/LC_MESSAGES/django.po +135 -83
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +143 -91
  26. umap/models.py +23 -1
  27. umap/settings/__init__.py +1 -4
  28. umap/settings/base.py +1 -0
  29. umap/static/umap/base.css +5 -0
  30. umap/static/umap/content.css +185 -13
  31. umap/static/umap/favicons/icon.svg +2 -2
  32. umap/static/umap/img/edit.svg +3 -3
  33. umap/static/umap/img/icon-delete.svg +4 -0
  34. umap/static/umap/img/icon-download.svg +13 -0
  35. umap/static/umap/img/icon-duplicate.svg +5 -0
  36. umap/static/umap/img/icon-edit.svg +12 -0
  37. umap/static/umap/img/icon-share.svg +11 -0
  38. umap/static/umap/img/icon-view.svg +12 -0
  39. umap/static/umap/img/logo.svg +2 -2
  40. umap/static/umap/img/logo_small.svg +2 -2
  41. umap/static/umap/img/marker.svg +4 -0
  42. umap/static/umap/img/opensource.svg +2 -2
  43. umap/static/umap/img/osm.svg +2 -2
  44. umap/static/umap/js/components/fragment.js +1 -1
  45. umap/static/umap/js/modules/browser.js +159 -0
  46. umap/static/umap/js/modules/global.js +3 -1
  47. umap/static/umap/js/modules/request.js +155 -0
  48. umap/static/umap/js/umap.autocomplete.js +28 -38
  49. umap/static/umap/js/umap.controls.js +73 -58
  50. umap/static/umap/js/umap.core.js +4 -9
  51. umap/static/umap/js/umap.datalayer.permissions.js +13 -12
  52. umap/static/umap/js/umap.features.js +51 -49
  53. umap/static/umap/js/umap.forms.js +19 -19
  54. umap/static/umap/js/umap.icon.js +17 -17
  55. umap/static/umap/js/umap.importer.js +2 -1
  56. umap/static/umap/js/umap.js +242 -291
  57. umap/static/umap/js/umap.layer.js +173 -140
  58. umap/static/umap/js/umap.permissions.js +24 -25
  59. umap/static/umap/js/umap.popup.js +14 -14
  60. umap/static/umap/js/umap.share.js +4 -4
  61. umap/static/umap/js/umap.slideshow.js +4 -4
  62. umap/static/umap/js/umap.tableeditor.js +2 -2
  63. umap/static/umap/js/umap.ui.js +1 -1
  64. umap/static/umap/locale/am_ET.js +1 -11
  65. umap/static/umap/locale/am_ET.json +1 -11
  66. umap/static/umap/locale/ar.js +1 -11
  67. umap/static/umap/locale/ar.json +1 -11
  68. umap/static/umap/locale/ast.js +1 -11
  69. umap/static/umap/locale/ast.json +1 -11
  70. umap/static/umap/locale/bg.js +1 -11
  71. umap/static/umap/locale/bg.json +1 -11
  72. umap/static/umap/locale/br.js +1 -11
  73. umap/static/umap/locale/br.json +1 -11
  74. umap/static/umap/locale/ca.js +1 -11
  75. umap/static/umap/locale/ca.json +1 -11
  76. umap/static/umap/locale/cs_CZ.js +1 -11
  77. umap/static/umap/locale/cs_CZ.json +1 -11
  78. umap/static/umap/locale/da.js +1 -11
  79. umap/static/umap/locale/da.json +1 -11
  80. umap/static/umap/locale/de.js +1 -11
  81. umap/static/umap/locale/de.json +1 -11
  82. umap/static/umap/locale/el.js +1 -11
  83. umap/static/umap/locale/el.json +1 -11
  84. umap/static/umap/locale/en.js +1 -11
  85. umap/static/umap/locale/en.json +1 -11
  86. umap/static/umap/locale/en_US.json +1 -11
  87. umap/static/umap/locale/es.js +1 -11
  88. umap/static/umap/locale/es.json +1 -11
  89. umap/static/umap/locale/et.js +1 -11
  90. umap/static/umap/locale/et.json +1 -11
  91. umap/static/umap/locale/fa_IR.js +6 -16
  92. umap/static/umap/locale/fa_IR.json +6 -16
  93. umap/static/umap/locale/fi.js +1 -11
  94. umap/static/umap/locale/fi.json +1 -11
  95. umap/static/umap/locale/fr.js +1 -11
  96. umap/static/umap/locale/fr.json +1 -11
  97. umap/static/umap/locale/gl.js +1 -11
  98. umap/static/umap/locale/gl.json +1 -11
  99. umap/static/umap/locale/he.js +1 -11
  100. umap/static/umap/locale/he.json +1 -11
  101. umap/static/umap/locale/hr.js +1 -11
  102. umap/static/umap/locale/hr.json +1 -11
  103. umap/static/umap/locale/hu.js +1 -11
  104. umap/static/umap/locale/hu.json +1 -11
  105. umap/static/umap/locale/id.js +1 -11
  106. umap/static/umap/locale/id.json +1 -11
  107. umap/static/umap/locale/is.js +1 -11
  108. umap/static/umap/locale/is.json +1 -11
  109. umap/static/umap/locale/it.js +1 -11
  110. umap/static/umap/locale/it.json +1 -11
  111. umap/static/umap/locale/ja.js +1 -11
  112. umap/static/umap/locale/ja.json +1 -11
  113. umap/static/umap/locale/ko.js +1 -11
  114. umap/static/umap/locale/ko.json +1 -11
  115. umap/static/umap/locale/lt.js +1 -11
  116. umap/static/umap/locale/lt.json +1 -11
  117. umap/static/umap/locale/ms.js +1 -11
  118. umap/static/umap/locale/ms.json +1 -11
  119. umap/static/umap/locale/nl.js +1 -11
  120. umap/static/umap/locale/nl.json +1 -11
  121. umap/static/umap/locale/no.js +1 -11
  122. umap/static/umap/locale/no.json +1 -11
  123. umap/static/umap/locale/pl.js +1 -11
  124. umap/static/umap/locale/pl.json +1 -11
  125. umap/static/umap/locale/pl_PL.json +1 -11
  126. umap/static/umap/locale/pt.js +1 -11
  127. umap/static/umap/locale/pt.json +1 -11
  128. umap/static/umap/locale/pt_BR.js +1 -11
  129. umap/static/umap/locale/pt_BR.json +1 -11
  130. umap/static/umap/locale/pt_PT.js +1 -11
  131. umap/static/umap/locale/pt_PT.json +1 -11
  132. umap/static/umap/locale/ro.js +1 -11
  133. umap/static/umap/locale/ro.json +1 -11
  134. umap/static/umap/locale/ru.js +1 -11
  135. umap/static/umap/locale/ru.json +1 -11
  136. umap/static/umap/locale/sk_SK.js +1 -11
  137. umap/static/umap/locale/sk_SK.json +1 -11
  138. umap/static/umap/locale/sl.js +1 -11
  139. umap/static/umap/locale/sl.json +1 -11
  140. umap/static/umap/locale/sr.js +1 -11
  141. umap/static/umap/locale/sr.json +1 -11
  142. umap/static/umap/locale/sv.js +1 -11
  143. umap/static/umap/locale/sv.json +1 -11
  144. umap/static/umap/locale/th_TH.js +1 -11
  145. umap/static/umap/locale/th_TH.json +1 -11
  146. umap/static/umap/locale/tr.js +1 -11
  147. umap/static/umap/locale/tr.json +1 -11
  148. umap/static/umap/locale/uk_UA.js +1 -11
  149. umap/static/umap/locale/uk_UA.json +1 -11
  150. umap/static/umap/locale/vi.js +1 -11
  151. umap/static/umap/locale/vi.json +1 -11
  152. umap/static/umap/locale/vi_VN.json +1 -11
  153. umap/static/umap/locale/zh.js +1 -11
  154. umap/static/umap/locale/zh.json +1 -11
  155. umap/static/umap/locale/zh_CN.json +1 -11
  156. umap/static/umap/locale/zh_TW.Big5.json +1 -11
  157. umap/static/umap/locale/zh_TW.js +17 -27
  158. umap/static/umap/locale/zh_TW.json +17 -27
  159. umap/static/umap/map.css +2 -2
  160. umap/static/umap/nav.css +2 -1
  161. umap/static/umap/test/.eslintrc +0 -1
  162. umap/static/umap/test/Choropleth.js +29 -27
  163. umap/static/umap/test/DataLayer.js +207 -239
  164. umap/static/umap/test/Feature.js +33 -58
  165. umap/static/umap/test/Map.Export.js +11 -11
  166. umap/static/umap/test/Map.js +66 -67
  167. umap/static/umap/test/Marker.js +36 -32
  168. umap/static/umap/test/Polygon.js +95 -95
  169. umap/static/umap/test/Polyline.js +31 -31
  170. umap/static/umap/test/TableEditor.js +29 -25
  171. umap/static/umap/test/_pre.js +2 -7
  172. umap/static/umap/test/index.html +4 -4
  173. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.css +54 -0
  174. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.js +586 -0
  175. umap/static/umap/vendors/csv2geojson/index.js +259 -0
  176. umap/static/umap/vendors/dompurify/purify.js +1633 -0
  177. umap/static/umap/vendors/locatecontrol/L.Control.Locate.css +63 -0
  178. umap/static/umap/vendors/locatecontrol/L.Control.Locate.js +950 -0
  179. umap/static/umap/vendors/minimap/Control.MiniMap.css +88 -0
  180. umap/static/umap/vendors/minimap/Control.MiniMap.js +352 -0
  181. umap/static/umap/vendors/togeojson/togeojson.js +2 -0
  182. umap/templates/auth/user_form.html +3 -2
  183. umap/templates/base.html +1 -0
  184. umap/templates/registration/login.html +51 -36
  185. umap/templates/umap/about_summary.html +1 -1
  186. umap/templates/umap/branding.html +3 -0
  187. umap/templates/umap/content.html +15 -39
  188. umap/templates/umap/header.html +0 -0
  189. umap/templates/umap/home.html +4 -2
  190. umap/templates/umap/js.html +0 -1
  191. umap/templates/umap/map_detail.html +9 -0
  192. umap/templates/umap/map_init.html +1 -1
  193. umap/templates/umap/map_messages.html +4 -2
  194. umap/templates/umap/map_table.html +130 -69
  195. umap/templates/umap/navigation.html +2 -4
  196. umap/templates/umap/user_dashboard.html +29 -6
  197. umap/tests/base.py +1 -1
  198. umap/tests/integration/conftest.py +18 -0
  199. umap/tests/integration/test_anonymous_owned_map.py +6 -3
  200. umap/tests/integration/test_browser.py +166 -6
  201. umap/tests/integration/test_collaborative_editing.py +142 -0
  202. umap/tests/integration/test_dashboard.py +17 -0
  203. umap/tests/integration/test_edit_datalayer.py +4 -3
  204. umap/tests/integration/test_export_map.py +1 -1
  205. umap/tests/integration/test_import.py +9 -4
  206. umap/tests/integration/test_map.py +64 -0
  207. umap/tests/integration/test_map_preview.py +75 -0
  208. umap/tests/integration/test_owned_map.py +11 -25
  209. umap/tests/integration/test_picto.py +3 -3
  210. umap/tests/integration/test_querystring.py +52 -0
  211. umap/tests/integration/test_share.py +22 -0
  212. umap/tests/test_map_views.py +157 -14
  213. umap/tests/test_merge_features.py +5 -5
  214. umap/tests/test_views.py +50 -11
  215. umap/urls.py +6 -12
  216. umap/utils.py +1 -1
  217. umap/views.py +170 -47
  218. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/METADATA +13 -15
  219. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/RECORD +222 -200
  220. umap/static/umap/js/umap.browser.js +0 -148
  221. umap/static/umap/js/umap.xhr.js +0 -304
  222. umap/static/umap/test/Controls.js +0 -100
  223. umap/static/umap/test/Map.Init.js +0 -46
  224. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/WHEEL +0 -0
  225. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/entry_points.txt +0 -0
  226. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/licenses/LICENSE +0 -0
@@ -78,7 +78,6 @@ const locale = {
78
78
  "**double star for bold**": "двойна звезда за удебеление",
79
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\".",
80
80
  "About": "относно",
81
- "Action not allowed :(": "Не позволено действие",
82
81
  "Activate slideshow mode": "Activate slideshow mode",
83
82
  "Add a layer": "Добавете слой",
84
83
  "Add a line to the current multi": "Add a line to the current multi",
@@ -88,7 +87,6 @@ const locale = {
88
87
  "Advanced properties": "Разширени свойства",
89
88
  "All properties are imported.": "Всички свойства са внесени.",
90
89
  "Allow interactions": "Allow interactions",
91
- "An error occured": "Възникна грешка",
92
90
  "Are you sure you want to cancel your changes?": "Наистина ли искате да отмените вашите промени?",
93
91
  "Are you sure you want to clone this map and all its datalayers?": "Наистина ли искате да клонирате тази карта и всички негови слоеве данни ?",
94
92
  "Are you sure you want to delete the feature?": "Сигурни ли сте, че искате да изтриете тази функция?",
@@ -99,7 +97,6 @@ const locale = {
99
97
  "Attach the map to my account": "Attach the map to my account",
100
98
  "Auto": "Auto",
101
99
  "Autostart when map is loaded": "Autostart when map is loaded",
102
- "Bring feature to center": "Bring feature to center",
103
100
  "Browse data": "Преглед данни",
104
101
  "Cancel edits": "Отмени редакциите",
105
102
  "Center map on your location": "Center map on your location",
@@ -159,7 +156,6 @@ const locale = {
159
156
  "Embed the map": "Вграждане на карта",
160
157
  "Empty": "Празно",
161
158
  "Error in the tilelayer URL": "Грешка в URL адреса на слоя",
162
- "Error while fetching {url}": "Error while fetching {url}",
163
159
  "Exit Fullscreen": "Exit Fullscreen",
164
160
  "Extract shape to separate feature": "Extract shape to separate feature",
165
161
  "Fetch data each time map view changes.": "Fetch data each time map view changes.",
@@ -219,8 +215,6 @@ const locale = {
219
215
  "Please choose a format": "Please choose a format",
220
216
  "Please enter the name of the property": "Please enter the name of the property",
221
217
  "Please enter the new name of this property": "Please enter the new name of this property",
222
- "Problem in the response": "Проблем в отзивите",
223
- "Problem in the response format": "Проблем във формата на отговор",
224
218
  "Properties imported:": "Внесени свойства:",
225
219
  "Provide an URL here": "Представете URL тук",
226
220
  "Proxy request": "Proxy request",
@@ -377,7 +371,6 @@ const locale = {
377
371
  "Facet keys": "Facet keys",
378
372
  "Facet search": "Facet search",
379
373
  "Feature properties": "Feature properties",
380
- "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
381
374
  "Latest feature": "Latest feature",
382
375
  "No results for these facets": "No results for these facets",
383
376
  "Saved center and zoom": "Saved center and zoom",
@@ -392,8 +385,6 @@ const locale = {
392
385
  "Datalayers": "Datalayers",
393
386
  "Secret edit link:": "Secret edit link:",
394
387
  "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
395
- "Current map view": "Current map view",
396
- "Filter": "Filter",
397
388
  "Choropleth": "Choropleth",
398
389
  "Choropleth breakpoints": "Choropleth breakpoints",
399
390
  "Choropleth classes": "Choropleth classes",
@@ -440,8 +431,7 @@ const locale = {
440
431
  "Type a place name or coordinates": "Type a place name or coordinates",
441
432
  "copy": "copy",
442
433
  "full backup": "full backup",
443
- "settings": "settings",
444
- "{count} features in this layer": "{count} features in this layer"
434
+ "settings": "settings"
445
435
  }
446
436
  L.registerLocale("bg", locale)
447
437
  L.setLocale("bg")
@@ -78,7 +78,6 @@
78
78
  "**double star for bold**": "двойна звезда за удебеление",
79
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\".",
80
80
  "About": "относно",
81
- "Action not allowed :(": "Не позволено действие",
82
81
  "Activate slideshow mode": "Activate slideshow mode",
83
82
  "Add a layer": "Добавете слой",
84
83
  "Add a line to the current multi": "Add a line to the current multi",
@@ -88,7 +87,6 @@
88
87
  "Advanced properties": "Разширени свойства",
89
88
  "All properties are imported.": "Всички свойства са внесени.",
90
89
  "Allow interactions": "Allow interactions",
91
- "An error occured": "Възникна грешка",
92
90
  "Are you sure you want to cancel your changes?": "Наистина ли искате да отмените вашите промени?",
93
91
  "Are you sure you want to clone this map and all its datalayers?": "Наистина ли искате да клонирате тази карта и всички негови слоеве данни ?",
94
92
  "Are you sure you want to delete the feature?": "Сигурни ли сте, че искате да изтриете тази функция?",
@@ -99,7 +97,6 @@
99
97
  "Attach the map to my account": "Attach the map to my account",
100
98
  "Auto": "Auto",
101
99
  "Autostart when map is loaded": "Autostart when map is loaded",
102
- "Bring feature to center": "Bring feature to center",
103
100
  "Browse data": "Преглед данни",
104
101
  "Cancel edits": "Отмени редакциите",
105
102
  "Center map on your location": "Center map on your location",
@@ -159,7 +156,6 @@
159
156
  "Embed the map": "Вграждане на карта",
160
157
  "Empty": "Празно",
161
158
  "Error in the tilelayer URL": "Грешка в URL адреса на слоя",
162
- "Error while fetching {url}": "Error while fetching {url}",
163
159
  "Exit Fullscreen": "Exit Fullscreen",
164
160
  "Extract shape to separate feature": "Extract shape to separate feature",
165
161
  "Fetch data each time map view changes.": "Fetch data each time map view changes.",
@@ -219,8 +215,6 @@
219
215
  "Please choose a format": "Please choose a format",
220
216
  "Please enter the name of the property": "Please enter the name of the property",
221
217
  "Please enter the new name of this property": "Please enter the new name of this property",
222
- "Problem in the response": "Проблем в отзивите",
223
- "Problem in the response format": "Проблем във формата на отговор",
224
218
  "Properties imported:": "Внесени свойства:",
225
219
  "Provide an URL here": "Представете URL тук",
226
220
  "Proxy request": "Proxy request",
@@ -377,7 +371,6 @@
377
371
  "Facet keys": "Facet keys",
378
372
  "Facet search": "Facet search",
379
373
  "Feature properties": "Feature properties",
380
- "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
381
374
  "Latest feature": "Latest feature",
382
375
  "No results for these facets": "No results for these facets",
383
376
  "Saved center and zoom": "Saved center and zoom",
@@ -392,8 +385,6 @@
392
385
  "Datalayers": "Datalayers",
393
386
  "Secret edit link:": "Secret edit link:",
394
387
  "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
395
- "Current map view": "Current map view",
396
- "Filter": "Filter",
397
388
  "Choropleth": "Choropleth",
398
389
  "Choropleth breakpoints": "Choropleth breakpoints",
399
390
  "Choropleth classes": "Choropleth classes",
@@ -440,6 +431,5 @@
440
431
  "Type a place name or coordinates": "Type a place name or coordinates",
441
432
  "copy": "copy",
442
433
  "full backup": "full backup",
443
- "settings": "settings",
444
- "{count} features in this layer": "{count} features in this layer"
434
+ "settings": "settings"
445
435
  }
@@ -78,7 +78,6 @@ const locale = {
78
78
  "**double star for bold**": "**div steredennig evit tevaat**",
79
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\".",
80
80
  "About": "Diwar-benn",
81
- "Action not allowed :(": "N'oc'h ket aotreet d'ober-se :(",
82
81
  "Activate slideshow mode": "Gweredekaat ar mod diaporama",
83
82
  "Add a layer": "Ouzhpennañ ur gwiskad",
84
83
  "Add a line to the current multi": "Add a line to the current multi",
@@ -88,7 +87,6 @@ const locale = {
88
87
  "Advanced properties": "Perzhioù araokaet",
89
88
  "All properties are imported.": "Enporzhiet eo bet an holl berzhioù.",
90
89
  "Allow interactions": "Aotren an etreoberiadennoù",
91
- "An error occured": "Ur fazi ez eus bet",
92
90
  "Are you sure you want to cancel your changes?": "Ha sur oc'h e faot deoc'h nullañ ho kemmoù?",
93
91
  "Are you sure you want to clone this map and all its datalayers?": "Ha sur oc'h e faot deoc'h arredaoliñ ar gartenn-mañ hag hec'h holl wiskadoù roadennoù?",
94
92
  "Are you sure you want to delete the feature?": "Ha sur oc'h e faot deoc'h dilemel an elfenn-mañ?",
@@ -99,7 +97,6 @@ const locale = {
99
97
  "Attach the map to my account": "Stagañ ar gartenn d'am c'hont",
100
98
  "Auto": "Emgefre",
101
99
  "Autostart when map is loaded": "Loc'hañ pa vez karget ar gartenn",
102
- "Bring feature to center": "Kreizañ ar gartenn war an elfenn-mañ",
103
100
  "Browse data": "Furchal ar roadennoù",
104
101
  "Cancel edits": "Nullañ ar c'hemmoù",
105
102
  "Center map on your location": "Kreizañ ar gartenn war al lec'h m'emaoc'h",
@@ -159,7 +156,6 @@ const locale = {
159
156
  "Embed the map": "Enframmañ ar gartenn",
160
157
  "Empty": "Goullonderiñ",
161
158
  "Error in the tilelayer URL": "Ur fazi zo en URL foñs ar gartenn",
162
- "Error while fetching {url}": "Ur fazi ez eus bet en ur c'hervel an URL {url}",
163
159
  "Exit Fullscreen": "Kuitaat ar mod skramm a-bezh",
164
160
  "Extract shape to separate feature": "Extract shape to separate feature",
165
161
  "Fetch data each time map view changes.": "Fetch data each time map view changes.",
@@ -219,8 +215,6 @@ const locale = {
219
215
  "Please choose a format": "Diuzit ur furmad mar plij",
220
216
  "Please enter the name of the property": "Enankit anv ar perzh mar plij",
221
217
  "Please enter the new name of this property": "Enankit anv nevez ar perzh-mañ mar plij",
222
- "Problem in the response": "Kudenn e respont ar servijer",
223
- "Problem in the response format": "Kudenn gant furmadiñ ar respont",
224
218
  "Properties imported:": "Perzhioù enporzhiet:",
225
219
  "Provide an URL here": "Pourchas un URL amañ",
226
220
  "Proxy request": "Reked proksi",
@@ -377,7 +371,6 @@ const locale = {
377
371
  "Facet keys": "Facet keys",
378
372
  "Facet search": "Facet search",
379
373
  "Feature properties": "Perzhioù an elfenn",
380
- "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
381
374
  "Latest feature": "Elfenn diwezhañ",
382
375
  "No results for these facets": "No results for these facets",
383
376
  "Saved center and zoom": "Kreiz ha zoum enrollet",
@@ -392,8 +385,6 @@ const locale = {
392
385
  "Datalayers": "Gwiskadoù",
393
386
  "Secret edit link:": "Liamm aozañ kuzh:",
394
387
  "Who can edit \"{layer}\"": "Piv a c'hall aozañ \"{layer}\"",
395
- "Current map view": "Listenn an objedoù a c'haller gwelet",
396
- "Filter": "Silañ",
397
388
  "Choropleth": "Choropleth",
398
389
  "Choropleth breakpoints": "Choropleth breakpoints",
399
390
  "Choropleth classes": "Choropleth classes",
@@ -440,8 +431,7 @@ const locale = {
440
431
  "Type a place name or coordinates": "Skrivit anv ul lec'h pe daveennoù",
441
432
  "copy": "eilañ",
442
433
  "full backup": "gwarez klok",
443
- "settings": "arventennoù",
444
- "{count} features in this layer": "{count} a berzhioù er gwiskad-mañ"
434
+ "settings": "arventennoù"
445
435
  }
446
436
  L.registerLocale("br", locale)
447
437
  L.setLocale("br")
@@ -78,7 +78,6 @@
78
78
  "**double star for bold**": "**div steredennig evit tevaat**",
79
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\".",
80
80
  "About": "Diwar-benn",
81
- "Action not allowed :(": "N'oc'h ket aotreet d'ober-se :(",
82
81
  "Activate slideshow mode": "Gweredekaat ar mod diaporama",
83
82
  "Add a layer": "Ouzhpennañ ur gwiskad",
84
83
  "Add a line to the current multi": "Add a line to the current multi",
@@ -88,7 +87,6 @@
88
87
  "Advanced properties": "Perzhioù araokaet",
89
88
  "All properties are imported.": "Enporzhiet eo bet an holl berzhioù.",
90
89
  "Allow interactions": "Aotren an etreoberiadennoù",
91
- "An error occured": "Ur fazi ez eus bet",
92
90
  "Are you sure you want to cancel your changes?": "Ha sur oc'h e faot deoc'h nullañ ho kemmoù?",
93
91
  "Are you sure you want to clone this map and all its datalayers?": "Ha sur oc'h e faot deoc'h arredaoliñ ar gartenn-mañ hag hec'h holl wiskadoù roadennoù?",
94
92
  "Are you sure you want to delete the feature?": "Ha sur oc'h e faot deoc'h dilemel an elfenn-mañ?",
@@ -99,7 +97,6 @@
99
97
  "Attach the map to my account": "Stagañ ar gartenn d'am c'hont",
100
98
  "Auto": "Emgefre",
101
99
  "Autostart when map is loaded": "Loc'hañ pa vez karget ar gartenn",
102
- "Bring feature to center": "Kreizañ ar gartenn war an elfenn-mañ",
103
100
  "Browse data": "Furchal ar roadennoù",
104
101
  "Cancel edits": "Nullañ ar c'hemmoù",
105
102
  "Center map on your location": "Kreizañ ar gartenn war al lec'h m'emaoc'h",
@@ -159,7 +156,6 @@
159
156
  "Embed the map": "Enframmañ ar gartenn",
160
157
  "Empty": "Goullonderiñ",
161
158
  "Error in the tilelayer URL": "Ur fazi zo en URL foñs ar gartenn",
162
- "Error while fetching {url}": "Ur fazi ez eus bet en ur c'hervel an URL {url}",
163
159
  "Exit Fullscreen": "Kuitaat ar mod skramm a-bezh",
164
160
  "Extract shape to separate feature": "Extract shape to separate feature",
165
161
  "Fetch data each time map view changes.": "Fetch data each time map view changes.",
@@ -219,8 +215,6 @@
219
215
  "Please choose a format": "Diuzit ur furmad mar plij",
220
216
  "Please enter the name of the property": "Enankit anv ar perzh mar plij",
221
217
  "Please enter the new name of this property": "Enankit anv nevez ar perzh-mañ mar plij",
222
- "Problem in the response": "Kudenn e respont ar servijer",
223
- "Problem in the response format": "Kudenn gant furmadiñ ar respont",
224
218
  "Properties imported:": "Perzhioù enporzhiet:",
225
219
  "Provide an URL here": "Pourchas un URL amañ",
226
220
  "Proxy request": "Reked proksi",
@@ -377,7 +371,6 @@
377
371
  "Facet keys": "Facet keys",
378
372
  "Facet search": "Facet search",
379
373
  "Feature properties": "Perzhioù an elfenn",
380
- "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
381
374
  "Latest feature": "Elfenn diwezhañ",
382
375
  "No results for these facets": "No results for these facets",
383
376
  "Saved center and zoom": "Kreiz ha zoum enrollet",
@@ -392,8 +385,6 @@
392
385
  "Datalayers": "Gwiskadoù",
393
386
  "Secret edit link:": "Liamm aozañ kuzh:",
394
387
  "Who can edit \"{layer}\"": "Piv a c'hall aozañ \"{layer}\"",
395
- "Current map view": "Listenn an objedoù a c'haller gwelet",
396
- "Filter": "Silañ",
397
388
  "Choropleth": "Choropleth",
398
389
  "Choropleth breakpoints": "Choropleth breakpoints",
399
390
  "Choropleth classes": "Choropleth classes",
@@ -440,6 +431,5 @@
440
431
  "Type a place name or coordinates": "Skrivit anv ul lec'h pe daveennoù",
441
432
  "copy": "eilañ",
442
433
  "full backup": "gwarez klok",
443
- "settings": "arventennoù",
444
- "{count} features in this layer": "{count} a berzhioù er gwiskad-mañ"
434
+ "settings": "arventennoù"
445
435
  }
@@ -78,7 +78,6 @@ const locale = {
78
78
  "**double star for bold**": "**doble asteric per a negreta**",
79
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\".",
80
80
  "About": "Quant a",
81
- "Action not allowed :(": "Acció no permesa :(",
82
81
  "Activate slideshow mode": "Activate slideshow mode",
83
82
  "Add a layer": "Afegeix una capa",
84
83
  "Add a line to the current multi": "Add a line to the current multi",
@@ -88,7 +87,6 @@ const locale = {
88
87
  "Advanced properties": "Propietats avançades",
89
88
  "All properties are imported.": "S'han importat totes les propietats",
90
89
  "Allow interactions": "Allow interactions",
91
- "An error occured": "S'ha produït un error",
92
90
  "Are you sure you want to cancel your changes?": "Esteu segur de voler cancel·lar els canvis?",
93
91
  "Are you sure you want to clone this map and all its datalayers?": "Esteu segur de voler clonar aquest mapa i totes les capes de dades?",
94
92
  "Are you sure you want to delete the feature?": "Segur que voleu suprimir la característica?",
@@ -99,7 +97,6 @@ const locale = {
99
97
  "Attach the map to my account": "Adjunta el mapa al meu compte",
100
98
  "Auto": "Auto",
101
99
  "Autostart when map is loaded": "Autostart when map is loaded",
102
- "Bring feature to center": "Bring feature to center",
103
100
  "Browse data": "Explora les dades",
104
101
  "Cancel edits": "Cancel·la les edicions",
105
102
  "Center map on your location": "Centra el mapa a la vostra ubicació",
@@ -159,7 +156,6 @@ const locale = {
159
156
  "Embed the map": "Incrusta el mapa",
160
157
  "Empty": "Buit",
161
158
  "Error in the tilelayer URL": "Hi ha un error en l'URL de la cap de tessel·les",
162
- "Error while fetching {url}": "Error while fetching {url}",
163
159
  "Exit Fullscreen": "Exit Fullscreen",
164
160
  "Extract shape to separate feature": "Extract shape to separate feature",
165
161
  "Fetch data each time map view changes.": "Fetch data each time map view changes.",
@@ -219,8 +215,6 @@ const locale = {
219
215
  "Please choose a format": "Please choose a format",
220
216
  "Please enter the name of the property": "Introduïu el nom de la propietat",
221
217
  "Please enter the new name of this property": "Introduïu el nom d'aquesta propietat",
222
- "Problem in the response": "Hi ha un problema en la resposta",
223
- "Problem in the response format": "Hi ha un problema en el format de resposta",
224
218
  "Properties imported:": "Propietats importades:",
225
219
  "Provide an URL here": "Proporcioneu un URL aquí",
226
220
  "Proxy request": "Petició proxy",
@@ -377,7 +371,6 @@ const locale = {
377
371
  "Facet keys": "Facet keys",
378
372
  "Facet search": "Facet search",
379
373
  "Feature properties": "Feature properties",
380
- "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
381
374
  "Latest feature": "Latest feature",
382
375
  "No results for these facets": "No results for these facets",
383
376
  "Saved center and zoom": "Saved center and zoom",
@@ -392,8 +385,6 @@ const locale = {
392
385
  "Datalayers": "Datalayers",
393
386
  "Secret edit link:": "Secret edit link:",
394
387
  "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
395
- "Current map view": "Current map view",
396
- "Filter": "Filter",
397
388
  "Choropleth": "Choropleth",
398
389
  "Choropleth breakpoints": "Choropleth breakpoints",
399
390
  "Choropleth classes": "Choropleth classes",
@@ -440,8 +431,7 @@ const locale = {
440
431
  "Type a place name or coordinates": "Type a place name or coordinates",
441
432
  "copy": "copy",
442
433
  "full backup": "full backup",
443
- "settings": "settings",
444
- "{count} features in this layer": "{count} features in this layer"
434
+ "settings": "settings"
445
435
  }
446
436
  L.registerLocale("ca", locale)
447
437
  L.setLocale("ca")
@@ -78,7 +78,6 @@
78
78
  "**double star for bold**": "**doble asteric per a negreta**",
79
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\".",
80
80
  "About": "Quant a",
81
- "Action not allowed :(": "Acció no permesa :(",
82
81
  "Activate slideshow mode": "Activate slideshow mode",
83
82
  "Add a layer": "Afegeix una capa",
84
83
  "Add a line to the current multi": "Add a line to the current multi",
@@ -88,7 +87,6 @@
88
87
  "Advanced properties": "Propietats avançades",
89
88
  "All properties are imported.": "S'han importat totes les propietats",
90
89
  "Allow interactions": "Allow interactions",
91
- "An error occured": "S'ha produït un error",
92
90
  "Are you sure you want to cancel your changes?": "Esteu segur de voler cancel·lar els canvis?",
93
91
  "Are you sure you want to clone this map and all its datalayers?": "Esteu segur de voler clonar aquest mapa i totes les capes de dades?",
94
92
  "Are you sure you want to delete the feature?": "Segur que voleu suprimir la característica?",
@@ -99,7 +97,6 @@
99
97
  "Attach the map to my account": "Adjunta el mapa al meu compte",
100
98
  "Auto": "Auto",
101
99
  "Autostart when map is loaded": "Autostart when map is loaded",
102
- "Bring feature to center": "Bring feature to center",
103
100
  "Browse data": "Explora les dades",
104
101
  "Cancel edits": "Cancel·la les edicions",
105
102
  "Center map on your location": "Centra el mapa a la vostra ubicació",
@@ -159,7 +156,6 @@
159
156
  "Embed the map": "Incrusta el mapa",
160
157
  "Empty": "Buit",
161
158
  "Error in the tilelayer URL": "Hi ha un error en l'URL de la cap de tessel·les",
162
- "Error while fetching {url}": "Error while fetching {url}",
163
159
  "Exit Fullscreen": "Exit Fullscreen",
164
160
  "Extract shape to separate feature": "Extract shape to separate feature",
165
161
  "Fetch data each time map view changes.": "Fetch data each time map view changes.",
@@ -219,8 +215,6 @@
219
215
  "Please choose a format": "Please choose a format",
220
216
  "Please enter the name of the property": "Introduïu el nom de la propietat",
221
217
  "Please enter the new name of this property": "Introduïu el nom d'aquesta propietat",
222
- "Problem in the response": "Hi ha un problema en la resposta",
223
- "Problem in the response format": "Hi ha un problema en el format de resposta",
224
218
  "Properties imported:": "Propietats importades:",
225
219
  "Provide an URL here": "Proporcioneu un URL aquí",
226
220
  "Proxy request": "Petició proxy",
@@ -377,7 +371,6 @@
377
371
  "Facet keys": "Facet keys",
378
372
  "Facet search": "Facet search",
379
373
  "Feature properties": "Feature properties",
380
- "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
381
374
  "Latest feature": "Latest feature",
382
375
  "No results for these facets": "No results for these facets",
383
376
  "Saved center and zoom": "Saved center and zoom",
@@ -392,8 +385,6 @@
392
385
  "Datalayers": "Datalayers",
393
386
  "Secret edit link:": "Secret edit link:",
394
387
  "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
395
- "Current map view": "Current map view",
396
- "Filter": "Filter",
397
388
  "Choropleth": "Choropleth",
398
389
  "Choropleth breakpoints": "Choropleth breakpoints",
399
390
  "Choropleth classes": "Choropleth classes",
@@ -440,6 +431,5 @@
440
431
  "Type a place name or coordinates": "Type a place name or coordinates",
441
432
  "copy": "copy",
442
433
  "full backup": "full backup",
443
- "settings": "settings",
444
- "{count} features in this layer": "{count} features in this layer"
434
+ "settings": "settings"
445
435
  }
@@ -78,7 +78,6 @@ const locale = {
78
78
  "**double star for bold**": "**vše mezi dvěma hvězdičkami je tučně**",
79
79
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Čárkami oddělený seznam čísel, který popisuje vzorek přerušované čáry. Např. «5, 10, 15».",
80
80
  "About": "O mapě",
81
- "Action not allowed :(": "Akce nepovolena :(",
82
81
  "Activate slideshow mode": "Aktivovat prezentační mód",
83
82
  "Add a layer": "Přidat vrstvu",
84
83
  "Add a line to the current multi": "Přidat čáru k současnému multi",
@@ -88,7 +87,6 @@ const locale = {
88
87
  "Advanced properties": "Pokročilé vlastnosti",
89
88
  "All properties are imported.": "Všechny vlastnosti jsou importovány.",
90
89
  "Allow interactions": "Povolit interakce",
91
- "An error occured": "Došlo k chybě",
92
90
  "Are you sure you want to cancel your changes?": "Jste si jisti že chcete stornovat vaše úpravy?",
93
91
  "Are you sure you want to clone this map and all its datalayers?": "Určitě chcete vytvořit kopii celé této mapy a všech jejich vrstev?",
94
92
  "Are you sure you want to delete the feature?": "Určitě chcete vymazat tento objekt?",
@@ -99,7 +97,6 @@ const locale = {
99
97
  "Attach the map to my account": "Připojte mapu k mému účtu",
100
98
  "Auto": "Automatická",
101
99
  "Autostart when map is loaded": "Spustit po načtení mapy",
102
- "Bring feature to center": "Centruj mapu na objektu",
103
100
  "Browse data": "Prohlížet data",
104
101
  "Cancel edits": "Stornovat úpravy",
105
102
  "Center map on your location": "Přemístit se na mapě na vaši polohu",
@@ -159,7 +156,6 @@ const locale = {
159
156
  "Embed the map": "Vložit mapu do jiného webu",
160
157
  "Empty": "Vyprázdnit",
161
158
  "Error in the tilelayer URL": "Chyba v URL vrstvy dlaždic",
162
- "Error while fetching {url}": "Chyba při načítání {url}",
163
159
  "Exit Fullscreen": "Ukončit režim celé obrazovky",
164
160
  "Extract shape to separate feature": "Vyjmout tvar do samostatného objektu",
165
161
  "Fetch data each time map view changes.": "Získat data při každé změně zobrazení mapy.",
@@ -219,8 +215,6 @@ const locale = {
219
215
  "Please choose a format": "Zvolte formát",
220
216
  "Please enter the name of the property": "Zadejte prosím název vlastnosti",
221
217
  "Please enter the new name of this property": "Zadejte prosím nový název této vlastnosti",
222
- "Problem in the response": "Problém při odpovědi",
223
- "Problem in the response format": "Problém ve formátu odpovědi",
224
218
  "Properties imported:": "Importované vlastnosti:",
225
219
  "Provide an URL here": "Sem vložte odkaz",
226
220
  "Proxy request": "Požadavky přes proxy",
@@ -377,7 +371,6 @@ const locale = {
377
371
  "Facet keys": "Aspekty klíče",
378
372
  "Facet search": "hledání aspektů",
379
373
  "Feature properties": "Vlastnosti funkce",
380
- "Issue reaching that URL (network problem or CORS protection): {url}": "Problém s dosažením této adresy URL (síťový problém nebo ochrana CORS): {url}",
381
374
  "Latest feature": "Nejnovější funkce",
382
375
  "No results for these facets": "Žádné výsledky pro tyto aspekty",
383
376
  "Saved center and zoom": "Uložený střed a zoom",
@@ -392,8 +385,6 @@ const locale = {
392
385
  "Datalayers": "Datové vrstvy",
393
386
  "Secret edit link:": "Tajný odkaz na úpravy:",
394
387
  "Who can edit \"{layer}\"": "Kdo může upravovat \"{layer}\"",
395
- "Current map view": "Aktuální zobrazení mapy",
396
- "Filter": "Filtr",
397
388
  "Choropleth": "Choropleth",
398
389
  "Choropleth breakpoints": "Choropleth breakpoints",
399
390
  "Choropleth classes": "Choropleth třídy",
@@ -440,8 +431,7 @@ const locale = {
440
431
  "Type a place name or coordinates": "Type a place name or coordinates",
441
432
  "copy": "copy",
442
433
  "full backup": "full backup",
443
- "settings": "settings",
444
- "{count} features in this layer": "{count} features in this layer"
434
+ "settings": "settings"
445
435
  }
446
436
  L.registerLocale("cs_CZ", locale)
447
437
  L.setLocale("cs_CZ")
@@ -78,7 +78,6 @@
78
78
  "**double star for bold**": "**vše mezi dvěma hvězdičkami je tučně**",
79
79
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Čárkami oddělený seznam čísel, který popisuje vzorek přerušované čáry. Např. «5, 10, 15».",
80
80
  "About": "O mapě",
81
- "Action not allowed :(": "Akce nepovolena :(",
82
81
  "Activate slideshow mode": "Aktivovat prezentační mód",
83
82
  "Add a layer": "Přidat vrstvu",
84
83
  "Add a line to the current multi": "Přidat čáru k současnému multi",
@@ -88,7 +87,6 @@
88
87
  "Advanced properties": "Pokročilé vlastnosti",
89
88
  "All properties are imported.": "Všechny vlastnosti jsou importovány.",
90
89
  "Allow interactions": "Povolit interakce",
91
- "An error occured": "Došlo k chybě",
92
90
  "Are you sure you want to cancel your changes?": "Jste si jisti že chcete stornovat vaše úpravy?",
93
91
  "Are you sure you want to clone this map and all its datalayers?": "Určitě chcete vytvořit kopii celé této mapy a všech jejich vrstev?",
94
92
  "Are you sure you want to delete the feature?": "Určitě chcete vymazat tento objekt?",
@@ -99,7 +97,6 @@
99
97
  "Attach the map to my account": "Připojte mapu k mému účtu",
100
98
  "Auto": "Automatická",
101
99
  "Autostart when map is loaded": "Spustit po načtení mapy",
102
- "Bring feature to center": "Centruj mapu na objektu",
103
100
  "Browse data": "Prohlížet data",
104
101
  "Cancel edits": "Stornovat úpravy",
105
102
  "Center map on your location": "Přemístit se na mapě na vaši polohu",
@@ -159,7 +156,6 @@
159
156
  "Embed the map": "Vložit mapu do jiného webu",
160
157
  "Empty": "Vyprázdnit",
161
158
  "Error in the tilelayer URL": "Chyba v URL vrstvy dlaždic",
162
- "Error while fetching {url}": "Chyba při načítání {url}",
163
159
  "Exit Fullscreen": "Ukončit režim celé obrazovky",
164
160
  "Extract shape to separate feature": "Vyjmout tvar do samostatného objektu",
165
161
  "Fetch data each time map view changes.": "Získat data při každé změně zobrazení mapy.",
@@ -219,8 +215,6 @@
219
215
  "Please choose a format": "Zvolte formát",
220
216
  "Please enter the name of the property": "Zadejte prosím název vlastnosti",
221
217
  "Please enter the new name of this property": "Zadejte prosím nový název této vlastnosti",
222
- "Problem in the response": "Problém při odpovědi",
223
- "Problem in the response format": "Problém ve formátu odpovědi",
224
218
  "Properties imported:": "Importované vlastnosti:",
225
219
  "Provide an URL here": "Sem vložte odkaz",
226
220
  "Proxy request": "Požadavky přes proxy",
@@ -377,7 +371,6 @@
377
371
  "Facet keys": "Aspekty klíče",
378
372
  "Facet search": "hledání aspektů",
379
373
  "Feature properties": "Vlastnosti funkce",
380
- "Issue reaching that URL (network problem or CORS protection): {url}": "Problém s dosažením této adresy URL (síťový problém nebo ochrana CORS): {url}",
381
374
  "Latest feature": "Nejnovější funkce",
382
375
  "No results for these facets": "Žádné výsledky pro tyto aspekty",
383
376
  "Saved center and zoom": "Uložený střed a zoom",
@@ -392,8 +385,6 @@
392
385
  "Datalayers": "Datové vrstvy",
393
386
  "Secret edit link:": "Tajný odkaz na úpravy:",
394
387
  "Who can edit \"{layer}\"": "Kdo může upravovat \"{layer}\"",
395
- "Current map view": "Aktuální zobrazení mapy",
396
- "Filter": "Filtr",
397
388
  "Choropleth": "Choropleth",
398
389
  "Choropleth breakpoints": "Choropleth breakpoints",
399
390
  "Choropleth classes": "Choropleth třídy",
@@ -440,6 +431,5 @@
440
431
  "Type a place name or coordinates": "Type a place name or coordinates",
441
432
  "copy": "copy",
442
433
  "full backup": "full backup",
443
- "settings": "settings",
444
- "{count} features in this layer": "{count} features in this layer"
434
+ "settings": "settings"
445
435
  }
@@ -78,7 +78,6 @@ const locale = {
78
78
  "**double star for bold**": "**dobbelt stjerne for fed skrift**",
79
79
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "En kommasepareret nummerliste som definerer stiplingsmønstret. Fx: \"5, 10, 15\".",
80
80
  "About": "Om",
81
- "Action not allowed :(": "Handling er ikke tilladt :(",
82
81
  "Activate slideshow mode": "Aktiver slideshowtilstand",
83
82
  "Add a layer": "Tilføj et lag",
84
83
  "Add a line to the current multi": "Tilføj en linje til nuværende multi",
@@ -88,7 +87,6 @@ const locale = {
88
87
  "Advanced properties": "Avancerede egenskaber",
89
88
  "All properties are imported.": "Alle egenskaber er importeret.",
90
89
  "Allow interactions": "Tillad interaktioner",
91
- "An error occured": "Der opstod en fejl",
92
90
  "Are you sure you want to cancel your changes?": "Er du sikker på du vil fortryde dine ændringer?",
93
91
  "Are you sure you want to clone this map and all its datalayers?": "Er du sikker på du vil klone dette kort og alle dets datalag?",
94
92
  "Are you sure you want to delete the feature?": "Er du sikker på at du vil slette dette objekt?",
@@ -99,7 +97,6 @@ const locale = {
99
97
  "Attach the map to my account": "Knyt kortet til min konto",
100
98
  "Auto": "Auto",
101
99
  "Autostart when map is loaded": "Start automatisk når kort er indlæst",
102
- "Bring feature to center": "Centrerer objekt",
103
100
  "Browse data": "Gennemse data",
104
101
  "Cancel edits": "Fortryd redigeringer",
105
102
  "Center map on your location": "Centrer kort på din placering",
@@ -159,7 +156,6 @@ const locale = {
159
156
  "Embed the map": "Indlejring af kortet",
160
157
  "Empty": "Tomt",
161
158
  "Error in the tilelayer URL": "Fejl i fliselags-URL'en",
162
- "Error while fetching {url}": "Fejl ved hentning af {url}",
163
159
  "Exit Fullscreen": "Afslut fuldskærm",
164
160
  "Extract shape to separate feature": "Udtræk figur for at adskille objekt",
165
161
  "Fetch data each time map view changes.": "Hent data hver gang kortvisningen ændres.",
@@ -219,8 +215,6 @@ const locale = {
219
215
  "Please choose a format": "Vælg et format",
220
216
  "Please enter the name of the property": "Angiv egenskabens navn",
221
217
  "Please enter the new name of this property": "Angiv egenskabens nye navn",
222
- "Problem in the response": "Problem med svaret",
223
- "Problem in the response format": "Problem med svarformatet",
224
218
  "Properties imported:": "Egenskaber importeret:",
225
219
  "Provide an URL here": "Indsæt en URL her",
226
220
  "Proxy request": "Proxyforespørgsel",
@@ -377,7 +371,6 @@ const locale = {
377
371
  "Facet keys": "Facet keys",
378
372
  "Facet search": "Facet search",
379
373
  "Feature properties": "Feature properties",
380
- "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
381
374
  "Latest feature": "Latest feature",
382
375
  "No results for these facets": "No results for these facets",
383
376
  "Saved center and zoom": "Saved center and zoom",
@@ -392,8 +385,6 @@ const locale = {
392
385
  "Datalayers": "Datalayers",
393
386
  "Secret edit link:": "Secret edit link:",
394
387
  "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
395
- "Current map view": "Current map view",
396
- "Filter": "Filter",
397
388
  "Choropleth": "Choropleth",
398
389
  "Choropleth breakpoints": "Choropleth breakpoints",
399
390
  "Choropleth classes": "Choropleth classes",
@@ -440,8 +431,7 @@ const locale = {
440
431
  "Type a place name or coordinates": "Type a place name or coordinates",
441
432
  "copy": "copy",
442
433
  "full backup": "full backup",
443
- "settings": "settings",
444
- "{count} features in this layer": "{count} features in this layer"
434
+ "settings": "settings"
445
435
  }
446
436
  L.registerLocale("da", locale)
447
437
  L.setLocale("da")