umap-project 2.9.2__py3-none-any.whl → 3.0.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 (222) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/forms.py +1 -2
  4. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/de/LC_MESSAGES/django.po +218 -96
  6. umap/locale/en/LC_MESSAGES/django.po +131 -55
  7. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/et/LC_MESSAGES/django.po +175 -130
  9. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/eu/LC_MESSAGES/django.po +117 -72
  11. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/fr/LC_MESSAGES/django.po +132 -56
  13. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/hu/LC_MESSAGES/django.po +209 -88
  15. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/is/LC_MESSAGES/django.po +296 -175
  17. umap/middleware.py +2 -1
  18. umap/migrations/0027_map_tags.py +23 -0
  19. umap/models.py +13 -2
  20. umap/settings/base.py +23 -5
  21. umap/static/umap/base.css +41 -8
  22. umap/static/umap/content.css +72 -37
  23. umap/static/umap/css/bar.css +43 -21
  24. umap/static/umap/css/dialog.css +4 -1
  25. umap/static/umap/css/form.css +40 -27
  26. umap/static/umap/css/icon.css +11 -1
  27. umap/static/umap/css/importers.css +7 -0
  28. umap/static/umap/img/16-white.svg +23 -2
  29. umap/static/umap/img/16.svg +1 -1
  30. umap/static/umap/img/24.svg +4 -4
  31. umap/static/umap/img/home.svg +7 -0
  32. umap/static/umap/img/importers/banfr.svg +1 -0
  33. umap/static/umap/img/marker.svg +2 -5
  34. umap/static/umap/img/source/16-white.svg +24 -3
  35. umap/static/umap/img/source/16.svg +1 -1
  36. umap/static/umap/img/source/24.svg +5 -5
  37. umap/static/umap/img/target.svg +1 -0
  38. umap/static/umap/js/components/alerts/alert.js +0 -1
  39. umap/static/umap/js/modules/browser.js +4 -4
  40. umap/static/umap/js/modules/caption.js +1 -1
  41. umap/static/umap/js/modules/data/features.js +25 -25
  42. umap/static/umap/js/modules/data/layer.js +91 -97
  43. umap/static/umap/js/modules/facets.js +9 -5
  44. umap/static/umap/js/modules/form/builder.js +21 -29
  45. umap/static/umap/js/modules/form/fields.js +40 -14
  46. umap/static/umap/js/modules/formatter.js +1 -1
  47. umap/static/umap/js/modules/global.js +9 -5
  48. umap/static/umap/js/modules/help.js +18 -5
  49. umap/static/umap/js/modules/importer.js +5 -2
  50. umap/static/umap/js/modules/importers/banfr.js +93 -0
  51. umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
  52. umap/static/umap/js/modules/importers/communesfr.js +1 -1
  53. umap/static/umap/js/modules/permissions.js +20 -10
  54. umap/static/umap/js/modules/rendering/icon.js +15 -2
  55. umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
  56. umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
  57. umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
  58. umap/static/umap/js/modules/rendering/map.js +14 -6
  59. umap/static/umap/js/modules/rendering/popup.js +2 -2
  60. umap/static/umap/js/modules/rendering/template.js +3 -3
  61. umap/static/umap/js/modules/rendering/ui.js +17 -11
  62. umap/static/umap/js/modules/rules.js +13 -16
  63. umap/static/umap/js/modules/schema.js +23 -1
  64. umap/static/umap/js/modules/share.js +1 -1
  65. umap/static/umap/js/modules/slideshow.js +1 -0
  66. umap/static/umap/js/modules/sync/engine.js +141 -19
  67. umap/static/umap/js/modules/sync/undo.js +101 -0
  68. umap/static/umap/js/modules/sync/updaters.js +51 -28
  69. umap/static/umap/js/modules/tableeditor.js +1 -1
  70. umap/static/umap/js/modules/ui/bar.js +61 -21
  71. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  72. umap/static/umap/js/modules/umap.js +190 -176
  73. umap/static/umap/js/modules/utils.js +30 -4
  74. umap/static/umap/js/umap.controls.js +82 -38
  75. umap/static/umap/locale/am_ET.js +13 -7
  76. umap/static/umap/locale/am_ET.json +13 -7
  77. umap/static/umap/locale/ar.js +13 -7
  78. umap/static/umap/locale/ar.json +13 -7
  79. umap/static/umap/locale/ast.js +13 -7
  80. umap/static/umap/locale/ast.json +13 -7
  81. umap/static/umap/locale/bg.js +13 -7
  82. umap/static/umap/locale/bg.json +13 -7
  83. umap/static/umap/locale/br.js +13 -8
  84. umap/static/umap/locale/br.json +13 -8
  85. umap/static/umap/locale/ca.js +13 -7
  86. umap/static/umap/locale/ca.json +13 -7
  87. umap/static/umap/locale/cs_CZ.js +26 -20
  88. umap/static/umap/locale/cs_CZ.json +26 -20
  89. umap/static/umap/locale/da.js +13 -7
  90. umap/static/umap/locale/da.json +13 -7
  91. umap/static/umap/locale/de.js +47 -41
  92. umap/static/umap/locale/de.json +47 -41
  93. umap/static/umap/locale/el.js +13 -7
  94. umap/static/umap/locale/el.json +13 -7
  95. umap/static/umap/locale/en.js +12 -7
  96. umap/static/umap/locale/en.json +12 -7
  97. umap/static/umap/locale/en_US.json +13 -7
  98. umap/static/umap/locale/es.js +19 -13
  99. umap/static/umap/locale/es.json +19 -13
  100. umap/static/umap/locale/et.js +13 -7
  101. umap/static/umap/locale/et.json +13 -7
  102. umap/static/umap/locale/eu.js +43 -37
  103. umap/static/umap/locale/eu.json +43 -37
  104. umap/static/umap/locale/fa_IR.js +13 -7
  105. umap/static/umap/locale/fa_IR.json +13 -7
  106. umap/static/umap/locale/fi.js +13 -7
  107. umap/static/umap/locale/fi.json +13 -7
  108. umap/static/umap/locale/fr.js +12 -7
  109. umap/static/umap/locale/fr.json +12 -7
  110. umap/static/umap/locale/gl.js +19 -13
  111. umap/static/umap/locale/gl.json +19 -13
  112. umap/static/umap/locale/he.js +13 -7
  113. umap/static/umap/locale/he.json +13 -7
  114. umap/static/umap/locale/hr.js +13 -7
  115. umap/static/umap/locale/hr.json +13 -7
  116. umap/static/umap/locale/hu.js +25 -19
  117. umap/static/umap/locale/hu.json +25 -19
  118. umap/static/umap/locale/id.js +13 -7
  119. umap/static/umap/locale/id.json +13 -7
  120. umap/static/umap/locale/is.js +151 -145
  121. umap/static/umap/locale/is.json +151 -145
  122. umap/static/umap/locale/it.js +13 -7
  123. umap/static/umap/locale/it.json +13 -7
  124. umap/static/umap/locale/ja.js +13 -7
  125. umap/static/umap/locale/ja.json +13 -7
  126. umap/static/umap/locale/ko.js +13 -7
  127. umap/static/umap/locale/ko.json +13 -7
  128. umap/static/umap/locale/lt.js +13 -7
  129. umap/static/umap/locale/lt.json +13 -7
  130. umap/static/umap/locale/ms.js +13 -7
  131. umap/static/umap/locale/ms.json +13 -7
  132. umap/static/umap/locale/nl.js +12 -7
  133. umap/static/umap/locale/nl.json +12 -7
  134. umap/static/umap/locale/no.js +13 -7
  135. umap/static/umap/locale/no.json +13 -7
  136. umap/static/umap/locale/pl.js +13 -7
  137. umap/static/umap/locale/pl.json +13 -7
  138. umap/static/umap/locale/pl_PL.json +13 -7
  139. umap/static/umap/locale/pt.js +12 -7
  140. umap/static/umap/locale/pt.json +12 -7
  141. umap/static/umap/locale/pt_BR.js +13 -7
  142. umap/static/umap/locale/pt_BR.json +13 -7
  143. umap/static/umap/locale/pt_PT.js +13 -7
  144. umap/static/umap/locale/pt_PT.json +13 -7
  145. umap/static/umap/locale/ro.js +13 -7
  146. umap/static/umap/locale/ro.json +13 -7
  147. umap/static/umap/locale/ru.js +13 -7
  148. umap/static/umap/locale/ru.json +13 -7
  149. umap/static/umap/locale/sk_SK.js +13 -7
  150. umap/static/umap/locale/sk_SK.json +13 -7
  151. umap/static/umap/locale/sl.js +13 -7
  152. umap/static/umap/locale/sl.json +13 -7
  153. umap/static/umap/locale/sr.js +13 -7
  154. umap/static/umap/locale/sr.json +13 -7
  155. umap/static/umap/locale/sv.js +13 -7
  156. umap/static/umap/locale/sv.json +13 -7
  157. umap/static/umap/locale/th_TH.js +13 -7
  158. umap/static/umap/locale/th_TH.json +13 -7
  159. umap/static/umap/locale/tr.js +13 -7
  160. umap/static/umap/locale/tr.json +13 -7
  161. umap/static/umap/locale/uk_UA.js +13 -7
  162. umap/static/umap/locale/uk_UA.json +13 -7
  163. umap/static/umap/locale/vi.js +13 -7
  164. umap/static/umap/locale/vi.json +13 -7
  165. umap/static/umap/locale/vi_VN.json +13 -7
  166. umap/static/umap/locale/zh.js +13 -7
  167. umap/static/umap/locale/zh.json +13 -7
  168. umap/static/umap/locale/zh_CN.json +13 -7
  169. umap/static/umap/locale/zh_TW.Big5.json +13 -7
  170. umap/static/umap/locale/zh_TW.js +19 -13
  171. umap/static/umap/locale/zh_TW.json +19 -13
  172. umap/static/umap/map.css +58 -28
  173. umap/static/umap/unittests/sync.js +0 -57
  174. umap/static/umap/unittests/utils.js +47 -0
  175. umap/static/umap/vars.css +5 -2
  176. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  177. umap/sync/payloads.py +3 -2
  178. umap/templates/auth/user_detail.html +1 -1
  179. umap/templates/auth/user_stars.html +1 -1
  180. umap/templates/umap/content.html +17 -12
  181. umap/templates/umap/home.html +7 -5
  182. umap/templates/umap/map_fragment.html +1 -1
  183. umap/templates/umap/map_list.html +20 -13
  184. umap/templates/umap/search.html +7 -3
  185. umap/templates/umap/search_bar.html +13 -11
  186. umap/templates/umap/team_detail.html +1 -1
  187. umap/tests/base.py +2 -1
  188. umap/tests/fixtures/remote_data.umap +55 -0
  189. umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
  190. umap/tests/integration/test_browser.py +1 -3
  191. umap/tests/integration/test_conditional_rules.py +3 -0
  192. umap/tests/integration/test_edit_datalayer.py +2 -7
  193. umap/tests/integration/test_edit_map.py +15 -0
  194. umap/tests/integration/test_edit_polygon.py +1 -2
  195. umap/tests/integration/test_import.py +59 -2
  196. umap/tests/integration/test_optimistic_merge.py +4 -3
  197. umap/tests/integration/test_owned_map.py +0 -1
  198. umap/tests/integration/test_save.py +2 -4
  199. umap/tests/integration/test_undo_redo.py +267 -0
  200. umap/tests/integration/test_websocket_sync.py +78 -11
  201. umap/tests/settings.py +1 -3
  202. umap/tests/test_datalayer_s3.py +1 -0
  203. umap/tests/test_map_views.py +1 -0
  204. umap/tests/test_views.py +34 -0
  205. umap/utils.py +1 -1
  206. umap/views.py +23 -2
  207. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/METADATA +13 -12
  208. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/RECORD +211 -213
  209. umap/static/umap/js/modules/saving.js +0 -52
  210. umap/static/umap/test/.eslintrc +0 -21
  211. umap/static/umap/test/DataLayer.js +0 -463
  212. umap/static/umap/test/Feature.js +0 -131
  213. umap/static/umap/test/Map.js +0 -37
  214. umap/static/umap/test/Marker.js +0 -126
  215. umap/static/umap/test/Polygon.js +0 -111
  216. umap/static/umap/test/Polyline.js +0 -286
  217. umap/static/umap/test/Util.js +0 -28
  218. umap/static/umap/test/_pre.js +0 -455
  219. umap/static/umap/test/index.html +0 -139
  220. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/WHEEL +0 -0
  221. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/entry_points.txt +0 -0
  222. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/licenses/LICENSE +0 -0
