umap-project 2.4.0b2__py3-none-any.whl → 2.4.2__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 (129) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/el/LC_MESSAGES/django.po +145 -90
  3. umap/locale/en/LC_MESSAGES/django.po +3 -3
  4. umap/locale/eu/LC_MESSAGES/django.po +145 -89
  5. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/pt/LC_MESSAGES/django.po +87 -37
  7. umap/static/umap/base.css +20 -6
  8. umap/static/umap/content.css +2 -2
  9. umap/static/umap/css/dialog.css +1 -1
  10. umap/static/umap/css/importers.css +2 -0
  11. umap/static/umap/css/panel.css +2 -2
  12. umap/static/umap/css/tooltip.css +1 -1
  13. umap/static/umap/img/16-white.svg +1 -3
  14. umap/static/umap/img/source/16-white.svg +2 -4
  15. umap/static/umap/js/components/alerts/alert.css +1 -1
  16. umap/static/umap/js/components/alerts/alert.js +1 -1
  17. umap/static/umap/js/modules/autocomplete.js +4 -4
  18. umap/static/umap/js/modules/browser.js +11 -11
  19. umap/static/umap/js/modules/caption.js +5 -5
  20. umap/static/umap/js/modules/dompurify.js +2 -3
  21. umap/static/umap/js/modules/facets.js +16 -10
  22. umap/static/umap/js/modules/global.js +16 -16
  23. umap/static/umap/js/modules/help.js +2 -2
  24. umap/static/umap/js/modules/importer.js +6 -6
  25. umap/static/umap/js/modules/importers/geodatamine.js +4 -4
  26. umap/static/umap/js/modules/importers/overpass.js +2 -2
  27. umap/static/umap/js/modules/orderable.js +2 -2
  28. umap/static/umap/js/modules/request.js +1 -1
  29. umap/static/umap/js/modules/rules.js +13 -10
  30. umap/static/umap/js/modules/sync/engine.js +3 -3
  31. umap/static/umap/js/modules/sync/updaters.js +10 -11
  32. umap/static/umap/js/modules/sync/websocket.js +1 -1
  33. umap/static/umap/js/modules/ui/dialog.js +1 -1
  34. umap/static/umap/js/modules/ui/panel.js +1 -1
  35. umap/static/umap/js/modules/ui/tooltip.js +6 -6
  36. umap/static/umap/js/modules/urls.js +1 -2
  37. umap/static/umap/js/modules/utils.js +19 -19
  38. umap/static/umap/js/umap.controls.js +26 -28
  39. umap/static/umap/js/umap.core.js +19 -15
  40. umap/static/umap/js/umap.datalayer.permissions.js +15 -18
  41. umap/static/umap/js/umap.features.js +102 -120
  42. umap/static/umap/js/umap.forms.js +46 -74
  43. umap/static/umap/js/umap.icon.js +17 -22
  44. umap/static/umap/js/umap.js +126 -131
  45. umap/static/umap/js/umap.layer.js +159 -167
  46. umap/static/umap/js/umap.permissions.js +6 -9
  47. umap/static/umap/js/umap.popup.js +20 -20
  48. umap/static/umap/js/umap.share.js +9 -15
  49. umap/static/umap/js/umap.slideshow.js +12 -14
  50. umap/static/umap/js/umap.tableeditor.js +5 -5
  51. umap/static/umap/locale/am_ET.json +5 -2
  52. umap/static/umap/locale/ar.json +5 -2
  53. umap/static/umap/locale/ast.json +5 -2
  54. umap/static/umap/locale/bg.json +5 -2
  55. umap/static/umap/locale/br.json +5 -2
  56. umap/static/umap/locale/ca.json +5 -2
  57. umap/static/umap/locale/cs_CZ.json +5 -2
  58. umap/static/umap/locale/da.json +5 -2
  59. umap/static/umap/locale/de.json +5 -2
  60. umap/static/umap/locale/el.json +10 -7
  61. umap/static/umap/locale/en.js +2 -1
  62. umap/static/umap/locale/en.json +5 -2
  63. umap/static/umap/locale/en_US.json +5 -2
  64. umap/static/umap/locale/es.js +9 -8
  65. umap/static/umap/locale/es.json +12 -9
  66. umap/static/umap/locale/et.json +5 -2
  67. umap/static/umap/locale/fa_IR.json +5 -2
  68. umap/static/umap/locale/fi.json +5 -2
  69. umap/static/umap/locale/fr.js +2 -1
  70. umap/static/umap/locale/fr.json +5 -2
  71. umap/static/umap/locale/gl.json +5 -2
  72. umap/static/umap/locale/he.json +5 -2
  73. umap/static/umap/locale/hr.json +5 -2
  74. umap/static/umap/locale/hu.json +5 -2
  75. umap/static/umap/locale/id.json +5 -2
  76. umap/static/umap/locale/is.json +5 -2
  77. umap/static/umap/locale/it.json +5 -2
  78. umap/static/umap/locale/ja.json +5 -2
  79. umap/static/umap/locale/ko.json +5 -2
  80. umap/static/umap/locale/lt.json +5 -2
  81. umap/static/umap/locale/ms.json +5 -2
  82. umap/static/umap/locale/nl.json +5 -2
  83. umap/static/umap/locale/no.json +5 -2
  84. umap/static/umap/locale/pl.json +5 -2
  85. umap/static/umap/locale/pl_PL.json +5 -2
  86. umap/static/umap/locale/pt.js +61 -60
  87. umap/static/umap/locale/pt.json +64 -61
  88. umap/static/umap/locale/pt_BR.json +5 -2
  89. umap/static/umap/locale/pt_PT.json +5 -2
  90. umap/static/umap/locale/ro.json +5 -2
  91. umap/static/umap/locale/ru.json +5 -2
  92. umap/static/umap/locale/sk_SK.json +5 -2
  93. umap/static/umap/locale/sl.json +5 -2
  94. umap/static/umap/locale/sr.json +5 -2
  95. umap/static/umap/locale/sv.json +5 -2
  96. umap/static/umap/locale/th_TH.json +5 -2
  97. umap/static/umap/locale/tr.json +5 -2
  98. umap/static/umap/locale/uk_UA.json +5 -2
  99. umap/static/umap/locale/vi.json +5 -2
  100. umap/static/umap/locale/vi_VN.json +5 -2
  101. umap/static/umap/locale/zh.json +5 -2
  102. umap/static/umap/locale/zh_CN.json +5 -2
  103. umap/static/umap/locale/zh_TW.Big5.json +5 -2
  104. umap/static/umap/locale/zh_TW.json +5 -2
  105. umap/static/umap/map.css +22 -22
  106. umap/static/umap/unittests/utils.js +5 -5
  107. umap/static/umap/vars.css +12 -1
  108. umap/storage.py +1 -1
  109. umap/tests/integration/test_browser.py +76 -3
  110. umap/tests/integration/test_edit_polygon.py +11 -0
  111. umap/tests/integration/test_map.py +29 -0
  112. umap/tests/integration/test_map_preview.py +36 -2
  113. umap/tests/integration/test_view_marker.py +2 -2
  114. umap/tests/test_views.py +2 -2
  115. umap/views.py +3 -2
  116. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/METADATA +3 -3
  117. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/RECORD +120 -129
  118. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/WHEEL +1 -1
  119. umap/.DS_Store +0 -0
  120. umap/static/.DS_Store +0 -0
  121. umap/static/umap/.DS_Store +0 -0
  122. umap/static/umap/favicons/.DS_Store +0 -0
  123. umap/static/umap/fonts/.DS_Store +0 -0
  124. umap/static/umap/img/.DS_Store +0 -0
  125. umap/static/umap/img/source/.DS_Store +0 -0
  126. umap/tests/.DS_Store +0 -0
  127. umap/tests/integration/.DS_Store +0 -0
  128. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/entry_points.txt +0 -0
  129. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/licenses/LICENSE +0 -0
