umap-project 2.6.3__py3-none-any.whl → 2.7.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 (137) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +64 -1
  3. umap/asgi.py +15 -0
  4. umap/context_processors.py +1 -0
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +19 -18
  9. umap/locale/en/LC_MESSAGES/django.po +47 -43
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +134 -128
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +51 -47
  14. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/pt/LC_MESSAGES/django.po +64 -60
  16. umap/management/commands/clean_tilelayer.py +152 -0
  17. umap/management/commands/purge_purgatory.py +28 -0
  18. umap/models.py +27 -2
  19. umap/settings/base.py +3 -1
  20. umap/static/umap/base.css +4 -4
  21. umap/static/umap/css/contextmenu.css +6 -1
  22. umap/static/umap/css/icon.css +7 -2
  23. umap/static/umap/css/importers.css +4 -0
  24. umap/static/umap/img/16-white.svg +9 -2
  25. umap/static/umap/img/16.svg +1 -181
  26. umap/static/umap/img/24-white.svg +1 -0
  27. umap/static/umap/img/24.svg +1 -0
  28. umap/static/umap/img/importers/cadastrefr.svg +23 -0
  29. umap/static/umap/img/source/16-white.svg +10 -3
  30. umap/static/umap/img/source/16.svg +753 -197
  31. umap/static/umap/img/source/24-white.svg +3 -2
  32. umap/static/umap/img/source/24.svg +3 -2
  33. umap/static/umap/js/modules/autocomplete.js +7 -3
  34. umap/static/umap/js/modules/browser.js +54 -1
  35. umap/static/umap/js/modules/caption.js +16 -5
  36. umap/static/umap/js/modules/data/features.js +176 -2
  37. umap/static/umap/js/modules/data/layer.js +57 -40
  38. umap/static/umap/js/modules/formatter.js +3 -2
  39. umap/static/umap/js/modules/global.js +2 -0
  40. umap/static/umap/js/modules/importer.js +3 -0
  41. umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
  42. umap/static/umap/js/modules/importers/communesfr.js +15 -3
  43. umap/static/umap/js/modules/permissions.js +123 -93
  44. umap/static/umap/js/modules/rendering/layers/classified.js +2 -0
  45. umap/static/umap/js/modules/rendering/ui.js +60 -213
  46. umap/static/umap/js/modules/share.js +1 -3
  47. umap/static/umap/js/modules/slideshow.js +1 -1
  48. umap/static/umap/js/modules/sync/engine.js +371 -14
  49. umap/static/umap/js/modules/sync/hlc.js +106 -0
  50. umap/static/umap/js/modules/sync/updaters.js +18 -6
  51. umap/static/umap/js/modules/sync/websocket.js +1 -1
  52. umap/static/umap/js/modules/tableeditor.js +1 -1
  53. umap/static/umap/js/modules/ui/base.js +2 -2
  54. umap/static/umap/js/modules/ui/contextmenu.js +51 -18
  55. umap/static/umap/js/modules/urls.js +5 -1
  56. umap/static/umap/js/modules/utils.js +28 -4
  57. umap/static/umap/js/umap.controls.js +73 -52
  58. umap/static/umap/js/umap.core.js +3 -3
  59. umap/static/umap/js/umap.forms.js +3 -1
  60. umap/static/umap/js/umap.js +115 -124
  61. umap/static/umap/locale/br.js +13 -4
  62. umap/static/umap/locale/br.json +13 -4
  63. umap/static/umap/locale/ca.js +28 -15
  64. umap/static/umap/locale/ca.json +28 -15
  65. umap/static/umap/locale/cs_CZ.js +87 -78
  66. umap/static/umap/locale/cs_CZ.json +87 -78
  67. umap/static/umap/locale/de.js +17 -8
  68. umap/static/umap/locale/de.json +17 -8
  69. umap/static/umap/locale/en.js +13 -2
  70. umap/static/umap/locale/en.json +13 -2
  71. umap/static/umap/locale/es.js +330 -319
  72. umap/static/umap/locale/es.json +330 -319
  73. umap/static/umap/locale/eu.js +10 -3
  74. umap/static/umap/locale/eu.json +10 -3
  75. umap/static/umap/locale/fa_IR.js +11 -4
  76. umap/static/umap/locale/fa_IR.json +11 -4
  77. umap/static/umap/locale/fr.js +15 -4
  78. umap/static/umap/locale/fr.json +15 -4
  79. umap/static/umap/locale/hu.js +10 -3
  80. umap/static/umap/locale/hu.json +10 -3
  81. umap/static/umap/locale/pt.js +17 -8
  82. umap/static/umap/locale/pt.json +17 -8
  83. umap/static/umap/locale/pt_PT.js +13 -4
  84. umap/static/umap/locale/pt_PT.json +13 -4
  85. umap/static/umap/locale/zh_TW.js +13 -4
  86. umap/static/umap/locale/zh_TW.json +13 -4
  87. umap/static/umap/map.css +44 -29
  88. umap/static/umap/unittests/hlc.js +165 -0
  89. umap/static/umap/unittests/sync.js +321 -15
  90. umap/static/umap/unittests/utils.js +47 -0
  91. umap/static/umap/vars.css +2 -1
  92. umap/static/umap/vendors/colorbrewer/colorbrewer.js +309 -317
  93. umap/static/umap/vendors/dompurify/purify.es.js +15 -16
  94. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  95. umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
  96. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
  97. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
  98. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +1 -1
  99. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -1
  100. umap/templates/umap/css.html +0 -2
  101. umap/templates/umap/dashboard_menu.html +4 -2
  102. umap/templates/umap/js.html +0 -5
  103. umap/templates/umap/map_detail.html +2 -2
  104. umap/tests/fixtures/test_upload_data.csv +2 -2
  105. umap/tests/integration/test_anonymous_owned_map.py +1 -0
  106. umap/tests/integration/test_basics.py +1 -1
  107. umap/tests/integration/test_browser.py +69 -7
  108. umap/tests/integration/test_caption.py +3 -3
  109. umap/tests/integration/test_circles_layer.py +12 -0
  110. umap/tests/integration/test_datalayer.py +2 -1
  111. umap/tests/integration/test_draw_polygon.py +17 -9
  112. umap/tests/integration/test_draw_polyline.py +12 -8
  113. umap/tests/integration/test_edit_datalayer.py +5 -8
  114. umap/tests/integration/test_edit_map.py +2 -2
  115. umap/tests/integration/test_edit_marker.py +1 -1
  116. umap/tests/integration/test_facets_browser.py +3 -3
  117. umap/tests/integration/test_import.py +1 -0
  118. umap/tests/integration/test_map.py +1 -0
  119. umap/tests/integration/test_owned_map.py +1 -1
  120. umap/tests/integration/test_view_marker.py +63 -0
  121. umap/tests/integration/test_view_polygon.py +12 -12
  122. umap/tests/integration/test_websocket_sync.py +65 -3
  123. umap/tests/test_clean_tilelayer.py +83 -0
  124. umap/tests/test_datalayer.py +24 -0
  125. umap/tests/test_map_views.py +20 -0
  126. umap/tests/test_purge_purgatory.py +25 -0
  127. umap/tests/test_websocket_server.py +22 -0
  128. umap/urls.py +5 -1
  129. umap/views.py +6 -3
  130. umap/websocket_server.py +130 -27
  131. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/METADATA +18 -14
  132. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/RECORD +135 -127
  133. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
  134. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
  135. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/WHEEL +0 -0
  136. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/entry_points.txt +0 -0
  137. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/licenses/LICENSE +0 -0
@@ -38,7 +38,7 @@
38
38
  "Attach the map to my account": "Adjunta el mapa al meu compte",
39
39
  "attribution": "atribució",
40
40
  "Auto": "Auto",
41
- "Automatic": "Automatic",
41
+ "Automatic": "Automàtic",
42
42
  "Autostart when map is loaded": "Autostart when map is loaded",
43
43
  "Back to preview": "Tornar a la vista prèvia",
44
44
  "Background overlay url": "URL de superposició del fons",
@@ -102,7 +102,7 @@
102
102
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
103
103
  "define": "definir",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete layer": "Delete layer",
105
+ "Delete layer": "Suprimeix la capa",
106
106
  "Delete this feature": "Suprimeix aquesta característica",
107
107
  "Delete this shape": "Delete this shape",
108
108
  "Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
@@ -206,7 +206,7 @@
206
206
  "km": "km",
207
207
  "Label direction": "Direcció de l'etiqueta",
208
208
  "Label key": "Clau d'etiqueta",
209
- "Labels are clickable": "Labels are clickable",
209
+ "Labels are clickable": "Les etiquetes es poden fer clic",
210
210
  "Latest feature": "Darrera característica",
211
211
  "Latitude": "Latitud",
212
212
  "Layer properties": "Layer properties",
@@ -255,15 +255,15 @@
255
255
  "No.": "No.",
256
256
  "None": "Cap",
257
257
  "Number of desired classes (default 5)": "Number of desired classes (default 5)",
258
- "On the bottom": "On the bottom",
259
- "On the left": "On the left",
260
- "On the right": "On the right",
261
- "On the top": "On the top",
258
+ "On the bottom": "A la part inferior",
259
+ "On the left": "A l'esquerra",
260
+ "On the right": "A la dreta",
261
+ "On the top": "a la part superior",
262
262
  "Only visible layers' data": "Només les dades de les capes visibles",
263
263
  "opacity": "opacitat",
264
264
  "Opacity": "Opacitat",
265
265
  "Open current feature on load": "Obrir el element actual en càrregar",
266
- "Open link in…": "Open link in…",
266
+ "Open link in…": "Obriu l'enllaç a…",
267
267
  "Open share & download panel": "Open share & download panel",
268
268
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Open this map extent in a map editor to provide more accurate data to OpenStreetMap",
269
269
  "OpenStreetMap": "OpenStreetMap",
@@ -319,7 +319,7 @@
319
319
  "Short link": "Enllaç curt",
320
320
  "Show this layer in the caption": "Show this layer in the caption",
321
321
  "Show/hide layer": "Mostra/amaga la capa",
322
- "Side panel": "Side panel",
322
+ "Side panel": "panell lateral",
323
323
  "Simple link: [[http://example.com]]": "Enllaç simple: [[http://exemple.com]]",
324
324
  "Simplify": "Simplificar",
325
325
  "Skipping unknown geometry.type: {type}": "S'està ometent el tipus de geometria desconegut: {type}",
@@ -340,7 +340,7 @@
340
340
  "Text color for the cluster label": "Text color for the cluster label",
341
341
  "Text formatting": "Format del text",
342
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}\")": "El nom de la propietat que s'utilitzarà com a etiqueta de característica (p. ex.: \"nom\"). També podeu utilitzar propietats entre claudàtors per utilitzar-ne més d'una o barrejar-les amb contingut estàtic (p. ex.: \"{name} in {place}\")",
343
- "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
343
+ "The name of the property to use as feature unique identifier.": "El nom de la propietat que s'utilitzarà com a identificador únic de la característica",
344
344
  "The zoom and center have been modified.": "L'escala i el centre s'han modificat.",
345
345
  "TMS format": "Format TMS",
346
346
  "To use if remote server doesn't allow cross domain (slower)": "To use if remote server doesn't allow cross domain (slower)",
@@ -422,7 +422,7 @@
422
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
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
424
  "Search keys": "Claus de cerca",
425
- "Filters keys": "Filters keys",
425
+ "Filters keys": "Claus de filtres",
426
426
  "Filter data": "Filter data",
427
427
  "Search map features…": "Buscar elements del mapa…",
428
428
  "Reset all": "Restablir tot",
@@ -456,8 +456,8 @@
456
456
  "key=value or key!=value": "key=value or key!=value",
457
457
  "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
458
458
  "empty rule": "empty rule",
459
- "Conditional style rules": "Conditional style rules",
460
- "Add rule": "Add rule",
459
+ "Conditional style rules": "Regles d'estil condicional",
460
+ "Add rule": "Afegeix una regla",
461
461
  "Browser: data": "Navegador: dades",
462
462
  "Browser: layers": "Navegador: capes",
463
463
  "Browser: filters": "Navegador: filtres",
@@ -477,7 +477,6 @@
477
477
  "Search area": "Search area",
478
478
  "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",
479
479
  "Data successfully imported!": "Data successfully imported!",
480
- "My Dashboard ({username})": "El meu Tauler de control ({username})",
481
480
  "Clear data": "Clear data",
482
481
  "Remove layers": "Remove layers",
483
482
  "Categorized": "Categorized",
@@ -504,5 +503,19 @@
504
503
  "Property name to compute circles": "Property name to compute circles",
505
504
  "Min circle radius": "Min circle radius",
506
505
  "Max circle radius": "Max circle radius",
507
- "Display the open browser control": "Display the open browser control"
506
+ "Display the open browser control": "Display the open browser control",
507
+ "Copy as GeoJSON": "Copy as GeoJSON",
508
+ "Please zoom in to edit the geometry": "Please zoom in to edit the geometry",
509
+ "New map": "New map",
510
+ "My maps": "My maps",
511
+ "My teams": "My teams",
512
+ "My profile": "My profile",
513
+ "Type new owner's username": "Type new owner's username",
514
+ "Type editor's username": "Type editor's username",
515
+ "Map": "Map",
516
+ "Manage collaborators": "Manage collaborators",
517
+ "show/hide all layers": "show/hide all layers",
518
+ "zoom to data extent": "zoom to data extent",
519
+ "download visible data": "download visible data",
520
+ "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map"
508
521
  }