@@ -27,10 +27,7 @@ const locale = {
27
27
  "Allow scroll wheel zoom?": "¿Permitir zoom con la rueda de desplazamiento?",
28
28
  "always": "siempre",
29
29
  "Animated transitions": "Transiciones animadas",
30
- "Are you sure you want to cancel your changes?": "¿Estás seguro de que quieres cancelar los cambios?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "¿Estás seguro de que quieres clonar este mapa y todas sus capas de datos?",
32
- "Are you sure you want to delete the feature?": "¿Estás seguro de que quieres eliminar el elemento?",
33
- "Are you sure you want to delete this layer?": "¿Estás seguro de que quieres eliminar esta capa?",
34
31
  "Are you sure you want to delete this map?": "¿Estás seguro de que quieres eliminar este mapa?",
35
32
  "Are you sure you want to delete this property on all the features?": "¿Estás seguro de que quieres eliminar esta propiedad en todos los elementos?",
36
33
  "Are you sure you want to restore this version?": "¿Estás seguro de que quieres restaurar esta versión?",
@@ -46,7 +43,6 @@ const locale = {
46
43
  "Browse data": "Explorar datos",
47
44
  "by": "por",
48
45
  "Cache proxied request": "Almacenar en caché la solicitud de proxy",
49
- "Cancel edits": "Cancelar ediciones",
50
46
  "Caption": "Leyenda",
51
47
  "Center map on your location": "Centrar el mapa en tu ubicación",
52
48
  "Change map background": "Cambiar el fondo del mapa",
@@ -299,7 +295,6 @@ const locale = {
299
295
  "Restore this version": "Restaurar esta versión",
300
296
  "Save current edits": "Guardar las ediciones actuales",
301
297
  "Save map": "Guardar mapa",
302
- "Save this location as new feature": "Guardar esta ubicación como un nuevo elemento",
303
298
  "Save": "Guardar",
304
299
  "Saved center and zoom": "Centro y zoom guardados",
305
300
  "Search location": "Buscar ubicación",
@@ -387,7 +382,6 @@ const locale = {
387
382
  "Zoom to the next": "Zoom al siguiente",
388
383
  "Zoom to the previous": "Zoom al anterior",
389
384
  "Zoom to this feature": "Zoom a este elemento",
390
- "Zoom to this place": "Zoom a este lugar",
391
385
  "{area} acres": "{area} acres",
392
386
  "{area} ha": "{area} ha",
393
387
  "{area} m²": "{area} m²",
@@ -526,13 +520,25 @@ const locale = {
526
520
  "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
521
  "Import failed: invalid data": "Falló la importación: datos no válidos",
528
522
  "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"
523
+ "created at {date}": "creado el {date}",
524
+ "modified at {date}": "modificado el {date}",
525
+ "Default zoom": "Zoom predeterminado",
526
+ "Default latitude": "Latitud predeterminada",
527
+ "Default longitude": "Longitud predeterminada",
528
+ "Edit map default view": "Editar vista predeterminada del mapa",
529
+ "Use current center and zoom": "Usar el centro y zoom actuales",
530
+ "Layer permalink": "Layer permalink",
531
+ "Back to home": "Back to home",
532
+ "Home logo": "Home logo",
533
+ "Add this geometry to my map": "Add this geometry to my map",
534
+ "Add this place to my map": "Add this place to my map",
535
+ "Cancel last edit": "Cancel last edit",
536
+ "Redo last edit": "Redo last edit",
537
+ "Links": "Links",
538
+ "Images": "Images",
539
+ "Iframes": "Iframes",
540
+ "Tags": "Tags",
541
+ "Geocode": "Geocode"
536
542
  }
537
543
  L.registerLocale("es", locale)
538
544
  L.setLocale("es")
@@ -27,10 +27,7 @@
27
27
  "Allow scroll wheel zoom?": "¿Permitir zoom con la rueda de desplazamiento?",
28
28
  "always": "siempre",
29
29
  "Animated transitions": "Transiciones animadas",
30
- "Are you sure you want to cancel your changes?": "¿Estás seguro de que quieres cancelar los cambios?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "¿Estás seguro de que quieres clonar este mapa y todas sus capas de datos?",
32
- "Are you sure you want to delete the feature?": "¿Estás seguro de que quieres eliminar el elemento?",
33
- "Are you sure you want to delete this layer?": "¿Estás seguro de que quieres eliminar esta capa?",
34
31
  "Are you sure you want to delete this map?": "¿Estás seguro de que quieres eliminar este mapa?",
35
32
  "Are you sure you want to delete this property on all the features?": "¿Estás seguro de que quieres eliminar esta propiedad en todos los elementos?",
36
33
  "Are you sure you want to restore this version?": "¿Estás seguro de que quieres restaurar esta versión?",
@@ -46,7 +43,6 @@
46
43
  "Browse data": "Explorar datos",
47
44
  "by": "por",
48
45
  "Cache proxied request": "Almacenar en caché la solicitud de proxy",
49
- "Cancel edits": "Cancelar ediciones",
50
46
  "Caption": "Leyenda",
51
47
  "Center map on your location": "Centrar el mapa en tu ubicación",
52
48
  "Change map background": "Cambiar el fondo del mapa",
@@ -299,7 +295,6 @@
299
295
  "Restore this version": "Restaurar esta versión",
300
296
  "Save current edits": "Guardar las ediciones actuales",
301
297
  "Save map": "Guardar mapa",
302
- "Save this location as new feature": "Guardar esta ubicación como un nuevo elemento",
303
298
  "Save": "Guardar",
304
299
  "Saved center and zoom": "Centro y zoom guardados",
305
300
  "Search location": "Buscar ubicación",
@@ -387,7 +382,6 @@
387
382
  "Zoom to the next": "Zoom al siguiente",
388
383
  "Zoom to the previous": "Zoom al anterior",
389
384
  "Zoom to this feature": "Zoom a este elemento",
390
- "Zoom to this place": "Zoom a este lugar",
391
385
  "{area} acres": "{area} acres",
392
386
  "{area} ha": "{area} ha",
393
387
  "{area} m²": "{area} m²",
@@ -526,11 +520,23 @@
526
520
  "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
521
  "Import failed: invalid data": "Falló la importación: datos no válidos",
528
522
  "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"
523
+ "created at {date}": "creado el {date}",
524
+ "modified at {date}": "modificado el {date}",
525
+ "Default zoom": "Zoom predeterminado",
526
+ "Default latitude": "Latitud predeterminada",
527
+ "Default longitude": "Longitud predeterminada",
528
+ "Edit map default view": "Editar vista predeterminada del mapa",
529
+ "Use current center and zoom": "Usar el centro y zoom actuales",
530
+ "Layer permalink": "Layer permalink",
531
+ "Back to home": "Back to home",
532
+ "Home logo": "Home logo",
533
+ "Add this geometry to my map": "Add this geometry to my map",
534
+ "Add this place to my map": "Add this place to my map",
535
+ "Cancel last edit": "Cancel last edit",
536
+ "Redo last edit": "Redo last edit",
537
+ "Links": "Links",
538
+ "Images": "Images",
539
+ "Iframes": "Iframes",
540
+ "Tags": "Tags",
541
+ "Geocode": "Geocode"
536
542
  }
@@ -27,10 +27,7 @@ const locale = {
27
27
  "Allow scroll wheel zoom?": "Luba hiirerullikuga suurendamine?",
28
28
  "always": "alati",
29
29
  "Animated transitions": "Animated transitions",
30
- "Are you sure you want to cancel your changes?": "Oled sa kindel, et soovid muudatustest loobuda?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Oled sa kindel, et soovid kopeerida seda kaarti ja kõiki selle andmekihte?",
32
- "Are you sure you want to delete the feature?": "Oled sa kindel, et soovid seda elementi kustutada?",
33
- "Are you sure you want to delete this layer?": "Oled sa kindel, et soovid seda kihti kustutada?",
34
31
  "Are you sure you want to delete this map?": "Oled sa kindel, et soovid seda kaarti kustutada?",
35
32
  "Are you sure you want to delete this property on all the features?": "Oled sa kindel, et soovid kõigi elementide juurest selle omaduse kustutada?",
36
33
  "Are you sure you want to restore this version?": "Oled sa kindel, et soovid taastada selle versiooni?",
@@ -46,7 +43,6 @@ const locale = {
46
43
  "Browse data": "Andmete sirvimine",
47
44
  "by": "autorilt",
48
45
  "Cache proxied request": "Cache proxied request",
49
- "Cancel edits": "Loobu muudatustest",
50
46
  "Caption": "Legend",
51
47
  "Center map on your location": "Sea oma asukoht keskpunktiks",
52
48
  "Change map background": "Vaheta kaardi taust",
@@ -299,7 +295,6 @@ const locale = {
299
295
  "Restore this version": "Taasta see versioon",
300
296
  "Save current edits": "Salvesta praegused muudatused",
301
297
  "Save map": "Save map",
302
- "Save this location as new feature": "Salvesta see asukoht uue elemendina",
303
298
  "Save": "Salvesta",
304
299
  "Saved center and zoom": "Saved center and zoom",
305
300
  "Search location": "Asukoha otsing",
@@ -387,7 +382,6 @@ const locale = {
387
382
  "Zoom to the next": "Järgmine",
388
383
  "Zoom to the previous": "Eelmine",
389
384
  "Zoom to this feature": "Zoom to this feature",
390
- "Zoom to this place": "Suurenda selle kohani",
391
385
  "{area} acres": "{area} acres",
392
386
  "{area} ha": "{area} ha",
393
387
  "{area} m²": "{area} m²",
@@ -532,7 +526,19 @@ const locale = {
532
526
  "Default latitude": "Default latitude",
533
527
  "Default longitude": "Default longitude",
534
528
  "Edit map default view": "Edit map default view",
535
- "Use current center and zoom": "Use current center and zoom"
529
+ "Use current center and zoom": "Use current center and zoom",
530
+ "Layer permalink": "Layer permalink",
531
+ "Back to home": "Back to home",
532
+ "Home logo": "Home logo",
533
+ "Add this geometry to my map": "Add this geometry to my map",
534
+ "Add this place to my map": "Add this place to my map",
535
+ "Cancel last edit": "Cancel last edit",
536
+ "Redo last edit": "Redo last edit",
537
+ "Links": "Links",
538
+ "Images": "Images",
539
+ "Iframes": "Iframes",
540
+ "Tags": "Tags",
541
+ "Geocode": "Geocode"
536
542
  }
537
543
  L.registerLocale("et", locale)
538
544
  L.setLocale("et")
@@ -27,10 +27,7 @@
27
27
  "Allow scroll wheel zoom?": "Luba hiirerullikuga suurendamine?",
28
28
  "always": "alati",
29
29
  "Animated transitions": "Animated transitions",
30
- "Are you sure you want to cancel your changes?": "Oled sa kindel, et soovid muudatustest loobuda?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Oled sa kindel, et soovid kopeerida seda kaarti ja kõiki selle andmekihte?",
32
- "Are you sure you want to delete the feature?": "Oled sa kindel, et soovid seda elementi kustutada?",
33
- "Are you sure you want to delete this layer?": "Oled sa kindel, et soovid seda kihti kustutada?",
34
31
  "Are you sure you want to delete this map?": "Oled sa kindel, et soovid seda kaarti kustutada?",
35
32
  "Are you sure you want to delete this property on all the features?": "Oled sa kindel, et soovid kõigi elementide juurest selle omaduse kustutada?",
36
33
  "Are you sure you want to restore this version?": "Oled sa kindel, et soovid taastada selle versiooni?",
@@ -46,7 +43,6 @@
46
43
  "Browse data": "Andmete sirvimine",
47
44
  "by": "autorilt",
48
45
  "Cache proxied request": "Cache proxied request",
49
- "Cancel edits": "Loobu muudatustest",
50
46
  "Caption": "Legend",
51
47
  "Center map on your location": "Sea oma asukoht keskpunktiks",
52
48
  "Change map background": "Vaheta kaardi taust",
@@ -299,7 +295,6 @@
299
295
  "Restore this version": "Taasta see versioon",
300
296
  "Save current edits": "Salvesta praegused muudatused",
301
297
  "Save map": "Save map",
302
- "Save this location as new feature": "Salvesta see asukoht uue elemendina",
303
298
  "Save": "Salvesta",
304
299
  "Saved center and zoom": "Saved center and zoom",
305
300
  "Search location": "Asukoha otsing",
@@ -387,7 +382,6 @@
387
382
  "Zoom to the next": "Järgmine",
388
383
  "Zoom to the previous": "Eelmine",
389
384
  "Zoom to this feature": "Zoom to this feature",
390
- "Zoom to this place": "Suurenda selle kohani",
391
385
  "{area} acres": "{area} acres",
392
386
  "{area} ha": "{area} ha",
393
387
  "{area} m²": "{area} m²",
@@ -532,5 +526,17 @@
532
526
  "Default latitude": "Default latitude",
533
527
  "Default longitude": "Default longitude",
534
528
  "Edit map default view": "Edit map default view",
535
- "Use current center and zoom": "Use current center and zoom"
529
+ "Use current center and zoom": "Use current center and zoom",
530
+ "Layer permalink": "Layer permalink",
531
+ "Back to home": "Back to home",
532
+ "Home logo": "Home logo",
533
+ "Add this geometry to my map": "Add this geometry to my map",
534
+ "Add this place to my map": "Add this place to my map",
535
+ "Cancel last edit": "Cancel last edit",
536
+ "Redo last edit": "Redo last edit",
537
+ "Links": "Links",
538
+ "Images": "Images",
539
+ "Iframes": "Iframes",
540
+ "Tags": "Tags",
541
+ "Geocode": "Geocode"
536
542
  }
@@ -27,10 +27,7 @@ const locale = {
27
27
  "Allow scroll wheel zoom?": "Saguaren errobera erabiliz zoom egitea baimendu?",
28
28
  "always": "beti",
29
29
  "Animated transitions": "Trantsizio animatuak",
30
- "Are you sure you want to cancel your changes?": "Ziur aldaketak bertan behera utzi nahi dituzula?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Ziur mapa hau eta bere datu-geruza guztiak klonatu nahi dituzula?",
32
- "Are you sure you want to delete the feature?": "Ziur entitatea ezabatu nahi duzula?",
33
- "Are you sure you want to delete this layer?": "Ziur geruza hau ezabatu nahi duzula?",
34
31
  "Are you sure you want to delete this map?": "Ziur mapa hau ezabatu nahi duzula?",
35
32
  "Are you sure you want to delete this property on all the features?": "Ziur propietate hau entitate guztietan ezabatu nahi duzula?",
36
33
  "Are you sure you want to restore this version?": "Ziur bertsio hau leheneratu nahi duzula?",
@@ -46,7 +43,6 @@ const locale = {
46
43
  "Browse data": "Arakatu datuak",
47
44
  "by": "egilea",
48
45
  "Cache proxied request": "Cache proxy eskaera",
49
- "Cancel edits": "Utzi aldaketak",
50
46
  "Caption": "Testua",
51
47
  "Center map on your location": "Zentratu mapa zure kokapenean",
52
48
  "Change map background": "Aldatu maparen atzeko planoa",
@@ -214,7 +210,7 @@ const locale = {
214
210
  "Limit bounds": "Mugak",
215
211
  "Link to view the map": "Mapa ikusteko esteka",
216
212
  "Link to…": "Estekatu honi...",
217
- "Link with text: [[https://example.com|text of the link]]": "Link with text: [[https://example.com|text of the link]]",
213
+ "Link with text: [[https://example.com|text of the link]]": "Testua duen esteka: [[https://adibidez.com|estekaren testua]]",
218
214
  "Long credits": "Kreditu luzeak",
219
215
  "Longitude": "Longitudea",
220
216
  "Make main shape": "Egin forma nagusia",
@@ -299,7 +295,6 @@ const locale = {
299
295
  "Restore this version": "Berreskuratu bertsio hau",
300
296
  "Save current edits": "Gorde uneko aldaketak",
301
297
  "Save map": "Gorde mapa",
302
- "Save this location as new feature": "Gorde kokapen hau entitate berri gisa",
303
298
  "Save": "Gorde",
304
299
  "Saved center and zoom": "Zentroa eta zoom-maila gordeta",
305
300
  "Search location": "Bilatu tokia",
@@ -317,7 +312,7 @@ const locale = {
317
312
  "Show this layer in the caption": "Erakutsi geruza hau epigrafean",
318
313
  "Show/hide layer": "Erakutsi/Ezkutatu geruza",
319
314
  "Side panel": "Alboko panela",
320
- "Simple link: [[https://example.com]]": "Simple link: [[https://example.com]]",
315
+ "Simple link: [[https://example.com]]": "Esteka sinplea: [[https://adibidez.com]]",
321
316
  "Simplify": "Sinplifikatu",
322
317
  "Skipping unknown geometry.type: {type}": "geometry.type ezezaguna saltatzen: {type}",
323
318
  "Slideshow": "Aurkezpena",
@@ -387,7 +382,6 @@ const locale = {
387
382
  "Zoom to the next": "Zooma hurrengora",
388
383
  "Zoom to the previous": "Zoom aurrekora",
389
384
  "Zoom to this feature": "Egin zoom entitate honetan",
390
- "Zoom to this place": "Handitu toki honetara",
391
385
  "{area} acres": "{area} akre",
392
386
  "{area} ha": "{area} ha",
393
387
  "{area} m²": "{area} m²",
@@ -502,37 +496,49 @@ const locale = {
502
496
  "Display the open browser control": "Display the open browser control",
503
497
  "Copy as GeoJSON": "Kopiatu GeoJSON gisa",
504
498
  "Please zoom in to edit the geometry": "Mesedez, handitu geometria editatzeko",
505
- "New map": "New map",
506
- "My maps": "My maps",
507
- "My teams": "My teams",
508
- "My profile": "My profile",
509
- "Type new owner's username": "Type new owner's username",
510
- "Type editor's username": "Type editor's username",
511
- "Map": "Map",
512
- "Manage collaborators": "Manage collaborators",
513
- "show/hide all layers": "show/hide all layers",
499
+ "New map": "Mapa berria",
500
+ "My maps": "Nire mapak",
501
+ "My teams": "Nire taldeak",
502
+ "My profile": "Nire profila",
503
+ "Type new owner's username": "Idatzi jabe berriaren erabiltzaile-izena",
504
+ "Type editor's username": "Idatzi editorearen erabiltzaile-izena",
505
+ "Map": "Mapa",
506
+ "Manage collaborators": "Kudeatu laguntzaileak",
507
+ "show/hide all layers": "erakutsi/ezkutatu geruza guztiak",
514
508
  "zoom to data extent": "zoom to data extent",
515
- "download visible data": "download visible data",
516
- "Import helpers": "Import helpers",
517
- "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
509
+ "download visible data": "deskargatu ikusgai dauden datuak",
510
+ "Import helpers": "Inportatu laguntzaileak",
511
+ "Import helpers will fill the URL field for you.": "Inportatzeko laguntzaileek URL eremua beteko dute zuretzat.",
518
512
  "Wikipedia": "Wikipedia",
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"
513
+ "Save draft": "Gorde zirriborroa",
514
+ "No data has been found for import": "Ez da inportatzeko daturik aurkitu",
515
+ "Successfully imported {count} feature(s)": "Arrakastaz inportatu {count} funtzioa(k)",
516
+ "Disconnected": "Deskonektatuta",
517
+ "You must be logged in": "Saioa ireki behar duzu",
518
+ "on hover": "Sagua gainetik pasatzean",
519
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Ezin da urruneko daturik kargatu \"{layer}\" geruzarako \"{url}\" url-arekin",
520
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Ezin dira urruneko datuak analizatu \"{layer}\" geruzarako \"{url}\" url-arekin",
521
+ "Import failed: invalid data": "Inportazioak huts egin du: datu baliogabeak",
522
+ "Anonymous": "Anonimoa",
523
+ "created at {date}": "{date}-an sortua",
524
+ "modified at {date}": "{date}-an aldatua",
525
+ "Default zoom": "Lehenetsitako zooma",
526
+ "Default latitude": "Lehenetsitako latitudea",
527
+ "Default longitude": "Lehenetsitako longitudea",
528
+ "Edit map default view": "Mapa editatzeko lehenetsitako ikuspegia",
529
+ "Use current center and zoom": "Erabili uneko erdigunea eta zooma",
530
+ "Layer permalink": "Layer permalink",
531
+ "Back to home": "Back to home",
532
+ "Home logo": "Home logo",
533
+ "Add this geometry to my map": "Add this geometry to my map",
534
+ "Add this place to my map": "Add this place to my map",
535
+ "Cancel last edit": "Cancel last edit",
536
+ "Redo last edit": "Redo last edit",
537
+ "Links": "Links",
538
+ "Images": "Images",
539
+ "Iframes": "Iframes",
540
+ "Tags": "Tags",
541
+ "Geocode": "Geocode"
536
542
  }
537
543
  L.registerLocale("eu", locale)
538
544
  L.setLocale("eu")
@@ -27,10 +27,7 @@
27
27
  "Allow scroll wheel zoom?": "Saguaren errobera erabiliz zoom egitea baimendu?",
28
28
  "always": "beti",
29
29
  "Animated transitions": "Trantsizio animatuak",
30
- "Are you sure you want to cancel your changes?": "Ziur aldaketak bertan behera utzi nahi dituzula?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Ziur mapa hau eta bere datu-geruza guztiak klonatu nahi dituzula?",
32
- "Are you sure you want to delete the feature?": "Ziur entitatea ezabatu nahi duzula?",
33
- "Are you sure you want to delete this layer?": "Ziur geruza hau ezabatu nahi duzula?",
34
31
  "Are you sure you want to delete this map?": "Ziur mapa hau ezabatu nahi duzula?",
35
32
  "Are you sure you want to delete this property on all the features?": "Ziur propietate hau entitate guztietan ezabatu nahi duzula?",
36
33
  "Are you sure you want to restore this version?": "Ziur bertsio hau leheneratu nahi duzula?",
@@ -46,7 +43,6 @@
46
43
  "Browse data": "Arakatu datuak",
47
44
  "by": "egilea",
48
45
  "Cache proxied request": "Cache proxy eskaera",
49
- "Cancel edits": "Utzi aldaketak",
50
46
  "Caption": "Testua",
51
47
  "Center map on your location": "Zentratu mapa zure kokapenean",
52
48
  "Change map background": "Aldatu maparen atzeko planoa",
@@ -214,7 +210,7 @@
214
210
  "Limit bounds": "Mugak",
215
211
  "Link to view the map": "Mapa ikusteko esteka",
216
212
  "Link to…": "Estekatu honi...",
217
- "Link with text: [[https://example.com|text of the link]]": "Link with text: [[https://example.com|text of the link]]",
213
+ "Link with text: [[https://example.com|text of the link]]": "Testua duen esteka: [[https://adibidez.com|estekaren testua]]",
218
214
  "Long credits": "Kreditu luzeak",
219
215
  "Longitude": "Longitudea",
220
216
  "Make main shape": "Egin forma nagusia",
@@ -299,7 +295,6 @@
299
295
  "Restore this version": "Berreskuratu bertsio hau",
300
296
  "Save current edits": "Gorde uneko aldaketak",
301
297
  "Save map": "Gorde mapa",
302
- "Save this location as new feature": "Gorde kokapen hau entitate berri gisa",
303
298
  "Save": "Gorde",
304
299
  "Saved center and zoom": "Zentroa eta zoom-maila gordeta",
305
300
  "Search location": "Bilatu tokia",
@@ -317,7 +312,7 @@
317
312
  "Show this layer in the caption": "Erakutsi geruza hau epigrafean",
318
313
  "Show/hide layer": "Erakutsi/Ezkutatu geruza",
319
314
  "Side panel": "Alboko panela",
320
- "Simple link: [[https://example.com]]": "Simple link: [[https://example.com]]",
315
+ "Simple link: [[https://example.com]]": "Esteka sinplea: [[https://adibidez.com]]",
321
316
  "Simplify": "Sinplifikatu",
322
317
  "Skipping unknown geometry.type: {type}": "geometry.type ezezaguna saltatzen: {type}",
323
318
  "Slideshow": "Aurkezpena",
@@ -387,7 +382,6 @@
387
382
  "Zoom to the next": "Zooma hurrengora",
388
383
  "Zoom to the previous": "Zoom aurrekora",
389
384
  "Zoom to this feature": "Egin zoom entitate honetan",
390
- "Zoom to this place": "Handitu toki honetara",
391
385
  "{area} acres": "{area} akre",
392
386
  "{area} ha": "{area} ha",
393
387
  "{area} m²": "{area} m²",
@@ -502,35 +496,47 @@
502
496
  "Display the open browser control": "Display the open browser control",
503
497
  "Copy as GeoJSON": "Kopiatu GeoJSON gisa",
504
498
  "Please zoom in to edit the geometry": "Mesedez, handitu geometria editatzeko",
505
- "New map": "New map",
506
- "My maps": "My maps",
507
- "My teams": "My teams",
508
- "My profile": "My profile",
509
- "Type new owner's username": "Type new owner's username",
510
- "Type editor's username": "Type editor's username",
511
- "Map": "Map",
512
- "Manage collaborators": "Manage collaborators",
513
- "show/hide all layers": "show/hide all layers",
499
+ "New map": "Mapa berria",
500
+ "My maps": "Nire mapak",
501
+ "My teams": "Nire taldeak",
502
+ "My profile": "Nire profila",
503
+ "Type new owner's username": "Idatzi jabe berriaren erabiltzaile-izena",
504
+ "Type editor's username": "Idatzi editorearen erabiltzaile-izena",
505
+ "Map": "Mapa",
506
+ "Manage collaborators": "Kudeatu laguntzaileak",
507
+ "show/hide all layers": "erakutsi/ezkutatu geruza guztiak",
514
508
  "zoom to data extent": "zoom to data extent",
515
- "download visible data": "download visible data",
516
- "Import helpers": "Import helpers",
517
- "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
509
+ "download visible data": "deskargatu ikusgai dauden datuak",
510
+ "Import helpers": "Inportatu laguntzaileak",
511
+ "Import helpers will fill the URL field for you.": "Inportatzeko laguntzaileek URL eremua beteko dute zuretzat.",
518
512
  "Wikipedia": "Wikipedia",
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"
513
+ "Save draft": "Gorde zirriborroa",
514
+ "No data has been found for import": "Ez da inportatzeko daturik aurkitu",
515
+ "Successfully imported {count} feature(s)": "Arrakastaz inportatu {count} funtzioa(k)",
516
+ "Disconnected": "Deskonektatuta",
517
+ "You must be logged in": "Saioa ireki behar duzu",
518
+ "on hover": "Sagua gainetik pasatzean",
519
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Ezin da urruneko daturik kargatu \"{layer}\" geruzarako \"{url}\" url-arekin",
520
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Ezin dira urruneko datuak analizatu \"{layer}\" geruzarako \"{url}\" url-arekin",
521
+ "Import failed: invalid data": "Inportazioak huts egin du: datu baliogabeak",
522
+ "Anonymous": "Anonimoa",
523
+ "created at {date}": "{date}-an sortua",
524
+ "modified at {date}": "{date}-an aldatua",
525
+ "Default zoom": "Lehenetsitako zooma",
526
+ "Default latitude": "Lehenetsitako latitudea",
527
+ "Default longitude": "Lehenetsitako longitudea",
528
+ "Edit map default view": "Mapa editatzeko lehenetsitako ikuspegia",
529
+ "Use current center and zoom": "Erabili uneko erdigunea eta zooma",
530
+ "Layer permalink": "Layer permalink",
531
+ "Back to home": "Back to home",
532
+ "Home logo": "Home logo",
533
+ "Add this geometry to my map": "Add this geometry to my map",
534
+ "Add this place to my map": "Add this place to my map",
535
+ "Cancel last edit": "Cancel last edit",
536
+ "Redo last edit": "Redo last edit",
537
+ "Links": "Links",
538
+ "Images": "Images",
539
+ "Iframes": "Iframes",
540
+ "Tags": "Tags",
541
+ "Geocode": "Geocode"
536
542
  }
@@ -27,10 +27,7 @@ const locale = {
27
27
  "Allow scroll wheel zoom?": "زوم با چرخانک موشواره مجاز باشد؟",
28
28
  "always": "همیشه",
29
29
  "Animated transitions": "گذارهای پویانما",
30
- "Are you sure you want to cancel your changes?": "آیا تغییرات خود را لغو می‌کنید؟",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "آیا از این نقشه و همهٔ لایه‌های دادهٔ آن همانند می‌سازید؟",
32
- "Are you sure you want to delete the feature?": "آیا این عنصر را حذف می‌کنید؟",
33
- "Are you sure you want to delete this layer?": "آیا این لایه را حذف می‌کنید؟",
34
31
  "Are you sure you want to delete this map?": "آیا این نقشه را حذف می‌کنید؟",
35
32
  "Are you sure you want to delete this property on all the features?": "آیا این ویژگی را از همهٔ عناصر حذف می‌کنید؟",
36
33
  "Are you sure you want to restore this version?": "آیا این نسخه را بازیابی می‌کنید؟",
@@ -46,7 +43,6 @@ const locale = {
46
43
  "Browse data": "مرور داده‌ها",
47
44
  "by": "از",
48
45
  "Cache proxied request": "حفظ موقت درخواست پراکسی‌شده",
49
- "Cancel edits": "لغو ویرایش‌ها",
50
46
  "Caption": "درباره",
51
47
  "Center map on your location": "تنظیم مرکز نقشه روی موقعیت شما",
52
48
  "Change map background": "تغییر پس‌زمینهٔ نقشه",
@@ -299,7 +295,6 @@ const locale = {
299
295
  "Restore this version": "بازیابی این نسخه",
300
296
  "Save current edits": "ویرایش‌های جاری را ذخیره کنید",
301
297
  "Save map": "نقشه را ذخیره کنید",
302
- "Save this location as new feature": "این مکان را به عنوان عنصر جدید ذخیره کنید",
303
298
  "Save": "ذخیره",
304
299
  "Saved center and zoom": "مرکزیت و بزرگنمایی ذخیره‌شده",
305
300
  "Search location": "جستجوی مکان",
@@ -387,7 +382,6 @@ const locale = {
387
382
  "Zoom to the next": "تمرکز روی بعدی",
388
383
  "Zoom to the previous": "تمرکز روی قبلی",
389
384
  "Zoom to this feature": "تمرکز روی این عنصر",
390
- "Zoom to this place": "تمرکز روی این مکان",
391
385
  "{area} acres": "{area} هکتار",
392
386
  "{area} ha": "{area} ha",
393
387
  "{area} m²": "{area} m²",
@@ -532,7 +526,19 @@ const locale = {
532
526
  "Default latitude": "Default latitude",
533
527
  "Default longitude": "Default longitude",
534
528
  "Edit map default view": "Edit map default view",
535
- "Use current center and zoom": "Use current center and zoom"
529
+ "Use current center and zoom": "Use current center and zoom",
530
+ "Layer permalink": "Layer permalink",
531
+ "Back to home": "Back to home",
532
+ "Home logo": "Home logo",
533
+ "Add this geometry to my map": "Add this geometry to my map",
534
+ "Add this place to my map": "Add this place to my map",
535
+ "Cancel last edit": "Cancel last edit",
536
+ "Redo last edit": "Redo last edit",
537
+ "Links": "Links",
538
+ "Images": "Images",
539
+ "Iframes": "Iframes",
540
+ "Tags": "Tags",
541
+ "Geocode": "Geocode"
536
542
  }
537
543
  L.registerLocale("fa_IR", locale)
538
544
  L.setLocale("fa_IR")
@@ -27,10 +27,7 @@
27
27
  "Allow scroll wheel zoom?": "زوم با چرخانک موشواره مجاز باشد؟",
28
28
  "always": "همیشه",
29
29
  "Animated transitions": "گذارهای پویانما",
30
- "Are you sure you want to cancel your changes?": "آیا تغییرات خود را لغو می‌کنید؟",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "آیا از این نقشه و همهٔ لایه‌های دادهٔ آن همانند می‌سازید؟",
32
- "Are you sure you want to delete the feature?": "آیا این عنصر را حذف می‌کنید؟",
33
- "Are you sure you want to delete this layer?": "آیا این لایه را حذف می‌کنید؟",
34
31
  "Are you sure you want to delete this map?": "آیا این نقشه را حذف می‌کنید؟",
35
32
  "Are you sure you want to delete this property on all the features?": "آیا این ویژگی را از همهٔ عناصر حذف می‌کنید؟",
36
33
  "Are you sure you want to restore this version?": "آیا این نسخه را بازیابی می‌کنید؟",
@@ -46,7 +43,6 @@
46
43
  "Browse data": "مرور داده‌ها",
47
44
  "by": "از",
48
45
  "Cache proxied request": "حفظ موقت درخواست پراکسی‌شده",
49
- "Cancel edits": "لغو ویرایش‌ها",
50
46
  "Caption": "درباره",
51
47
  "Center map on your location": "تنظیم مرکز نقشه روی موقعیت شما",
52
48
  "Change map background": "تغییر پس‌زمینهٔ نقشه",
@@ -299,7 +295,6 @@
299
295
  "Restore this version": "بازیابی این نسخه",
300
296
  "Save current edits": "ویرایش‌های جاری را ذخیره کنید",
301
297
  "Save map": "نقشه را ذخیره کنید",
302
- "Save this location as new feature": "این مکان را به عنوان عنصر جدید ذخیره کنید",
303
298
  "Save": "ذخیره",
304
299
  "Saved center and zoom": "مرکزیت و بزرگنمایی ذخیره‌شده",
305
300
  "Search location": "جستجوی مکان",
@@ -387,7 +382,6 @@
387
382
  "Zoom to the next": "تمرکز روی بعدی",
388
383
  "Zoom to the previous": "تمرکز روی قبلی",
389
384
  "Zoom to this feature": "تمرکز روی این عنصر",
390
- "Zoom to this place": "تمرکز روی این مکان",
391
385
  "{area} acres": "{area} هکتار",
392
386
  "{area} ha": "{area} ha",
393
387
  "{area} m²": "{area} m²",
@@ -532,5 +526,17 @@
532
526
  "Default latitude": "Default latitude",
533
527
  "Default longitude": "Default longitude",
534
528
  "Edit map default view": "Edit map default view",
535
- "Use current center and zoom": "Use current center and zoom"
529
+ "Use current center and zoom": "Use current center and zoom",
530
+ "Layer permalink": "Layer permalink",
531
+ "Back to home": "Back to home",
532
+ "Home logo": "Home logo",
533
+ "Add this geometry to my map": "Add this geometry to my map",
534
+ "Add this place to my map": "Add this place to my map",
535
+ "Cancel last edit": "Cancel last edit",
536
+ "Redo last edit": "Redo last edit",
537
+ "Links": "Links",
538
+ "Images": "Images",
539
+ "Iframes": "Iframes",
540
+ "Tags": "Tags",
541
+ "Geocode": "Geocode"
536
542
  }