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.
- umap/__init__.py +1 -1
- umap/locale/en/LC_MESSAGES/django.po +81 -31
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +117 -66
- umap/management/commands/run_websocket_server.py +23 -0
- umap/models.py +6 -1
- umap/settings/base.py +11 -3
- umap/static/umap/base.css +64 -184
- umap/static/umap/content.css +3 -2
- umap/static/umap/css/dialog.css +18 -0
- umap/static/umap/css/icon.css +8 -0
- umap/static/umap/css/importers.css +51 -0
- umap/static/umap/css/panel.css +18 -57
- umap/static/umap/css/tooltip.css +59 -0
- umap/static/umap/css/window.css +35 -0
- umap/static/umap/img/16-white.svg +1 -3
- umap/static/umap/img/alert-icon-error.svg +8 -0
- umap/static/umap/img/alert-icon-info.svg +4 -0
- umap/static/umap/img/alert-icon-success.svg +3 -0
- umap/static/umap/img/icon-external-link.svg +3 -0
- umap/static/umap/img/importers/communesfr.svg +5 -0
- umap/static/umap/img/importers/datasets.svg +13 -0
- umap/static/umap/img/importers/geodatamine.svg +10 -0
- umap/static/umap/img/importers/overpass.svg +7 -0
- umap/static/umap/img/importers/random.svg +18 -0
- umap/static/umap/img/importers/random1.svg +4 -0
- umap/static/umap/img/importers/random2.svg +4 -0
- umap/static/umap/img/source/16-white.svg +2 -4
- umap/static/umap/js/components/alerts/alert.css +160 -0
- umap/static/umap/js/components/alerts/alert.js +169 -0
- umap/static/umap/js/components/base.js +54 -0
- umap/static/umap/js/modules/autocomplete.js +347 -0
- umap/static/umap/js/modules/browser.js +6 -6
- umap/static/umap/js/modules/caption.js +5 -4
- umap/static/umap/js/modules/global.js +36 -12
- umap/static/umap/js/modules/help.js +255 -0
- umap/static/umap/js/modules/importer.js +308 -0
- umap/static/umap/js/modules/importers/communesfr.js +44 -0
- umap/static/umap/js/modules/importers/datasets.js +42 -0
- umap/static/umap/js/modules/importers/geodatamine.js +95 -0
- umap/static/umap/js/modules/importers/overpass.js +84 -0
- umap/static/umap/js/modules/request.js +12 -14
- umap/static/umap/js/modules/rules.js +241 -0
- umap/static/umap/js/modules/schema.js +63 -14
- umap/static/umap/js/modules/sync/engine.js +93 -0
- umap/static/umap/js/modules/sync/updaters.js +109 -0
- umap/static/umap/js/modules/sync/websocket.js +25 -0
- umap/static/umap/js/modules/ui/dialog.js +52 -0
- umap/static/umap/js/modules/{panel.js → ui/panel.js} +25 -14
- umap/static/umap/js/modules/ui/tooltip.js +116 -0
- umap/static/umap/js/modules/utils.js +25 -18
- umap/static/umap/js/umap.controls.js +13 -14
- umap/static/umap/js/umap.core.js +1 -324
- umap/static/umap/js/umap.features.js +77 -29
- umap/static/umap/js/umap.forms.js +9 -13
- umap/static/umap/js/umap.js +254 -215
- umap/static/umap/js/umap.layer.js +152 -74
- umap/static/umap/js/umap.permissions.js +5 -9
- umap/static/umap/js/umap.popup.js +1 -1
- umap/static/umap/js/umap.tableeditor.js +8 -8
- umap/static/umap/locale/am_ET.js +51 -16
- umap/static/umap/locale/am_ET.json +51 -16
- umap/static/umap/locale/ar.js +51 -16
- umap/static/umap/locale/ar.json +51 -16
- umap/static/umap/locale/ast.js +51 -16
- umap/static/umap/locale/ast.json +51 -16
- umap/static/umap/locale/bg.js +51 -16
- umap/static/umap/locale/bg.json +51 -16
- umap/static/umap/locale/br.js +55 -20
- umap/static/umap/locale/br.json +55 -20
- umap/static/umap/locale/ca.js +51 -16
- umap/static/umap/locale/ca.json +51 -16
- umap/static/umap/locale/cs_CZ.js +93 -58
- umap/static/umap/locale/cs_CZ.json +93 -58
- umap/static/umap/locale/da.js +51 -16
- umap/static/umap/locale/da.json +51 -16
- umap/static/umap/locale/de.js +56 -21
- umap/static/umap/locale/de.json +56 -21
- umap/static/umap/locale/el.js +51 -16
- umap/static/umap/locale/el.json +51 -16
- umap/static/umap/locale/en.js +52 -16
- umap/static/umap/locale/en.json +52 -16
- umap/static/umap/locale/en_US.json +51 -16
- umap/static/umap/locale/es.js +51 -16
- umap/static/umap/locale/es.json +51 -16
- umap/static/umap/locale/et.js +51 -16
- umap/static/umap/locale/et.json +51 -16
- umap/static/umap/locale/eu.js +51 -16
- umap/static/umap/locale/eu.json +51 -16
- umap/static/umap/locale/fa_IR.js +51 -16
- umap/static/umap/locale/fa_IR.json +51 -16
- umap/static/umap/locale/fi.js +51 -16
- umap/static/umap/locale/fi.json +51 -16
- umap/static/umap/locale/fr.js +61 -25
- umap/static/umap/locale/fr.json +61 -25
- umap/static/umap/locale/gl.js +51 -16
- umap/static/umap/locale/gl.json +51 -16
- umap/static/umap/locale/he.js +51 -16
- umap/static/umap/locale/he.json +51 -16
- umap/static/umap/locale/hr.js +51 -16
- umap/static/umap/locale/hr.json +51 -16
- umap/static/umap/locale/hu.js +51 -16
- umap/static/umap/locale/hu.json +51 -16
- umap/static/umap/locale/id.js +51 -16
- umap/static/umap/locale/id.json +51 -16
- umap/static/umap/locale/is.js +51 -16
- umap/static/umap/locale/is.json +51 -16
- umap/static/umap/locale/it.js +51 -16
- umap/static/umap/locale/it.json +51 -16
- umap/static/umap/locale/ja.js +51 -16
- umap/static/umap/locale/ja.json +51 -16
- umap/static/umap/locale/ko.js +51 -16
- umap/static/umap/locale/ko.json +51 -16
- umap/static/umap/locale/lt.js +51 -16
- umap/static/umap/locale/lt.json +51 -16
- umap/static/umap/locale/ms.js +51 -16
- umap/static/umap/locale/ms.json +51 -16
- umap/static/umap/locale/nl.js +51 -16
- umap/static/umap/locale/nl.json +51 -16
- umap/static/umap/locale/no.js +51 -16
- umap/static/umap/locale/no.json +51 -16
- umap/static/umap/locale/pl.js +93 -58
- umap/static/umap/locale/pl.json +93 -58
- umap/static/umap/locale/pl_PL.json +51 -16
- umap/static/umap/locale/pt.js +215 -180
- umap/static/umap/locale/pt.json +215 -180
- umap/static/umap/locale/pt_BR.js +51 -16
- umap/static/umap/locale/pt_BR.json +51 -16
- umap/static/umap/locale/pt_PT.js +51 -16
- umap/static/umap/locale/pt_PT.json +51 -16
- umap/static/umap/locale/ro.js +51 -16
- umap/static/umap/locale/ro.json +51 -16
- umap/static/umap/locale/ru.js +51 -16
- umap/static/umap/locale/ru.json +51 -16
- umap/static/umap/locale/si.js +51 -16
- umap/static/umap/locale/si.json +51 -16
- umap/static/umap/locale/sk_SK.js +51 -16
- umap/static/umap/locale/sk_SK.json +51 -16
- umap/static/umap/locale/sl.js +51 -16
- umap/static/umap/locale/sl.json +51 -16
- umap/static/umap/locale/sr.js +51 -16
- umap/static/umap/locale/sr.json +51 -16
- umap/static/umap/locale/sv.js +51 -16
- umap/static/umap/locale/sv.json +51 -16
- umap/static/umap/locale/th_TH.js +51 -16
- umap/static/umap/locale/th_TH.json +51 -16
- umap/static/umap/locale/tr.js +51 -16
- umap/static/umap/locale/tr.json +51 -16
- umap/static/umap/locale/uk_UA.js +51 -16
- umap/static/umap/locale/uk_UA.json +51 -16
- umap/static/umap/locale/vi.js +51 -16
- umap/static/umap/locale/vi.json +51 -16
- umap/static/umap/locale/vi_VN.json +51 -16
- umap/static/umap/locale/zh.js +51 -16
- umap/static/umap/locale/zh.json +51 -16
- umap/static/umap/locale/zh_CN.json +51 -16
- umap/static/umap/locale/zh_TW.Big5.json +51 -16
- umap/static/umap/locale/zh_TW.js +51 -16
- umap/static/umap/locale/zh_TW.json +51 -16
- umap/static/umap/map.css +40 -53
- umap/static/umap/unittests/sync.js +105 -0
- umap/static/umap/unittests/utils.js +78 -36
- umap/static/umap/vars.css +19 -1
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +2 -2
- umap/templates/umap/components/alerts/alert.html +89 -0
- umap/templates/umap/content.html +4 -3
- umap/templates/umap/css.html +4 -0
- umap/templates/umap/home.html +3 -0
- umap/templates/umap/js.html +0 -3
- umap/templates/umap/map_init.html +2 -8
- umap/templates/umap/messages.html +9 -11
- umap/templates/umap/search.html +3 -0
- umap/tests/base.py +2 -0
- umap/tests/integration/conftest.py +30 -0
- umap/tests/integration/test_anonymous_owned_map.py +8 -13
- umap/tests/integration/test_browser.py +77 -4
- umap/tests/integration/test_conditional_rules.py +201 -0
- umap/tests/integration/test_dashboard.py +1 -1
- umap/tests/integration/test_datalayer.py +2 -3
- umap/tests/integration/test_edit_datalayer.py +4 -4
- umap/tests/integration/test_edit_map.py +1 -1
- umap/tests/integration/test_facets_browser.py +3 -3
- umap/tests/integration/test_import.py +185 -49
- umap/tests/integration/test_map.py +31 -2
- umap/tests/integration/{test_collaborative_editing.py → test_optimistic_merge.py} +7 -7
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_picto.py +2 -2
- umap/tests/integration/test_statics.py +1 -1
- umap/tests/integration/test_view_marker.py +2 -2
- umap/tests/integration/test_websocket_sync.py +283 -0
- umap/tests/settings.py +5 -0
- umap/tests/test_datalayer_views.py +0 -1
- umap/tests/test_views.py +53 -0
- umap/urls.py +5 -0
- umap/views.py +40 -11
- umap/websocket_server.py +92 -0
- {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/METADATA +10 -8
- {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/RECORD +201 -167
- umap/static/umap/js/umap.autocomplete.js +0 -341
- umap/static/umap/js/umap.importer.js +0 -187
- umap/static/umap/js/umap.ui.js +0 -190
- {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/WHEEL +0 -0
- {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/pt.json
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
{
|
|
2
|
-
" (area: {measure})": "(
|
|
3
|
-
" (length: {measure})": "(
|
|
2
|
+
" (area: {measure})": "(área: {measure})",
|
|
3
|
+
" (length: {measure})": "(comprimento: {measure})",
|
|
4
4
|
"# one hash for main heading": "# um cardinal para o cabeçalho principal",
|
|
5
5
|
"## two hashes for second heading": "## dois cardinais para o segundo cabeçalho",
|
|
6
6
|
"### three hashes for third heading": "### três cardinais para o terceiro cabeçalho",
|
|
7
7
|
"**double star for bold**": "**dois asteriscos duplos para negrito**",
|
|
8
|
-
"*single star for italic*": "*
|
|
9
|
-
"--- for a horizontal rule": "---
|
|
8
|
+
"*single star for italic*": "*um asterisco para itálico*",
|
|
9
|
+
"--- for a horizontal rule": "--- para uma régua horizontal",
|
|
10
10
|
"1 day": "1 dia",
|
|
11
11
|
"1 hour": "1 hora",
|
|
12
12
|
"5 min": "5 min",
|
|
13
13
|
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Lista de números separada por vírgulas que define o padrão do traço. Por exemplo \"5, 10, 15\".",
|
|
14
14
|
"About": "Sobre",
|
|
15
|
-
"Action not allowed :(": "
|
|
15
|
+
"Action not allowed :(": "Ação não permitida :(",
|
|
16
16
|
"Activate slideshow mode": "Ativar modo de apresentação",
|
|
17
17
|
"Add a layer": "Adicionar camada",
|
|
18
|
-
"Add a line to the current multi": "Adicionar uma linha
|
|
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
|
-
"Add a polygon to the current multi": "Adicionar um polígono
|
|
21
|
-
"Add image URL": "
|
|
22
|
-
"Add": "
|
|
20
|
+
"Add a polygon to the current multi": "Adicionar um polígono ao multipolígono atual",
|
|
21
|
+
"Add image URL": "Adicionar URL da imagem",
|
|
22
|
+
"Add": "Adicionar",
|
|
23
23
|
"Advanced actions": "Ações avançadas",
|
|
24
24
|
"Advanced properties": "Propriedades avançadas",
|
|
25
|
-
"All data and settings of the map": "
|
|
25
|
+
"All data and settings of the map": "Todos os dados e definições do mapa",
|
|
26
26
|
"All properties are imported.": "Foram importadas todas as propriedades.",
|
|
27
27
|
"Allow interactions": "Permitir interações",
|
|
28
28
|
"Allow scroll wheel zoom?": "Permitir zoom com roda do rato?",
|
|
29
29
|
"always": "sempre",
|
|
30
|
-
"Animated transitions": "
|
|
30
|
+
"Animated transitions": "Transições animadas",
|
|
31
31
|
"Are you sure you want to cancel your changes?": "Tem a certeza que quer cancelar as suas alterações?",
|
|
32
32
|
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
|
33
33
|
"Are you sure you want to delete the feature?": "Tem a certeza que quer eliminar o elemento?",
|
|
@@ -39,31 +39,27 @@
|
|
|
39
39
|
"attribution": "atribuição",
|
|
40
40
|
"Auto": "Auto",
|
|
41
41
|
"Automatic": "Automático",
|
|
42
|
-
"Autostart when map is loaded": "
|
|
43
|
-
"Back to preview": "
|
|
44
|
-
"Background overlay url": "
|
|
42
|
+
"Autostart when map is loaded": "Iniciar ao abrir o mapa",
|
|
43
|
+
"Back to preview": "Voltar à pré-visualização",
|
|
44
|
+
"Background overlay url": "URL de sobreposição do fundo",
|
|
45
45
|
"Ball": "Bola",
|
|
46
|
-
"Bring feature to center": "
|
|
46
|
+
"Bring feature to center": "Colocar o elemento no centro",
|
|
47
47
|
"Browse data": "Explorar dados",
|
|
48
48
|
"by": "por",
|
|
49
49
|
"Cache proxied request": "Pedido cache com proxy",
|
|
50
50
|
"Cancel edits": "Cancelar edições",
|
|
51
|
-
"Cancel": "Cancelar",
|
|
52
51
|
"Caption": "Cabeçalho",
|
|
53
52
|
"Center map on your location": "Centrar mapa na sua localização",
|
|
54
53
|
"Change map background": "Mudar fundo do mapa",
|
|
55
|
-
"Change tilelayers": "Alterar camadas de
|
|
56
|
-
"Change": "
|
|
57
|
-
"Choose a preset": "Escolha um modelo",
|
|
54
|
+
"Change tilelayers": "Alterar camadas de mosaicos",
|
|
55
|
+
"Change": "Alterar",
|
|
58
56
|
"Choose the data format": "Escolha o formato dos dados",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"Choropleth
|
|
62
|
-
"Choropleth
|
|
63
|
-
"Choropleth
|
|
64
|
-
"Choropleth
|
|
65
|
-
"Choropleth property value": "Choropleth property value",
|
|
66
|
-
"Choropleth": "Choropleth",
|
|
57
|
+
"Choropleth breakpoints": "Pontos de interrupção coropléticos",
|
|
58
|
+
"Choropleth classes": "Classes coropléticas",
|
|
59
|
+
"Choropleth color palette": "Paleta de cores coropléticas",
|
|
60
|
+
"Choropleth mode": "Modo coroplético",
|
|
61
|
+
"Choropleth property value": "Valor da propriedade coroplética",
|
|
62
|
+
"Choropleth": "Coroplético",
|
|
67
63
|
"Circle": "Círculo",
|
|
68
64
|
"clear": "limpar",
|
|
69
65
|
"Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica",
|
|
@@ -81,30 +77,29 @@
|
|
|
81
77
|
"Clustering radius": "Raio do aglomerado",
|
|
82
78
|
"collapsed": "colapsado",
|
|
83
79
|
"color": "cor",
|
|
84
|
-
"Comma separated list of numbers, including min and max values.": "
|
|
85
|
-
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "
|
|
80
|
+
"Comma separated list of numbers, including min and max values.": "Lista de números separada por vírgulas, incluindo os valores mínimo e máximo.",
|
|
81
|
+
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Lista de propriedades separada por vírgulas a utilizar para ordenar os elementos. Para inverter a ordenação, coloque um sinal de menos (-) antes. Por exemplo, umachave,-outrachave.",
|
|
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.": "Valores separados por vírgula, tabulação ou ponto-e-vírgula. É implícito\n o sistema de referência espacial WGS84. Apenas são importadas as \ngeometrias de ponto. A importação irá ver se aparece no cabeçalho das \ncolunas «lat» e «lon», ignorando diferença de maiúsculas e minúsculas. \nTodas a outras colunas são importadas como propriedades.",
|
|
87
|
-
"Congratulations, your map has been created!": "
|
|
83
|
+
"Congratulations, your map has been created!": "Parabéns, o seu mapa foi criado!",
|
|
88
84
|
"Continue line": "Continuar linha",
|
|
89
85
|
"Coordinates": "Coordenadas",
|
|
90
|
-
"
|
|
91
|
-
"copy": "copy",
|
|
86
|
+
"copy": "copiar",
|
|
92
87
|
"Credits": "Créditos",
|
|
93
|
-
"Current map view": "
|
|
88
|
+
"Current map view": "Vista atual do mapa",
|
|
94
89
|
"Current view instead of default map view?": "Vista atual e não a vista padrão do mapa?",
|
|
95
90
|
"Custom background": "Fundo personalizado",
|
|
96
|
-
"Custom overlay": "
|
|
91
|
+
"Custom overlay": "Sobreposição personalizada",
|
|
97
92
|
"dash array": "série de traços",
|
|
98
93
|
"Data is browsable": "Os dados são navegáveis",
|
|
99
|
-
"Datalayers": "
|
|
94
|
+
"Datalayers": "Camadas de dados",
|
|
100
95
|
"Default interaction options": "Opções padrão de interação",
|
|
101
96
|
"Default properties": "Propriedades padrão",
|
|
102
97
|
"Default shape properties": "Propriedades padrão de formas geométricas",
|
|
103
|
-
"Default view": "
|
|
104
|
-
"Default zoom level": "Nível de
|
|
98
|
+
"Default view": "Vista padrão",
|
|
99
|
+
"Default zoom level": "Nível de zoom pré-definido",
|
|
105
100
|
"Default": "Padrão",
|
|
106
101
|
"Default: name": "Padrão: nome",
|
|
107
|
-
"Define link to open in a new window on polygon click.": "Definir
|
|
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.",
|
|
108
103
|
"define": "definir",
|
|
109
104
|
"Delay between two transitions when in play mode": "Atraso entre 2 transições ao reproduzir a apresentação",
|
|
110
105
|
"Delete all layers": "Eliminar todas as camadas",
|
|
@@ -115,69 +110,68 @@
|
|
|
115
110
|
"Delete this vertex (Alt+Click)": "Eliminar este vértice (Alt+Clique)",
|
|
116
111
|
"Delete": "Eliminar",
|
|
117
112
|
"description": "descrição",
|
|
118
|
-
"Direct link": "
|
|
113
|
+
"Direct link": "Hiperligação direta",
|
|
119
114
|
"Directions from here": "Direções a partir daqui",
|
|
120
115
|
"Display label": "Mostrar etiqueta",
|
|
121
116
|
"Display measure": "Mostrar medição",
|
|
122
117
|
"display name": "mostrar nome",
|
|
123
118
|
"Display on load": "Mostrar ao carregar",
|
|
124
|
-
"Display the control to open OpenStreetMap editor": "Mostrar o
|
|
125
|
-
"Display the data layers control": "Mostrar o
|
|
126
|
-
"Display the embed control": "Mostrar o
|
|
127
|
-
"Display the fullscreen control": "Mostrar o
|
|
128
|
-
"Display the locate control": "Mostrar o
|
|
129
|
-
"Display the measure control": "Mostrar o
|
|
130
|
-
"Display the search control": "Mostrar o
|
|
131
|
-
"Display the star map button": "
|
|
132
|
-
"Display the tile layers control": "Mostrar o
|
|
133
|
-
"Display the zoom control": "Mostrar
|
|
119
|
+
"Display the control to open OpenStreetMap editor": "Mostrar o botão para abrir o editor do OpenStreetMap",
|
|
120
|
+
"Display the data layers control": "Mostrar o botão das camadas de dados",
|
|
121
|
+
"Display the embed control": "Mostrar o botão de partilha e descarregar",
|
|
122
|
+
"Display the fullscreen control": "Mostrar o botão de ecrã inteiro",
|
|
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",
|
|
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",
|
|
127
|
+
"Display the tile layers control": "Mostrar o botão de camadas de mosaicos",
|
|
128
|
+
"Display the zoom control": "Mostrar os botões de aproximar e afastar (zoom)",
|
|
134
129
|
"Do you want to display a caption bar?": "Mostrar uma barra de cabeçalho?",
|
|
135
|
-
"Do you want to display a minimap?": "
|
|
130
|
+
"Do you want to display a minimap?": "Mostrar um mini-mapa?",
|
|
136
131
|
"Do you want to display a panel on load?": "Mostrar um painel ao carregar?",
|
|
137
|
-
"Do you want to display caption menus?": "
|
|
138
|
-
"Do you want to display popup footer?": "
|
|
139
|
-
"Do you want to display the scale control?": "
|
|
132
|
+
"Do you want to display caption menus?": "Mostrar menus de legendas?",
|
|
133
|
+
"Do you want to display popup footer?": "Mostrar um popup no rodapé?",
|
|
134
|
+
"Do you want to display the scale control?": "Mostrar a escala?",
|
|
140
135
|
"Do you want to display the «more» control?": "Mostrar o botão «mostrar mais botões»?",
|
|
141
136
|
"Download": "Descarregar",
|
|
142
137
|
"Drag to reorder": "Arrastar para reordenar",
|
|
143
138
|
"Draw a marker": "Desenhar um marco",
|
|
144
139
|
"Draw a polygon": "Desenhar um polígono",
|
|
145
140
|
"Draw a polyline": "Desenhar uma polilinha",
|
|
146
|
-
"Drawing": "
|
|
141
|
+
"Drawing": "Desenho",
|
|
147
142
|
"Drop": "Comum",
|
|
148
143
|
"Dynamic properties": "Propriedades dinâmicas",
|
|
149
144
|
"Dynamic": "Dinâmico",
|
|
150
145
|
"Edit feature's layer": "Editar camada do elemento",
|
|
151
146
|
"Edit properties in a table": "Editar propriedades numa tabela",
|
|
152
|
-
"Edit the title of the map": "
|
|
147
|
+
"Edit the title of the map": "Editar o título do mapa",
|
|
153
148
|
"Edit this feature": "Editar este elemento",
|
|
154
149
|
"Edit": "Editar",
|
|
155
|
-
"
|
|
156
|
-
"Embed and link options": "Embed and link options",
|
|
150
|
+
"Embed and link options": "Opções de incorporação e hiperligação",
|
|
157
151
|
"Embed the map": "Embeber o mapa",
|
|
158
|
-
"Emoji & Character": "Emoji
|
|
152
|
+
"Emoji & Character": "Emoji e caracteres",
|
|
159
153
|
"Empty": "Vazio",
|
|
160
|
-
"Equidistant": "
|
|
161
|
-
"Error in the overlay URL": "
|
|
162
|
-
"Error in the tilelayer URL": "Erro no URL de
|
|
163
|
-
"Exit Fullscreen": "Sair de
|
|
154
|
+
"Equidistant": "Equidistante",
|
|
155
|
+
"Error in the overlay URL": "Erro no URL da sobreposição",
|
|
156
|
+
"Error in the tilelayer URL": "Erro no URL de camada de mosaicos",
|
|
157
|
+
"Exit Fullscreen": "Sair de ecrã inteiro",
|
|
164
158
|
"expanded": "expandido",
|
|
165
159
|
"Extract shape to separate feature": "Extrair forma geométrica para separar o elemento",
|
|
166
|
-
"Feature identifier key": "
|
|
167
|
-
"Feature properties": "
|
|
160
|
+
"Feature identifier key": "Chave de identificação do elemento",
|
|
161
|
+
"Feature properties": "Propriedades dos elementos",
|
|
168
162
|
"Fetch data each time map view changes.": "Processar dados cada vez que o mapa é alterado.",
|
|
169
163
|
"fill color": "cor do preenchimento",
|
|
170
164
|
"fill opacity": "opacidade do preenchimento",
|
|
171
165
|
"fill": "preenchimento",
|
|
172
|
-
"Fit all data": "
|
|
166
|
+
"Fit all data": "Ajustar todos os dados",
|
|
173
167
|
"Format": "Formato",
|
|
174
168
|
"From zoom": "Do zoom",
|
|
175
|
-
"full backup": "
|
|
176
|
-
"Generic": "
|
|
177
|
-
"GeoRSS (only link)": "GeoRSS (apenas
|
|
169
|
+
"full backup": "cópia de segurança completa",
|
|
170
|
+
"Generic": "Genérico",
|
|
171
|
+
"GeoRSS (only link)": "GeoRSS (apenas a hiperligação)",
|
|
178
172
|
"GeoRSS (title + image)": "GeoRSS (título + imagem)",
|
|
179
|
-
"Go to \"{coords}\"": "
|
|
180
|
-
"Go to the homepage": "
|
|
173
|
+
"Go to \"{coords}\"": "Ir a \"{coords}\"",
|
|
174
|
+
"Go to the homepage": "Ir para a página inicial",
|
|
181
175
|
"Go to «{feature}»": "Ir a «{feature}»",
|
|
182
176
|
"Heatmap intensity property": "Propriedade da intensidade do mapa térmico",
|
|
183
177
|
"Heatmap radius": "Raio do mapa térmico",
|
|
@@ -185,13 +179,13 @@
|
|
|
185
179
|
"height": "altura",
|
|
186
180
|
"Help": "Ajuda",
|
|
187
181
|
"hidden": "oculto",
|
|
188
|
-
"Hide controls": "Ocultar
|
|
182
|
+
"Hide controls": "Ocultar botões",
|
|
189
183
|
"Home": "Início",
|
|
190
|
-
"How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Por quanto simplificar a polilinha em cada nível de
|
|
191
|
-
"icon opacity": "
|
|
184
|
+
"How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Por quanto simplificar a polilinha em cada nível de zoom (mais = melhor desempenho e aspeto mais suave, menos = mais preciso)",
|
|
185
|
+
"icon opacity": "opacidade do ícone",
|
|
192
186
|
"Icon shape": "Forma do ícone",
|
|
193
187
|
"Icon symbol": "Símbolo do ícone",
|
|
194
|
-
"If false, the polygon or line will act as a part of the underlying map.": "
|
|
188
|
+
"If false, the polygon or line will act as a part of the underlying map.": "Se for falso, o polígono ou a linha atuará como parte do mapa subjacente.",
|
|
195
189
|
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe com altura personalizada (em px): {{{http://iframe.url.com|height}}}",
|
|
196
190
|
"Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe com altura e largura personalizados (em px): {{{http://iframe.url.com|height*width}}}",
|
|
197
191
|
"iframe": "iframe",
|
|
@@ -200,16 +194,15 @@
|
|
|
200
194
|
"Image: {{http://image.url.com}}": "Imagem: {{http://image.url.com}}",
|
|
201
195
|
"Import data": "Importar dados",
|
|
202
196
|
"Import in a new layer": "Importar uma nova camada",
|
|
203
|
-
"Import": "Importar",
|
|
204
197
|
"Imports all umap data, including layers and settings.": "Importa todos os dados uMap, incluindo camadas e definições.",
|
|
205
|
-
"Include full screen link?": "Incluir
|
|
198
|
+
"Include full screen link?": "Incluir hiperligação de ecrã inteiro?",
|
|
206
199
|
"Inherit": "Herdado",
|
|
207
200
|
"inherit": "herdado",
|
|
208
201
|
"Interaction options": "Opções de interação",
|
|
209
|
-
"Invalid latitude or longitude": "
|
|
202
|
+
"Invalid latitude or longitude": "Latitude ou longitude inválida",
|
|
210
203
|
"Invalid umap data in {filename}": "Dados uMap inválidos em {filename}",
|
|
211
204
|
"Invalid umap data": "Dados uMap inválidos",
|
|
212
|
-
"Invalide property name: {name}": "
|
|
205
|
+
"Invalide property name: {name}": "Nome da propriedade inválida: {name}",
|
|
213
206
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
214
207
|
"K-means": "K-means",
|
|
215
208
|
"Keep current visible layers": "Manter camadas atualmente visíveis",
|
|
@@ -218,16 +211,16 @@
|
|
|
218
211
|
"Label direction": "Direção da etiqueta",
|
|
219
212
|
"Label key": "Chave da etiqueta",
|
|
220
213
|
"Labels are clickable": "Etiquetas são clicáveis",
|
|
221
|
-
"Latest feature": "
|
|
214
|
+
"Latest feature": "Último elemento",
|
|
222
215
|
"Latitude": "Latitude",
|
|
223
216
|
"Layer properties": "Propriedades da camada",
|
|
224
217
|
"Layer": "Camada",
|
|
225
218
|
"Licence": "Licença",
|
|
226
219
|
"licence": "licença",
|
|
227
220
|
"Limit bounds": "Extremos dos limites",
|
|
228
|
-
"Link to view the map": "
|
|
229
|
-
"Link to…": "
|
|
230
|
-
"Link with text: [[http://example.com|text of the link]]": "
|
|
221
|
+
"Link to view the map": "Hiperligação para ver o mapa",
|
|
222
|
+
"Link to…": "Hiperligação para…",
|
|
223
|
+
"Link with text: [[http://example.com|text of the link]]": "Hiperligação com texto: [[http://exemplo.com|texto do link]]",
|
|
231
224
|
"Long credits": "Créditos por extenso",
|
|
232
225
|
"Longitude": "Longitude",
|
|
233
226
|
"Make main shape": "Fazer forma geométrica principal",
|
|
@@ -235,47 +228,47 @@
|
|
|
235
228
|
"Manual": "Manual",
|
|
236
229
|
"Map background credits": "Créditos do fundo do mapa",
|
|
237
230
|
"Map has been attached to your account": "O mapa foi anexado à sua conta",
|
|
238
|
-
"Map has been saved!": "O mapa foi
|
|
239
|
-
"Map has been starred": "
|
|
240
|
-
"Map has been unstarred": "
|
|
231
|
+
"Map has been saved!": "O mapa foi guardado!",
|
|
232
|
+
"Map has been starred": "O mapa foi marcado com uma estrela",
|
|
233
|
+
"Map has been unstarred": "O mapa foi desmarcado",
|
|
241
234
|
"Map user content has been published under licence": "O conteúdo do mapa foi publicado sob a licença",
|
|
242
235
|
"Map's editors": "Editores do mapa",
|
|
243
236
|
"Map's owner": "Proprietário do mapa",
|
|
244
|
-
"max East": "Este
|
|
245
|
-
"max North": "Norte
|
|
246
|
-
"max South": "Sul
|
|
247
|
-
"max West": "Oeste
|
|
248
|
-
"max zoom": "
|
|
237
|
+
"max East": "Este máximo",
|
|
238
|
+
"max North": "Norte máximo",
|
|
239
|
+
"max South": "Sul máximo",
|
|
240
|
+
"max West": "Oeste máximo",
|
|
241
|
+
"max zoom": "zoom máximo",
|
|
249
242
|
"Measure distances": "Medir distâncias",
|
|
250
243
|
"Merge lines": "Fundir linhas",
|
|
251
244
|
"mi": "mi",
|
|
252
245
|
"miles": "milhas",
|
|
253
|
-
"min zoom": "
|
|
254
|
-
"More controls": "Mais
|
|
255
|
-
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "Tem de ser um valor CSS válido (
|
|
246
|
+
"min zoom": "zoom mínimo",
|
|
247
|
+
"More controls": "Mais botões",
|
|
248
|
+
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "Tem de ser um valor CSS válido (por exemplo: DarkBlue ou #123456)",
|
|
256
249
|
"name": "nome",
|
|
257
250
|
"nautical miles": "milhas náuticas",
|
|
258
251
|
"never": "nunca",
|
|
259
252
|
"new window": "nova janela",
|
|
260
253
|
"next": "seguinte",
|
|
261
|
-
"NM": "
|
|
254
|
+
"NM": "MN",
|
|
262
255
|
"No cache": "Sem cache",
|
|
263
256
|
"No licence has been set": "Não foi definida nenhuma licença",
|
|
264
257
|
"No results": "Sem resultados",
|
|
265
|
-
"no": "
|
|
258
|
+
"no": "no",
|
|
266
259
|
"No.": "No.",
|
|
267
260
|
"None": "Nenhum",
|
|
268
|
-
"Number of desired classes (default 5)": "
|
|
261
|
+
"Number of desired classes (default 5)": "Número de classes pretendidas (predefinição 5)",
|
|
269
262
|
"On the bottom": "No fundo",
|
|
270
263
|
"On the left": "Na esquerda",
|
|
271
264
|
"On the right": "Na direita",
|
|
272
265
|
"On the top": "No topo",
|
|
273
|
-
"Only visible layers' data": "
|
|
266
|
+
"Only visible layers' data": "Apenas dados de camadas visíveis",
|
|
274
267
|
"opacity": "opacidade",
|
|
275
|
-
"Opacity": "
|
|
276
|
-
"Open current feature on load": "
|
|
277
|
-
"Open link in…": "Abrir
|
|
278
|
-
"Open share & download panel": "
|
|
268
|
+
"Opacity": "Opacidade",
|
|
269
|
+
"Open current feature on load": "Abrir elemento atual ao carregar",
|
|
270
|
+
"Open link in…": "Abrir hiperligação em…",
|
|
271
|
+
"Open share & download panel": "Abrir painel de partilha e descarregamento",
|
|
279
272
|
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Abrir esta região do mapa num editor de mapas para fornecer dados mais precisos ao OpenStreetMap",
|
|
280
273
|
"OpenStreetMap": "OpenStreetMap",
|
|
281
274
|
"Optional intensity property for heatmap": "Propriedade opcional da intensidade do mapa térmico",
|
|
@@ -285,122 +278,116 @@
|
|
|
285
278
|
"Override heatmap radius (default 25)": "Sobrepor raio do mapa térmico (padrão 80)",
|
|
286
279
|
"parent window": "janela pai",
|
|
287
280
|
"Paste your data here": "Cole aqui os seus dados",
|
|
288
|
-
"Permalink": "
|
|
289
|
-
"Permanent credits background": "
|
|
290
|
-
"Permanent credits": "
|
|
281
|
+
"Permalink": "Hiperligação permanente",
|
|
282
|
+
"Permanent credits background": "Fundo dos créditos permanentes",
|
|
283
|
+
"Permanent credits": "Créditos permanentes",
|
|
291
284
|
"Please be sure the licence is compliant with your use.": "Por favor tenha a certeza que a utilização está conforme a licença.",
|
|
292
285
|
"Please choose a format": "Por favor escolha um formato",
|
|
293
286
|
"Please enter the name of the property": "Por favor introduza o nome da propriedade",
|
|
294
287
|
"Please enter the new name of this property": "Por favor introduza um novo nome desta propriedade",
|
|
295
|
-
"Please save the map first": "
|
|
288
|
+
"Please save the map first": "Guarde primeiro o mapa",
|
|
296
289
|
"Popup (large)": "Popup (largo)",
|
|
297
290
|
"Popup content style": "Estilo do conteúdo do popup",
|
|
298
291
|
"Popup content template": "Modelo de conteúdo do popup",
|
|
299
292
|
"Popup shape": "Forma do popup",
|
|
300
293
|
"Popup": "Popup",
|
|
301
|
-
"Powered by uMap": "
|
|
294
|
+
"Powered by uMap": "Fornecido com uMap",
|
|
302
295
|
"previous": "anterior",
|
|
303
|
-
"Problem in the response": "
|
|
296
|
+
"Problem in the response": "Problema na resposta",
|
|
304
297
|
"Properties imported:": "Propriedades importadas:",
|
|
305
298
|
"Provide an URL here": "Forneça um URL aqui",
|
|
306
299
|
"Proxy request": "Pedido proxy",
|
|
307
|
-
"Quantiles": "
|
|
308
|
-
"Recent": "
|
|
300
|
+
"Quantiles": "Quantis",
|
|
301
|
+
"Recent": "Recente",
|
|
309
302
|
"Remote data": "Dados remotos",
|
|
310
|
-
"Remove shape from the multi": "Remover forma do
|
|
303
|
+
"Remove shape from the multi": "Remover forma do multipolígono",
|
|
311
304
|
"Rename this property on all the features": "Alterar nome desta propriedade em todos os elementos",
|
|
312
305
|
"Replace layer content": "Substituir o conteúdo da camada",
|
|
313
306
|
"Restore this version": "Restaurar esta versão",
|
|
314
|
-
"Save
|
|
315
|
-
"Save
|
|
316
|
-
"Save
|
|
317
|
-
"Save this
|
|
318
|
-
"Save
|
|
319
|
-
"
|
|
320
|
-
"Saved center and zoom": "Saved center and zoom",
|
|
307
|
+
"Save current edits": "Guardar edições atuais",
|
|
308
|
+
"Save map": "Guardar mapa",
|
|
309
|
+
"Save this center and zoom": "Guardar este zoom e centro",
|
|
310
|
+
"Save this location as new feature": "Guardar esta localização como novo elemento",
|
|
311
|
+
"Save": "Guardar",
|
|
312
|
+
"Saved center and zoom": "Centro e zoom guardados",
|
|
321
313
|
"Search location": "Procurar localização",
|
|
322
|
-
"Search": "
|
|
323
|
-
"Secret edit link
|
|
324
|
-
"
|
|
325
|
-
"See
|
|
326
|
-
"See full screen": "Ver em ecrã total",
|
|
327
|
-
"See on OpenStreetMap": "See on OpenStreetMap",
|
|
328
|
-
"Send me the link": "Send me the link",
|
|
314
|
+
"Search": "Pesquisar",
|
|
315
|
+
"Secret edit link:": "Hiperligação de edição secreta:",
|
|
316
|
+
"See full screen": "Ver em ecrã inteiro",
|
|
317
|
+
"See on OpenStreetMap": "Ver no OpenStreetMap",
|
|
329
318
|
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Defina como falso para ocultar esta camada da apresentação de slides, o navegador de dados e da navegação do popup…",
|
|
330
|
-
"settings": "
|
|
319
|
+
"settings": "definições",
|
|
331
320
|
"Shape properties": "Propriedades de formas geométricas",
|
|
332
|
-
"Share and download": "
|
|
333
|
-
"Share this link to open a customized map view": "
|
|
321
|
+
"Share and download": "Partilhar e descarregar",
|
|
322
|
+
"Share this link to open a customized map view": "Partilhar esta hiperligação para abrir uma vista de mapa personalizada",
|
|
334
323
|
"Short credits": "Créditos resumidos",
|
|
335
|
-
"Short link": "
|
|
336
|
-
"Show this layer in the caption": "
|
|
337
|
-
"Show/hide layer": "Mostrar/ocultar camada",
|
|
324
|
+
"Short link": "Hiperligação curta",
|
|
325
|
+
"Show this layer in the caption": "Mostrar esta camada na legenda",
|
|
326
|
+
"Show/hide layer": "Mostrar / ocultar camada",
|
|
338
327
|
"Side panel": "Painel lateral",
|
|
339
|
-
"Simple link: [[http://example.com]]": "
|
|
328
|
+
"Simple link: [[http://example.com]]": "Hiperligação simples: [[http://exemplo.com]]",
|
|
340
329
|
"Simplify": "Simplificar",
|
|
341
330
|
"Skipping unknown geometry.type: {type}": "A ignorar tipo de geometria desconhecido: {type}",
|
|
342
331
|
"Slideshow": "Apresentação",
|
|
343
332
|
"Sort key": "Chave de ordenação",
|
|
344
333
|
"Split line": "Linha de separação",
|
|
345
|
-
"Star this map": "
|
|
334
|
+
"Star this map": "Marcar este mapa com uma estrela",
|
|
346
335
|
"Start a hole here": "Começar um buraco aqui",
|
|
347
336
|
"Start slideshow": "Iniciar apresentação",
|
|
348
337
|
"Stop editing": "Parar edição",
|
|
349
338
|
"Stop slideshow": "Parar apresentação",
|
|
350
|
-
"Street": "
|
|
339
|
+
"Street": "Rua",
|
|
351
340
|
"stroke": "traço",
|
|
352
341
|
"Supported scheme": "Esquema suportado",
|
|
353
342
|
"Supported variables that will be dynamically replaced": "Variáveis suportadas que serão substituídas de forma dinâmica",
|
|
354
|
-
"Symbol": "
|
|
343
|
+
"Symbol": "Símbolo",
|
|
355
344
|
"Table": "Tabela",
|
|
356
345
|
"Text color for the cluster label": "Cor do texto para a etiqueta do aglomerado",
|
|
357
346
|
"Text formatting": "Formatação do texto",
|
|
358
|
-
"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}\")": "
|
|
359
|
-
"The name of the property to use as feature unique identifier.": "
|
|
360
|
-
"The zoom and center have been modified.": "
|
|
347
|
+
"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}\")": "O nome da propriedade a utilizar como etiqueta do elemento (por exemplo: \"nom\"). Também pode utilizar propriedades entre parênteses para utilizar mais do que uma ou misturar com conteúdo estático (por exemplo: \"{name} in {place}\")",
|
|
348
|
+
"The name of the property to use as feature unique identifier.": "O nome da propriedade a utilizar como identificador único do elemento.",
|
|
349
|
+
"The zoom and center have been modified.": "O zoom e o centro foram alterados.",
|
|
361
350
|
"TMS format": "Formato TMS",
|
|
362
351
|
"To use if remote server doesn't allow cross domain (slower)": "Para usar caso o servidor remoto não permitir domínios cruzados (mais lento)",
|
|
363
352
|
"To zoom": "Ao zoom",
|
|
364
|
-
"Toggle edit mode (⇧+Click)": "
|
|
365
|
-
"Toggle edit mode": "
|
|
353
|
+
"Toggle edit mode (⇧+Click)": "Alternar o modo de edição (⇧+clique)",
|
|
354
|
+
"Toggle edit mode": "Alternar o modo de edição",
|
|
366
355
|
"Transfer shape to edited feature": "Transferir a forma geométrica para o elemento editado",
|
|
367
356
|
"Transform to lines": "Transformar em linha",
|
|
368
357
|
"Transform to polygon": "Transformar em polígono",
|
|
369
|
-
"Type a place name or coordinates": "
|
|
370
|
-
"Type char or paste emoji": "
|
|
358
|
+
"Type a place name or coordinates": "Introduzir um nome de local ou coordenadas",
|
|
359
|
+
"Type char or paste emoji": "Escreva um caractere ou cole um emoji",
|
|
371
360
|
"Type of layer": "Tipo de camada",
|
|
372
361
|
"Unable to detect format of file {filename}": "Não foi possível detetar o formato do ficheiro {filename}",
|
|
373
362
|
"Untitled layer": "Camada sem nome",
|
|
374
363
|
"Untitled map": "Mapa sem nome",
|
|
375
364
|
"Update permissions and editors": "Alterar permisões e editores",
|
|
376
365
|
"Update permissions": "Permissões de atualização",
|
|
377
|
-
"Update who can see and edit the map": "
|
|
366
|
+
"Update who can see and edit the map": "Atualizar quem pode ver e editar o mapa",
|
|
378
367
|
"Url": "URL",
|
|
379
368
|
"URL": "URL",
|
|
380
369
|
"Use current bounds": "Usar extremos atuais",
|
|
381
370
|
"Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Use espaços reservados como propriedades de elementos entre parêntesis. Por ex. {nome} e serão substituídos pelos valores correspondentes.",
|
|
382
371
|
"User content credits": "Créditos do conteúdo do utilizador",
|
|
383
372
|
"User interface options": "Opções da interface de utilizador",
|
|
384
|
-
"User location": "
|
|
385
|
-
"Verify remote URL": "
|
|
373
|
+
"User location": "Localização do utilizador",
|
|
374
|
+
"Verify remote URL": "Verificar URL remoto",
|
|
386
375
|
"Versions": "Versões",
|
|
387
|
-
"View Fullscreen": "Ver em
|
|
388
|
-
"View": "
|
|
389
|
-
"Visibility: {status}": "
|
|
376
|
+
"View Fullscreen": "Ver em ecrã inteiro",
|
|
377
|
+
"View": "Ver",
|
|
378
|
+
"Visibility: {status}": "Visibilidade: {status}",
|
|
390
379
|
"weight": "espessura",
|
|
391
380
|
"Where do we go from here?": "Para onde vamos a partir daqui?",
|
|
392
381
|
"Whether to display or not polygons paths.": "Se mostrar ou não os caminhos dos polígonos.",
|
|
393
382
|
"Whether to fill polygons with color.": "Se mostrar ou não os polígonos preenchidos a cor.",
|
|
394
|
-
"Who can edit \"{layer}\"": "
|
|
383
|
+
"Who can edit \"{layer}\"": "Quem pode editar \"{layer}\"",
|
|
395
384
|
"Who can edit": "Quem pode editar",
|
|
396
385
|
"Who can view": "Quem pode ver",
|
|
397
386
|
"width": "largura",
|
|
398
387
|
"Will be displayed in the bottom right corner of the map": "Será mostrado no fundo à direita do mapa",
|
|
399
|
-
"Will be permanently visible in the bottom left corner of the map": "
|
|
388
|
+
"Will be permanently visible in the bottom left corner of the map": "Estará permanentemente visível no canto inferior esquerdo do mapa",
|
|
400
389
|
"Will be visible in the caption of the map": "Será visível no cabeçalho do mapa",
|
|
401
|
-
"Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Ops! Parece que alguém editou os dados. Pode gravar mesmo assim, mas isso irá eliminar as alterações feitas por outros.",
|
|
402
390
|
"yes": "sim",
|
|
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": "Aproximar",
|
|
405
392
|
"Zoom level for automatic zooms": "Nível de aproximação para aproximações automáticas",
|
|
406
393
|
"Zoom out": "Afastar",
|
|
@@ -409,7 +396,7 @@
|
|
|
409
396
|
"Zoom to the previous": "Aproximar para o anterior",
|
|
410
397
|
"Zoom to this feature": "Aproximar a este elemento",
|
|
411
398
|
"Zoom to this place": "Aproximar para este local",
|
|
412
|
-
"{area} acres": "{area}
|
|
399
|
+
"{area} acres": "{area} hectares",
|
|
413
400
|
"{area} ha": "{area} ha",
|
|
414
401
|
"{area} m²": "{area} m²",
|
|
415
402
|
"{area} mi²": "{area} mi²",
|
|
@@ -418,33 +405,81 @@
|
|
|
418
405
|
"{delay} seconds": "{delay} segundos",
|
|
419
406
|
"{distance} km": "{distance} km",
|
|
420
407
|
"{distance} m": "{distance} m",
|
|
421
|
-
"{distance} miles": "{distance}
|
|
422
|
-
"{distance} NM": "{distance}
|
|
408
|
+
"{distance} miles": "{distance} milhas",
|
|
409
|
+
"{distance} NM": "{distance} MN",
|
|
423
410
|
"{distance} yd": "{distance} yd",
|
|
424
|
-
"Edit map name and caption": "
|
|
425
|
-
"Map advanced properties": "
|
|
426
|
-
"Edit map details": "
|
|
427
|
-
"Back to browser": "
|
|
428
|
-
"Toggle size": "
|
|
429
|
-
"Display the caption control": "
|
|
430
|
-
"<empty value>": "<
|
|
431
|
-
"Min": "
|
|
432
|
-
"Max": "
|
|
433
|
-
"From": "
|
|
434
|
-
"Until": "
|
|
435
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "
|
|
436
|
-
"Edit in OpenStreetMap": "
|
|
437
|
-
"Cannot determine latitude and longitude columns.": "
|
|
438
|
-
"Back to layers": "
|
|
439
|
-
"Filters": "
|
|
440
|
-
"Comma separated list of properties to use when filtering features by text input": "
|
|
441
|
-
"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.": "
|
|
442
|
-
"Search keys": "
|
|
443
|
-
"Filters keys": "
|
|
444
|
-
"Filter data": "
|
|
445
|
-
"Search map features…": "
|
|
446
|
-
"Reset all": "
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
"
|
|
411
|
+
"Edit map name and caption": "Editar o nome e a legenda do mapa",
|
|
412
|
+
"Map advanced properties": "Propriedades avançadas do mapa",
|
|
413
|
+
"Edit map details": "Editar detalhes do mapa",
|
|
414
|
+
"Back to browser": "Voltar ao navegador",
|
|
415
|
+
"Toggle size": "Alternar tamanho",
|
|
416
|
+
"Display the caption control": "Mostrar o botão de legendas",
|
|
417
|
+
"<empty value>": "<valor em branco>",
|
|
418
|
+
"Min": "Mín",
|
|
419
|
+
"Max": "Máx",
|
|
420
|
+
"From": "De",
|
|
421
|
+
"Until": "Até",
|
|
422
|
+
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Exemplo: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
423
|
+
"Edit in OpenStreetMap": "Editar no OpenStreetMap",
|
|
424
|
+
"Cannot determine latitude and longitude columns.": "Não é possível determinar as colunas de latitude e longitude.",
|
|
425
|
+
"Back to layers": "Voltar às camadas",
|
|
426
|
+
"Filters": "Filtros",
|
|
427
|
+
"Comma separated list of properties to use when filtering features by text input": "Lista de propriedades separada por vírgulas a utilizar na filtragem de elementos por introdução de texto",
|
|
428
|
+
"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.": "Lista separada por vírgulas de propriedades a utilizar para filtros (por exemplo: mykey,otherkey). Para controlar a etiqueta, adicione-a depois de um | (por exemplo: mykey|My Key,otherkey|Other Key). Para controlar o tipo de campo de entrada, adicione-o depois de outro | (por exemplo: mykey|My Key|checkbox,otherkey|Other Key|datetime). Os valores permitidos para o tipo de campo de entrada são checkbox (predefinição), radio, number, date e datetime.",
|
|
429
|
+
"Search keys": "Chaves de procura",
|
|
430
|
+
"Filters keys": "Chaves de filtros",
|
|
431
|
+
"Filter data": "Dados de filtros",
|
|
432
|
+
"Search map features…": "Procurar elementos do mapa…",
|
|
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"
|
|
450
485
|
}
|