@@ -426,85 +426,94 @@ const locale = {
426
426
  "Filter data": "Filtrovat data",
427
427
  "Search map features…": "Hledat objekty mapy…",
428
428
  "Reset all": "Obnovit vše",
429
- "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",
436
- "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
- "Import helpers:": "Import helpers:",
449
- "Choose the format": "Choose the format",
450
- "Choose the layer": "Choose the layer",
451
- "Layer name": "Layer name",
452
- "Choose import mode": "Choose import mode",
453
- "Copy into the layer": "Copy into the layer",
454
- "Link to the layer as remote data": "Link to the layer as remote data",
455
- "Condition": "Condition",
456
- "key=value or key!=value": "key=value or key!=value",
457
- "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
458
- "empty rule": "empty rule",
459
- "Conditional style rules": "Conditional style rules",
460
- "Add rule": "Add rule",
461
- "Browser: data": "Browser: data",
462
- "Browser: layers": "Browser: layers",
463
- "Browser: filters": "Browser: filters",
464
- "Enable real-time collaboration": "Enable real-time collaboration",
465
- "✅ Copied!": "✅ Copied!",
466
- "Choose a dataset": "Choose a dataset",
467
- "Choose this dataset": "Choose this dataset",
468
- "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
469
- "Choose a theme": "Choose a theme",
470
- "Symplify all geometries to points": "Symplify all geometries to points",
471
- "Choose this data": "Choose this data",
472
- "Search admin boundary": "Search admin boundary",
473
- "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
474
- "Expression": "Expression",
475
- "Geometry mode": "Geometry mode",
476
- "Only geometry centers": "Only geometry centers",
477
- "Search area": "Search area",
478
- "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",
479
- "Data successfully imported!": "Data successfully imported!",
480
- "My Dashboard ({username})": "My Dashboard ({username})",
481
- "Clear data": "Clear data",
482
- "Remove layers": "Remove layers",
483
- "Categorized": "Categorized",
484
- "Alphabetical": "Alphabetical",
485
- "Category property": "Category property",
486
- "Color palette": "Color palette",
487
- "Categories": "Categories",
488
- "Comma separated list of categories.": "Comma separated list of categories.",
489
- "Categories mode": "Categories mode",
490
- "Remove filter for this column": "Remove filter for this column",
491
- "Add filter for this column": "Add filter for this column",
492
- "Rename this column": "Rename this column",
493
- "Delete this column": "Delete this column",
494
- "Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
495
- "This name already exists: “{name}”": "This name already exists: “{name}”",
496
- "Delete selected rows": "Delete selected rows",
497
- "Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
498
- "Expression is empty": "Expression is empty",
429
+ "Open browser": "Otevřete prohlížeč",
430
+ "Open caption": "Otevřete popisky",
431
+ "Your map has been created with an anonymous account!": "Vaše mapa byla vytvořena s anonymním účtem!",
432
+ "Real-time collaboration": "Spolupráce v reálném čase",
433
+ "Cannot parse data": "Nelze zpracovat data",
434
+ "Start typing...": "Začněte psát...",
435
+ "No result": "Žádný výsledek",
436
+ "Data browser": "Prohlížeč dat",
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.": "Při zadání adresy URL může uMap zkopírovat vzdálená data do vrstvy nebo přidat tuto adresu URL jako vzdálený zdroj vrstvy. V takovém případě budou data vždy načtena z této adresy URL, a budou tedy aktuální, ale nebude možné je v aplikaci uMap upravovat.",
438
+ "Overpass supported expressions": "Podporované výrazy Overpass",
439
+ "key (eg. building)": "klíč (např. budova)",
440
+ "!key (eg. !name)": "!klíč (např. !název)",
441
+ "key=value (eg. building=yes)": "klíč=hodnota (např. budova=ano)",
442
+ "key!=value (eg. building!=yes)": "klíč!=hodnota (např. budova!=ano)",
443
+ "key~value (eg. name~Grisy)": "klíč~hodnota (např. název~Grisy)",
444
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (např. name=\"Paris|Berlin\")",
445
+ "More info about Overpass syntax": "Více informací o Overpass syntax",
446
+ "For more complex needs, see": "V případě složitějších potřeb viz",
447
+ "Choose data": "Vyberte data",
448
+ "Import helpers:": "Pomocníci pro import:",
449
+ "Choose the format": "Zvolte formát",
450
+ "Choose the layer": "Zvolte vrstvu",
451
+ "Layer name": "Název vrstvy",
452
+ "Choose import mode": "Zvolte režim importu",
453
+ "Copy into the layer": "Zkopírujte do vrstvy",
454
+ "Link to the layer as remote data": "Odkaz na vrstvu jako na vzdálená data",
455
+ "Condition": "Podmínka",
456
+ "key=value or key!=value": "klíč=hodnota nebo klíč!=hodnota",
457
+ "Are you sure you want to delete this rule?": "Opravdu chcete toto pravidlo odstranit?",
458
+ "empty rule": "prázdné pravidlo",
459
+ "Conditional style rules": "Podmíněná pravidla stylu",
460
+ "Add rule": "Přidat pravidlo",
461
+ "Browser: data": "Prohlížeč: data",
462
+ "Browser: layers": "Prohlížeč: vrstvy",
463
+ "Browser: filters": "Prohlížeč: filtry",
464
+ "Enable real-time collaboration": "Umožnit spolupráci v reálném čase",
465
+ "✅ Copied!": "✅ Zkopírováno",
466
+ "Choose a dataset": "Vyberte datovou sadu",
467
+ "Choose this dataset": "Vyberte tuto datovou sadu",
468
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: tematická data z OpenStreetMap",
469
+ "Choose a theme": "Vyberte si téma",
470
+ "Symplify all geometries to points": "Zjednodušte všechny geometrie na body",
471
+ "Choose this data": "Zvolte tato data",
472
+ "Search admin boundary": "Hledat hranici správce",
473
+ "Please choose a theme and a boundary first.": "Nejprve si vyberte téma a hranice.",
474
+ "Expression": "Výraz",
475
+ "Geometry mode": "Režim geometrie",
476
+ "Only geometry centers": "Pouze geometrické středy",
477
+ "Search area": "Oblast hledání",
478
+ "Type area name, or let empty to load data in current map view": "Zadejte název oblasti nebo nechte prázdný pro načtení dat v aktuálním zobrazení mapy.",
479
+ "Data successfully imported!": "Data byla úspěšně importována!",
480
+ "Clear data": "Vymazat data",
481
+ "Remove layers": "Odstranit vrstvy",
482
+ "Categorized": "Kategorizováno",
483
+ "Alphabetical": "Abecední pořadí",
484
+ "Category property": "Vlastnosti kategorie",
485
+ "Color palette": "Barevná paleta",
486
+ "Categories": "Kategorie",
487
+ "Comma separated list of categories.": "Seznam kategorií oddělených čárkou.",
488
+ "Categories mode": "Režim kategorií",
489
+ "Remove filter for this column": "Odebrat filtr pro tento sloupec",
490
+ "Add filter for this column": "Přidat filtr pro tento sloupec",
491
+ "Rename this column": "Přejmenovat tento sloupec",
492
+ "Delete this column": "Smazat tento sloupec",
493
+ "Name “{name}” should not contain a dot.": "Název \"{name}\" by neměl obsahovat tečku.",
494
+ "This name already exists: “{name}”": "Tento název již existuje: \"{name}\"",
495
+ "Delete selected rows": "Smazat vybrané řádky",
496
+ "Found {count} rows. Are you sure you want to delete all?": "Nalezeno {count} řádků. Určitě chcete smazat všechny?",
497
+ "Expression is empty": "Výraz je prázdný",
499
498
  "OK": "OK",
500
- "Cancel": "Cancel",
501
- "Attach map to a team": "Attach map to a team",
502
- "Display the polygon inverted": "Display the polygon inverted",
503
- "Proportional circles": "Proportional circles",
504
- "Property name to compute circles": "Property name to compute circles",
505
- "Min circle radius": "Min circle radius",
506
- "Max circle radius": "Max circle radius",
507
- "Display the open browser control": "Display the open browser control"
499
+ "Cancel": "Zrušit",
500
+ "Attach map to a team": "Připojit mapu k týmu",
501
+ "Display the polygon inverted": "Zobrazit polygon invertovaně",
502
+ "Proportional circles": "Proporcionální kružnice",
503
+ "Property name to compute circles": "Název vlastnosti pro výpočet kruhů",
504
+ "Min circle radius": "Minimální poloměr kružnice",
505
+ "Max circle radius": "Maximální poloměr kružnice",
506
+ "Display the open browser control": "Zobrazit ovládací prvek otevřeného prohlížeče",
507
+ "Copy as GeoJSON": "Zkopírovat jako GeoJSON",
508
+ "Please zoom in to edit the geometry": "Chcete-li upravit geometrii, přibližte si ji",
509
+ "New map": "New map",
510
+ "My maps": "My maps",
511
+ "My teams": "My teams",
512
+ "My profile": "My profile",
513
+ "Type new owner's username": "Type new owner's username",
514
+ "Type editor's username": "Type editor's username",
515
+ "Map": "Map",
516
+ "Manage collaborators": "Manage collaborators"
508
517
  }
509
518
  L.registerLocale("cs_CZ", locale)
510
519
  L.setLocale("cs_CZ")
@@ -426,83 +426,92 @@
426
426
  "Filter data": "Filtrovat data",
427
427
  "Search map features…": "Hledat objekty mapy…",
428
428
  "Reset all": "Obnovit vše",
429
- "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",
436
- "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
- "Import helpers:": "Import helpers:",
449
- "Choose the format": "Choose the format",
450
- "Choose the layer": "Choose the layer",
451
- "Layer name": "Layer name",
452
- "Choose import mode": "Choose import mode",
453
- "Copy into the layer": "Copy into the layer",
454
- "Link to the layer as remote data": "Link to the layer as remote data",
455
- "Condition": "Condition",
456
- "key=value or key!=value": "key=value or key!=value",
457
- "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
458
- "empty rule": "empty rule",
459
- "Conditional style rules": "Conditional style rules",
460
- "Add rule": "Add rule",
461
- "Browser: data": "Browser: data",
462
- "Browser: layers": "Browser: layers",
463
- "Browser: filters": "Browser: filters",
464
- "Enable real-time collaboration": "Enable real-time collaboration",
465
- "✅ Copied!": "✅ Copied!",
466
- "Choose a dataset": "Choose a dataset",
467
- "Choose this dataset": "Choose this dataset",
468
- "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
469
- "Choose a theme": "Choose a theme",
470
- "Symplify all geometries to points": "Symplify all geometries to points",
471
- "Choose this data": "Choose this data",
472
- "Search admin boundary": "Search admin boundary",
473
- "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
474
- "Expression": "Expression",
475
- "Geometry mode": "Geometry mode",
476
- "Only geometry centers": "Only geometry centers",
477
- "Search area": "Search area",
478
- "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",
479
- "Data successfully imported!": "Data successfully imported!",
480
- "My Dashboard ({username})": "My Dashboard ({username})",
481
- "Clear data": "Clear data",
482
- "Remove layers": "Remove layers",
483
- "Categorized": "Categorized",
484
- "Alphabetical": "Alphabetical",
485
- "Category property": "Category property",
486
- "Color palette": "Color palette",
487
- "Categories": "Categories",
488
- "Comma separated list of categories.": "Comma separated list of categories.",
489
- "Categories mode": "Categories mode",
490
- "Remove filter for this column": "Remove filter for this column",
491
- "Add filter for this column": "Add filter for this column",
492
- "Rename this column": "Rename this column",
493
- "Delete this column": "Delete this column",
494
- "Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
495
- "This name already exists: “{name}”": "This name already exists: “{name}”",
496
- "Delete selected rows": "Delete selected rows",
497
- "Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
498
- "Expression is empty": "Expression is empty",
429
+ "Open browser": "Otevřete prohlížeč",
430
+ "Open caption": "Otevřete popisky",
431
+ "Your map has been created with an anonymous account!": "Vaše mapa byla vytvořena s anonymním účtem!",
432
+ "Real-time collaboration": "Spolupráce v reálném čase",
433
+ "Cannot parse data": "Nelze zpracovat data",
434
+ "Start typing...": "Začněte psát...",
435
+ "No result": "Žádný výsledek",
436
+ "Data browser": "Prohlížeč dat",
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.": "Při zadání adresy URL může uMap zkopírovat vzdálená data do vrstvy nebo přidat tuto adresu URL jako vzdálený zdroj vrstvy. V takovém případě budou data vždy načtena z této adresy URL, a budou tedy aktuální, ale nebude možné je v aplikaci uMap upravovat.",
438
+ "Overpass supported expressions": "Podporované výrazy Overpass",
439
+ "key (eg. building)": "klíč (např. budova)",
440
+ "!key (eg. !name)": "!klíč (např. !název)",
441
+ "key=value (eg. building=yes)": "klíč=hodnota (např. budova=ano)",
442
+ "key!=value (eg. building!=yes)": "klíč!=hodnota (např. budova!=ano)",
443
+ "key~value (eg. name~Grisy)": "klíč~hodnota (např. název~Grisy)",
444
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (např. name=\"Paris|Berlin\")",
445
+ "More info about Overpass syntax": "Více informací o Overpass syntax",
446
+ "For more complex needs, see": "V případě složitějších potřeb viz",
447
+ "Choose data": "Vyberte data",
448
+ "Import helpers:": "Pomocníci pro import:",
449
+ "Choose the format": "Zvolte formát",
450
+ "Choose the layer": "Zvolte vrstvu",
451
+ "Layer name": "Název vrstvy",
452
+ "Choose import mode": "Zvolte režim importu",
453
+ "Copy into the layer": "Zkopírujte do vrstvy",
454
+ "Link to the layer as remote data": "Odkaz na vrstvu jako na vzdálená data",
455
+ "Condition": "Podmínka",
456
+ "key=value or key!=value": "klíč=hodnota nebo klíč!=hodnota",
457
+ "Are you sure you want to delete this rule?": "Opravdu chcete toto pravidlo odstranit?",
458
+ "empty rule": "prázdné pravidlo",
459
+ "Conditional style rules": "Podmíněná pravidla stylu",
460
+ "Add rule": "Přidat pravidlo",
461
+ "Browser: data": "Prohlížeč: data",
462
+ "Browser: layers": "Prohlížeč: vrstvy",
463
+ "Browser: filters": "Prohlížeč: filtry",
464
+ "Enable real-time collaboration": "Umožnit spolupráci v reálném čase",
465
+ "✅ Copied!": "✅ Zkopírováno",
466
+ "Choose a dataset": "Vyberte datovou sadu",
467
+ "Choose this dataset": "Vyberte tuto datovou sadu",
468
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: tematická data z OpenStreetMap",
469
+ "Choose a theme": "Vyberte si téma",
470
+ "Symplify all geometries to points": "Zjednodušte všechny geometrie na body",
471
+ "Choose this data": "Zvolte tato data",
472
+ "Search admin boundary": "Hledat hranici správce",
473
+ "Please choose a theme and a boundary first.": "Nejprve si vyberte téma a hranice.",
474
+ "Expression": "Výraz",
475
+ "Geometry mode": "Režim geometrie",
476
+ "Only geometry centers": "Pouze geometrické středy",
477
+ "Search area": "Oblast hledání",
478
+ "Type area name, or let empty to load data in current map view": "Zadejte název oblasti nebo nechte prázdný pro načtení dat v aktuálním zobrazení mapy.",
479
+ "Data successfully imported!": "Data byla úspěšně importována!",
480
+ "Clear data": "Vymazat data",
481
+ "Remove layers": "Odstranit vrstvy",
482
+ "Categorized": "Kategorizováno",
483
+ "Alphabetical": "Abecední pořadí",
484
+ "Category property": "Vlastnosti kategorie",
485
+ "Color palette": "Barevná paleta",
486
+ "Categories": "Kategorie",
487
+ "Comma separated list of categories.": "Seznam kategorií oddělených čárkou.",
488
+ "Categories mode": "Režim kategorií",
489
+ "Remove filter for this column": "Odebrat filtr pro tento sloupec",
490
+ "Add filter for this column": "Přidat filtr pro tento sloupec",
491
+ "Rename this column": "Přejmenovat tento sloupec",
492
+ "Delete this column": "Smazat tento sloupec",
493
+ "Name “{name}” should not contain a dot.": "Název \"{name}\" by neměl obsahovat tečku.",
494
+ "This name already exists: “{name}”": "Tento název již existuje: \"{name}\"",
495
+ "Delete selected rows": "Smazat vybrané řádky",
496
+ "Found {count} rows. Are you sure you want to delete all?": "Nalezeno {count} řádků. Určitě chcete smazat všechny?",
497
+ "Expression is empty": "Výraz je prázdný",
499
498
  "OK": "OK",
500
- "Cancel": "Cancel",
501
- "Attach map to a team": "Attach map to a team",
502
- "Display the polygon inverted": "Display the polygon inverted",
503
- "Proportional circles": "Proportional circles",
504
- "Property name to compute circles": "Property name to compute circles",
505
- "Min circle radius": "Min circle radius",
506
- "Max circle radius": "Max circle radius",
507
- "Display the open browser control": "Display the open browser control"
499
+ "Cancel": "Zrušit",
500
+ "Attach map to a team": "Připojit mapu k týmu",
501
+ "Display the polygon inverted": "Zobrazit polygon invertovaně",
502
+ "Proportional circles": "Proporcionální kružnice",
503
+ "Property name to compute circles": "Název vlastnosti pro výpočet kruhů",
504
+ "Min circle radius": "Minimální poloměr kružnice",
505
+ "Max circle radius": "Maximální poloměr kružnice",
506
+ "Display the open browser control": "Zobrazit ovládací prvek otevřeného prohlížeče",
507
+ "Copy as GeoJSON": "Zkopírovat jako GeoJSON",
508
+ "Please zoom in to edit the geometry": "Chcete-li upravit geometrii, přibližte si ji",
509
+ "New map": "New map",
510
+ "My maps": "My maps",
511
+ "My teams": "My teams",
512
+ "My profile": "My profile",
513
+ "Type new owner's username": "Type new owner's username",
514
+ "Type editor's username": "Type editor's username",
515
+ "Map": "Map",
516
+ "Manage collaborators": "Manage collaborators"
508
517
  }
@@ -1,6 +1,6 @@
1
1
  const locale = {
2
- "(area: {measure})": "(Fläche: {measure})",
3
- "(length: {measure})": "(Länge: {measure})",
2
+ "(area: {measure})": "(area: {measure})",
3
+ "(length: {measure})": "(length: {measure})",
4
4
  "# one hash for main heading": "# Eine Raute für große Überschrift",
5
5
  "## two hashes for second heading": "## Zwei Rauten für mittlere Überschrift",
6
6
  "### three hashes for third heading": "### Drei Rauten für kleine Überschrift",
@@ -477,7 +477,6 @@ const locale = {
477
477
  "Search area": "Suchgebiet",
478
478
  "Type area name, or let empty to load data in current map view": "Gib den Namen des Gebiets ein, oder lass dieses Feld leer um die Daten in dem aktuellen Kartenausschnitt zu laden",
479
479
  "Data successfully imported!": "Daten erfolgreich importiert!",
480
- "My Dashboard ({username})": "Mein Dashboard ({username})",
481
480
  "Clear data": "Daten Löschen",
482
481
  "Remove layers": "Ebene entfernen",
483
482
  "Categorized": "Kategorisiert",
@@ -498,13 +497,23 @@ const locale = {
498
497
  "Expression is empty": "Ausdruck ist leer",
499
498
  "OK": "OK",
500
499
  "Cancel": "Abbrechen",
501
- "Attach map to a team": "Attach map to a team",
502
- "Display the polygon inverted": "Display the polygon inverted",
500
+ "Attach map to a team": "Die Karte einem Team zuordnen",
501
+ "Display the polygon inverted": "Das Polygon invertiert anzeigen",
503
502
  "Proportional circles": "Proportional circles",
504
503
  "Property name to compute circles": "Property name to compute circles",
505
- "Min circle radius": "Min circle radius",
506
- "Max circle radius": "Max circle radius",
507
- "Display the open browser control": "Display the open browser control"
504
+ "Min circle radius": "Minimaler Kreis-Radius",
505
+ "Max circle radius": "Maximaler Kreis-Radius",
506
+ "Display the open browser control": "Display the open browser control",
507
+ "Copy as GeoJSON": "Als GeoJSON kopieren",
508
+ "Please zoom in to edit the geometry": "Please zoom in to edit the geometry",
509
+ "New map": "New map",
510
+ "My maps": "My maps",
511
+ "My teams": "My teams",
512
+ "My profile": "My profile",
513
+ "Type new owner's username": "Type new owner's username",
514
+ "Type editor's username": "Type editor's username",
515
+ "Map": "Map",
516
+ "Manage collaborators": "Manage collaborators"
508
517
  }
509
518
  L.registerLocale("de", locale)
510
519
  L.setLocale("de")
@@ -1,6 +1,6 @@
1
1
  {
2
- "(area: {measure})": "(Fläche: {measure})",
3
- "(length: {measure})": "(Länge: {measure})",
2
+ "(area: {measure})": "(area: {measure})",
3
+ "(length: {measure})": "(length: {measure})",
4
4
  "# one hash for main heading": "# Eine Raute für große Überschrift",
5
5
  "## two hashes for second heading": "## Zwei Rauten für mittlere Überschrift",
6
6
  "### three hashes for third heading": "### Drei Rauten für kleine Überschrift",
@@ -477,7 +477,6 @@
477
477
  "Search area": "Suchgebiet",
478
478
  "Type area name, or let empty to load data in current map view": "Gib den Namen des Gebiets ein, oder lass dieses Feld leer um die Daten in dem aktuellen Kartenausschnitt zu laden",
479
479
  "Data successfully imported!": "Daten erfolgreich importiert!",
480
- "My Dashboard ({username})": "Mein Dashboard ({username})",
481
480
  "Clear data": "Daten Löschen",
482
481
  "Remove layers": "Ebene entfernen",
483
482
  "Categorized": "Kategorisiert",
@@ -498,11 +497,21 @@
498
497
  "Expression is empty": "Ausdruck ist leer",
499
498
  "OK": "OK",
500
499
  "Cancel": "Abbrechen",
501
- "Attach map to a team": "Attach map to a team",
502
- "Display the polygon inverted": "Display the polygon inverted",
500
+ "Attach map to a team": "Die Karte einem Team zuordnen",
501
+ "Display the polygon inverted": "Das Polygon invertiert anzeigen",
503
502
  "Proportional circles": "Proportional circles",
504
503
  "Property name to compute circles": "Property name to compute circles",
505
- "Min circle radius": "Min circle radius",
506
- "Max circle radius": "Max circle radius",
507
- "Display the open browser control": "Display the open browser control"
504
+ "Min circle radius": "Minimaler Kreis-Radius",
505
+ "Max circle radius": "Maximaler Kreis-Radius",
506
+ "Display the open browser control": "Display the open browser control",
507
+ "Copy as GeoJSON": "Als GeoJSON kopieren",
508
+ "Please zoom in to edit the geometry": "Please zoom in to edit the geometry",
509
+ "New map": "New map",
510
+ "My maps": "My maps",
511
+ "My teams": "My teams",
512
+ "My profile": "My profile",
513
+ "Type new owner's username": "Type new owner's username",
514
+ "Type editor's username": "Type editor's username",
515
+ "Map": "Map",
516
+ "Manage collaborators": "Manage collaborators"
508
517
  }
@@ -477,7 +477,6 @@ const locale = {
477
477
  "Search area": "Search area",
478
478
  "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",
479
479
  "Data successfully imported!": "Data successfully imported!",
480
- "My Dashboard ({username})": "My Dashboard ({username})",
481
480
  "Clear data": "Clear data",
482
481
  "Remove layers": "Remove layers",
483
482
  "Categorized": "Categorized",
@@ -506,7 +505,19 @@ const locale = {
506
505
  "Max circle radius": "Max circle radius",
507
506
  "Display the open browser control": "Display the open browser control",
508
507
  "Copy as GeoJSON": "Copy as GeoJSON",
509
- "Please zoom in to edit the geometry": "Please zoom in to edit the geometry"
508
+ "Please zoom in to edit the geometry": "Please zoom in to edit the geometry",
509
+ "New map": "New map",
510
+ "My maps": "My maps",
511
+ "My teams": "My teams",
512
+ "My profile": "My profile",
513
+ "Type new owner's username": "Type new owner's username",
514
+ "Type editor's username": "Type editor's username",
515
+ "Map": "Map",
516
+ "Manage collaborators": "Manage collaborators",
517
+ "show/hide all layers": "show/hide all layers",
518
+ "zoom to data extent": "zoom to data extent",
519
+ "download visible data": "download visible data",
520
+ "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map"
510
521
  }
511
522
  L.registerLocale("en", locale)
512
523
  L.setLocale("en")