umap-project 2.8.2__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 (260) 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/it/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/it/LC_MESSAGES/django.po +142 -98
  20. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/nl/LC_MESSAGES/django.po +196 -151
  22. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/pt/LC_MESSAGES/django.po +115 -71
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +109 -65
  26. umap/management/commands/empty_trash.py +12 -1
  27. umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
  28. umap/models.py +43 -13
  29. umap/settings/base.py +5 -2
  30. umap/static/umap/base.css +5 -2
  31. umap/static/umap/content.css +2 -22
  32. umap/static/umap/css/bar.css +39 -10
  33. umap/static/umap/css/contextmenu.css +14 -2
  34. umap/static/umap/css/form.css +33 -39
  35. umap/static/umap/css/icon.css +47 -5
  36. umap/static/umap/css/panel.css +20 -2
  37. umap/static/umap/css/popup.css +0 -1
  38. umap/static/umap/css/tooltip.css +33 -31
  39. umap/static/umap/img/16-white.svg +5 -3
  40. umap/static/umap/img/16.svg +1 -1
  41. umap/static/umap/img/24-white.svg +17 -16
  42. umap/static/umap/img/24.svg +29 -18
  43. umap/static/umap/img/providers/bitbucket.png +0 -0
  44. umap/static/umap/img/providers/github.png +0 -0
  45. umap/static/umap/img/providers/keycloak.png +0 -0
  46. umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
  47. umap/static/umap/img/providers/twitter-oauth2.png +0 -0
  48. umap/static/umap/img/source/16-white.svg +6 -4
  49. umap/static/umap/img/source/16.svg +1 -1
  50. umap/static/umap/img/source/24-white.svg +20 -18
  51. umap/static/umap/img/source/24.svg +30 -19
  52. umap/static/umap/js/components/alerts/alert.js +4 -1
  53. umap/static/umap/js/modules/browser.js +8 -8
  54. umap/static/umap/js/modules/caption.js +30 -7
  55. umap/static/umap/js/modules/data/features.js +101 -56
  56. umap/static/umap/js/modules/data/layer.js +108 -83
  57. umap/static/umap/js/modules/form/builder.js +242 -0
  58. umap/static/umap/js/modules/form/fields.js +1346 -0
  59. umap/static/umap/js/modules/formatter.js +9 -8
  60. umap/static/umap/js/modules/help.js +20 -24
  61. umap/static/umap/js/modules/importer.js +6 -3
  62. umap/static/umap/js/modules/permissions.js +11 -6
  63. umap/static/umap/js/modules/rendering/icon.js +5 -1
  64. umap/static/umap/js/modules/rendering/layers/classified.js +12 -8
  65. umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
  66. umap/static/umap/js/modules/rendering/map.js +1 -23
  67. umap/static/umap/js/modules/rendering/ui.js +20 -38
  68. umap/static/umap/js/modules/rules.js +3 -2
  69. umap/static/umap/js/modules/saving.js +5 -0
  70. umap/static/umap/js/modules/schema.js +8 -6
  71. umap/static/umap/js/modules/share.js +3 -3
  72. umap/static/umap/js/modules/sync/engine.js +56 -26
  73. umap/static/umap/js/modules/sync/updaters.js +15 -6
  74. umap/static/umap/js/modules/sync/websocket.js +50 -37
  75. umap/static/umap/js/modules/tableeditor.js +3 -2
  76. umap/static/umap/js/modules/ui/bar.js +101 -9
  77. umap/static/umap/js/modules/ui/base.js +7 -24
  78. umap/static/umap/js/modules/ui/contextmenu.js +9 -2
  79. umap/static/umap/js/modules/ui/panel.js +5 -1
  80. umap/static/umap/js/modules/ui/tooltip.js +19 -11
  81. umap/static/umap/js/modules/umap.js +121 -68
  82. umap/static/umap/js/modules/utils.js +196 -12
  83. umap/static/umap/js/umap.controls.js +11 -353
  84. umap/static/umap/locale/am_ET.js +17 -5
  85. umap/static/umap/locale/am_ET.json +17 -5
  86. umap/static/umap/locale/ar.js +17 -5
  87. umap/static/umap/locale/ar.json +17 -5
  88. umap/static/umap/locale/ast.js +17 -5
  89. umap/static/umap/locale/ast.json +17 -5
  90. umap/static/umap/locale/bg.js +17 -5
  91. umap/static/umap/locale/bg.json +17 -5
  92. umap/static/umap/locale/br.js +33 -20
  93. umap/static/umap/locale/br.json +33 -20
  94. umap/static/umap/locale/ca.js +17 -5
  95. umap/static/umap/locale/ca.json +17 -5
  96. umap/static/umap/locale/cs_CZ.js +15 -5
  97. umap/static/umap/locale/cs_CZ.json +15 -5
  98. umap/static/umap/locale/da.js +17 -5
  99. umap/static/umap/locale/da.json +17 -5
  100. umap/static/umap/locale/de.js +17 -5
  101. umap/static/umap/locale/de.json +17 -5
  102. umap/static/umap/locale/el.js +63 -51
  103. umap/static/umap/locale/el.json +63 -51
  104. umap/static/umap/locale/en.js +15 -5
  105. umap/static/umap/locale/en.json +15 -5
  106. umap/static/umap/locale/en_US.json +17 -5
  107. umap/static/umap/locale/es.js +25 -13
  108. umap/static/umap/locale/es.json +25 -13
  109. umap/static/umap/locale/et.js +17 -5
  110. umap/static/umap/locale/et.json +17 -5
  111. umap/static/umap/locale/eu.js +17 -5
  112. umap/static/umap/locale/eu.json +17 -5
  113. umap/static/umap/locale/fa_IR.js +17 -5
  114. umap/static/umap/locale/fa_IR.json +17 -5
  115. umap/static/umap/locale/fi.js +17 -5
  116. umap/static/umap/locale/fi.json +17 -5
  117. umap/static/umap/locale/fr.js +16 -6
  118. umap/static/umap/locale/fr.json +16 -6
  119. umap/static/umap/locale/gl.js +357 -345
  120. umap/static/umap/locale/gl.json +357 -345
  121. umap/static/umap/locale/he.js +17 -5
  122. umap/static/umap/locale/he.json +17 -5
  123. umap/static/umap/locale/hr.js +17 -5
  124. umap/static/umap/locale/hr.json +17 -5
  125. umap/static/umap/locale/hu.js +14 -5
  126. umap/static/umap/locale/hu.json +14 -5
  127. umap/static/umap/locale/id.js +17 -5
  128. umap/static/umap/locale/id.json +17 -5
  129. umap/static/umap/locale/is.js +17 -5
  130. umap/static/umap/locale/is.json +17 -5
  131. umap/static/umap/locale/it.js +125 -113
  132. umap/static/umap/locale/it.json +125 -113
  133. umap/static/umap/locale/ja.js +17 -5
  134. umap/static/umap/locale/ja.json +17 -5
  135. umap/static/umap/locale/ko.js +17 -5
  136. umap/static/umap/locale/ko.json +17 -5
  137. umap/static/umap/locale/lt.js +17 -5
  138. umap/static/umap/locale/lt.json +17 -5
  139. umap/static/umap/locale/ms.js +17 -5
  140. umap/static/umap/locale/ms.json +17 -5
  141. umap/static/umap/locale/nl.js +132 -119
  142. umap/static/umap/locale/nl.json +132 -119
  143. umap/static/umap/locale/no.js +17 -5
  144. umap/static/umap/locale/no.json +17 -5
  145. umap/static/umap/locale/pl.js +17 -5
  146. umap/static/umap/locale/pl.json +17 -5
  147. umap/static/umap/locale/pl_PL.json +17 -5
  148. umap/static/umap/locale/pt.js +38 -25
  149. umap/static/umap/locale/pt.json +38 -25
  150. umap/static/umap/locale/pt_BR.js +17 -5
  151. umap/static/umap/locale/pt_BR.json +17 -5
  152. umap/static/umap/locale/pt_PT.js +17 -5
  153. umap/static/umap/locale/pt_PT.json +17 -5
  154. umap/static/umap/locale/ro.js +17 -5
  155. umap/static/umap/locale/ro.json +17 -5
  156. umap/static/umap/locale/ru.js +17 -5
  157. umap/static/umap/locale/ru.json +17 -5
  158. umap/static/umap/locale/sk_SK.js +17 -5
  159. umap/static/umap/locale/sk_SK.json +17 -5
  160. umap/static/umap/locale/sl.js +17 -5
  161. umap/static/umap/locale/sl.json +17 -5
  162. umap/static/umap/locale/sr.js +17 -5
  163. umap/static/umap/locale/sr.json +17 -5
  164. umap/static/umap/locale/sv.js +17 -5
  165. umap/static/umap/locale/sv.json +17 -5
  166. umap/static/umap/locale/th_TH.js +17 -5
  167. umap/static/umap/locale/th_TH.json +17 -5
  168. umap/static/umap/locale/tr.js +17 -5
  169. umap/static/umap/locale/tr.json +17 -5
  170. umap/static/umap/locale/uk_UA.js +17 -5
  171. umap/static/umap/locale/uk_UA.json +17 -5
  172. umap/static/umap/locale/vi.js +17 -5
  173. umap/static/umap/locale/vi.json +17 -5
  174. umap/static/umap/locale/vi_VN.json +17 -5
  175. umap/static/umap/locale/zh.js +17 -5
  176. umap/static/umap/locale/zh.json +17 -5
  177. umap/static/umap/locale/zh_CN.json +17 -5
  178. umap/static/umap/locale/zh_TW.Big5.json +17 -5
  179. umap/static/umap/locale/zh_TW.js +15 -5
  180. umap/static/umap/locale/zh_TW.json +15 -5
  181. umap/static/umap/map.css +29 -76
  182. umap/static/umap/nav.css +6 -3
  183. umap/static/umap/unittests/utils.js +14 -0
  184. umap/static/umap/vars.css +3 -0
  185. umap/static/umap/vendors/dompurify/purify.es.js +138 -354
  186. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  187. umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
  188. umap/sync/__init__.py +0 -0
  189. umap/sync/app.py +187 -0
  190. umap/sync/payloads.py +56 -0
  191. umap/templates/auth/user_detail.html +4 -0
  192. umap/templates/auth/user_form.html +9 -6
  193. umap/templates/auth/user_stars.html +4 -0
  194. umap/templates/base.html +1 -1
  195. umap/templates/registration/login.html +2 -5
  196. umap/templates/umap/about.html +5 -0
  197. umap/templates/umap/about_summary.html +2 -2
  198. umap/templates/umap/components/provider.html +8 -0
  199. umap/templates/umap/content_footer.html +1 -1
  200. umap/templates/umap/css.html +0 -2
  201. umap/templates/umap/js.html +0 -4
  202. umap/templates/umap/map_detail.html +1 -1
  203. umap/templates/umap/password_change.html +4 -0
  204. umap/templates/umap/password_change_done.html +4 -0
  205. umap/templates/umap/search.html +4 -0
  206. umap/templates/umap/search_bar.html +1 -0
  207. umap/templates/umap/team_confirm_delete.html +4 -0
  208. umap/templates/umap/team_detail.html +4 -0
  209. umap/templates/umap/team_form.html +4 -0
  210. umap/templates/umap/user_dashboard.html +1 -1
  211. umap/templates/umap/user_teams.html +4 -0
  212. umap/tests/base.py +3 -1
  213. umap/tests/integration/conftest.py +16 -23
  214. umap/tests/integration/test_anonymous_owned_map.py +2 -2
  215. umap/tests/integration/test_basics.py +4 -7
  216. umap/tests/integration/test_caption.py +1 -0
  217. umap/tests/integration/test_categorized_layer.py +4 -8
  218. umap/tests/integration/test_choropleth.py +1 -1
  219. umap/tests/integration/test_conditional_rules.py +3 -3
  220. umap/tests/integration/test_draw_polygon.py +14 -22
  221. umap/tests/integration/test_draw_polyline.py +6 -14
  222. umap/tests/integration/test_edit_datalayer.py +11 -11
  223. umap/tests/integration/test_edit_map.py +30 -4
  224. umap/tests/integration/test_edit_marker.py +5 -5
  225. umap/tests/integration/test_edit_polygon.py +6 -6
  226. umap/tests/integration/test_features_id_generation.py +2 -6
  227. umap/tests/integration/test_import.py +115 -29
  228. umap/tests/integration/test_optimistic_merge.py +1 -0
  229. umap/tests/integration/test_owned_map.py +1 -1
  230. umap/tests/integration/test_picto.py +8 -8
  231. umap/tests/integration/test_save.py +3 -2
  232. umap/tests/integration/test_star.py +13 -9
  233. umap/tests/integration/test_tableeditor.py +8 -7
  234. umap/tests/integration/test_view_marker.py +10 -0
  235. umap/tests/integration/test_websocket_sync.py +239 -64
  236. umap/tests/settings.py +2 -0
  237. umap/tests/test_datalayer.py +2 -3
  238. umap/tests/test_datalayer_views.py +20 -1
  239. umap/tests/test_empty_trash.py +10 -3
  240. umap/tests/test_map_views.py +11 -0
  241. umap/utils.py +27 -11
  242. umap/views.py +37 -6
  243. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/METADATA +22 -22
  244. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/RECORD +247 -248
  245. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/WHEEL +1 -1
  246. umap/management/commands/run_websocket_server.py +0 -23
  247. umap/settings/local_s3.py +0 -45
  248. umap/static/umap/bitbucket.png +0 -0
  249. umap/static/umap/github.png +0 -0
  250. umap/static/umap/js/umap.forms.js +0 -1242
  251. umap/static/umap/keycloak.png +0 -0
  252. umap/static/umap/openstreetmap.png +0 -0
  253. umap/static/umap/twitter.png +0 -0
  254. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
  255. umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
  256. umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
  257. umap/tests/test_websocket_server.py +0 -22
  258. umap/websocket_server.py +0 -202
  259. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/entry_points.txt +0 -0
  260. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