@@ -14,11 +14,11 @@ const locale = {
14
14
  "About": "Sobre",
15
15
  "Action not allowed :(": "Ação não permitida :(",
16
16
  "Activate slideshow mode": "Ativar modo de apresentação",
17
- "Add a layer": "Adicionar camada",
17
+ "Add a layer": "Adicionar uma camada",
18
18
  "Add a line to the current multi": "Adicionar uma linha ao multipolígono atual",
19
19
  "Add a new property": "Adicionar uma nova propriedade",
20
20
  "Add a polygon to the current multi": "Adicionar um polígono ao multipolígono atual",
21
- "Add image URL": "Adicionar URL da imagem",
21
+ "Add image URL": "Adicionar URL de imagem",
22
22
  "Add": "Adicionar",
23
23
  "Advanced actions": "Ações avançadas",
24
24
  "Advanced properties": "Propriedades avançadas",
@@ -48,7 +48,7 @@ const locale = {
48
48
  "by": "por",
49
49
  "Cache proxied request": "Pedido cache com proxy",
50
50
  "Cancel edits": "Cancelar edições",
51
- "Caption": "Cabeçalho",
51
+ "Caption": "Legenda",
52
52
  "Center map on your location": "Centrar mapa na sua localização",
53
53
  "Change map background": "Mudar fundo do mapa",
54
54
  "Change tilelayers": "Alterar camadas de mosaicos",
@@ -121,12 +121,12 @@ const locale = {
121
121
  "Display the embed control": "Mostrar o botão de partilha e descarregar",
122
122
  "Display the fullscreen control": "Mostrar o botão de ecrã inteiro",
123
123
  "Display the locate control": "Mostrar o botão de localização GPS",
124
- "Display the measure control": "Mostrar o botão de medição",
124
+ "Display the measure control": "Mostrar o botão de medir",
125
125
  "Display the search control": "Mostrar o botão de pesquisa",
126
- "Display the star map button": "Apresentar o botão de estrela do mapa",
126
+ "Display the star map button": "Mostrar o botão de estrela do mapa",
127
127
  "Display the tile layers control": "Mostrar o botão de camadas de mosaicos",
128
128
  "Display the zoom control": "Mostrar os botões de aproximar e afastar (zoom)",
129
- "Do you want to display a caption bar?": "Mostrar uma barra de cabeçalho?",
129
+ "Do you want to display a caption bar?": "Mostrar uma barra de legenda?",
130
130
  "Do you want to display a minimap?": "Mostrar um mini-mapa?",
131
131
  "Do you want to display a panel on load?": "Mostrar um painel ao carregar?",
132
132
  "Do you want to display caption menus?": "Mostrar menus de legendas?",
@@ -255,8 +255,8 @@ const locale = {
255
255
  "No cache": "Sem cache",
256
256
  "No licence has been set": "Não foi definida nenhuma licença",
257
257
  "No results": "Sem resultados",
258
- "no": "no",
259
- "No.": "No.",
258
+ "no": "não",
259
+ "No.": "Não.",
260
260
  "None": "Nenhum",
261
261
  "Number of desired classes (default 5)": "Número de classes pretendidas (predefinição 5)",
262
262
  "On the bottom": "No fundo",
@@ -386,7 +386,7 @@ const locale = {
386
386
  "width": "largura",
387
387
  "Will be displayed in the bottom right corner of the map": "Será mostrado no fundo à direita do mapa",
388
388
  "Will be permanently visible in the bottom left corner of the map": "Estará permanentemente visível no canto inferior esquerdo do mapa",
389
- "Will be visible in the caption of the map": "Será visível no cabeçalho do mapa",
389
+ "Will be visible in the caption of the map": "Será visível na legenda do mapa",
390
390
  "yes": "sim",
391
391
  "Zoom in": "Aproximar",
392
392
  "Zoom level for automatic zooms": "Nível de aproximação para aproximações automáticas",
@@ -431,57 +431,58 @@ const locale = {
431
431
  "Filter data": "Dados de filtros",
432
432
  "Search map features…": "Procurar elementos do mapa…",
433
433
  "Reset all": "Repor tudo",
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"
434
+ "Open browser": "Abrir navegador",
435
+ "Open caption": "Abrir legenda",
436
+ "Your map has been created with an anonymous account!": "O seu mapa foi criado com uma conta anónima!",
437
+ "Real-time collaboration": "Colaboração em tempo real",
438
+ "Cannot parse data": "Não é possível analisar os dados",
439
+ "Start typing...": "Comece a escrever...",
440
+ "No result": "Nenhum resultado",
441
+ "Data browser": "Navegador de dados",
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.": "Ao fornecer um URL, o uMap pode copiar os dados remotos numa camada ou adicionar esse URL como fonte remota da camada. Nesse caso, os dados serão sempre obtidos a partir desse URL e, por conseguinte, estarão atualizados, mas não será possível editá-los no uMap.",
443
+ "Overpass supported expressions": "Expressões suportadas pelo Overpass",
444
+ "key (eg. building)": "chave (por exemplo: edifício)",
445
+ "!key (eg. !name)": "!chave (por exemplo: nome)",
446
+ "key=value (eg. building=yes)": "chave=valor (por exemplo: building=yes)",
447
+ "key!=value (eg. building!=yes)": "chave!=valor (por exemplo: building!=yes)",
448
+ "key~value (eg. name~Grisy)": "chave~valor (por exemplo: name~Grisy)",
449
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "chave=\"valor|valor2\" (por exemplo: name=\"Paris|Berlim\")",
450
+ "More info about Overpass syntax": "Mais informações sobre a sintaxe de Overpass",
451
+ "For more complex needs, see": "Para necessidades mais complexas, ver",
452
+ "Choose data": "Escolher dados",
453
+ "Import helpers:": "Ajudantes de importação:",
454
+ "Choose the format": "Escolher o formato",
455
+ "Choose the layer": "Escolher a camada",
456
+ "Layer name": "Nome da camada",
457
+ "Choose import mode": "Escolher o modo de importação",
458
+ "Copy into the layer": "Copiar para a camada",
459
+ "Link to the layer as remote data": "Hiperligação à camada como dados remotos",
460
+ "Condition": "Condição",
461
+ "key=value or key!=value": "chave=valor ou chave!=valor",
462
+ "Are you sure you want to delete this rule?": "Tem a certeza de que pretende eliminar esta regra?",
463
+ "empty rule": "regra vazia",
464
+ "Conditional style rules": "Regras de estilo condicionais",
465
+ "Add rule": "Adicionar regra",
466
+ "Browser: data": "Navegador: dados",
467
+ "Browser: layers": "Navegador: camadas",
468
+ "Browser: filters": "Navegador: filtros",
469
+ "Enable real-time collaboration": "Ativar a colaboração em tempo real",
470
+ "✅ Copied!": "✅ Copiado!",
471
+ "Choose a dataset": "Escolher um conjunto de dados",
472
+ "Choose this dataset": "Escolher este conjunto de dados",
473
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: dados temáticos do OpenStreetMap",
474
+ "Choose a theme": "Escolher um tema",
475
+ "Symplify all geometries to points": "Simplificar todas as geometrias para pontos",
476
+ "Choose this data": "Selecionar estes dados",
477
+ "Search admin boundary": "Pesquisar limite administrativo",
478
+ "Please choose a theme and a boundary first.": "Escolha primeiro um tema e um limite.",
479
+ "Expression": "Expressão",
480
+ "Geometry mode": "Modo de geometria",
481
+ "Only geometry centers": "Apenas centros de geometria",
482
+ "Search area": "Pesquisar área",
483
+ "Type area name, or let empty to load data in current map view": "Introduza o nome da área ou deixe em branco para carregar os dados na vista de mapa atual",
484
+ "Please define an expression for the query first": "Defina primeiro uma expressão para a consulta",
485
+ "Data successfully imported!": "Dados importados com sucesso!"
485
486
  }
486
487
  L.registerLocale("pt", locale)
487
488
  L.setLocale("pt")
@@ -14,11 +14,11 @@
14
14
  "About": "Sobre",
15
15
  "Action not allowed :(": "Ação não permitida :(",
16
16
  "Activate slideshow mode": "Ativar modo de apresentação",
17
- "Add a layer": "Adicionar camada",
17
+ "Add a layer": "Adicionar uma camada",
18
18
  "Add a line to the current multi": "Adicionar uma linha ao multipolígono atual",
19
19
  "Add a new property": "Adicionar uma nova propriedade",
20
20
  "Add a polygon to the current multi": "Adicionar um polígono ao multipolígono atual",
21
- "Add image URL": "Adicionar URL da imagem",
21
+ "Add image URL": "Adicionar URL de imagem",
22
22
  "Add": "Adicionar",
23
23
  "Advanced actions": "Ações avançadas",
24
24
  "Advanced properties": "Propriedades avançadas",
@@ -48,7 +48,7 @@
48
48
  "by": "por",
49
49
  "Cache proxied request": "Pedido cache com proxy",
50
50
  "Cancel edits": "Cancelar edições",
51
- "Caption": "Cabeçalho",
51
+ "Caption": "Legenda",
52
52
  "Center map on your location": "Centrar mapa na sua localização",
53
53
  "Change map background": "Mudar fundo do mapa",
54
54
  "Change tilelayers": "Alterar camadas de mosaicos",
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Definir hiperligação para abrir numa nova janela ao clicar no polígono.",
103
103
  "define": "definir",
104
104
  "Delay between two transitions when in play mode": "Atraso entre 2 transições ao reproduzir a apresentação",
105
- "Delete all layers": "Eliminar todas as camadas",
106
105
  "Delete layer": "Eliminar camada",
107
106
  "Delete this feature": "Eliminar este elemento",
108
107
  "Delete this property on all the features": "Eliminar esta propriedade em todos os elementos",
@@ -121,12 +120,12 @@
121
120
  "Display the embed control": "Mostrar o botão de partilha e descarregar",
122
121
  "Display the fullscreen control": "Mostrar o botão de ecrã inteiro",
123
122
  "Display the locate control": "Mostrar o botão de localização GPS",
124
- "Display the measure control": "Mostrar o botão de medição",
123
+ "Display the measure control": "Mostrar o botão de medir",
125
124
  "Display the search control": "Mostrar o botão de pesquisa",
126
- "Display the star map button": "Apresentar o botão de estrela do mapa",
125
+ "Display the star map button": "Mostrar o botão de estrela do mapa",
127
126
  "Display the tile layers control": "Mostrar o botão de camadas de mosaicos",
128
127
  "Display the zoom control": "Mostrar os botões de aproximar e afastar (zoom)",
129
- "Do you want to display a caption bar?": "Mostrar uma barra de cabeçalho?",
128
+ "Do you want to display a caption bar?": "Mostrar uma barra de legenda?",
130
129
  "Do you want to display a minimap?": "Mostrar um mini-mapa?",
131
130
  "Do you want to display a panel on load?": "Mostrar um painel ao carregar?",
132
131
  "Do you want to display caption menus?": "Mostrar menus de legendas?",
@@ -255,8 +254,8 @@
255
254
  "No cache": "Sem cache",
256
255
  "No licence has been set": "Não foi definida nenhuma licença",
257
256
  "No results": "Sem resultados",
258
- "no": "no",
259
- "No.": "No.",
257
+ "no": "não",
258
+ "No.": "Não.",
260
259
  "None": "Nenhum",
261
260
  "Number of desired classes (default 5)": "Número de classes pretendidas (predefinição 5)",
262
261
  "On the bottom": "No fundo",
@@ -386,7 +385,7 @@
386
385
  "width": "largura",
387
386
  "Will be displayed in the bottom right corner of the map": "Será mostrado no fundo à direita do mapa",
388
387
  "Will be permanently visible in the bottom left corner of the map": "Estará permanentemente visível no canto inferior esquerdo do mapa",
389
- "Will be visible in the caption of the map": "Será visível no cabeçalho do mapa",
388
+ "Will be visible in the caption of the map": "Será visível na legenda do mapa",
390
389
  "yes": "sim",
391
390
  "Zoom in": "Aproximar",
392
391
  "Zoom level for automatic zooms": "Nível de aproximação para aproximações automáticas",
@@ -431,55 +430,59 @@
431
430
  "Filter data": "Dados de filtros",
432
431
  "Search map features…": "Procurar elementos do mapa…",
433
432
  "Reset all": "Repor tudo",
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"
433
+ "Open browser": "Abrir navegador",
434
+ "Open caption": "Abrir legenda",
435
+ "Your map has been created with an anonymous account!": "O seu mapa foi criado com uma conta anónima!",
436
+ "Real-time collaboration": "Colaboração em tempo real",
437
+ "Cannot parse data": "Não é possível analisar os dados",
438
+ "Start typing...": "Comece a escrever...",
439
+ "No result": "Nenhum resultado",
440
+ "Data browser": "Navegador de dados",
441
+ "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.": "Ao fornecer um URL, o uMap pode copiar os dados remotos numa camada ou adicionar esse URL como fonte remota da camada. Nesse caso, os dados serão sempre obtidos a partir desse URL e, por conseguinte, estarão atualizados, mas não será possível editá-los no uMap.",
442
+ "Overpass supported expressions": "Expressões suportadas pelo Overpass",
443
+ "key (eg. building)": "chave (por exemplo: edifício)",
444
+ "!key (eg. !name)": "!chave (por exemplo: nome)",
445
+ "key=value (eg. building=yes)": "chave=valor (por exemplo: building=yes)",
446
+ "key!=value (eg. building!=yes)": "chave!=valor (por exemplo: building!=yes)",
447
+ "key~value (eg. name~Grisy)": "chave~valor (por exemplo: name~Grisy)",
448
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "chave=\"valor|valor2\" (por exemplo: name=\"Paris|Berlim\")",
449
+ "More info about Overpass syntax": "Mais informações sobre a sintaxe de Overpass",
450
+ "For more complex needs, see": "Para necessidades mais complexas, ver",
451
+ "Choose data": "Escolher dados",
452
+ "Import helpers:": "Ajudantes de importação:",
453
+ "Choose the format": "Escolher o formato",
454
+ "Choose the layer": "Escolher a camada",
455
+ "Layer name": "Nome da camada",
456
+ "Choose import mode": "Escolher o modo de importação",
457
+ "Copy into the layer": "Copiar para a camada",
458
+ "Link to the layer as remote data": "Hiperligação à camada como dados remotos",
459
+ "Condition": "Condição",
460
+ "key=value or key!=value": "chave=valor ou chave!=valor",
461
+ "Are you sure you want to delete this rule?": "Tem a certeza de que pretende eliminar esta regra?",
462
+ "empty rule": "regra vazia",
463
+ "Conditional style rules": "Regras de estilo condicionais",
464
+ "Add rule": "Adicionar regra",
465
+ "Browser: data": "Navegador: dados",
466
+ "Browser: layers": "Navegador: camadas",
467
+ "Browser: filters": "Navegador: filtros",
468
+ "Enable real-time collaboration": "Ativar a colaboração em tempo real",
469
+ "✅ Copied!": "✅ Copiado!",
470
+ "Choose a dataset": "Escolher um conjunto de dados",
471
+ "Choose this dataset": "Escolher este conjunto de dados",
472
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: dados temáticos do OpenStreetMap",
473
+ "Choose a theme": "Escolher um tema",
474
+ "Symplify all geometries to points": "Simplificar todas as geometrias para pontos",
475
+ "Choose this data": "Selecionar estes dados",
476
+ "Search admin boundary": "Pesquisar limite administrativo",
477
+ "Please choose a theme and a boundary first.": "Escolha primeiro um tema e um limite.",
478
+ "Expression": "Expressão",
479
+ "Geometry mode": "Modo de geometria",
480
+ "Only geometry centers": "Apenas centros de geometria",
481
+ "Search area": "Pesquisar área",
482
+ "Type area name, or let empty to load data in current map view": "Introduza o nome da área ou deixe em branco para carregar os dados na vista de mapa atual",
483
+ "Please define an expression for the query first": "Defina primeiro uma expressão para a consulta",
484
+ "Data successfully imported!": "Dados importados com sucesso!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Definir link para abrir numa nova janela ao clicar no polígono.",
103
103
  "define": "definir",
104
104
  "Delay between two transitions when in play mode": "Atraso entre 2 transições ao reproduzir a apresentação",
105
- "Delete all layers": "Eliminar todas as camadas",
106
105
  "Delete layer": "Eliminar camada",
107
106
  "Delete this feature": "Eliminar este elemento",
108
107
  "Delete this property on all the features": "Eliminar esta propriedade em todos os elementos",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Definir link para abrir numa nova janela ao clicar no polígono.",
103
103
  "define": "definir",
104
104
  "Delay between two transitions when in play mode": "Atraso entre 2 transições ao reproduzir a apresentação",
105
- "Delete all layers": "Eliminar todas as camadas",
106
105
  "Delete layer": "Eliminar camada",
107
106
  "Delete this feature": "Eliminar este elemento",
108
107
  "Delete this property on all the features": "Eliminar esta propriedade em todos os elementos",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
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": "define",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Delete all layers",
106
105
  "Delete layer": "Delete layer",
107
106
  "Delete this feature": "Delete this feature",
108
107
  "Delete this property on all the features": "Delete this property on all the features",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Задайте адрес для открытия его в новом окне по клику на полигон.",
103
103
  "define": "Задать",
104
104
  "Delay between two transitions when in play mode": "Задержка между двумя переходами в режиме проигрывания",
105
- "Delete all layers": "Удалить все слои",
106
105
  "Delete layer": "Удалить слой",
107
106
  "Delete this feature": "Удалить объект",
108
107
  "Delete this property on all the features": "Удалить это свойство у всех объектов",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Definujte odkaz na otvorenie, ktorý otvorí nové okno po kliknutí na polygón.",
103
103
  "define": "definovať",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Vymazať všetky vrstvy",
106
105
  "Delete layer": "Vymazať vrstvu",
107
106
  "Delete this feature": "Vymazať tento objekt",
108
107
  "Delete this property on all the features": "Vymazať túto vlastnosť na všetkých objektoch",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Določitev povezave za odpiranje v novem oknu ob kliku na mnogokotnik.",
103
103
  "define": "določi",
104
104
  "Delay between two transitions when in play mode": "Zamik med prehodi v načinu predvajanja",
105
- "Delete all layers": "Izbriši vse plasti",
106
105
  "Delete layer": "Izbriši plast",
107
106
  "Delete this feature": "Izbriši ta predmet",
108
107
  "Delete this property on all the features": "Izbriši lastnost pri vseh vstavljenih predmetih",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Дефинишите везу за отварање у новом прозору на клику полигона.",
103
103
  "define": "дефиниши",
104
104
  "Delay between two transitions when in play mode": "Одгода између два прелаза у режиму репродукције",
105
- "Delete all layers": "Обриши све лејере",
106
105
  "Delete layer": "Обриши лејер",
107
106
  "Delete this feature": "Обриши елемент",
108
107
  "Delete this property on all the features": "Обриши наведени ентитет на свим функцијама",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Sätt länk att öppna i ett nytt fönster vid klick.",
103
103
  "define": "anpassa",
104
104
  "Delay between two transitions when in play mode": "Tid mellan övergångar i uppspelningsläge",
105
- "Delete all layers": "Radera alla lager",
106
105
  "Delete layer": "Radera lager",
107
106
  "Delete this feature": "Radera objektet",
108
107
  "Delete this property on all the features": "Ta bort denna egenskap från alla objekt",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
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": "define",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Delete all layers",
106
105
  "Delete layer": "Delete layer",
107
106
  "Delete this feature": "Delete this feature",
108
107
  "Delete this property on all the features": "Delete this property on all the features",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Poligona tıklayınca yeni bir pencerede açılacak bağlantıyı tanımlayın.",
103
103
  "define": "belirt",
104
104
  "Delay between two transitions when in play mode": "Oynatma modundayken iki geçiş arasında gecikme",
105
- "Delete all layers": "Bütün katmanları sil",
106
105
  "Delete layer": "Katmanı sil",
107
106
  "Delete this feature": "Bu özelliği sil",
108
107
  "Delete this property on all the features": "Bu özelliği tüm nesnelerde sil",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Задати посилання для відкриття нового вікна при клацанні на полігоні.",
103
103
  "define": "визначити",
104
104
  "Delay between two transitions when in play mode": "Затримка між переходами в режими відтворення",
105
- "Delete all layers": "Вилучити всі шари",
106
105
  "Delete layer": "Вилучити шар",
107
106
  "Delete this feature": "Вилучити цей об’єкт",
108
107
  "Delete this property on all the features": "Вилучити цей параметр у всіх об’єктів",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
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": "define",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Delete all layers",
106
105
  "Delete layer": "Delete layer",
107
106
  "Delete this feature": "Xóa chức năng này",
108
107
  "Delete this property on all the features": "Delete this property on all the features",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "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"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }