umap-project 2.3.1__py3-none-any.whl → 2.4.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 (204) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/en/LC_MESSAGES/django.po +81 -31
  3. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/fr/LC_MESSAGES/django.po +117 -66
  5. umap/management/commands/run_websocket_server.py +23 -0
  6. umap/models.py +6 -1
  7. umap/settings/base.py +11 -3
  8. umap/static/umap/base.css +64 -184
  9. umap/static/umap/content.css +3 -2
  10. umap/static/umap/css/dialog.css +18 -0
  11. umap/static/umap/css/icon.css +8 -0
  12. umap/static/umap/css/importers.css +51 -0
  13. umap/static/umap/css/panel.css +18 -57
  14. umap/static/umap/css/tooltip.css +59 -0
  15. umap/static/umap/css/window.css +35 -0
  16. umap/static/umap/img/16-white.svg +1 -3
  17. umap/static/umap/img/alert-icon-error.svg +8 -0
  18. umap/static/umap/img/alert-icon-info.svg +4 -0
  19. umap/static/umap/img/alert-icon-success.svg +3 -0
  20. umap/static/umap/img/icon-external-link.svg +3 -0
  21. umap/static/umap/img/importers/communesfr.svg +5 -0
  22. umap/static/umap/img/importers/datasets.svg +13 -0
  23. umap/static/umap/img/importers/geodatamine.svg +10 -0
  24. umap/static/umap/img/importers/overpass.svg +7 -0
  25. umap/static/umap/img/importers/random.svg +18 -0
  26. umap/static/umap/img/importers/random1.svg +4 -0
  27. umap/static/umap/img/importers/random2.svg +4 -0
  28. umap/static/umap/img/source/16-white.svg +2 -4
  29. umap/static/umap/js/components/alerts/alert.css +160 -0
  30. umap/static/umap/js/components/alerts/alert.js +169 -0
  31. umap/static/umap/js/components/base.js +54 -0
  32. umap/static/umap/js/modules/autocomplete.js +347 -0
  33. umap/static/umap/js/modules/browser.js +6 -6
  34. umap/static/umap/js/modules/caption.js +5 -4
  35. umap/static/umap/js/modules/global.js +36 -12
  36. umap/static/umap/js/modules/help.js +255 -0
  37. umap/static/umap/js/modules/importer.js +308 -0
  38. umap/static/umap/js/modules/importers/communesfr.js +44 -0
  39. umap/static/umap/js/modules/importers/datasets.js +42 -0
  40. umap/static/umap/js/modules/importers/geodatamine.js +95 -0
  41. umap/static/umap/js/modules/importers/overpass.js +84 -0
  42. umap/static/umap/js/modules/request.js +12 -14
  43. umap/static/umap/js/modules/rules.js +241 -0
  44. umap/static/umap/js/modules/schema.js +63 -14
  45. umap/static/umap/js/modules/sync/engine.js +93 -0
  46. umap/static/umap/js/modules/sync/updaters.js +109 -0
  47. umap/static/umap/js/modules/sync/websocket.js +25 -0
  48. umap/static/umap/js/modules/ui/dialog.js +52 -0
  49. umap/static/umap/js/modules/{panel.js → ui/panel.js} +25 -14
  50. umap/static/umap/js/modules/ui/tooltip.js +116 -0
  51. umap/static/umap/js/modules/utils.js +25 -18
  52. umap/static/umap/js/umap.controls.js +13 -14
  53. umap/static/umap/js/umap.core.js +1 -324
  54. umap/static/umap/js/umap.features.js +77 -29
  55. umap/static/umap/js/umap.forms.js +9 -13
  56. umap/static/umap/js/umap.js +254 -215
  57. umap/static/umap/js/umap.layer.js +152 -74
  58. umap/static/umap/js/umap.permissions.js +5 -9
  59. umap/static/umap/js/umap.popup.js +1 -1
  60. umap/static/umap/js/umap.tableeditor.js +8 -8
  61. umap/static/umap/locale/am_ET.js +51 -16
  62. umap/static/umap/locale/am_ET.json +51 -16
  63. umap/static/umap/locale/ar.js +51 -16
  64. umap/static/umap/locale/ar.json +51 -16
  65. umap/static/umap/locale/ast.js +51 -16
  66. umap/static/umap/locale/ast.json +51 -16
  67. umap/static/umap/locale/bg.js +51 -16
  68. umap/static/umap/locale/bg.json +51 -16
  69. umap/static/umap/locale/br.js +55 -20
  70. umap/static/umap/locale/br.json +55 -20
  71. umap/static/umap/locale/ca.js +51 -16
  72. umap/static/umap/locale/ca.json +51 -16
  73. umap/static/umap/locale/cs_CZ.js +93 -58
  74. umap/static/umap/locale/cs_CZ.json +93 -58
  75. umap/static/umap/locale/da.js +51 -16
  76. umap/static/umap/locale/da.json +51 -16
  77. umap/static/umap/locale/de.js +56 -21
  78. umap/static/umap/locale/de.json +56 -21
  79. umap/static/umap/locale/el.js +51 -16
  80. umap/static/umap/locale/el.json +51 -16
  81. umap/static/umap/locale/en.js +52 -16
  82. umap/static/umap/locale/en.json +52 -16
  83. umap/static/umap/locale/en_US.json +51 -16
  84. umap/static/umap/locale/es.js +51 -16
  85. umap/static/umap/locale/es.json +51 -16
  86. umap/static/umap/locale/et.js +51 -16
  87. umap/static/umap/locale/et.json +51 -16
  88. umap/static/umap/locale/eu.js +51 -16
  89. umap/static/umap/locale/eu.json +51 -16
  90. umap/static/umap/locale/fa_IR.js +51 -16
  91. umap/static/umap/locale/fa_IR.json +51 -16
  92. umap/static/umap/locale/fi.js +51 -16
  93. umap/static/umap/locale/fi.json +51 -16
  94. umap/static/umap/locale/fr.js +61 -25
  95. umap/static/umap/locale/fr.json +61 -25
  96. umap/static/umap/locale/gl.js +51 -16
  97. umap/static/umap/locale/gl.json +51 -16
  98. umap/static/umap/locale/he.js +51 -16
  99. umap/static/umap/locale/he.json +51 -16
  100. umap/static/umap/locale/hr.js +51 -16
  101. umap/static/umap/locale/hr.json +51 -16
  102. umap/static/umap/locale/hu.js +51 -16
  103. umap/static/umap/locale/hu.json +51 -16
  104. umap/static/umap/locale/id.js +51 -16
  105. umap/static/umap/locale/id.json +51 -16
  106. umap/static/umap/locale/is.js +51 -16
  107. umap/static/umap/locale/is.json +51 -16
  108. umap/static/umap/locale/it.js +51 -16
  109. umap/static/umap/locale/it.json +51 -16
  110. umap/static/umap/locale/ja.js +51 -16
  111. umap/static/umap/locale/ja.json +51 -16
  112. umap/static/umap/locale/ko.js +51 -16
  113. umap/static/umap/locale/ko.json +51 -16
  114. umap/static/umap/locale/lt.js +51 -16
  115. umap/static/umap/locale/lt.json +51 -16
  116. umap/static/umap/locale/ms.js +51 -16
  117. umap/static/umap/locale/ms.json +51 -16
  118. umap/static/umap/locale/nl.js +51 -16
  119. umap/static/umap/locale/nl.json +51 -16
  120. umap/static/umap/locale/no.js +51 -16
  121. umap/static/umap/locale/no.json +51 -16
  122. umap/static/umap/locale/pl.js +93 -58
  123. umap/static/umap/locale/pl.json +93 -58
  124. umap/static/umap/locale/pl_PL.json +51 -16
  125. umap/static/umap/locale/pt.js +215 -180
  126. umap/static/umap/locale/pt.json +215 -180
  127. umap/static/umap/locale/pt_BR.js +51 -16
  128. umap/static/umap/locale/pt_BR.json +51 -16
  129. umap/static/umap/locale/pt_PT.js +51 -16
  130. umap/static/umap/locale/pt_PT.json +51 -16
  131. umap/static/umap/locale/ro.js +51 -16
  132. umap/static/umap/locale/ro.json +51 -16
  133. umap/static/umap/locale/ru.js +51 -16
  134. umap/static/umap/locale/ru.json +51 -16
  135. umap/static/umap/locale/si.js +51 -16
  136. umap/static/umap/locale/si.json +51 -16
  137. umap/static/umap/locale/sk_SK.js +51 -16
  138. umap/static/umap/locale/sk_SK.json +51 -16
  139. umap/static/umap/locale/sl.js +51 -16
  140. umap/static/umap/locale/sl.json +51 -16
  141. umap/static/umap/locale/sr.js +51 -16
  142. umap/static/umap/locale/sr.json +51 -16
  143. umap/static/umap/locale/sv.js +51 -16
  144. umap/static/umap/locale/sv.json +51 -16
  145. umap/static/umap/locale/th_TH.js +51 -16
  146. umap/static/umap/locale/th_TH.json +51 -16
  147. umap/static/umap/locale/tr.js +51 -16
  148. umap/static/umap/locale/tr.json +51 -16
  149. umap/static/umap/locale/uk_UA.js +51 -16
  150. umap/static/umap/locale/uk_UA.json +51 -16
  151. umap/static/umap/locale/vi.js +51 -16
  152. umap/static/umap/locale/vi.json +51 -16
  153. umap/static/umap/locale/vi_VN.json +51 -16
  154. umap/static/umap/locale/zh.js +51 -16
  155. umap/static/umap/locale/zh.json +51 -16
  156. umap/static/umap/locale/zh_CN.json +51 -16
  157. umap/static/umap/locale/zh_TW.Big5.json +51 -16
  158. umap/static/umap/locale/zh_TW.js +51 -16
  159. umap/static/umap/locale/zh_TW.json +51 -16
  160. umap/static/umap/map.css +40 -53
  161. umap/static/umap/unittests/sync.js +105 -0
  162. umap/static/umap/unittests/utils.js +78 -36
  163. umap/static/umap/vars.css +19 -1
  164. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +2 -2
  165. umap/templates/umap/components/alerts/alert.html +89 -0
  166. umap/templates/umap/content.html +4 -3
  167. umap/templates/umap/css.html +4 -0
  168. umap/templates/umap/home.html +3 -0
  169. umap/templates/umap/js.html +0 -3
  170. umap/templates/umap/map_init.html +2 -8
  171. umap/templates/umap/messages.html +9 -11
  172. umap/templates/umap/search.html +3 -0
  173. umap/tests/base.py +2 -0
  174. umap/tests/integration/conftest.py +30 -0
  175. umap/tests/integration/test_anonymous_owned_map.py +8 -13
  176. umap/tests/integration/test_browser.py +77 -4
  177. umap/tests/integration/test_conditional_rules.py +201 -0
  178. umap/tests/integration/test_dashboard.py +1 -1
  179. umap/tests/integration/test_datalayer.py +2 -3
  180. umap/tests/integration/test_edit_datalayer.py +4 -4
  181. umap/tests/integration/test_edit_map.py +1 -1
  182. umap/tests/integration/test_facets_browser.py +3 -3
  183. umap/tests/integration/test_import.py +185 -49
  184. umap/tests/integration/test_map.py +31 -2
  185. umap/tests/integration/{test_collaborative_editing.py → test_optimistic_merge.py} +7 -7
  186. umap/tests/integration/test_owned_map.py +1 -1
  187. umap/tests/integration/test_picto.py +2 -2
  188. umap/tests/integration/test_statics.py +1 -1
  189. umap/tests/integration/test_view_marker.py +2 -2
  190. umap/tests/integration/test_websocket_sync.py +283 -0
  191. umap/tests/settings.py +5 -0
  192. umap/tests/test_datalayer_views.py +0 -1
  193. umap/tests/test_views.py +53 -0
  194. umap/urls.py +5 -0
  195. umap/views.py +40 -11
  196. umap/websocket_server.py +92 -0
  197. {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/METADATA +10 -8
  198. {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/RECORD +201 -167
  199. umap/static/umap/js/umap.autocomplete.js +0 -341
  200. umap/static/umap/js/umap.importer.js +0 -187
  201. umap/static/umap/js/umap.ui.js +0 -190
  202. {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/WHEEL +0 -0
  203. {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/entry_points.txt +0 -0
  204. {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/licenses/LICENSE +0 -0
@@ -48,16 +48,12 @@ const locale = {
48
48
  "by": "af",
49
49
  "Cache proxied request": "Forespørgsel i proxycache",
50
50
  "Cancel edits": "Fortryd redigeringer",
51
- "Cancel": "Fortryd",
52
51
  "Caption": "Billedtekst",
53
52
  "Center map on your location": "Centrer kort på din placering",
54
53
  "Change map background": "Skift kortbaggrund",
55
54
  "Change tilelayers": "Skift kortlag",
56
55
  "Change": "Change",
57
- "Choose a preset": "Vælg en forudindstilling",
58
56
  "Choose the data format": "Vælg dataformat",
59
- "Choose the format of the data to import": "Vælg imports dataformat",
60
- "Choose the layer to import in": "Vælg lag der skal importeres",
61
57
  "Choropleth breakpoints": "Choropleth breakpoints",
62
58
  "Choropleth classes": "Choropleth classes",
63
59
  "Choropleth color palette": "Choropleth color palette",
@@ -87,7 +83,6 @@ const locale = {
87
83
  "Congratulations, your map has been created!": "Congratulations, your map has been created!",
88
84
  "Continue line": "Fortsæt linje",
89
85
  "Coordinates": "Koordinater",
90
- "Copy link": "Copy link",
91
86
  "copy": "copy",
92
87
  "Credits": "Kreditering",
93
88
  "Current map view": "Current map view",
@@ -152,7 +147,6 @@ const locale = {
152
147
  "Edit the title of the map": "Edit the title of the map",
153
148
  "Edit this feature": "Rediger dette objekt",
154
149
  "Edit": "Redigering",
155
- "Email": "Email",
156
150
  "Embed and link options": "Embed and link options",
157
151
  "Embed the map": "Indlejring af kortet",
158
152
  "Emoji & Character": "Emoji & Character",
@@ -200,7 +194,6 @@ const locale = {
200
194
  "Image: {{http://image.url.com}}": "Billede: {{http://image.url.com}}",
201
195
  "Import data": "Importer data",
202
196
  "Import in a new layer": "Importerer i et nyt lag",
203
- "Import": "Import",
204
197
  "Imports all umap data, including layers and settings.": "Importerer alle umapdata, inklusiv lag og indstillinger,",
205
198
  "Include full screen link?": "Inkluder fuldskærmslink?",
206
199
  "Inherit": "Nedarv",
@@ -311,7 +304,6 @@ const locale = {
311
304
  "Rename this property on all the features": "Omdøb denne egenskab på alle objekter",
312
305
  "Replace layer content": "Erstat lags indhold",
313
306
  "Restore this version": "Genskab denne version",
314
- "Save anyway": "Gem alligevel",
315
307
  "Save current edits": "Gem nuværende redigeringer",
316
308
  "Save map": "Save map",
317
309
  "Save this center and zoom": "Gem med dette center og zoom",
@@ -320,12 +312,9 @@ const locale = {
320
312
  "Saved center and zoom": "Saved center and zoom",
321
313
  "Search location": "Søg efter placering",
322
314
  "Search": "Search",
323
- "Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
324
315
  "Secret edit link:": "Secret edit link:",
325
- "See layers": "See layers",
326
316
  "See full screen": "Se i fuld skærm",
327
317
  "See on OpenStreetMap": "See on OpenStreetMap",
328
- "Send me the link": "Send me the link",
329
318
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Sæt den til false, for at skjule dette lag fra slideshowet, databrowseren, popupnavigeringen…",
330
319
  "settings": "settings",
331
320
  "Shape properties": "Figuregenskaber",
@@ -398,9 +387,7 @@ const locale = {
398
387
  "Will be displayed in the bottom right corner of the map": "Vil blive vist i kortets nederste højre hjørne",
399
388
  "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
400
389
  "Will be visible in the caption of the map": "Vil være synlig i tekstfeltet på kortet",
401
- "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Ups! Det ser ud til at nogen har rettet i dataene. Du kan gemme alligevel, men det vil overskrive andres ændringer.",
402
390
  "yes": "ja",
403
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
404
391
  "Zoom in": "Zoom ind",
405
392
  "Zoom level for automatic zooms": "Zoomniveau for automatisk zooming",
406
393
  "Zoom out": "Zoom ud",
@@ -444,9 +431,57 @@ const locale = {
444
431
  "Filter data": "Filter data",
445
432
  "Search map features…": "Search map features…",
446
433
  "Reset all": "Reset all",
447
- "Browser in data mode": "Browser in data mode",
448
- "Browser in layers mode": "Browser in layers mode",
449
- "Browser in filters mode": "Browser in filters mode"
434
+ "Open browser": "Open browser",
435
+ "Open caption": "Open caption",
436
+ "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
437
+ "Real-time collaboration": "Real-time collaboration",
438
+ "Cannot parse data": "Cannot parse data",
439
+ "Start typing...": "Start typing...",
440
+ "No result": "No result",
441
+ "Data browser": "Data browser",
442
+ "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.",
443
+ "Overpass supported expressions": "Overpass supported expressions",
444
+ "key (eg. building)": "key (eg. building)",
445
+ "!key (eg. !name)": "!key (eg. !name)",
446
+ "key=value (eg. building=yes)": "key=value (eg. building=yes)",
447
+ "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
448
+ "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
449
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
450
+ "More info about Overpass syntax": "More info about Overpass syntax",
451
+ "For more complex needs, see": "For more complex needs, see",
452
+ "Choose data": "Choose data",
453
+ "Import helpers:": "Import helpers:",
454
+ "Choose the format": "Choose the format",
455
+ "Choose the layer": "Choose the layer",
456
+ "Layer name": "Layer name",
457
+ "Choose import mode": "Choose import mode",
458
+ "Copy into the layer": "Copy into the layer",
459
+ "Link to the layer as remote data": "Link to the layer as remote data",
460
+ "Condition": "Condition",
461
+ "key=value or key!=value": "key=value or key!=value",
462
+ "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
463
+ "empty rule": "empty rule",
464
+ "Conditional style rules": "Conditional style rules",
465
+ "Add rule": "Add rule",
466
+ "Browser: data": "Browser: data",
467
+ "Browser: layers": "Browser: layers",
468
+ "Browser: filters": "Browser: filters",
469
+ "Enable real-time collaboration": "Enable real-time collaboration",
470
+ "✅ Copied!": "✅ Copied!",
471
+ "Choose a dataset": "Choose a dataset",
472
+ "Choose this dataset": "Choose this dataset",
473
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
474
+ "Choose a theme": "Choose a theme",
475
+ "Symplify all geometries to points": "Symplify all geometries to points",
476
+ "Choose this data": "Choose this data",
477
+ "Search admin boundary": "Search admin boundary",
478
+ "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
479
+ "Expression": "Expression",
480
+ "Geometry mode": "Geometry mode",
481
+ "Only geometry centers": "Only geometry centers",
482
+ "Search area": "Search area",
483
+ "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",
484
+ "Please define an expression for the query first": "Please define an expression for the query first"
450
485
  }
451
486
  L.registerLocale("da", locale)
452
487
  L.setLocale("da")
@@ -48,16 +48,12 @@
48
48
  "by": "af",
49
49
  "Cache proxied request": "Forespørgsel i proxycache",
50
50
  "Cancel edits": "Fortryd redigeringer",
51
- "Cancel": "Fortryd",
52
51
  "Caption": "Billedtekst",
53
52
  "Center map on your location": "Centrer kort på din placering",
54
53
  "Change map background": "Skift kortbaggrund",
55
54
  "Change tilelayers": "Skift kortlag",
56
55
  "Change": "Change",
57
- "Choose a preset": "Vælg en forudindstilling",
58
56
  "Choose the data format": "Vælg dataformat",
59
- "Choose the format of the data to import": "Vælg imports dataformat",
60
- "Choose the layer to import in": "Vælg lag der skal importeres",
61
57
  "Choropleth breakpoints": "Choropleth breakpoints",
62
58
  "Choropleth classes": "Choropleth classes",
63
59
  "Choropleth color palette": "Choropleth color palette",
@@ -87,7 +83,6 @@
87
83
  "Congratulations, your map has been created!": "Congratulations, your map has been created!",
88
84
  "Continue line": "Fortsæt linje",
89
85
  "Coordinates": "Koordinater",
90
- "Copy link": "Copy link",
91
86
  "copy": "copy",
92
87
  "Credits": "Kreditering",
93
88
  "Current map view": "Current map view",
@@ -152,7 +147,6 @@
152
147
  "Edit the title of the map": "Edit the title of the map",
153
148
  "Edit this feature": "Rediger dette objekt",
154
149
  "Edit": "Redigering",
155
- "Email": "Email",
156
150
  "Embed and link options": "Embed and link options",
157
151
  "Embed the map": "Indlejring af kortet",
158
152
  "Emoji & Character": "Emoji & Character",
@@ -200,7 +194,6 @@
200
194
  "Image: {{http://image.url.com}}": "Billede: {{http://image.url.com}}",
201
195
  "Import data": "Importer data",
202
196
  "Import in a new layer": "Importerer i et nyt lag",
203
- "Import": "Import",
204
197
  "Imports all umap data, including layers and settings.": "Importerer alle umapdata, inklusiv lag og indstillinger,",
205
198
  "Include full screen link?": "Inkluder fuldskærmslink?",
206
199
  "Inherit": "Nedarv",
@@ -311,7 +304,6 @@
311
304
  "Rename this property on all the features": "Omdøb denne egenskab på alle objekter",
312
305
  "Replace layer content": "Erstat lags indhold",
313
306
  "Restore this version": "Genskab denne version",
314
- "Save anyway": "Gem alligevel",
315
307
  "Save current edits": "Gem nuværende redigeringer",
316
308
  "Save map": "Save map",
317
309
  "Save this center and zoom": "Gem med dette center og zoom",
@@ -320,12 +312,9 @@
320
312
  "Saved center and zoom": "Saved center and zoom",
321
313
  "Search location": "Søg efter placering",
322
314
  "Search": "Search",
323
- "Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
324
315
  "Secret edit link:": "Secret edit link:",
325
- "See layers": "See layers",
326
316
  "See full screen": "Se i fuld skærm",
327
317
  "See on OpenStreetMap": "See on OpenStreetMap",
328
- "Send me the link": "Send me the link",
329
318
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Sæt den til false, for at skjule dette lag fra slideshowet, databrowseren, popupnavigeringen…",
330
319
  "settings": "settings",
331
320
  "Shape properties": "Figuregenskaber",
@@ -398,9 +387,7 @@
398
387
  "Will be displayed in the bottom right corner of the map": "Vil blive vist i kortets nederste højre hjørne",
399
388
  "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
400
389
  "Will be visible in the caption of the map": "Vil være synlig i tekstfeltet på kortet",
401
- "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Ups! Det ser ud til at nogen har rettet i dataene. Du kan gemme alligevel, men det vil overskrive andres ændringer.",
402
390
  "yes": "ja",
403
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
404
391
  "Zoom in": "Zoom ind",
405
392
  "Zoom level for automatic zooms": "Zoomniveau for automatisk zooming",
406
393
  "Zoom out": "Zoom ud",
@@ -444,7 +431,55 @@
444
431
  "Filter data": "Filter data",
445
432
  "Search map features…": "Search map features…",
446
433
  "Reset all": "Reset all",
447
- "Browser in data mode": "Browser in data mode",
448
- "Browser in layers mode": "Browser in layers mode",
449
- "Browser in filters mode": "Browser in filters mode"
434
+ "Open browser": "Open browser",
435
+ "Open caption": "Open caption",
436
+ "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
437
+ "Real-time collaboration": "Real-time collaboration",
438
+ "Cannot parse data": "Cannot parse data",
439
+ "Start typing...": "Start typing...",
440
+ "No result": "No result",
441
+ "Data browser": "Data browser",
442
+ "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.",
443
+ "Overpass supported expressions": "Overpass supported expressions",
444
+ "key (eg. building)": "key (eg. building)",
445
+ "!key (eg. !name)": "!key (eg. !name)",
446
+ "key=value (eg. building=yes)": "key=value (eg. building=yes)",
447
+ "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
448
+ "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
449
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
450
+ "More info about Overpass syntax": "More info about Overpass syntax",
451
+ "For more complex needs, see": "For more complex needs, see",
452
+ "Choose data": "Choose data",
453
+ "Import helpers:": "Import helpers:",
454
+ "Choose the format": "Choose the format",
455
+ "Choose the layer": "Choose the layer",
456
+ "Layer name": "Layer name",
457
+ "Choose import mode": "Choose import mode",
458
+ "Copy into the layer": "Copy into the layer",
459
+ "Link to the layer as remote data": "Link to the layer as remote data",
460
+ "Condition": "Condition",
461
+ "key=value or key!=value": "key=value or key!=value",
462
+ "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
463
+ "empty rule": "empty rule",
464
+ "Conditional style rules": "Conditional style rules",
465
+ "Add rule": "Add rule",
466
+ "Browser: data": "Browser: data",
467
+ "Browser: layers": "Browser: layers",
468
+ "Browser: filters": "Browser: filters",
469
+ "Enable real-time collaboration": "Enable real-time collaboration",
470
+ "✅ Copied!": "✅ Copied!",
471
+ "Choose a dataset": "Choose a dataset",
472
+ "Choose this dataset": "Choose this dataset",
473
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
474
+ "Choose a theme": "Choose a theme",
475
+ "Symplify all geometries to points": "Symplify all geometries to points",
476
+ "Choose this data": "Choose this data",
477
+ "Search admin boundary": "Search admin boundary",
478
+ "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
479
+ "Expression": "Expression",
480
+ "Geometry mode": "Geometry mode",
481
+ "Only geometry centers": "Only geometry centers",
482
+ "Search area": "Search area",
483
+ "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",
484
+ "Please define an expression for the query first": "Please define an expression for the query first"
450
485
  }
@@ -10,15 +10,15 @@ const locale = {
10
10
  "1 day": "1 Tag",
11
11
  "1 hour": "1 Stunde",
12
12
  "5 min": "5 min",
13
- "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Eine kommagetrente Zahlenfolge, die die Linienart (Strichmuster) der Kontur definiert, z. B.: \"5, 10, 15\".",
13
+ "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Eine kommagetrennte Zahlenfolge, die die Linienart (Strichmuster) der Kontur definiert, z. B.: \"5, 10, 15\".",
14
14
  "About": "Über",
15
- "Action not allowed :(": "Action not allowed :(",
15
+ "Action not allowed :(": "Aktion nicht erlaubt :(",
16
16
  "Activate slideshow mode": "Diashowmodus aktivieren",
17
17
  "Add a layer": "Ebene hinzufügen",
18
18
  "Add a line to the current multi": "Linie zur vorhandene Gruppe hinzufügen",
19
19
  "Add a new property": "Ein Merkmal hinzufügen",
20
20
  "Add a polygon to the current multi": "Fläche zur vorhandene Gruppe hinzufügen",
21
- "Add image URL": "Add image URL",
21
+ "Add image URL": "Bild-URL hinzufügen",
22
22
  "Add": "Hinzufügen",
23
23
  "Advanced actions": "Erweiterte Aktionen",
24
24
  "Advanced properties": "Erweiterte Eigenschaften",
@@ -27,7 +27,7 @@ const locale = {
27
27
  "Allow interactions": "Interaktionen erlauben",
28
28
  "Allow scroll wheel zoom?": "Zoomen mit dem Mausrad erlauben?",
29
29
  "always": "immer",
30
- "Animated transitions": "Animated transitions",
30
+ "Animated transitions": "Animierte Übergänge",
31
31
  "Are you sure you want to cancel your changes?": "Willst du deine Änderungen wirklich abbrechen?",
32
32
  "Are you sure you want to clone this map and all its datalayers?": "Möchtest du die Karte und ihre Datenebenen wirklich duplizieren?",
33
33
  "Are you sure you want to delete the feature?": "Möchtest du dieses Element wirklich löschen?",
@@ -48,16 +48,12 @@ const locale = {
48
48
  "by": "von",
49
49
  "Cache proxied request": "Proxycache-Anfrage",
50
50
  "Cancel edits": "Bearbeitungen abbrechen",
51
- "Cancel": "Abbrechen",
52
51
  "Caption": "Überschrift",
53
52
  "Center map on your location": "Die Karte auf deinen Standort ausrichten",
54
53
  "Change map background": "Hintergrundkarte ändern",
55
54
  "Change tilelayers": "Kachelebenen ändern",
56
55
  "Change": "Change",
57
- "Choose a preset": "Wähle eine Vorlage",
58
56
  "Choose the data format": "Wähle das Datenformat",
59
- "Choose the format of the data to import": "Wähle das Datenformat für den Import",
60
- "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll",
61
57
  "Choropleth breakpoints": "Choropleth breakpoints",
62
58
  "Choropleth classes": "Choropleth classes",
63
59
  "Choropleth color palette": "Choropleth color palette",
@@ -81,13 +77,12 @@ const locale = {
81
77
  "Clustering radius": "Gruppierungsradius",
82
78
  "collapsed": "eingeklappt",
83
79
  "color": "Farbe",
84
- "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
80
+ "Comma separated list of numbers, including min and max values.": "Kommaseparierte Liste an Zahlen, enthält min und max Werte.",
85
81
  "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Komma-getrennte Liste von Eigenschaften, die für die Sortierung verwendet werden sollen. Um die Sortierung umzukehren, setzen ein Minuszeichen (-) davor, z. B. mykey,-otherkey.",
86
82
  "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Komma-, Tabulator-, oder Semikolongetrennte Werte. SRS WGS84 ist impliziert. Nur Punktgeometrien werden importiert. Beim Import wird nach Spaltenüberschriften mit jeder Nennung von „lat“ und „lon“ am Anfang der Überschrift gesucht (ohne Beachtung von Groß-/Kleinschreibung). Alle anderen Spalten werden als Merkmale importiert.",
87
83
  "Congratulations, your map has been created!": "Glückwunsch, deine Karte wurde erstellt!",
88
84
  "Continue line": "Linie fortführen",
89
85
  "Coordinates": "Koordinaten",
90
- "Copy link": "Link kopieren",
91
86
  "copy": "kopieren",
92
87
  "Credits": "Credits",
93
88
  "Current map view": "Current map view",
@@ -152,7 +147,6 @@ const locale = {
152
147
  "Edit the title of the map": "Die Überschrift der Karte bearbeiten",
153
148
  "Edit this feature": "Dieses Element bearbeiten",
154
149
  "Edit": "Bearbeiten",
155
- "Email": "Email",
156
150
  "Embed and link options": "Optionen zum Einbetten und für eine angepasste Kartenansicht",
157
151
  "Embed the map": "Karte einbinden",
158
152
  "Emoji & Character": "Emoji & Character",
@@ -200,7 +194,6 @@ const locale = {
200
194
  "Image: {{http://image.url.com}}": "Bild: {{http://bild.url.com}}",
201
195
  "Import data": "Daten importieren",
202
196
  "Import in a new layer": "In eine neue Ebene importieren",
203
- "Import": "Importieren",
204
197
  "Imports all umap data, including layers and settings.": "Importiert alle uMap-Daten inklusive Ebenen und Einstellungen",
205
198
  "Include full screen link?": "Link für Vollbildanzeige einbeziehen?",
206
199
  "Inherit": "erben",
@@ -311,7 +304,6 @@ const locale = {
311
304
  "Rename this property on all the features": "Dieses Merkmal bei allen Elementen umbenennen",
312
305
  "Replace layer content": "Ebeneninhalt ersetzen",
313
306
  "Restore this version": "Diese Version wiederherstellen",
314
- "Save anyway": "Trotzdem speichern",
315
307
  "Save current edits": "Aktuelle Änderungen speichern",
316
308
  "Save map": "Karte speichern",
317
309
  "Save this center and zoom": "Aktuelle Position und Zoomstufe speichern",
@@ -320,12 +312,9 @@ const locale = {
320
312
  "Saved center and zoom": "Saved center and zoom",
321
313
  "Search location": "Ort suchen",
322
314
  "Search": "Suche",
323
- "Secret edit link copied to clipboard!": "Geheimer Link zum Bearbeiten der Karte in die Zwischenablage kopiert!",
324
315
  "Secret edit link:": "Secret edit link:",
325
- "See layers": "See layers",
326
316
  "See full screen": "Vollbildanzeige",
327
317
  "See on OpenStreetMap": "See on OpenStreetMap",
328
- "Send me the link": "Link verschicken",
329
318
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Setze es auf Nein, um diese Ebene in der Diashow, im Datenbrowser, in der Popup-Navigation,... auszublenden.",
330
319
  "settings": "Einstellungen",
331
320
  "Shape properties": "Formeigenschaften",
@@ -398,9 +387,7 @@ const locale = {
398
387
  "Will be displayed in the bottom right corner of the map": "Wird in rechten unteren Ecke der Karte angezeigt",
399
388
  "Will be permanently visible in the bottom left corner of the map": "Wird in der unteren linken Ecke der Karte permanent sichtbar sein",
400
389
  "Will be visible in the caption of the map": "Wird in der Überschrift der Karte angezeigt",
401
- "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Hoppla! Jemand anders hat die Daten bearbeitet. Du kannst trotzdem speichern, von anderen vorgenommene Änderungen werden dabei aber gelöscht.",
402
390
  "yes": "Ja",
403
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Deine Karte wurde erstellt! Da du nicht eingeloggt bist, nutze bitte zukünftig folgenden geheimen Link zum Bearbeiten deiner Karte; bitte verwahre ihn sicher:",
404
391
  "Zoom in": "Hineinzoomen",
405
392
  "Zoom level for automatic zooms": "Zommstufe für automatischen Zoom",
406
393
  "Zoom out": "Herauszoomen",
@@ -444,9 +431,57 @@ const locale = {
444
431
  "Filter data": "Filter data",
445
432
  "Search map features…": "Search map features…",
446
433
  "Reset all": "Reset all",
447
- "Browser in data mode": "Browser in data mode",
448
- "Browser in layers mode": "Browser in layers mode",
449
- "Browser in filters mode": "Browser in filters mode"
434
+ "Open browser": "Open browser",
435
+ "Open caption": "Open caption",
436
+ "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
437
+ "Real-time collaboration": "Real-time collaboration",
438
+ "Cannot parse data": "Cannot parse data",
439
+ "Start typing...": "Start typing...",
440
+ "No result": "No result",
441
+ "Data browser": "Data browser",
442
+ "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.",
443
+ "Overpass supported expressions": "Overpass supported expressions",
444
+ "key (eg. building)": "key (eg. building)",
445
+ "!key (eg. !name)": "!key (eg. !name)",
446
+ "key=value (eg. building=yes)": "key=value (eg. building=yes)",
447
+ "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
448
+ "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
449
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
450
+ "More info about Overpass syntax": "More info about Overpass syntax",
451
+ "For more complex needs, see": "For more complex needs, see",
452
+ "Choose data": "Choose data",
453
+ "Import helpers:": "Import helpers:",
454
+ "Choose the format": "Choose the format",
455
+ "Choose the layer": "Choose the layer",
456
+ "Layer name": "Layer name",
457
+ "Choose import mode": "Choose import mode",
458
+ "Copy into the layer": "Copy into the layer",
459
+ "Link to the layer as remote data": "Link to the layer as remote data",
460
+ "Condition": "Condition",
461
+ "key=value or key!=value": "key=value or key!=value",
462
+ "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
463
+ "empty rule": "empty rule",
464
+ "Conditional style rules": "Conditional style rules",
465
+ "Add rule": "Add rule",
466
+ "Browser: data": "Browser: data",
467
+ "Browser: layers": "Browser: layers",
468
+ "Browser: filters": "Browser: filters",
469
+ "Enable real-time collaboration": "Enable real-time collaboration",
470
+ "✅ Copied!": "✅ Copied!",
471
+ "Choose a dataset": "Choose a dataset",
472
+ "Choose this dataset": "Choose this dataset",
473
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
474
+ "Choose a theme": "Choose a theme",
475
+ "Symplify all geometries to points": "Symplify all geometries to points",
476
+ "Choose this data": "Choose this data",
477
+ "Search admin boundary": "Search admin boundary",
478
+ "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
479
+ "Expression": "Expression",
480
+ "Geometry mode": "Geometry mode",
481
+ "Only geometry centers": "Only geometry centers",
482
+ "Search area": "Search area",
483
+ "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",
484
+ "Please define an expression for the query first": "Please define an expression for the query first"
450
485
  }
451
486
  L.registerLocale("de", locale)
452
487
  L.setLocale("de")
@@ -10,15 +10,15 @@
10
10
  "1 day": "1 Tag",
11
11
  "1 hour": "1 Stunde",
12
12
  "5 min": "5 min",
13
- "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Eine kommagetrente Zahlenfolge, die die Linienart (Strichmuster) der Kontur definiert, z. B.: \"5, 10, 15\".",
13
+ "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Eine kommagetrennte Zahlenfolge, die die Linienart (Strichmuster) der Kontur definiert, z. B.: \"5, 10, 15\".",
14
14
  "About": "Über",
15
- "Action not allowed :(": "Action not allowed :(",
15
+ "Action not allowed :(": "Aktion nicht erlaubt :(",
16
16
  "Activate slideshow mode": "Diashowmodus aktivieren",
17
17
  "Add a layer": "Ebene hinzufügen",
18
18
  "Add a line to the current multi": "Linie zur vorhandene Gruppe hinzufügen",
19
19
  "Add a new property": "Ein Merkmal hinzufügen",
20
20
  "Add a polygon to the current multi": "Fläche zur vorhandene Gruppe hinzufügen",
21
- "Add image URL": "Add image URL",
21
+ "Add image URL": "Bild-URL hinzufügen",
22
22
  "Add": "Hinzufügen",
23
23
  "Advanced actions": "Erweiterte Aktionen",
24
24
  "Advanced properties": "Erweiterte Eigenschaften",
@@ -27,7 +27,7 @@
27
27
  "Allow interactions": "Interaktionen erlauben",
28
28
  "Allow scroll wheel zoom?": "Zoomen mit dem Mausrad erlauben?",
29
29
  "always": "immer",
30
- "Animated transitions": "Animated transitions",
30
+ "Animated transitions": "Animierte Übergänge",
31
31
  "Are you sure you want to cancel your changes?": "Willst du deine Änderungen wirklich abbrechen?",
32
32
  "Are you sure you want to clone this map and all its datalayers?": "Möchtest du die Karte und ihre Datenebenen wirklich duplizieren?",
33
33
  "Are you sure you want to delete the feature?": "Möchtest du dieses Element wirklich löschen?",
@@ -48,16 +48,12 @@
48
48
  "by": "von",
49
49
  "Cache proxied request": "Proxycache-Anfrage",
50
50
  "Cancel edits": "Bearbeitungen abbrechen",
51
- "Cancel": "Abbrechen",
52
51
  "Caption": "Überschrift",
53
52
  "Center map on your location": "Die Karte auf deinen Standort ausrichten",
54
53
  "Change map background": "Hintergrundkarte ändern",
55
54
  "Change tilelayers": "Kachelebenen ändern",
56
55
  "Change": "Change",
57
- "Choose a preset": "Wähle eine Vorlage",
58
56
  "Choose the data format": "Wähle das Datenformat",
59
- "Choose the format of the data to import": "Wähle das Datenformat für den Import",
60
- "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll",
61
57
  "Choropleth breakpoints": "Choropleth breakpoints",
62
58
  "Choropleth classes": "Choropleth classes",
63
59
  "Choropleth color palette": "Choropleth color palette",
@@ -81,13 +77,12 @@
81
77
  "Clustering radius": "Gruppierungsradius",
82
78
  "collapsed": "eingeklappt",
83
79
  "color": "Farbe",
84
- "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
80
+ "Comma separated list of numbers, including min and max values.": "Kommaseparierte Liste an Zahlen, enthält min und max Werte.",
85
81
  "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Komma-getrennte Liste von Eigenschaften, die für die Sortierung verwendet werden sollen. Um die Sortierung umzukehren, setzen ein Minuszeichen (-) davor, z. B. mykey,-otherkey.",
86
82
  "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Komma-, Tabulator-, oder Semikolongetrennte Werte. SRS WGS84 ist impliziert. Nur Punktgeometrien werden importiert. Beim Import wird nach Spaltenüberschriften mit jeder Nennung von „lat“ und „lon“ am Anfang der Überschrift gesucht (ohne Beachtung von Groß-/Kleinschreibung). Alle anderen Spalten werden als Merkmale importiert.",
87
83
  "Congratulations, your map has been created!": "Glückwunsch, deine Karte wurde erstellt!",
88
84
  "Continue line": "Linie fortführen",
89
85
  "Coordinates": "Koordinaten",
90
- "Copy link": "Link kopieren",
91
86
  "copy": "kopieren",
92
87
  "Credits": "Credits",
93
88
  "Current map view": "Current map view",
@@ -152,7 +147,6 @@
152
147
  "Edit the title of the map": "Die Überschrift der Karte bearbeiten",
153
148
  "Edit this feature": "Dieses Element bearbeiten",
154
149
  "Edit": "Bearbeiten",
155
- "Email": "Email",
156
150
  "Embed and link options": "Optionen zum Einbetten und für eine angepasste Kartenansicht",
157
151
  "Embed the map": "Karte einbinden",
158
152
  "Emoji & Character": "Emoji & Character",
@@ -200,7 +194,6 @@
200
194
  "Image: {{http://image.url.com}}": "Bild: {{http://bild.url.com}}",
201
195
  "Import data": "Daten importieren",
202
196
  "Import in a new layer": "In eine neue Ebene importieren",
203
- "Import": "Importieren",
204
197
  "Imports all umap data, including layers and settings.": "Importiert alle uMap-Daten inklusive Ebenen und Einstellungen",
205
198
  "Include full screen link?": "Link für Vollbildanzeige einbeziehen?",
206
199
  "Inherit": "erben",
@@ -311,7 +304,6 @@
311
304
  "Rename this property on all the features": "Dieses Merkmal bei allen Elementen umbenennen",
312
305
  "Replace layer content": "Ebeneninhalt ersetzen",
313
306
  "Restore this version": "Diese Version wiederherstellen",
314
- "Save anyway": "Trotzdem speichern",
315
307
  "Save current edits": "Aktuelle Änderungen speichern",
316
308
  "Save map": "Karte speichern",
317
309
  "Save this center and zoom": "Aktuelle Position und Zoomstufe speichern",
@@ -320,12 +312,9 @@
320
312
  "Saved center and zoom": "Saved center and zoom",
321
313
  "Search location": "Ort suchen",
322
314
  "Search": "Suche",
323
- "Secret edit link copied to clipboard!": "Geheimer Link zum Bearbeiten der Karte in die Zwischenablage kopiert!",
324
315
  "Secret edit link:": "Secret edit link:",
325
- "See layers": "See layers",
326
316
  "See full screen": "Vollbildanzeige",
327
317
  "See on OpenStreetMap": "See on OpenStreetMap",
328
- "Send me the link": "Link verschicken",
329
318
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Setze es auf Nein, um diese Ebene in der Diashow, im Datenbrowser, in der Popup-Navigation,... auszublenden.",
330
319
  "settings": "Einstellungen",
331
320
  "Shape properties": "Formeigenschaften",
@@ -398,9 +387,7 @@
398
387
  "Will be displayed in the bottom right corner of the map": "Wird in rechten unteren Ecke der Karte angezeigt",
399
388
  "Will be permanently visible in the bottom left corner of the map": "Wird in der unteren linken Ecke der Karte permanent sichtbar sein",
400
389
  "Will be visible in the caption of the map": "Wird in der Überschrift der Karte angezeigt",
401
- "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Hoppla! Jemand anders hat die Daten bearbeitet. Du kannst trotzdem speichern, von anderen vorgenommene Änderungen werden dabei aber gelöscht.",
402
390
  "yes": "Ja",
403
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Deine Karte wurde erstellt! Da du nicht eingeloggt bist, nutze bitte zukünftig folgenden geheimen Link zum Bearbeiten deiner Karte; bitte verwahre ihn sicher:",
404
391
  "Zoom in": "Hineinzoomen",
405
392
  "Zoom level for automatic zooms": "Zommstufe für automatischen Zoom",
406
393
  "Zoom out": "Herauszoomen",
@@ -444,7 +431,55 @@
444
431
  "Filter data": "Filter data",
445
432
  "Search map features…": "Search map features…",
446
433
  "Reset all": "Reset all",
447
- "Browser in data mode": "Browser in data mode",
448
- "Browser in layers mode": "Browser in layers mode",
449
- "Browser in filters mode": "Browser in filters mode"
434
+ "Open browser": "Open browser",
435
+ "Open caption": "Open caption",
436
+ "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
437
+ "Real-time collaboration": "Real-time collaboration",
438
+ "Cannot parse data": "Cannot parse data",
439
+ "Start typing...": "Start typing...",
440
+ "No result": "No result",
441
+ "Data browser": "Data browser",
442
+ "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.",
443
+ "Overpass supported expressions": "Overpass supported expressions",
444
+ "key (eg. building)": "key (eg. building)",
445
+ "!key (eg. !name)": "!key (eg. !name)",
446
+ "key=value (eg. building=yes)": "key=value (eg. building=yes)",
447
+ "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
448
+ "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
449
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
450
+ "More info about Overpass syntax": "More info about Overpass syntax",
451
+ "For more complex needs, see": "For more complex needs, see",
452
+ "Choose data": "Choose data",
453
+ "Import helpers:": "Import helpers:",
454
+ "Choose the format": "Choose the format",
455
+ "Choose the layer": "Choose the layer",
456
+ "Layer name": "Layer name",
457
+ "Choose import mode": "Choose import mode",
458
+ "Copy into the layer": "Copy into the layer",
459
+ "Link to the layer as remote data": "Link to the layer as remote data",
460
+ "Condition": "Condition",
461
+ "key=value or key!=value": "key=value or key!=value",
462
+ "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
463
+ "empty rule": "empty rule",
464
+ "Conditional style rules": "Conditional style rules",
465
+ "Add rule": "Add rule",
466
+ "Browser: data": "Browser: data",
467
+ "Browser: layers": "Browser: layers",
468
+ "Browser: filters": "Browser: filters",
469
+ "Enable real-time collaboration": "Enable real-time collaboration",
470
+ "✅ Copied!": "✅ Copied!",
471
+ "Choose a dataset": "Choose a dataset",
472
+ "Choose this dataset": "Choose this dataset",
473
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
474
+ "Choose a theme": "Choose a theme",
475
+ "Symplify all geometries to points": "Symplify all geometries to points",
476
+ "Choose this data": "Choose this data",
477
+ "Search admin boundary": "Search admin boundary",
478
+ "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
479
+ "Expression": "Expression",
480
+ "Geometry mode": "Geometry mode",
481
+ "Only geometry centers": "Only geometry centers",
482
+ "Search area": "Search area",
483
+ "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",
484
+ "Please define an expression for the query first": "Please define an expression for the query first"
450
485
  }