- "(area: {measure})": "(area: {measure})",
3
- "(length: {measure})": "(length: {measure})",
2
+ "(area: {measure})": "(oppervlakte: {measure})",
3
+ "(length: {measure})": "(lengte: {measure})",
4
4
  "# one hash for main heading": "# een hekje voor koptekst 1",
5
5
  "## two hashes for second heading": "## twee hekjes voor koptekst 2",
6
6
  "### three hashes for third heading": "### drie hekjes voor koptekst 3",
@@ -19,7 +19,6 @@
19
19
  "Add a new property": "Voeg een nieuwe eigenschap toe",
20
20
  "Add a polygon to the current multi": "Voeg een nieuwe polygoon toe aan de huidige multipolygoon",
21
21
  "Add image URL": "Voeg URL van afbeelding toe",
22
- "Add": "Toevoegen",
23
22
  "Advanced actions": "Geavanceerde acties",
24
23
  "Advanced properties": "Geavanceerde eigenschappen",
25
24
  "All data and settings of the map": "Alle data en instellingen van de kaart",
@@ -120,7 +119,6 @@
120
119
  "Display the locate control": "Toon lokaliseer mij knop",
121
120
  "Display the measure control": "Toon meetinstrument knop",
122
121
  "Display the search control": "Toon zoeken knop",
123
- "Display the star map button": "Toon de ster kaart knop",
124
122
  "Display the tile layers control": "Toon achtergrondlagen knop",
125
123
  "Display the zoom control": "Toon zoom knop",
126
124
  "Do you want to display a caption bar?": "Wil je een hoofding tonen?",
@@ -183,12 +181,12 @@
183
181
  "Icon shape": "Vorm van het icoon",
184
182
  "Icon symbol": "Symbool voor het icoon",
185
183
  "If false, the polygon or line will act as a part of the underlying map.": "Indien uit, zal de polygoon of lijn dienen als deel van de onderliggende kaart.",
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 met gespecifieerde hoogte (in px): {{{https://iframe.url.com|height}}}",
185
+ "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe met gespecifieerde hoogte en breedte (in 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}}": "Afbeelding met aangepaste breedte (in px): {{https://image.url.com|width}}",
189
+ "Image: {{https://image.url.com}}": "Afbeelding: {{https://image.url.com}}",
192
190
  "Import data": "Gegevens importeren",
193
191
  "Import in a new layer": "Importeer in een nieuwe laag",
194
192
  "Imports all umap data, including layers and settings.": "Importeert alle umap gegevens, inclusief lagen en instellingen",
@@ -216,7 +214,7 @@
216
214
  "Limit bounds": "Gebied begrenzen",
217
215
  "Link to view the map": "Link om de kaart te zien",
218
216
  "Link to…": "Link naar…",
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]]": "Link met tekst: [[https://example.com|tekst van de link]]",
220
218
  "Long credits": "Lange bronvermelding",
221
219
  "Longitude": "Lengtegraad",
222
220
  "Make main shape": "Maak hoofd-vorm",
@@ -301,7 +299,6 @@
301
299
  "Restore this version": "Keer terug naar deze versie",
302
300
  "Save current edits": "Huidige bewerkingen opslaan",
303
301
  "Save map": "Kaart opslaan",
304
- "Save this center and zoom": "Bewaar deze positie op de kaart en het zoomniveau",
305
302
  "Save this location as new feature": "Sla deze locatie op als nieuw object",
306
303
  "Save": "Opslaan",
307
304
  "Saved center and zoom": "Midden en zoom bewaard",
@@ -320,7 +317,7 @@
320
317
  "Show this layer in the caption": "Toon deze laag in het bijschrift",
321
318
  "Show/hide layer": "Laag tonen/verbergen",
322
319
  "Side panel": "Zijpaneel",
323
- "Simple link: [[https://example.com]]": "Simple link: [[https://example.com]]",
320
+ "Simple link: [[https://example.com]]": "Eenvoudige link: [[http://example.com]]",
324
321
  "Simplify": "Vereenvoudig",
325
322
  "Skipping unknown geometry.type: {type}": "Overgeslaan wegens onbekend geometry.type: {type}",
326
323
  "Slideshow": "Slideshow",
@@ -339,7 +336,7 @@
339
336
  "Table": "Tabel",
340
337
  "Text color for the cluster label": "Kleur van de text voor het label van de cluster",
341
338
  "Text formatting": "Opmaak van de tekst",
342
- "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
339
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "De naam van de eigenschap die als functielabel moet worden gebruikt (bijvoorbeeld: 'naam'). U kunt ook eigenschappen tussen haakjes gebruiken om er meer dan één te gebruiken of te mengen met statische inhoud (bv.: \"{naam} in {plaats}\")",
343
340
  "The name of the property to use as feature unique identifier.": "De naam van de eigenschap die als unieke identificator van objecten geldt",
344
341
  "The zoom and center have been modified.": "Zoom en centrum zijn bijgewerkt.",
345
342
  "TMS format": "TMS-formaat",
@@ -403,122 +400,138 @@
403
400
  "{distance} miles": "{distance} mijl",
404
401
  "{distance} NM": "{distance} NM",
405
402
  "{distance} yd": "{distance} yd",
406
- "Edit map name and caption": "Edit map name and caption",
407
- "Map advanced properties": "Map advanced properties",
408
- "Edit map details": "Edit map details",
409
- "Back to browser": "Back to browser",
410
- "Toggle size": "Toggle size",
411
- "Display the caption control": "Display the caption control",
403
+ "Edit map name and caption": "Bewerk de naam en het bijschrift van de kaart",
404
+ "Map advanced properties": "Geavanceerde eigenschappen in kaart brengen",
405
+ "Edit map details": "Kaartdetails bewerken",
406
+ "Back to browser": "Terug naar browser",
407
+ "Toggle size": "Grootte wisselen",
408
+ "Display the caption control": "De controleknop van de Het ondertiteling weergeven",
412
409
  "<empty value>": "<empty value>",
413
410
  "Min": "Min",
414
411
  "Max": "Max",
415
- "From": "From",
416
- "Until": "Until",
417
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
418
- "Edit in OpenStreetMap": "Edit in OpenStreetMap",
419
- "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
420
- "Back to layers": "Back to layers",
412
+ "From": "Van",
413
+ "Until": "Tot",
414
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Voorbeeld: sleutel1,sleutel2|Label 2,sleutel3|Label 3|selectievakje",
415
+ "Edit in OpenStreetMap": "Bewerken in OpenStreetMap",
416
+ "Cannot determine latitude and longitude columns.": "Kan lengte- en breedtegraadkolommen niet bepalen.",
417
+ "Back to layers": "Terug naar lagen",
421
418
  "Filters": "Filters",
422
- "Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
423
- "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
424
- "Search keys": "Search keys",
425
- "Filters keys": "Filters keys",
419
+ "Comma separated list of properties to use when filtering features by text input": "Door komma's gescheiden lijst met eigenschappen die moeten worden gebruikt bij het filteren van elementen op tekstinvoer",
420
+ "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Door komma's gescheiden lijst met eigenschappen die voor filters moeten worden gebruikt (bv.: mijnsleutel, anderesleutel). Als u het label wilt beheren, voeg je het toe na een | (bv.: mijnsleutel|Mijn Sleutel, otherkey|Andere Sleutel). Als u het invoerveldtype wilt beheren, voeg je het na een ander | toe (bv.: mijnsleutel|Mijn Sleutel|aanvinkvak,anderesleutel|Andere Sleutel|datum/tijd). Toegestane waarden voor het invoerveldtype zijn aanvinkvak (standaard), radioknop, nummer, datum en datum/tijd.",
421
+ "Search keys": "Zoek sleutels",
422
+ "Filters keys": "Filter sleutels",
426
423
  "Filter data": "Filter data",
427
- "Search map features…": "Search map features…",
428
- "Reset all": "Reset all",
424
+ "Search map features…": "Zoek naar kaarteigenschappen...",
425
+ "Reset all": "Alles herstellen",
429
426
  "Open browser": "Open browser",
430
- "Open caption": "Open caption",
431
- "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
432
- "Real-time collaboration": "Real-time collaboration",
433
- "Cannot parse data": "Cannot parse data",
434
- "Start typing...": "Start typing...",
435
- "No result": "No result",
427
+ "Open caption": "Open bijschrift",
428
+ "Your map has been created with an anonymous account!": "Je kaart is gemaakt met een anoniem account!",
429
+ "Real-time collaboration": "Realtime samenwerking",
430
+ "Cannot parse data": "Kan data niet parseren",
431
+ "Start typing...": "Begin met typen...",
432
+ "No result": "Geen resultaat",
436
433
  "Data browser": "Data browser",
437
- "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.",
438
- "Overpass supported expressions": "Overpass supported expressions",
439
- "key (eg. building)": "key (eg. building)",
440
- "!key (eg. !name)": "!key (eg. !name)",
441
- "key=value (eg. building=yes)": "key=value (eg. building=yes)",
442
- "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
443
- "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
444
- "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
445
- "More info about Overpass syntax": "More info about Overpass syntax",
446
- "For more complex needs, see": "For more complex needs, see",
447
- "Choose data": "Choose data",
448
- "Choose the format": "Choose the format",
449
- "Choose the layer": "Choose the layer",
450
- "Layer name": "Layer name",
451
- "Choose import mode": "Choose import mode",
452
- "Copy into the layer": "Copy into the layer",
453
- "Link to the layer as remote data": "Link to the layer as remote data",
454
- "Condition": "Condition",
455
- "key=value or key!=value": "key=value or key!=value",
456
- "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
457
- "empty rule": "empty rule",
458
- "Conditional style rules": "Conditional style rules",
459
- "Add rule": "Add rule",
434
+ "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "Bij het verstrekken van een URL kan uMap de externe data in een laag kopiëren, of deze URL toevoegen als externe bron van de laag. In dat geval worden de data altijd van die URL opgehaald en dus up-to-date, maar is het niet mogelijk om ze in uMap te bewerken.",
435
+ "Overpass supported expressions": "Overpass Ondersteunde expressies",
436
+ "key (eg. building)": "sleutel (bijv. gebouw)",
437
+ "!key (eg. !name)": "!sleutel (bv. !naam)",
438
+ "key=value (eg. building=yes)": "sleutel=waarde (bv. gebouw=ja)",
439
+ "key!=value (eg. building!=yes)": "sleuyel!=waarde (bv. gebouw!=yes)",
440
+ "key~value (eg. name~Grisy)": "sleutel~waarde (bv. naam~Grisy)",
441
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "sleutel=\"waarde|waarde2\" (bv. naam=\"Parijs|Berlijn\")",
442
+ "More info about Overpass syntax": "Meer informatie over de syntaxis van Overpass",
443
+ "For more complex needs, see": "Voor complexere behoeften, zie",
444
+ "Choose data": "Kies data",
445
+ "Choose the format": "Kies het formaat",
446
+ "Choose the layer": "Kies de laag",
447
+ "Layer name": "Naam van de laag",
448
+ "Choose import mode": "Kies import modus",
449
+ "Copy into the layer": "Kopieer in de laag",
450
+ "Link to the layer as remote data": "Koppeling naar de laag als externe data",
451
+ "Condition": "Conditie",
452
+ "key=value or key!=value": "Sleutel=waarde of sleutel!=waarde",
453
+ "Are you sure you want to delete this rule?": "Weet je zeker dat je deze regel wilt verwijderen?",
454
+ "empty rule": "lege regel",
455
+ "Conditional style rules": "Voorwaardelijke stijlregels",
456
+ "Add rule": "Voeg regel toe",
460
457
  "Browser: data": "Browser: data",
461
- "Browser: layers": "Browser: layers",
458
+ "Browser: layers": "Browser: lagen",
462
459
  "Browser: filters": "Browser: filters",
463
- "Enable real-time collaboration": "Enable real-time collaboration",
464
- "✅ Copied!": "✅ Copied!",
465
- "Choose a dataset": "Choose a dataset",
466
- "Choose this dataset": "Choose this dataset",
467
- "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
468
- "Choose a theme": "Choose a theme",
469
- "Symplify all geometries to points": "Symplify all geometries to points",
470
- "Choose this data": "Choose this data",
471
- "Search admin boundary": "Search admin boundary",
472
- "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
473
- "Expression": "Expression",
474
- "Geometry mode": "Geometry mode",
475
- "Only geometry centers": "Only geometry centers",
476
- "Search area": "Search area",
477
- "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
478
- "Data successfully imported!": "Data successfully imported!",
479
- "Clear data": "Clear data",
480
- "Remove layers": "Remove layers",
481
- "Categorized": "Categorized",
482
- "Alphabetical": "Alphabetical",
483
- "Category property": "Category property",
484
- "Color palette": "Color palette",
485
- "Categories": "Categories",
486
- "Comma separated list of categories.": "Comma separated list of categories.",
487
- "Categories mode": "Categories mode",
488
- "Remove filter for this column": "Remove filter for this column",
489
- "Add filter for this column": "Add filter for this column",
490
- "Rename this column": "Rename this column",
491
- "Delete this column": "Delete this column",
492
- "Name “{name}” should not contain a dot.": "Name {name} should not contain a dot.",
493
- "This name already exists: “{name}”": "This name already exists: {name}",
494
- "Delete selected rows": "Delete selected rows",
495
- "Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
496
- "Expression is empty": "Expression is empty",
460
+ "Enable real-time collaboration": "Maak realtime samenwerking mogelijk",
461
+ "✅ Copied!": "✅ Gekopieerd!",
462
+ "Choose a dataset": "Kies een dataset",
463
+ "Choose this dataset": "Kies deze dataset",
464
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematische data van OpenStreetMap",
465
+ "Choose a theme": "Kies een thema",
466
+ "Symplify all geometries to points": "Symplificeer alle geometrieën tot punten",
467
+ "Choose this data": "Kies deze data",
468
+ "Search admin boundary": "Zoeken administrative grens",
469
+ "Please choose a theme and a boundary first.": "Kies eerst een thema en een grens.",
470
+ "Expression": "Uitdrukking",
471
+ "Geometry mode": "Geometrie-modus",
472
+ "Only geometry centers": "Alleen geometriecentra",
473
+ "Search area": "Doorzoek gebied",
474
+ "Type area name, or let empty to load data in current map view": "Typ de naam van het gebied of laat leeg om data in de huidige kaartweergave te laden",
475
+ "Data successfully imported!": "Data succesvol geïmporteerd!",
476
+ "Clear data": "Wis data",
477
+ "Remove layers": "Verwijder lagen",
478
+ "Categorized": "Gecategoriseerd",
479
+ "Alphabetical": "Alfabetisch",
480
+ "Category property": "Categorie eigenschap",
481
+ "Color palette": "Kleurenpalet",
482
+ "Categories": "Categoriën",
483
+ "Comma separated list of categories.": "Door komma's gescheiden lijst van categorieën.",
484
+ "Categories mode": "Categorieën modus",
485
+ "Remove filter for this column": "Verwijder filter voor deze kolom",
486
+ "Add filter for this column": "Voeg filter toe voor deze kolom",
487
+ "Rename this column": "Hernoem deze kolom",
488
+ "Delete this column": "Verwijder deze kolom",
489
+ "Name “{name}” should not contain a dot.": "De naam \"{name}\" mag geen punt bevatten.",
490
+ "This name already exists: “{name}”": "Deze naam bestaat al: \"{name}\"",
491
+ "Delete selected rows": "Geselecteerde rijen verwijderen",
492
+ "Found {count} rows. Are you sure you want to delete all?": "Gevonden {count} rijen. Weet je zeker dat je alles wilt verwijderen?",
493
+ "Expression is empty": "Expressie is leeg",
497
494
  "OK": "OK",
498
- "Cancel": "Cancel",
499
- "Attach map to a team": "Attach map to a team",
500
- "Display the polygon inverted": "Display the polygon inverted",
501
- "Proportional circles": "Proportional circles",
502
- "Property name to compute circles": "Property name to compute circles",
503
- "Min circle radius": "Min circle radius",
504
- "Max circle radius": "Max circle radius",
505
- "Display the open browser control": "Display the open browser control",
506
- "Copy as GeoJSON": "Copy as GeoJSON",
507
- "Please zoom in to edit the geometry": "Please zoom in to edit the geometry",
508
- "New map": "New map",
509
- "My maps": "My maps",
510
- "My teams": "My teams",
511
- "My profile": "My profile",
512
- "Type new owner's username": "Type new owner's username",
513
- "Type editor's username": "Type editor's username",
514
- "Map": "Map",
515
- "Manage collaborators": "Manage collaborators",
516
- "show/hide all layers": "show/hide all layers",
517
- "zoom to data extent": "zoom to data extent",
518
- "download visible data": "download visible data",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
520
- "Import helpers": "Import helpers",
521
- "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
495
+ "Cancel": "Annuleren",
496
+ "Attach map to a team": "Kaart aan een team toewijzen",
497
+ "Display the polygon inverted": "De omgekeerde veelhoek weergeven",
498
+ "Proportional circles": "Proportionele circels",
499
+ "Property name to compute circles": "Eigenschapsnaam om cirkels te berekenen",
500
+ "Min circle radius": "Min. circlestraal",
501
+ "Max circle radius": "Max. cirkelstraal",
502
+ "Display the open browser control": "Het besturingselement voor het openen van de browser weergeven",
503
+ "Copy as GeoJSON": "Kopiëren als GeoJSON",
504
+ "Please zoom in to edit the geometry": "Zoom in om de geometrie te bewerken",
505
+ "New map": "Nieuwe kaart",
506
+ "My maps": "Mijn kaarten",
507
+ "My teams": "Mijn teams",
508
+ "My profile": "Mijn profiel",
509
+ "Type new owner's username": "Typ de gebruikersnaam van de nieuwe eigenaar",
510
+ "Type editor's username": "Typ de gebruikersnaam van de redacteur",
511
+ "Map": "Kaart",
512
+ "Manage collaborators": "Medewerkers beheren",
513
+ "show/hide all layers": "Alle lagen tonen/verbergen",
514
+ "zoom to data extent": "Inzoomen op data omvang",
515
+ "download visible data": "Zichtbare data downloaden",
516
+ "Import helpers": "Importhelpers",
517
+ "Import helpers will fill the URL field for you.": "Importhelpers vullen het URL-veld voor u in.",
522
518
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
519
+ "Save draft": "Concept opslaan",
520
+ "No data has been found for import": "Er zijn geen data gevonden voor import",
521
+ "Successfully imported {count} feature(s)": "Succesvol geïmporteerde {count} functie(s)",
522
+ "Disconnected": "Verbroken",
523
+ "You must be logged in": "U moet ingelogd zijn",
524
+ "on hover": "bij hoveren",
525
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Kan geen externe data laden voor laag \"{layer}\" met url \"{url}\"",
526
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Kan externe data niet parseren voor laag \"{layer}\" met url \"{url}\"",
527
+ "Import failed: invalid data": "Importeren mislukt: ongeldige data",
528
+ "Anonymous": "Anoniem",
529
+ "created at {date}": "gemaakt op {date}",
530
+ "modified at {date}": "gewijzigd op {date}",
531
+ "Default zoom": "Standaard zoomniveau",
532
+ "Default latitude": "Standaard breedtegraad",
533
+ "Default longitude": "Standaard lengtegraad",
534
+ "Edit map default view": "Standaardweergave van de kaart bewerken",
535
+ "Use current center and zoom": "Gebruik huidig centrum en zoomniveau",
536
+ "Layer permalink": "Layer permalink"
524
537
  }
@@ -19,7 +19,6 @@ const locale = {
19
19
  "Add a new property": "Legg til en ny egenskap",
20
20
  "Add a polygon to the current multi": "Legg et polygon til gjeldende multi",
21
21
  "Add image URL": "Add image URL",
22
- "Add": "Add",
23
22
  "Advanced actions": "Avanserte handlinger",
24
23
  "Advanced properties": "Avanserte egenskaper",
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": "Vis grensesnitt for lokalisering",
121
120
  "Display the measure control": "Vis grensesnitt for oppmåling",
122
121
  "Display the search control": "Vis grensesnitt for søk",
123
- "Display the star map button": "Display the star map button",
124
122
  "Display the tile layers control": "Vis grensesnitt for flis-lag",
125
123
  "Display the zoom control": "Vis grensesnitt for zoom-styring",
126
124
  "Do you want to display a caption bar?": "Do you want to display a caption bar?",
@@ -301,7 +299,6 @@ const locale = {
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,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("no", locale)
526
538
  L.setLocale("no")
@@ -19,7 +19,6 @@
19
19
  "Add a new property": "Legg til en ny egenskap",
20
20
  "Add a polygon to the current multi": "Legg et polygon til gjeldende multi",
21
21
  "Add image URL": "Add image URL",
22
- "Add": "Add",
23
22
  "Advanced actions": "Avanserte handlinger",
24
23
  "Advanced properties": "Avanserte egenskaper",
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": "Vis grensesnitt for lokalisering",
121
120
  "Display the measure control": "Vis grensesnitt for oppmåling",
122
121
  "Display the search control": "Vis grensesnitt for søk",
123
- "Display the star map button": "Display the star map button",
124
122
  "Display the tile layers control": "Vis grensesnitt for flis-lag",
125
123
  "Display the zoom control": "Vis grensesnitt for zoom-styring",
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,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": "Dodaj nową właściwość",
20
20
  "Add a polygon to the current multi": "Dodaj wielobok do wybranego obszaru",
21
21
  "Add image URL": "Dodaj URL obrazka",
22
- "Add": "Dodawać",
23
22
  "Advanced actions": "Zaawansowane operacje",
24
23
  "Advanced properties": "Zaawansowane właściwości",
25
24
  "All data and settings of the map": "Wszystkie dane i ustawienia mapy",
@@ -120,7 +119,6 @@ const locale = {
120
119
  "Display the locate control": "Wyświetlaj panel lokalizacji",
121
120
  "Display the measure control": "Wyświetlaj panel miarek",
122
121
  "Display the search control": "Wyświetlaj panel wyszukiwania",
123
- "Display the star map button": "Display the star map button",
124
122
  "Display the tile layers control": "Wyświetlaj panel warstw kafelków",
125
123
  "Display the zoom control": "Wyświetlaj panel sterujący powiększeniem",
126
124
  "Do you want to display a caption bar?": "Wyświetlać pasek z nagłówkiem?",
@@ -301,7 +299,6 @@ const locale = {
301
299
  "Restore this version": "Przywróć tę wersję",
302
300
  "Save current edits": "Zapisz obecne edycje",
303
301
  "Save map": "Zapisz mapę",
304
- "Save this center and zoom": "Zapisz obecną pozycję i przybliżenie",
305
302
  "Save this location as new feature": "Zapisz to miejsce jako nowy obiekt",
306
303
  "Save": "Zapisz",
307
304
  "Saved center and zoom": "Zapisano pozycję i przybliżenie",
@@ -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("pl", locale)
526
538
  L.setLocale("pl")
@@ -19,7 +19,6 @@
19
19
  "Add a new property": "Dodaj nową właściwość",
20
20
  "Add a polygon to the current multi": "Dodaj wielobok do wybranego obszaru",
21
21
  "Add image URL": "Dodaj URL obrazka",
22
- "Add": "Dodawać",
23
22
  "Advanced actions": "Zaawansowane operacje",
24
23
  "Advanced properties": "Zaawansowane właściwości",
25
24
  "All data and settings of the map": "Wszystkie dane i ustawienia mapy",
@@ -120,7 +119,6 @@
120
119
  "Display the locate control": "Wyświetlaj panel lokalizacji",
121
120
  "Display the measure control": "Wyświetlaj panel miarek",
122
121
  "Display the search control": "Wyświetlaj panel wyszukiwania",
123
- "Display the star map button": "Display the star map button",
124
122
  "Display the tile layers control": "Wyświetlaj panel warstw kafelków",
125
123
  "Display the zoom control": "Wyświetlaj panel sterujący powiększeniem",
126
124
  "Do you want to display a caption bar?": "Wyświetlać pasek z nagłówkiem?",
@@ -301,7 +299,6 @@
301
299
  "Restore this version": "Przywróć tę wersję",
302
300
  "Save current edits": "Zapisz obecne edycje",
303
301
  "Save map": "Zapisz mapę",
304
- "Save this center and zoom": "Zapisz obecną pozycję i przybliżenie",
305
302
  "Save this location as new feature": "Zapisz to miejsce jako nowy obiekt",
306
303
  "Save": "Zapisz",
307
304
  "Saved center and zoom": "Zapisano pozycję i przybliżenie",
@@ -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 @@
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,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
  }