umap-project 2.9.3__py3-none-any.whl → 3.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (217) 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 +128 -52
  7. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/fr/LC_MESSAGES/django.po +128 -52
  9. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/hu/LC_MESSAGES/django.po +209 -88
  11. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/is/LC_MESSAGES/django.po +296 -175
  13. umap/migrations/0027_map_tags.py +23 -0
  14. umap/models.py +13 -2
  15. umap/settings/base.py +23 -5
  16. umap/static/umap/base.css +41 -8
  17. umap/static/umap/content.css +72 -37
  18. umap/static/umap/css/bar.css +43 -21
  19. umap/static/umap/css/dialog.css +4 -1
  20. umap/static/umap/css/form.css +40 -27
  21. umap/static/umap/css/icon.css +11 -1
  22. umap/static/umap/css/importers.css +7 -0
  23. umap/static/umap/img/16-white.svg +23 -2
  24. umap/static/umap/img/16.svg +1 -1
  25. umap/static/umap/img/24.svg +4 -4
  26. umap/static/umap/img/home.svg +7 -0
  27. umap/static/umap/img/importers/banfr.svg +1 -0
  28. umap/static/umap/img/marker.svg +2 -5
  29. umap/static/umap/img/source/16-white.svg +24 -3
  30. umap/static/umap/img/source/16.svg +1 -1
  31. umap/static/umap/img/source/24.svg +5 -5
  32. umap/static/umap/img/target.svg +1 -0
  33. umap/static/umap/js/components/alerts/alert.js +0 -1
  34. umap/static/umap/js/modules/browser.js +4 -4
  35. umap/static/umap/js/modules/caption.js +1 -1
  36. umap/static/umap/js/modules/data/features.js +25 -25
  37. umap/static/umap/js/modules/data/layer.js +91 -97
  38. umap/static/umap/js/modules/facets.js +9 -5
  39. umap/static/umap/js/modules/form/builder.js +19 -27
  40. umap/static/umap/js/modules/form/fields.js +40 -14
  41. umap/static/umap/js/modules/formatter.js +1 -1
  42. umap/static/umap/js/modules/global.js +9 -5
  43. umap/static/umap/js/modules/help.js +18 -5
  44. umap/static/umap/js/modules/importer.js +5 -2
  45. umap/static/umap/js/modules/importers/banfr.js +93 -0
  46. umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
  47. umap/static/umap/js/modules/importers/communesfr.js +1 -1
  48. umap/static/umap/js/modules/permissions.js +20 -10
  49. umap/static/umap/js/modules/rendering/icon.js +15 -2
  50. umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
  51. umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
  52. umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
  53. umap/static/umap/js/modules/rendering/map.js +14 -6
  54. umap/static/umap/js/modules/rendering/popup.js +2 -2
  55. umap/static/umap/js/modules/rendering/template.js +3 -3
  56. umap/static/umap/js/modules/rendering/ui.js +17 -11
  57. umap/static/umap/js/modules/rules.js +13 -16
  58. umap/static/umap/js/modules/schema.js +23 -1
  59. umap/static/umap/js/modules/share.js +1 -1
  60. umap/static/umap/js/modules/slideshow.js +1 -0
  61. umap/static/umap/js/modules/sync/engine.js +141 -19
  62. umap/static/umap/js/modules/sync/undo.js +101 -0
  63. umap/static/umap/js/modules/sync/updaters.js +51 -28
  64. umap/static/umap/js/modules/tableeditor.js +1 -1
  65. umap/static/umap/js/modules/ui/bar.js +61 -21
  66. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  67. umap/static/umap/js/modules/umap.js +190 -176
  68. umap/static/umap/js/modules/utils.js +30 -4
  69. umap/static/umap/js/umap.controls.js +82 -38
  70. umap/static/umap/locale/am_ET.js +11 -6
  71. umap/static/umap/locale/am_ET.json +11 -6
  72. umap/static/umap/locale/ar.js +11 -6
  73. umap/static/umap/locale/ar.json +11 -6
  74. umap/static/umap/locale/ast.js +11 -6
  75. umap/static/umap/locale/ast.json +11 -6
  76. umap/static/umap/locale/bg.js +11 -6
  77. umap/static/umap/locale/bg.json +11 -6
  78. umap/static/umap/locale/br.js +12 -7
  79. umap/static/umap/locale/br.json +12 -7
  80. umap/static/umap/locale/ca.js +11 -6
  81. umap/static/umap/locale/ca.json +11 -6
  82. umap/static/umap/locale/cs_CZ.js +11 -6
  83. umap/static/umap/locale/cs_CZ.json +11 -6
  84. umap/static/umap/locale/da.js +11 -6
  85. umap/static/umap/locale/da.json +11 -6
  86. umap/static/umap/locale/de.js +47 -42
  87. umap/static/umap/locale/de.json +47 -42
  88. umap/static/umap/locale/el.js +11 -6
  89. umap/static/umap/locale/el.json +11 -6
  90. umap/static/umap/locale/en.js +11 -6
  91. umap/static/umap/locale/en.json +11 -6
  92. umap/static/umap/locale/en_US.json +11 -6
  93. umap/static/umap/locale/es.js +11 -6
  94. umap/static/umap/locale/es.json +11 -6
  95. umap/static/umap/locale/et.js +11 -6
  96. umap/static/umap/locale/et.json +11 -6
  97. umap/static/umap/locale/eu.js +11 -6
  98. umap/static/umap/locale/eu.json +11 -6
  99. umap/static/umap/locale/fa_IR.js +11 -6
  100. umap/static/umap/locale/fa_IR.json +11 -6
  101. umap/static/umap/locale/fi.js +11 -6
  102. umap/static/umap/locale/fi.json +11 -6
  103. umap/static/umap/locale/fr.js +11 -6
  104. umap/static/umap/locale/fr.json +11 -6
  105. umap/static/umap/locale/gl.js +12 -7
  106. umap/static/umap/locale/gl.json +12 -7
  107. umap/static/umap/locale/he.js +11 -6
  108. umap/static/umap/locale/he.json +11 -6
  109. umap/static/umap/locale/hr.js +11 -6
  110. umap/static/umap/locale/hr.json +11 -6
  111. umap/static/umap/locale/hu.js +25 -20
  112. umap/static/umap/locale/hu.json +25 -20
  113. umap/static/umap/locale/id.js +11 -6
  114. umap/static/umap/locale/id.json +11 -6
  115. umap/static/umap/locale/is.js +151 -146
  116. umap/static/umap/locale/is.json +151 -146
  117. umap/static/umap/locale/it.js +11 -6
  118. umap/static/umap/locale/it.json +11 -6
  119. umap/static/umap/locale/ja.js +11 -6
  120. umap/static/umap/locale/ja.json +11 -6
  121. umap/static/umap/locale/ko.js +11 -6
  122. umap/static/umap/locale/ko.json +11 -6
  123. umap/static/umap/locale/lt.js +11 -6
  124. umap/static/umap/locale/lt.json +11 -6
  125. umap/static/umap/locale/ms.js +11 -6
  126. umap/static/umap/locale/ms.json +11 -6
  127. umap/static/umap/locale/nl.js +12 -7
  128. umap/static/umap/locale/nl.json +12 -7
  129. umap/static/umap/locale/no.js +11 -6
  130. umap/static/umap/locale/no.json +11 -6
  131. umap/static/umap/locale/pl.js +11 -6
  132. umap/static/umap/locale/pl.json +11 -6
  133. umap/static/umap/locale/pl_PL.json +11 -6
  134. umap/static/umap/locale/pt.js +11 -6
  135. umap/static/umap/locale/pt.json +11 -6
  136. umap/static/umap/locale/pt_BR.js +11 -6
  137. umap/static/umap/locale/pt_BR.json +11 -6
  138. umap/static/umap/locale/pt_PT.js +11 -6
  139. umap/static/umap/locale/pt_PT.json +11 -6
  140. umap/static/umap/locale/ro.js +11 -6
  141. umap/static/umap/locale/ro.json +11 -6
  142. umap/static/umap/locale/ru.js +11 -6
  143. umap/static/umap/locale/ru.json +11 -6
  144. umap/static/umap/locale/sk_SK.js +11 -6
  145. umap/static/umap/locale/sk_SK.json +11 -6
  146. umap/static/umap/locale/sl.js +11 -6
  147. umap/static/umap/locale/sl.json +11 -6
  148. umap/static/umap/locale/sr.js +11 -6
  149. umap/static/umap/locale/sr.json +11 -6
  150. umap/static/umap/locale/sv.js +11 -6
  151. umap/static/umap/locale/sv.json +11 -6
  152. umap/static/umap/locale/th_TH.js +11 -6
  153. umap/static/umap/locale/th_TH.json +11 -6
  154. umap/static/umap/locale/tr.js +11 -6
  155. umap/static/umap/locale/tr.json +11 -6
  156. umap/static/umap/locale/uk_UA.js +11 -6
  157. umap/static/umap/locale/uk_UA.json +11 -6
  158. umap/static/umap/locale/vi.js +11 -6
  159. umap/static/umap/locale/vi.json +11 -6
  160. umap/static/umap/locale/vi_VN.json +11 -6
  161. umap/static/umap/locale/zh.js +11 -6
  162. umap/static/umap/locale/zh.json +11 -6
  163. umap/static/umap/locale/zh_CN.json +11 -6
  164. umap/static/umap/locale/zh_TW.Big5.json +11 -6
  165. umap/static/umap/locale/zh_TW.js +19 -14
  166. umap/static/umap/locale/zh_TW.json +19 -14
  167. umap/static/umap/map.css +58 -28
  168. umap/static/umap/unittests/sync.js +0 -57
  169. umap/static/umap/unittests/utils.js +47 -0
  170. umap/static/umap/vars.css +5 -2
  171. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  172. umap/sync/payloads.py +3 -2
  173. umap/templates/auth/user_detail.html +1 -1
  174. umap/templates/auth/user_stars.html +1 -1
  175. umap/templates/umap/content.html +17 -12
  176. umap/templates/umap/home.html +7 -5
  177. umap/templates/umap/map_fragment.html +1 -1
  178. umap/templates/umap/map_list.html +20 -13
  179. umap/templates/umap/search.html +7 -3
  180. umap/templates/umap/search_bar.html +13 -11
  181. umap/templates/umap/team_detail.html +1 -1
  182. umap/tests/base.py +2 -1
  183. umap/tests/fixtures/remote_data.umap +55 -0
  184. umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
  185. umap/tests/integration/test_browser.py +1 -3
  186. umap/tests/integration/test_conditional_rules.py +3 -0
  187. umap/tests/integration/test_edit_datalayer.py +2 -7
  188. umap/tests/integration/test_edit_map.py +15 -0
  189. umap/tests/integration/test_edit_polygon.py +1 -2
  190. umap/tests/integration/test_import.py +59 -2
  191. umap/tests/integration/test_optimistic_merge.py +4 -3
  192. umap/tests/integration/test_owned_map.py +0 -1
  193. umap/tests/integration/test_save.py +2 -4
  194. umap/tests/integration/test_undo_redo.py +267 -0
  195. umap/tests/integration/test_websocket_sync.py +78 -11
  196. umap/tests/settings.py +1 -3
  197. umap/tests/test_datalayer_s3.py +1 -0
  198. umap/tests/test_map_views.py +1 -0
  199. umap/tests/test_views.py +34 -0
  200. umap/utils.py +1 -1
  201. umap/views.py +23 -2
  202. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/METADATA +13 -12
  203. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/RECORD +206 -208
  204. umap/static/umap/js/modules/saving.js +0 -52
  205. umap/static/umap/test/.eslintrc +0 -21
  206. umap/static/umap/test/DataLayer.js +0 -463
  207. umap/static/umap/test/Feature.js +0 -131
  208. umap/static/umap/test/Map.js +0 -37
  209. umap/static/umap/test/Marker.js +0 -126
  210. umap/static/umap/test/Polygon.js +0 -111
  211. umap/static/umap/test/Polyline.js +0 -286
  212. umap/static/umap/test/Util.js +0 -28
  213. umap/static/umap/test/_pre.js +0 -455
  214. umap/static/umap/test/index.html +0 -139
  215. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/WHEEL +0 -0
  216. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/entry_points.txt +0 -0
  217. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/licenses/LICENSE +0 -0
@@ -27,10 +27,7 @@
27
27
  "Allow scroll wheel zoom?": "Allow scroll wheel zoom?",
28
28
  "always": "always",
29
29
  "Animated transitions": "Animated transitions",
30
- "Are you sure you want to cancel your changes?": "Are you sure you want to cancel your changes?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
32
- "Are you sure you want to delete the feature?": "Are you sure you want to delete the feature?",
33
- "Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
34
31
  "Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
35
32
  "Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
36
33
  "Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
@@ -46,7 +43,6 @@
46
43
  "Browse data": "Browse data",
47
44
  "by": "by",
48
45
  "Cache proxied request": "Cache proxied request",
49
- "Cancel edits": "Cancel edits",
50
46
  "Caption": "Caption",
51
47
  "Center map on your location": "Center map on your location",
52
48
  "Change map background": "Change map background",
@@ -532,6 +528,15 @@
532
528
  "Edit map default view": "Edit map default view",
533
529
  "Use current center and zoom": "Use current center and zoom",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
542
  }
@@ -27,10 +27,7 @@
27
27
  "Allow scroll wheel zoom?": "Allow scroll wheel zoom?",
28
28
  "always": "always",
29
29
  "Animated transitions": "Animated transitions",
30
- "Are you sure you want to cancel your changes?": "Are you sure you want to abandon your changes?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its layers and features?",
32
- "Are you sure you want to delete the feature?": "Are you sure you want to delete this feature?",
33
- "Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
34
31
  "Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
35
32
  "Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
36
33
  "Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
@@ -46,7 +43,6 @@
46
43
  "Browse data": "Browse data",
47
44
  "by": "by",
48
45
  "Cache proxied request": "Cache proxied request",
49
- "Cancel edits": "Cancel edits",
50
46
  "Caption": "Caption",
51
47
  "Center map on your location": "Center map on your location",
52
48
  "Change map background": "Change basemap",
@@ -532,6 +528,15 @@
532
528
  "Edit map default view": "Edit map default view",
533
529
  "Use current center and zoom": "Use current center and zoom",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
542
  }
@@ -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",
@@ -532,8 +528,17 @@ const locale = {
532
528
  "Edit map default view": "Editar vista predeterminada del mapa",
533
529
  "Use current center and zoom": "Usar el centro y zoom actuales",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
542
  }
538
543
  L.registerLocale("es", locale)
539
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",
@@ -532,6 +528,15 @@
532
528
  "Edit map default view": "Editar vista predeterminada del mapa",
533
529
  "Use current center and zoom": "Usar el centro y zoom actuales",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
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",
@@ -532,8 +528,17 @@ const locale = {
532
528
  "Edit map default view": "Edit map default view",
533
529
  "Use current center and zoom": "Use current center and zoom",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
542
  }
538
543
  L.registerLocale("et", locale)
539
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",
@@ -532,6 +528,15 @@
532
528
  "Edit map default view": "Edit map default view",
533
529
  "Use current center and zoom": "Use current center and zoom",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
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",
@@ -532,8 +528,17 @@ const locale = {
532
528
  "Edit map default view": "Mapa editatzeko lehenetsitako ikuspegia",
533
529
  "Use current center and zoom": "Erabili uneko erdigunea eta zooma",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
542
  }
538
543
  L.registerLocale("eu", locale)
539
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",
@@ -532,6 +528,15 @@
532
528
  "Edit map default view": "Mapa editatzeko lehenetsitako ikuspegia",
533
529
  "Use current center and zoom": "Erabili uneko erdigunea eta zooma",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
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": "تغییر پس‌زمینهٔ نقشه",
@@ -532,8 +528,17 @@ const locale = {
532
528
  "Edit map default view": "Edit map default view",
533
529
  "Use current center and zoom": "Use current center and zoom",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
542
  }
538
543
  L.registerLocale("fa_IR", locale)
539
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": "تغییر پس‌زمینهٔ نقشه",
@@ -532,6 +528,15 @@
532
528
  "Edit map default view": "Edit map default view",
533
529
  "Use current center and zoom": "Use current center and zoom",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
542
  }
@@ -27,10 +27,7 @@ const locale = {
27
27
  "Allow scroll wheel zoom?": "Salli zoomaus hiiren rullalla?",
28
28
  "always": "aina",
29
29
  "Animated transitions": "Animated transitions",
30
- "Are you sure you want to cancel your changes?": "Oletko _ihan_ varma, että haluat peruuttaa muutoksesi?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Oletko varma että haluat kloonata tämän kartan ja kaikki sen data-kerrokset?",
32
- "Are you sure you want to delete the feature?": "Oletko varma että haluat poistaa piirteen?",
33
- "Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
34
31
  "Are you sure you want to delete this map?": "Oletko ihan täysin varma, että haluat poistaa tämän kartan? Poistettua karttaa ei voi palauttaa.",
35
32
  "Are you sure you want to delete this property on all the features?": "Oletko varma että haluat poistaa tämän ominaisuuden kaikista piirteistä?",
36
33
  "Are you sure you want to restore this version?": "Oletko varma että haluat palauttaa tämän version?",
@@ -46,7 +43,6 @@ const locale = {
46
43
  "Browse data": "Selaa tietoja",
47
44
  "by": "taholta",
48
45
  "Cache proxied request": "Cache proxied request",
49
- "Cancel edits": "Peruuta muokkaukset",
50
46
  "Caption": "Kuvateksti",
51
47
  "Center map on your location": "Keskitä kartta sijaintiisi",
52
48
  "Change map background": "Vaihda taustakarttaa",
@@ -532,8 +528,17 @@ const locale = {
532
528
  "Edit map default view": "Edit map default view",
533
529
  "Use current center and zoom": "Use current center and zoom",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
542
  }
538
543
  L.registerLocale("fi", locale)
539
544
  L.setLocale("fi")
@@ -27,10 +27,7 @@
27
27
  "Allow scroll wheel zoom?": "Salli zoomaus hiiren rullalla?",
28
28
  "always": "aina",
29
29
  "Animated transitions": "Animated transitions",
30
- "Are you sure you want to cancel your changes?": "Oletko _ihan_ varma, että haluat peruuttaa muutoksesi?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Oletko varma että haluat kloonata tämän kartan ja kaikki sen data-kerrokset?",
32
- "Are you sure you want to delete the feature?": "Oletko varma että haluat poistaa piirteen?",
33
- "Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
34
31
  "Are you sure you want to delete this map?": "Oletko ihan täysin varma, että haluat poistaa tämän kartan? Poistettua karttaa ei voi palauttaa.",
35
32
  "Are you sure you want to delete this property on all the features?": "Oletko varma että haluat poistaa tämän ominaisuuden kaikista piirteistä?",
36
33
  "Are you sure you want to restore this version?": "Oletko varma että haluat palauttaa tämän version?",
@@ -46,7 +43,6 @@
46
43
  "Browse data": "Selaa tietoja",
47
44
  "by": "taholta",
48
45
  "Cache proxied request": "Cache proxied request",
49
- "Cancel edits": "Peruuta muokkaukset",
50
46
  "Caption": "Kuvateksti",
51
47
  "Center map on your location": "Keskitä kartta sijaintiisi",
52
48
  "Change map background": "Vaihda taustakarttaa",
@@ -532,6 +528,15 @@
532
528
  "Edit map default view": "Edit map default view",
533
529
  "Use current center and zoom": "Use current center and zoom",
534
530
  "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
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"
537
542
  }
@@ -27,10 +27,7 @@ const locale = {
27
27
  "Allow scroll wheel zoom?": "Autoriser le zoom avec la molette ?",
28
28
  "always": "toujours",
29
29
  "Animated transitions": "Transitions animées",
30
- "Are you sure you want to cancel your changes?": "Êtes-vous sûr de vouloir annuler vos modifications ?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Êtes-vous sûr de vouloir cloner cette carte et ses calques de données?",
32
- "Are you sure you want to delete the feature?": "Êtes-vous sûr de vouloir supprimer cet élément?",
33
- "Are you sure you want to delete this layer?": "Voulez-vous vraiment supprimer ce calque ?",
34
31
  "Are you sure you want to delete this map?": "Êtes-vous sûr de vouloir supprimer cette carte?",
35
32
  "Are you sure you want to delete this property on all the features?": "Supprimer la propriété sur tous les éléments ?",
36
33
  "Are you sure you want to restore this version?": "Êtes-vous sûr de vouloir restaurer cette version ?",
@@ -46,7 +43,6 @@ const locale = {
46
43
  "Browse data": "Visualiser les données",
47
44
  "by": "par",
48
45
  "Cache proxied request": "Cacher la requête avec proxy",
49
- "Cancel edits": "Annuler les modifications",
50
46
  "Caption": "Légende",
51
47
  "Center map on your location": "Centrer la carte sur votre position",
52
48
  "Change map background": "Changer le fond de carte",
@@ -532,8 +528,17 @@ const locale = {
532
528
  "Edit map default view": "Régler la vue par défaut de la carte",
533
529
  "Use current center and zoom": "Utiliser le centre et le zoom actuels",
534
530
  "Layer permalink": "Permalien du calque",
535
- "Save this geometry as a new feature": "Enregistrer cette géométrie comme élément de la carte",
536
- "Save this place as a new feature": "Enregistrer ce lieu comme élément de la carte"
531
+ "Back to home": "Retour à l'accueil",
532
+ "Home logo": "Logo uMap",
533
+ "Add this geometry to my map": "Ajouter cette géométrie à ma carte",
534
+ "Add this place to my map": "Ajouter ce lieu à ma carte",
535
+ "Cancel last edit": "Annuler la dernière modification",
536
+ "Redo last edit": "Rejouer la dernière modification",
537
+ "Links": "Liens",
538
+ "Images": "Images",
539
+ "Iframes": "Iframes",
540
+ "Tags": "Catégories",
541
+ "Geocode": "Géocoder"
537
542
  }
538
543
  L.registerLocale("fr", locale)
539
544
  L.setLocale("fr")
@@ -27,10 +27,7 @@
27
27
  "Allow scroll wheel zoom?": "Autoriser le zoom avec la molette ?",
28
28
  "always": "toujours",
29
29
  "Animated transitions": "Transitions animées",
30
- "Are you sure you want to cancel your changes?": "Êtes-vous sûr de vouloir annuler vos modifications ?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Êtes-vous sûr de vouloir cloner cette carte et ses calques de données?",
32
- "Are you sure you want to delete the feature?": "Êtes-vous sûr de vouloir supprimer cet élément?",
33
- "Are you sure you want to delete this layer?": "Voulez-vous vraiment supprimer ce calque ?",
34
31
  "Are you sure you want to delete this map?": "Êtes-vous sûr de vouloir supprimer cette carte?",
35
32
  "Are you sure you want to delete this property on all the features?": "Supprimer la propriété sur tous les éléments ?",
36
33
  "Are you sure you want to restore this version?": "Êtes-vous sûr de vouloir restaurer cette version ?",
@@ -46,7 +43,6 @@
46
43
  "Browse data": "Visualiser les données",
47
44
  "by": "par",
48
45
  "Cache proxied request": "Cacher la requête avec proxy",
49
- "Cancel edits": "Annuler les modifications",
50
46
  "Caption": "Légende",
51
47
  "Center map on your location": "Centrer la carte sur votre position",
52
48
  "Change map background": "Changer le fond de carte",
@@ -532,6 +528,15 @@
532
528
  "Edit map default view": "Régler la vue par défaut de la carte",
533
529
  "Use current center and zoom": "Utiliser le centre et le zoom actuels",
534
530
  "Layer permalink": "Permalien du calque",
535
- "Save this geometry as a new feature": "Enregistrer cette géométrie comme élément de la carte",
536
- "Save this place as a new feature": "Enregistrer ce lieu comme élément de la carte"
531
+ "Back to home": "Retour à l'accueil",
532
+ "Home logo": "Logo uMap",
533
+ "Add this geometry to my map": "Ajouter cette géométrie à ma carte",
534
+ "Add this place to my map": "Ajouter ce lieu à ma carte",
535
+ "Cancel last edit": "Annuler la dernière modification",
536
+ "Redo last edit": "Rejouer la dernière modification",
537
+ "Links": "Liens",
538
+ "Images": "Images",
539
+ "Iframes": "Iframes",
540
+ "Tags": "Catégories",
541
+ "Geocode": "Géocoder"
537
542
  }
@@ -27,10 +27,7 @@ const locale = {
27
27
  "Allow scroll wheel zoom?": "Permitir o zoom coa roda do rato?",
28
28
  "always": "sempre",
29
29
  "Animated transitions": "Transicións animadas",
30
- "Are you sure you want to cancel your changes?": "Confirmas que queres desbotar os teus cambios?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Confirmas que queres clonar este mapa e todas as súas capas de datos?",
32
- "Are you sure you want to delete the feature?": "Confirmas que queres eliminar este elemento?",
33
- "Are you sure you want to delete this layer?": "Confirmas que queres eliminar esta capa?",
34
31
  "Are you sure you want to delete this map?": "Confirmas que queres eliminar este mapa?",
35
32
  "Are you sure you want to delete this property on all the features?": "Confirmas que queres eliminar esta propiedade en todos os elementos?",
36
33
  "Are you sure you want to restore this version?": "Confirmas que queres restabelecer esta versión?",
@@ -46,7 +43,6 @@ const locale = {
46
43
  "Browse data": "Navegar polos datos",
47
44
  "by": "por",
48
45
  "Cache proxied request": "Solicitude de proxy da memoria tobo",
49
- "Cancel edits": "Desbotar as edicións",
50
46
  "Caption": "Lenda",
51
47
  "Center map on your location": "Centrar o mapa na túa posición",
52
48
  "Change map background": "Cambiar o mapa do fondo",
@@ -531,9 +527,18 @@ const locale = {
531
527
  "Default longitude": "Lonxitude predeterminada",
532
528
  "Edit map default view": "Editar a vista predeterminada do mapa",
533
529
  "Use current center and zoom": "Usar o centrado e o nivel de zoom actual",
534
- "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
530
+ "Layer permalink": "Ligazón permanente de capa",
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"
537
542
  }
538
543
  L.registerLocale("gl", locale)
539
544
  L.setLocale("gl")
@@ -27,10 +27,7 @@
27
27
  "Allow scroll wheel zoom?": "Permitir o zoom coa roda do rato?",
28
28
  "always": "sempre",
29
29
  "Animated transitions": "Transicións animadas",
30
- "Are you sure you want to cancel your changes?": "Confirmas que queres desbotar os teus cambios?",
31
30
  "Are you sure you want to clone this map and all its datalayers?": "Confirmas que queres clonar este mapa e todas as súas capas de datos?",
32
- "Are you sure you want to delete the feature?": "Confirmas que queres eliminar este elemento?",
33
- "Are you sure you want to delete this layer?": "Confirmas que queres eliminar esta capa?",
34
31
  "Are you sure you want to delete this map?": "Confirmas que queres eliminar este mapa?",
35
32
  "Are you sure you want to delete this property on all the features?": "Confirmas que queres eliminar esta propiedade en todos os elementos?",
36
33
  "Are you sure you want to restore this version?": "Confirmas que queres restabelecer esta versión?",
@@ -46,7 +43,6 @@
46
43
  "Browse data": "Navegar polos datos",
47
44
  "by": "por",
48
45
  "Cache proxied request": "Solicitude de proxy da memoria tobo",
49
- "Cancel edits": "Desbotar as edicións",
50
46
  "Caption": "Lenda",
51
47
  "Center map on your location": "Centrar o mapa na túa posición",
52
48
  "Change map background": "Cambiar o mapa do fondo",
@@ -531,7 +527,16 @@
531
527
  "Default longitude": "Lonxitude predeterminada",
532
528
  "Edit map default view": "Editar a vista predeterminada do mapa",
533
529
  "Use current center and zoom": "Usar o centrado e o nivel de zoom actual",
534
- "Layer permalink": "Layer permalink",
535
- "Save this geometry as a new feature": "Save this geometry as a new feature",
536
- "Save this place as a new feature": "Save this place as a new feature"
530
+ "Layer permalink": "Ligazón permanente de capa",
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"
537
542
  }