umap-project 2.8.1__py3-none-any.whl → 2.9.0__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 (262) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +15 -2
  3. umap/asgi.py +12 -7
  4. umap/context_processors.py +1 -0
  5. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/br/LC_MESSAGES/django.po +111 -67
  7. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/cs_CZ/LC_MESSAGES/django.po +110 -66
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +129 -85
  11. umap/locale/en/LC_MESSAGES/django.po +103 -60
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +114 -69
  14. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/fr/LC_MESSAGES/django.po +105 -61
  16. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/gl/LC_MESSAGES/django.po +216 -171
  18. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/hu/LC_MESSAGES/django.po +10 -10
  20. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/it/LC_MESSAGES/django.po +142 -98
  22. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/nl/LC_MESSAGES/django.po +196 -151
  24. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/pt/LC_MESSAGES/django.po +115 -71
  26. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  27. umap/locale/zh_TW/LC_MESSAGES/django.po +109 -65
  28. umap/management/commands/empty_trash.py +12 -1
  29. umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
  30. umap/models.py +43 -13
  31. umap/settings/base.py +5 -2
  32. umap/static/umap/base.css +5 -2
  33. umap/static/umap/content.css +2 -22
  34. umap/static/umap/css/bar.css +39 -10
  35. umap/static/umap/css/contextmenu.css +14 -2
  36. umap/static/umap/css/form.css +33 -39
  37. umap/static/umap/css/icon.css +47 -5
  38. umap/static/umap/css/panel.css +20 -2
  39. umap/static/umap/css/popup.css +0 -1
  40. umap/static/umap/css/tooltip.css +33 -31
  41. umap/static/umap/img/16-white.svg +5 -3
  42. umap/static/umap/img/16.svg +1 -1
  43. umap/static/umap/img/24-white.svg +17 -16
  44. umap/static/umap/img/24.svg +29 -18
  45. umap/static/umap/img/providers/bitbucket.png +0 -0
  46. umap/static/umap/img/providers/github.png +0 -0
  47. umap/static/umap/img/providers/keycloak.png +0 -0
  48. umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
  49. umap/static/umap/img/providers/twitter-oauth2.png +0 -0
  50. umap/static/umap/img/source/16-white.svg +6 -4
  51. umap/static/umap/img/source/16.svg +1 -1
  52. umap/static/umap/img/source/24-white.svg +20 -18
  53. umap/static/umap/img/source/24.svg +30 -19
  54. umap/static/umap/js/components/alerts/alert.js +4 -1
  55. umap/static/umap/js/modules/browser.js +8 -8
  56. umap/static/umap/js/modules/caption.js +30 -7
  57. umap/static/umap/js/modules/data/features.js +101 -56
  58. umap/static/umap/js/modules/data/layer.js +108 -83
  59. umap/static/umap/js/modules/form/builder.js +242 -0
  60. umap/static/umap/js/modules/form/fields.js +1346 -0
  61. umap/static/umap/js/modules/formatter.js +9 -8
  62. umap/static/umap/js/modules/help.js +20 -24
  63. umap/static/umap/js/modules/importer.js +6 -3
  64. umap/static/umap/js/modules/permissions.js +11 -6
  65. umap/static/umap/js/modules/rendering/icon.js +5 -1
  66. umap/static/umap/js/modules/rendering/layers/classified.js +12 -8
  67. umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
  68. umap/static/umap/js/modules/rendering/map.js +1 -23
  69. umap/static/umap/js/modules/rendering/ui.js +20 -38
  70. umap/static/umap/js/modules/rules.js +3 -2
  71. umap/static/umap/js/modules/saving.js +5 -0
  72. umap/static/umap/js/modules/schema.js +8 -6
  73. umap/static/umap/js/modules/share.js +3 -3
  74. umap/static/umap/js/modules/sync/engine.js +56 -26
  75. umap/static/umap/js/modules/sync/updaters.js +15 -6
  76. umap/static/umap/js/modules/sync/websocket.js +50 -37
  77. umap/static/umap/js/modules/tableeditor.js +3 -2
  78. umap/static/umap/js/modules/ui/bar.js +101 -9
  79. umap/static/umap/js/modules/ui/base.js +7 -24
  80. umap/static/umap/js/modules/ui/contextmenu.js +9 -2
  81. umap/static/umap/js/modules/ui/panel.js +5 -1
  82. umap/static/umap/js/modules/ui/tooltip.js +19 -11
  83. umap/static/umap/js/modules/umap.js +124 -71
  84. umap/static/umap/js/modules/utils.js +196 -12
  85. umap/static/umap/js/umap.controls.js +12 -354
  86. umap/static/umap/locale/am_ET.js +17 -5
  87. umap/static/umap/locale/am_ET.json +17 -5
  88. umap/static/umap/locale/ar.js +17 -5
  89. umap/static/umap/locale/ar.json +17 -5
  90. umap/static/umap/locale/ast.js +17 -5
  91. umap/static/umap/locale/ast.json +17 -5
  92. umap/static/umap/locale/bg.js +17 -5
  93. umap/static/umap/locale/bg.json +17 -5
  94. umap/static/umap/locale/br.js +33 -20
  95. umap/static/umap/locale/br.json +33 -20
  96. umap/static/umap/locale/ca.js +17 -5
  97. umap/static/umap/locale/ca.json +17 -5
  98. umap/static/umap/locale/cs_CZ.js +15 -5
  99. umap/static/umap/locale/cs_CZ.json +15 -5
  100. umap/static/umap/locale/da.js +17 -5
  101. umap/static/umap/locale/da.json +17 -5
  102. umap/static/umap/locale/de.js +17 -5
  103. umap/static/umap/locale/de.json +17 -5
  104. umap/static/umap/locale/el.js +63 -51
  105. umap/static/umap/locale/el.json +63 -51
  106. umap/static/umap/locale/en.js +15 -5
  107. umap/static/umap/locale/en.json +15 -5
  108. umap/static/umap/locale/en_US.json +17 -5
  109. umap/static/umap/locale/es.js +25 -13
  110. umap/static/umap/locale/es.json +25 -13
  111. umap/static/umap/locale/et.js +17 -5
  112. umap/static/umap/locale/et.json +17 -5
  113. umap/static/umap/locale/eu.js +17 -5
  114. umap/static/umap/locale/eu.json +17 -5
  115. umap/static/umap/locale/fa_IR.js +17 -5
  116. umap/static/umap/locale/fa_IR.json +17 -5
  117. umap/static/umap/locale/fi.js +17 -5
  118. umap/static/umap/locale/fi.json +17 -5
  119. umap/static/umap/locale/fr.js +16 -6
  120. umap/static/umap/locale/fr.json +16 -6
  121. umap/static/umap/locale/gl.js +357 -345
  122. umap/static/umap/locale/gl.json +357 -345
  123. umap/static/umap/locale/he.js +17 -5
  124. umap/static/umap/locale/he.json +17 -5
  125. umap/static/umap/locale/hr.js +17 -5
  126. umap/static/umap/locale/hr.json +17 -5
  127. umap/static/umap/locale/hu.js +39 -27
  128. umap/static/umap/locale/hu.json +39 -27
  129. umap/static/umap/locale/id.js +17 -5
  130. umap/static/umap/locale/id.json +17 -5
  131. umap/static/umap/locale/is.js +17 -5
  132. umap/static/umap/locale/is.json +17 -5
  133. umap/static/umap/locale/it.js +125 -113
  134. umap/static/umap/locale/it.json +125 -113
  135. umap/static/umap/locale/ja.js +17 -5
  136. umap/static/umap/locale/ja.json +17 -5
  137. umap/static/umap/locale/ko.js +17 -5
  138. umap/static/umap/locale/ko.json +17 -5
  139. umap/static/umap/locale/lt.js +17 -5
  140. umap/static/umap/locale/lt.json +17 -5
  141. umap/static/umap/locale/ms.js +17 -5
  142. umap/static/umap/locale/ms.json +17 -5
  143. umap/static/umap/locale/nl.js +132 -119
  144. umap/static/umap/locale/nl.json +132 -119
  145. umap/static/umap/locale/no.js +17 -5
  146. umap/static/umap/locale/no.json +17 -5
  147. umap/static/umap/locale/pl.js +17 -5
  148. umap/static/umap/locale/pl.json +17 -5
  149. umap/static/umap/locale/pl_PL.json +17 -5
  150. umap/static/umap/locale/pt.js +38 -25
  151. umap/static/umap/locale/pt.json +38 -25
  152. umap/static/umap/locale/pt_BR.js +17 -5
  153. umap/static/umap/locale/pt_BR.json +17 -5
  154. umap/static/umap/locale/pt_PT.js +17 -5
  155. umap/static/umap/locale/pt_PT.json +17 -5
  156. umap/static/umap/locale/ro.js +17 -5
  157. umap/static/umap/locale/ro.json +17 -5
  158. umap/static/umap/locale/ru.js +17 -5
  159. umap/static/umap/locale/ru.json +17 -5
  160. umap/static/umap/locale/sk_SK.js +17 -5
  161. umap/static/umap/locale/sk_SK.json +17 -5
  162. umap/static/umap/locale/sl.js +17 -5
  163. umap/static/umap/locale/sl.json +17 -5
  164. umap/static/umap/locale/sr.js +17 -5
  165. umap/static/umap/locale/sr.json +17 -5
  166. umap/static/umap/locale/sv.js +17 -5
  167. umap/static/umap/locale/sv.json +17 -5
  168. umap/static/umap/locale/th_TH.js +17 -5
  169. umap/static/umap/locale/th_TH.json +17 -5
  170. umap/static/umap/locale/tr.js +17 -5
  171. umap/static/umap/locale/tr.json +17 -5
  172. umap/static/umap/locale/uk_UA.js +17 -5
  173. umap/static/umap/locale/uk_UA.json +17 -5
  174. umap/static/umap/locale/vi.js +17 -5
  175. umap/static/umap/locale/vi.json +17 -5
  176. umap/static/umap/locale/vi_VN.json +17 -5
  177. umap/static/umap/locale/zh.js +17 -5
  178. umap/static/umap/locale/zh.json +17 -5
  179. umap/static/umap/locale/zh_CN.json +17 -5
  180. umap/static/umap/locale/zh_TW.Big5.json +17 -5
  181. umap/static/umap/locale/zh_TW.js +15 -5
  182. umap/static/umap/locale/zh_TW.json +15 -5
  183. umap/static/umap/map.css +29 -76
  184. umap/static/umap/nav.css +6 -3
  185. umap/static/umap/unittests/utils.js +14 -0
  186. umap/static/umap/vars.css +3 -0
  187. umap/static/umap/vendors/dompurify/purify.es.js +138 -354
  188. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  189. umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
  190. umap/sync/__init__.py +0 -0
  191. umap/sync/app.py +187 -0
  192. umap/sync/payloads.py +56 -0
  193. umap/templates/auth/user_detail.html +4 -0
  194. umap/templates/auth/user_form.html +9 -6
  195. umap/templates/auth/user_stars.html +4 -0
  196. umap/templates/base.html +1 -1
  197. umap/templates/registration/login.html +2 -5
  198. umap/templates/umap/about.html +5 -0
  199. umap/templates/umap/about_summary.html +2 -2
  200. umap/templates/umap/components/provider.html +8 -0
  201. umap/templates/umap/content_footer.html +1 -1
  202. umap/templates/umap/css.html +0 -2
  203. umap/templates/umap/js.html +0 -4
  204. umap/templates/umap/map_detail.html +1 -1
  205. umap/templates/umap/password_change.html +4 -0
  206. umap/templates/umap/password_change_done.html +4 -0
  207. umap/templates/umap/search.html +4 -0
  208. umap/templates/umap/search_bar.html +1 -0
  209. umap/templates/umap/team_confirm_delete.html +4 -0
  210. umap/templates/umap/team_detail.html +4 -0
  211. umap/templates/umap/team_form.html +4 -0
  212. umap/templates/umap/user_dashboard.html +1 -1
  213. umap/templates/umap/user_teams.html +4 -0
  214. umap/tests/base.py +3 -1
  215. umap/tests/integration/conftest.py +16 -23
  216. umap/tests/integration/test_anonymous_owned_map.py +2 -2
  217. umap/tests/integration/test_basics.py +4 -7
  218. umap/tests/integration/test_caption.py +1 -0
  219. umap/tests/integration/test_categorized_layer.py +4 -8
  220. umap/tests/integration/test_choropleth.py +1 -1
  221. umap/tests/integration/test_conditional_rules.py +3 -3
  222. umap/tests/integration/test_draw_polygon.py +14 -22
  223. umap/tests/integration/test_draw_polyline.py +6 -14
  224. umap/tests/integration/test_edit_datalayer.py +11 -11
  225. umap/tests/integration/test_edit_map.py +30 -4
  226. umap/tests/integration/test_edit_marker.py +5 -5
  227. umap/tests/integration/test_edit_polygon.py +6 -6
  228. umap/tests/integration/test_features_id_generation.py +2 -6
  229. umap/tests/integration/test_import.py +115 -29
  230. umap/tests/integration/test_optimistic_merge.py +1 -0
  231. umap/tests/integration/test_owned_map.py +1 -1
  232. umap/tests/integration/test_picto.py +8 -8
  233. umap/tests/integration/test_save.py +3 -2
  234. umap/tests/integration/test_star.py +13 -9
  235. umap/tests/integration/test_tableeditor.py +8 -7
  236. umap/tests/integration/test_view_marker.py +10 -0
  237. umap/tests/integration/test_websocket_sync.py +239 -64
  238. umap/tests/settings.py +2 -0
  239. umap/tests/test_datalayer.py +2 -3
  240. umap/tests/test_datalayer_views.py +20 -1
  241. umap/tests/test_empty_trash.py +10 -3
  242. umap/tests/test_map_views.py +11 -0
  243. umap/utils.py +27 -11
  244. umap/views.py +37 -6
  245. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/METADATA +22 -22
  246. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/RECORD +249 -250
  247. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/WHEEL +1 -1
  248. umap/management/commands/run_websocket_server.py +0 -23
  249. umap/settings/local_s3.py +0 -45
  250. umap/static/umap/bitbucket.png +0 -0
  251. umap/static/umap/github.png +0 -0
  252. umap/static/umap/js/umap.forms.js +0 -1242
  253. umap/static/umap/keycloak.png +0 -0
  254. umap/static/umap/openstreetmap.png +0 -0
  255. umap/static/umap/twitter.png +0 -0
  256. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
  257. umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
  258. umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
  259. umap/tests/test_websocket_server.py +0 -22
  260. umap/websocket_server.py +0 -202
  261. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/entry_points.txt +0 -0
  262. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/licenses/LICENSE +0 -0
@@ -19,7 +19,6 @@
19
19
  "Add a new property": "Add a new property",
20
20
  "Add a polygon to the current multi": "Add a polygon to the current multi",
21
21
  "Add image URL": "Add image URL",
22
- "Add": "Add",
23
22
  "Advanced actions": "Advanced actions",
24
23
  "Advanced properties": "Advanced properties",
25
24
  "All data and settings of the map": "All data and settings of the map",
@@ -120,7 +119,6 @@
120
119
  "Display the locate control": "Display the locate control",
121
120
  "Display the measure control": "Display the measure control",
122
121
  "Display the search control": "Display the search control",
123
- "Display the star map button": "Display the star map button",
124
122
  "Display the tile layers control": "Display the tile layers control",
125
123
  "Display the zoom control": "Display the zoom control",
126
124
  "Do you want to display a caption bar?": "Do you want to display a caption bar?",
@@ -301,7 +299,6 @@
301
299
  "Restore this version": "Restore this version",
302
300
  "Save current edits": "Save current edits",
303
301
  "Save map": "Save map",
304
- "Save this center and zoom": "Save this center and zoom",
305
302
  "Save this location as new feature": "Save this location as new feature",
306
303
  "Save": "Save",
307
304
  "Saved center and zoom": "Saved center and zoom",
@@ -516,12 +513,25 @@
516
513
  "show/hide all layers": "show/hide all layers",
517
514
  "zoom to data extent": "zoom to data extent",
518
515
  "download visible data": "download visible data",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
520
516
  "Import helpers": "Import helpers",
521
517
  "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
522
518
  "Wikipedia": "Wikipedia",
523
519
  "Save draft": "Save draft",
524
520
  "No data has been found for import": "No data has been found for import",
525
521
  "Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
526
- "Disconnected": "Disconnected"
522
+ "Disconnected": "Disconnected",
523
+ "You must be logged in": "You must be logged in",
524
+ "on hover": "on hover",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
527
+ "Import failed: invalid data": "Import failed: invalid data",
528
+ "Anonymous": "Anonymous",
529
+ "created at {date}": "created at {date}",
530
+ "modified at {date}": "modified at {date}",
531
+ "Default zoom": "Default zoom",
532
+ "Default latitude": "Default latitude",
533
+ "Default longitude": "Default longitude",
534
+ "Edit map default view": "Edit map default view",
535
+ "Use current center and zoom": "Use current center and zoom",
536
+ "Layer permalink": "Layer permalink"
527
537
  }
@@ -19,7 +19,6 @@
19
19
  "Add a new property": "Add a new property",
20
20
  "Add a polygon to the current multi": "Add a polygon to the current multi",
21
21
  "Add image URL": "Add image URL",
22
- "Add": "Add",
23
22
  "Advanced actions": "Actions",
24
23
  "Advanced properties": "Appearance",
25
24
  "All data and settings of the map": "All data and settings of the map",
@@ -120,7 +119,6 @@
120
119
  "Display the locate control": "Display the locate control",
121
120
  "Display the measure control": "Display the measure control",
122
121
  "Display the search control": "Display the search control",
123
- "Display the star map button": "Display the star map button",
124
122
  "Display the tile layers control": "Display the tile layers control",
125
123
  "Display the zoom control": "Display the zoom control",
126
124
  "Do you want to display a caption bar?": "Display caption bar",
@@ -301,7 +299,6 @@
301
299
  "Restore this version": "Restore this version",
302
300
  "Save current edits": "Save current edits",
303
301
  "Save map": "Save map",
304
- "Save this center and zoom": "Save this center and zoom",
305
302
  "Save this location as new feature": "Save this location as new feature",
306
303
  "Save": "Save",
307
304
  "Saved center and zoom": "Saved center and zoom",
@@ -516,9 +513,24 @@
516
513
  "show/hide all layers": "show/hide all layers",
517
514
  "zoom to data extent": "zoom to data extent",
518
515
  "download visible data": "download visible data",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
520
516
  "Import helpers": "Import helpers",
521
517
  "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
522
518
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
519
+ "Save draft": "Save draft",
520
+ "No data has been found for import": "No data has been found for import",
521
+ "Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
522
+ "Disconnected": "Disconnected",
523
+ "You must be logged in": "You must be logged in",
524
+ "on hover": "on hover",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
527
+ "Import failed: invalid data": "Import failed: invalid data",
528
+ "Anonymous": "Anonymous",
529
+ "created at {date}": "created at {date}",
530
+ "modified at {date}": "modified at {date}",
531
+ "Default zoom": "Default zoom",
532
+ "Default latitude": "Default latitude",
533
+ "Default longitude": "Default longitude",
534
+ "Edit map default view": "Edit map default view",
535
+ "Use current center and zoom": "Use current center and zoom"
524
536
  }
@@ -19,7 +19,6 @@ const locale = {
19
19
  "Add a new property": "Añadir una nueva propiedad",
20
20
  "Add a polygon to the current multi": "Añadir un polígono al multielemento actual",
21
21
  "Add image URL": "Añadir URL de imagen",
22
- "Add": "Añadir",
23
22
  "Advanced actions": "Acciones avanzadas",
24
23
  "Advanced properties": "Propiedades avanzadas",
25
24
  "All data and settings of the map": "Todos los datos y ajustes del mapa",
@@ -120,7 +119,6 @@ const locale = {
120
119
  "Display the locate control": "Mostrar el control de ubicación",
121
120
  "Display the measure control": "Mostrar el control de medición",
122
121
  "Display the search control": "Mostrar el control de búsqueda",
123
- "Display the star map button": "Mostrar el botón de mapa destacado",
124
122
  "Display the tile layers control": "Mostrar el control de capas de teselas",
125
123
  "Display the zoom control": "Mostrar el control de zoom",
126
124
  "Do you want to display a caption bar?": "¿Quieres mostrar una barra de título?",
@@ -183,12 +181,12 @@ const locale = {
183
181
  "Icon shape": "Forma del icono",
184
182
  "Icon symbol": "Símbolo del icono",
185
183
  "If false, the polygon or line will act as a part of the underlying map.": "Si es falso, el polígono o la línea actuarán como parte del mapa subyacente.",
186
- "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}",
187
- "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}",
184
+ "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe con altura personalizada (en px): {{{https://iframe.url.com|height}}}",
185
+ "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe con altura y ancho personalizados (en px): {{{https://iframe.url.com|height*width}}}",
188
186
  "iframe": "iframe",
189
187
  "Iframe: {{{https://iframe.url.com}}}": "Iframe: {{{https://iframe.url.com}}}",
190
- "Image with custom width (in px): {{https://image.url.com|width}}": "Image with custom width (in px): {{https://image.url.com|width}}",
191
- "Image: {{https://image.url.com}}": "Image: {{https://image.url.com}}",
188
+ "Image with custom width (in px): {{https://image.url.com|width}}": "Imagen con ancho personalizado (en px): {{https://image.url.com|width}}",
189
+ "Image: {{https://image.url.com}}": "Imagen: {{https://image.url.com}}",
192
190
  "Import data": "Importar datos",
193
191
  "Import in a new layer": "Importar en una nueva capa",
194
192
  "Imports all umap data, including layers and settings.": "Importa todos los datos de uMap, incluyendo capas y configuraciones.",
@@ -216,7 +214,7 @@ const locale = {
216
214
  "Limit bounds": "Límites",
217
215
  "Link to view the map": "Enlace para ver el mapa",
218
216
  "Link to…": "Enlace a...",
219
- "Link with text: [[https://example.com|text of the link]]": "Link with text: [[https://example.com|text of the link]]",
217
+ "Link with text: [[https://example.com|text of the link]]": "Enlace con texto: [[https://example.com|text of the link]]",
220
218
  "Long credits": "Créditos largos",
221
219
  "Longitude": "Longitud",
222
220
  "Make main shape": "Convertir en forma principal",
@@ -301,7 +299,6 @@ const locale = {
301
299
  "Restore this version": "Restaurar esta versión",
302
300
  "Save current edits": "Guardar las ediciones actuales",
303
301
  "Save map": "Guardar mapa",
304
- "Save this center and zoom": "Guardar este centro y zoom",
305
302
  "Save this location as new feature": "Guardar esta ubicación como un nuevo elemento",
306
303
  "Save": "Guardar",
307
304
  "Saved center and zoom": "Centro y zoom guardados",
@@ -320,7 +317,7 @@ const locale = {
320
317
  "Show this layer in the caption": "Mostrar esta capa en la leyenda",
321
318
  "Show/hide layer": "Mostrar/ocultar capa",
322
319
  "Side panel": "Panel lateral",
323
- "Simple link: [[https://example.com]]": "Simple link: [[https://example.com]]",
320
+ "Simple link: [[https://example.com]]": "Enlace simple: [[https://example.com]]",
324
321
  "Simplify": "Simplificar",
325
322
  "Skipping unknown geometry.type: {type}": "Omitiendo geometry.type desconocido: {type}",
326
323
  "Slideshow": "Presentación de diapositivas",
@@ -516,11 +513,26 @@ const locale = {
516
513
  "show/hide all layers": "mostrar/ocultar todas las capas",
517
514
  "zoom to data extent": "zoom a la extensión de los datos",
518
515
  "download visible data": "descargar datos visibles",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} par(es) actualmente conectado(s) a este mapa",
520
- "Import helpers": "Import helpers",
521
- "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
516
+ "Import helpers": "Ayudas para importar",
517
+ "Import helpers will fill the URL field for you.": "Las ayudas para importar completarán el campo de URL por ti.",
522
518
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
519
+ "Save draft": "Guardar borrador",
520
+ "No data has been found for import": "No se han encontrado datos para importar",
521
+ "Successfully imported {count} feature(s)": "{count} elemento(s) importado(s) con éxito",
522
+ "Disconnected": "Desconectado",
523
+ "You must be logged in": "Debes iniciar sesión",
524
+ "on hover": "al pasar el cursor",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "No se pueden cargar datos remotos para la capa \"{layer}\" con la URL \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "No se pueden analizar los datos remotos para la capa \"{layer}\" con la URL \"{url}\"",
527
+ "Import failed: invalid data": "Falló la importación: datos no válidos",
528
+ "Anonymous": "Anónimo",
529
+ "created at {date}": "created at {date}",
530
+ "modified at {date}": "modified at {date}",
531
+ "Default zoom": "Default zoom",
532
+ "Default latitude": "Default latitude",
533
+ "Default longitude": "Default longitude",
534
+ "Edit map default view": "Edit map default view",
535
+ "Use current center and zoom": "Use current center and zoom"
524
536
  }
525
537
  L.registerLocale("es", locale)
526
538
  L.setLocale("es")
@@ -19,7 +19,6 @@
19
19
  "Add a new property": "Añadir una nueva propiedad",
20
20
  "Add a polygon to the current multi": "Añadir un polígono al multielemento actual",
21
21
  "Add image URL": "Añadir URL de imagen",
22
- "Add": "Añadir",
23
22
  "Advanced actions": "Acciones avanzadas",
24
23
  "Advanced properties": "Propiedades avanzadas",
25
24
  "All data and settings of the map": "Todos los datos y ajustes del mapa",
@@ -120,7 +119,6 @@
120
119
  "Display the locate control": "Mostrar el control de ubicación",
121
120
  "Display the measure control": "Mostrar el control de medición",
122
121
  "Display the search control": "Mostrar el control de búsqueda",
123
- "Display the star map button": "Mostrar el botón de mapa destacado",
124
122
  "Display the tile layers control": "Mostrar el control de capas de teselas",
125
123
  "Display the zoom control": "Mostrar el control de zoom",
126
124
  "Do you want to display a caption bar?": "¿Quieres mostrar una barra de título?",
@@ -183,12 +181,12 @@
183
181
  "Icon shape": "Forma del icono",
184
182
  "Icon symbol": "Símbolo del icono",
185
183
  "If false, the polygon or line will act as a part of the underlying map.": "Si es falso, el polígono o la línea actuarán como parte del mapa subyacente.",
186
- "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}",
187
- "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}",
184
+ "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe con altura personalizada (en px): {{{https://iframe.url.com|height}}}",
185
+ "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe con altura y ancho personalizados (en px): {{{https://iframe.url.com|height*width}}}",
188
186
  "iframe": "iframe",
189
187
  "Iframe: {{{https://iframe.url.com}}}": "Iframe: {{{https://iframe.url.com}}}",
190
- "Image with custom width (in px): {{https://image.url.com|width}}": "Image with custom width (in px): {{https://image.url.com|width}}",
191
- "Image: {{https://image.url.com}}": "Image: {{https://image.url.com}}",
188
+ "Image with custom width (in px): {{https://image.url.com|width}}": "Imagen con ancho personalizado (en px): {{https://image.url.com|width}}",
189
+ "Image: {{https://image.url.com}}": "Imagen: {{https://image.url.com}}",
192
190
  "Import data": "Importar datos",
193
191
  "Import in a new layer": "Importar en una nueva capa",
194
192
  "Imports all umap data, including layers and settings.": "Importa todos los datos de uMap, incluyendo capas y configuraciones.",
@@ -216,7 +214,7 @@
216
214
  "Limit bounds": "Límites",
217
215
  "Link to view the map": "Enlace para ver el mapa",
218
216
  "Link to…": "Enlace a...",
219
- "Link with text: [[https://example.com|text of the link]]": "Link with text: [[https://example.com|text of the link]]",
217
+ "Link with text: [[https://example.com|text of the link]]": "Enlace con texto: [[https://example.com|text of the link]]",
220
218
  "Long credits": "Créditos largos",
221
219
  "Longitude": "Longitud",
222
220
  "Make main shape": "Convertir en forma principal",
@@ -301,7 +299,6 @@
301
299
  "Restore this version": "Restaurar esta versión",
302
300
  "Save current edits": "Guardar las ediciones actuales",
303
301
  "Save map": "Guardar mapa",
304
- "Save this center and zoom": "Guardar este centro y zoom",
305
302
  "Save this location as new feature": "Guardar esta ubicación como un nuevo elemento",
306
303
  "Save": "Guardar",
307
304
  "Saved center and zoom": "Centro y zoom guardados",
@@ -320,7 +317,7 @@
320
317
  "Show this layer in the caption": "Mostrar esta capa en la leyenda",
321
318
  "Show/hide layer": "Mostrar/ocultar capa",
322
319
  "Side panel": "Panel lateral",
323
- "Simple link: [[https://example.com]]": "Simple link: [[https://example.com]]",
320
+ "Simple link: [[https://example.com]]": "Enlace simple: [[https://example.com]]",
324
321
  "Simplify": "Simplificar",
325
322
  "Skipping unknown geometry.type: {type}": "Omitiendo geometry.type desconocido: {type}",
326
323
  "Slideshow": "Presentación de diapositivas",
@@ -516,9 +513,24 @@
516
513
  "show/hide all layers": "mostrar/ocultar todas las capas",
517
514
  "zoom to data extent": "zoom a la extensión de los datos",
518
515
  "download visible data": "descargar datos visibles",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} par(es) actualmente conectado(s) a este mapa",
520
- "Import helpers": "Import helpers",
521
- "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
516
+ "Import helpers": "Ayudas para importar",
517
+ "Import helpers will fill the URL field for you.": "Las ayudas para importar completarán el campo de URL por ti.",
522
518
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
519
+ "Save draft": "Guardar borrador",
520
+ "No data has been found for import": "No se han encontrado datos para importar",
521
+ "Successfully imported {count} feature(s)": "{count} elemento(s) importado(s) con éxito",
522
+ "Disconnected": "Desconectado",
523
+ "You must be logged in": "Debes iniciar sesión",
524
+ "on hover": "al pasar el cursor",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "No se pueden cargar datos remotos para la capa \"{layer}\" con la URL \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "No se pueden analizar los datos remotos para la capa \"{layer}\" con la URL \"{url}\"",
527
+ "Import failed: invalid data": "Falló la importación: datos no válidos",
528
+ "Anonymous": "Anónimo",
529
+ "created at {date}": "created at {date}",
530
+ "modified at {date}": "modified at {date}",
531
+ "Default zoom": "Default zoom",
532
+ "Default latitude": "Default latitude",
533
+ "Default longitude": "Default longitude",
534
+ "Edit map default view": "Edit map default view",
535
+ "Use current center and zoom": "Use current center and zoom"
524
536
  }
@@ -19,7 +19,6 @@ const locale = {
19
19
  "Add a new property": "Lisa uus omadus",
20
20
  "Add a polygon to the current multi": "Add a polygon to the current multi",
21
21
  "Add image URL": "Add image URL",
22
- "Add": "Add",
23
22
  "Advanced actions": "Täiendavad tegevused",
24
23
  "Advanced properties": "Täiendavad omadused",
25
24
  "All data and settings of the map": "All data and settings of the map",
@@ -120,7 +119,6 @@ const locale = {
120
119
  "Display the locate control": "Kuva asukoha määramise nupp",
121
120
  "Display the measure control": "Kuva mõõtmise nupp",
122
121
  "Display the search control": "Kuva otsingunupp",
123
- "Display the star map button": "Display the star map button",
124
122
  "Display the tile layers control": "Kuva tausta vahetamise nupp",
125
123
  "Display the zoom control": "Kuva suurendamise nupp",
126
124
  "Do you want to display a caption bar?": "Kas soovid kuvada tiitelriba?",
@@ -301,7 +299,6 @@ const locale = {
301
299
  "Restore this version": "Taasta see versioon",
302
300
  "Save current edits": "Salvesta praegused muudatused",
303
301
  "Save map": "Save map",
304
- "Save this center and zoom": "Salvesta see keskpunkt ja suurendus",
305
302
  "Save this location as new feature": "Salvesta see asukoht uue elemendina",
306
303
  "Save": "Salvesta",
307
304
  "Saved center and zoom": "Saved center and zoom",
@@ -516,11 +513,26 @@ const locale = {
516
513
  "show/hide all layers": "show/hide all layers",
517
514
  "zoom to data extent": "zoom to data extent",
518
515
  "download visible data": "download visible data",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
520
516
  "Import helpers": "Import helpers",
521
517
  "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
522
518
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
519
+ "Save draft": "Save draft",
520
+ "No data has been found for import": "No data has been found for import",
521
+ "Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
522
+ "Disconnected": "Disconnected",
523
+ "You must be logged in": "You must be logged in",
524
+ "on hover": "on hover",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
527
+ "Import failed: invalid data": "Import failed: invalid data",
528
+ "Anonymous": "Anonymous",
529
+ "created at {date}": "created at {date}",
530
+ "modified at {date}": "modified at {date}",
531
+ "Default zoom": "Default zoom",
532
+ "Default latitude": "Default latitude",
533
+ "Default longitude": "Default longitude",
534
+ "Edit map default view": "Edit map default view",
535
+ "Use current center and zoom": "Use current center and zoom"
524
536
  }
525
537
  L.registerLocale("et", locale)
526
538
  L.setLocale("et")
@@ -19,7 +19,6 @@
19
19
  "Add a new property": "Lisa uus omadus",
20
20
  "Add a polygon to the current multi": "Add a polygon to the current multi",
21
21
  "Add image URL": "Add image URL",
22
- "Add": "Add",
23
22
  "Advanced actions": "Täiendavad tegevused",
24
23
  "Advanced properties": "Täiendavad omadused",
25
24
  "All data and settings of the map": "All data and settings of the map",
@@ -120,7 +119,6 @@
120
119
  "Display the locate control": "Kuva asukoha määramise nupp",
121
120
  "Display the measure control": "Kuva mõõtmise nupp",
122
121
  "Display the search control": "Kuva otsingunupp",
123
- "Display the star map button": "Display the star map button",
124
122
  "Display the tile layers control": "Kuva tausta vahetamise nupp",
125
123
  "Display the zoom control": "Kuva suurendamise nupp",
126
124
  "Do you want to display a caption bar?": "Kas soovid kuvada tiitelriba?",
@@ -301,7 +299,6 @@
301
299
  "Restore this version": "Taasta see versioon",
302
300
  "Save current edits": "Salvesta praegused muudatused",
303
301
  "Save map": "Save map",
304
- "Save this center and zoom": "Salvesta see keskpunkt ja suurendus",
305
302
  "Save this location as new feature": "Salvesta see asukoht uue elemendina",
306
303
  "Save": "Salvesta",
307
304
  "Saved center and zoom": "Saved center and zoom",
@@ -516,9 +513,24 @@
516
513
  "show/hide all layers": "show/hide all layers",
517
514
  "zoom to data extent": "zoom to data extent",
518
515
  "download visible data": "download visible data",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
520
516
  "Import helpers": "Import helpers",
521
517
  "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
522
518
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
519
+ "Save draft": "Save draft",
520
+ "No data has been found for import": "No data has been found for import",
521
+ "Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
522
+ "Disconnected": "Disconnected",
523
+ "You must be logged in": "You must be logged in",
524
+ "on hover": "on hover",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
527
+ "Import failed: invalid data": "Import failed: invalid data",
528
+ "Anonymous": "Anonymous",
529
+ "created at {date}": "created at {date}",
530
+ "modified at {date}": "modified at {date}",
531
+ "Default zoom": "Default zoom",
532
+ "Default latitude": "Default latitude",
533
+ "Default longitude": "Default longitude",
534
+ "Edit map default view": "Edit map default view",
535
+ "Use current center and zoom": "Use current center and zoom"
524
536
  }
@@ -19,7 +19,6 @@ const locale = {
19
19
  "Add a new property": "Gehitu jabe berri bat",
20
20
  "Add a polygon to the current multi": "Gehitu poligono bat uneko multiari",
21
21
  "Add image URL": "Gehitu irudiaren URLa",
22
- "Add": "Gehitu",
23
22
  "Advanced actions": "Ekintza aurreratuak",
24
23
  "Advanced properties": "Propietate aurreratuak",
25
24
  "All data and settings of the map": "Maparen datu eta ezarpen guztiak",
@@ -120,7 +119,6 @@ const locale = {
120
119
  "Display the locate control": "Bistaratu lokalizazio kontrola",
121
120
  "Display the measure control": "Bistaratu neurrien kontrola",
122
121
  "Display the search control": "Bistaratu bilaketa-kontrola",
123
- "Display the star map button": "Bistaratu gogoko mapen botoia",
124
122
  "Display the tile layers control": "Bistaratu lauzen geruzaren kontrola",
125
123
  "Display the zoom control": "Bistaratu zoom kontrola",
126
124
  "Do you want to display a caption bar?": "Epigrafeen barra bistaratu nahi duzu?",
@@ -301,7 +299,6 @@ const locale = {
301
299
  "Restore this version": "Berreskuratu bertsio hau",
302
300
  "Save current edits": "Gorde uneko aldaketak",
303
301
  "Save map": "Gorde mapa",
304
- "Save this center and zoom": "Gorde zentro hau eta zoom-maila",
305
302
  "Save this location as new feature": "Gorde kokapen hau entitate berri gisa",
306
303
  "Save": "Gorde",
307
304
  "Saved center and zoom": "Zentroa eta zoom-maila gordeta",
@@ -516,11 +513,26 @@ const locale = {
516
513
  "show/hide all layers": "show/hide all layers",
517
514
  "zoom to data extent": "zoom to data extent",
518
515
  "download visible data": "download visible data",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
520
516
  "Import helpers": "Import helpers",
521
517
  "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
522
518
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
519
+ "Save draft": "Save draft",
520
+ "No data has been found for import": "No data has been found for import",
521
+ "Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
522
+ "Disconnected": "Disconnected",
523
+ "You must be logged in": "You must be logged in",
524
+ "on hover": "on hover",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
527
+ "Import failed: invalid data": "Import failed: invalid data",
528
+ "Anonymous": "Anonymous",
529
+ "created at {date}": "created at {date}",
530
+ "modified at {date}": "modified at {date}",
531
+ "Default zoom": "Default zoom",
532
+ "Default latitude": "Default latitude",
533
+ "Default longitude": "Default longitude",
534
+ "Edit map default view": "Edit map default view",
535
+ "Use current center and zoom": "Use current center and zoom"
524
536
  }
525
537
  L.registerLocale("eu", locale)
526
538
  L.setLocale("eu")
@@ -19,7 +19,6 @@
19
19
  "Add a new property": "Gehitu jabe berri bat",
20
20
  "Add a polygon to the current multi": "Gehitu poligono bat uneko multiari",
21
21
  "Add image URL": "Gehitu irudiaren URLa",
22
- "Add": "Gehitu",
23
22
  "Advanced actions": "Ekintza aurreratuak",
24
23
  "Advanced properties": "Propietate aurreratuak",
25
24
  "All data and settings of the map": "Maparen datu eta ezarpen guztiak",
@@ -120,7 +119,6 @@
120
119
  "Display the locate control": "Bistaratu lokalizazio kontrola",
121
120
  "Display the measure control": "Bistaratu neurrien kontrola",
122
121
  "Display the search control": "Bistaratu bilaketa-kontrola",
123
- "Display the star map button": "Bistaratu gogoko mapen botoia",
124
122
  "Display the tile layers control": "Bistaratu lauzen geruzaren kontrola",
125
123
  "Display the zoom control": "Bistaratu zoom kontrola",
126
124
  "Do you want to display a caption bar?": "Epigrafeen barra bistaratu nahi duzu?",
@@ -301,7 +299,6 @@
301
299
  "Restore this version": "Berreskuratu bertsio hau",
302
300
  "Save current edits": "Gorde uneko aldaketak",
303
301
  "Save map": "Gorde mapa",
304
- "Save this center and zoom": "Gorde zentro hau eta zoom-maila",
305
302
  "Save this location as new feature": "Gorde kokapen hau entitate berri gisa",
306
303
  "Save": "Gorde",
307
304
  "Saved center and zoom": "Zentroa eta zoom-maila gordeta",
@@ -516,9 +513,24 @@
516
513
  "show/hide all layers": "show/hide all layers",
517
514
  "zoom to data extent": "zoom to data extent",
518
515
  "download visible data": "download visible data",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
520
516
  "Import helpers": "Import helpers",
521
517
  "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
522
518
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
519
+ "Save draft": "Save draft",
520
+ "No data has been found for import": "No data has been found for import",
521
+ "Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
522
+ "Disconnected": "Disconnected",
523
+ "You must be logged in": "You must be logged in",
524
+ "on hover": "on hover",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
527
+ "Import failed: invalid data": "Import failed: invalid data",
528
+ "Anonymous": "Anonymous",
529
+ "created at {date}": "created at {date}",
530
+ "modified at {date}": "modified at {date}",
531
+ "Default zoom": "Default zoom",
532
+ "Default latitude": "Default latitude",
533
+ "Default longitude": "Default longitude",
534
+ "Edit map default view": "Edit map default view",
535
+ "Use current center and zoom": "Use current center and zoom"
524
536
  }
@@ -19,7 +19,6 @@ const locale = {
19
19
  "Add a new property": "افزودن ویژگی جدید",
20
20
  "Add a polygon to the current multi": "یک چندضلعی به مولتی فعلی اضافه کنید",
21
21
  "Add image URL": "نشانی تصویر را بدهید",
22
- "Add": "افزودن",
23
22
  "Advanced actions": "کنش‌های پیشرفته",
24
23
  "Advanced properties": "ویژگی‌های پیشرفته",
25
24
  "All data and settings of the map": "همهٔ داده‌ها و تنظیمات نقشه",
@@ -120,7 +119,6 @@ const locale = {
120
119
  "Display the locate control": "نمایش دکمهٔ مکان‌یابی",
121
120
  "Display the measure control": "نمایش دکمهٔ اندازه‌گیری",
122
121
  "Display the search control": "نمایش دکمهٔ جستجو",
123
- "Display the star map button": "نمایش دکمهٔ ستاره‌دارکردن نقشه",
124
122
  "Display the tile layers control": "نمایش دکمهٔ لایه‌های کاشی",
125
123
  "Display the zoom control": "نمایش دکمهٔ زوم",
126
124
  "Do you want to display a caption bar?": "آیا نوار زیرنویس نشان داده شود؟",
@@ -301,7 +299,6 @@ const locale = {
301
299
  "Restore this version": "بازیابی این نسخه",
302
300
  "Save current edits": "ویرایش‌های جاری را ذخیره کنید",
303
301
  "Save map": "نقشه را ذخیره کنید",
304
- "Save this center and zoom": "ذخیره‌سازی این مرکزیت و بزرگنمایی",
305
302
  "Save this location as new feature": "این مکان را به عنوان عنصر جدید ذخیره کنید",
306
303
  "Save": "ذخیره",
307
304
  "Saved center and zoom": "مرکزیت و بزرگنمایی ذخیره‌شده",
@@ -516,11 +513,26 @@ const locale = {
516
513
  "show/hide all layers": "show/hide all layers",
517
514
  "zoom to data extent": "zoom to data extent",
518
515
  "download visible data": "download visible data",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
520
516
  "Import helpers": "Import helpers",
521
517
  "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
522
518
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
519
+ "Save draft": "Save draft",
520
+ "No data has been found for import": "No data has been found for import",
521
+ "Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
522
+ "Disconnected": "Disconnected",
523
+ "You must be logged in": "You must be logged in",
524
+ "on hover": "on hover",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
527
+ "Import failed: invalid data": "Import failed: invalid data",
528
+ "Anonymous": "Anonymous",
529
+ "created at {date}": "created at {date}",
530
+ "modified at {date}": "modified at {date}",
531
+ "Default zoom": "Default zoom",
532
+ "Default latitude": "Default latitude",
533
+ "Default longitude": "Default longitude",
534
+ "Edit map default view": "Edit map default view",
535
+ "Use current center and zoom": "Use current center and zoom"
524
536
  }
525
537
  L.registerLocale("fa_IR", locale)
526
538
  L.setLocale("fa_IR")
@@ -19,7 +19,6 @@
19
19
  "Add a new property": "افزودن ویژگی جدید",
20
20
  "Add a polygon to the current multi": "یک چندضلعی به مولتی فعلی اضافه کنید",
21
21
  "Add image URL": "نشانی تصویر را بدهید",
22
- "Add": "افزودن",
23
22
  "Advanced actions": "کنش‌های پیشرفته",
24
23
  "Advanced properties": "ویژگی‌های پیشرفته",
25
24
  "All data and settings of the map": "همهٔ داده‌ها و تنظیمات نقشه",
@@ -120,7 +119,6 @@
120
119
  "Display the locate control": "نمایش دکمهٔ مکان‌یابی",
121
120
  "Display the measure control": "نمایش دکمهٔ اندازه‌گیری",
122
121
  "Display the search control": "نمایش دکمهٔ جستجو",
123
- "Display the star map button": "نمایش دکمهٔ ستاره‌دارکردن نقشه",
124
122
  "Display the tile layers control": "نمایش دکمهٔ لایه‌های کاشی",
125
123
  "Display the zoom control": "نمایش دکمهٔ زوم",
126
124
  "Do you want to display a caption bar?": "آیا نوار زیرنویس نشان داده شود؟",
@@ -301,7 +299,6 @@
301
299
  "Restore this version": "بازیابی این نسخه",
302
300
  "Save current edits": "ویرایش‌های جاری را ذخیره کنید",
303
301
  "Save map": "نقشه را ذخیره کنید",
304
- "Save this center and zoom": "ذخیره‌سازی این مرکزیت و بزرگنمایی",
305
302
  "Save this location as new feature": "این مکان را به عنوان عنصر جدید ذخیره کنید",
306
303
  "Save": "ذخیره",
307
304
  "Saved center and zoom": "مرکزیت و بزرگنمایی ذخیره‌شده",
@@ -516,9 +513,24 @@
516
513
  "show/hide all layers": "show/hide all layers",
517
514
  "zoom to data extent": "zoom to data extent",
518
515
  "download visible data": "download visible data",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
520
516
  "Import helpers": "Import helpers",
521
517
  "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
522
518
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
519
+ "Save draft": "Save draft",
520
+ "No data has been found for import": "No data has been found for import",
521
+ "Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
522
+ "Disconnected": "Disconnected",
523
+ "You must be logged in": "You must be logged in",
524
+ "on hover": "on hover",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
527
+ "Import failed: invalid data": "Import failed: invalid data",
528
+ "Anonymous": "Anonymous",
529
+ "created at {date}": "created at {date}",
530
+ "modified at {date}": "modified at {date}",
531
+ "Default zoom": "Default zoom",
532
+ "Default latitude": "Default latitude",
533
+ "Default longitude": "Default longitude",
534
+ "Edit map default view": "Edit map default view",
535
+ "Use current center and zoom": "Use current center and zoom"
524
536
  }