umap-project 2.5.1__py3-none-any.whl → 2.6.0b0__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/admin.py +6 -1
- umap/context_processors.py +2 -1
- umap/decorators.py +13 -2
- umap/forms.py +26 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +252 -146
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +274 -162
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +299 -187
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +215 -159
- umap/locale/en/LC_MESSAGES/django.po +211 -155
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +255 -144
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +254 -198
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +346 -234
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +216 -160
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +215 -159
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +252 -146
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +252 -146
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +254 -148
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +215 -159
- umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- umap/locale/sv/LC_MESSAGES/django.po +254 -143
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
- umap/migrations/0022_add_team.py +94 -0
- umap/models.py +45 -10
- umap/settings/__init__.py +2 -0
- umap/settings/base.py +3 -2
- umap/static/umap/base.css +32 -41
- umap/static/umap/content.css +19 -25
- umap/static/umap/css/icon.css +63 -37
- umap/static/umap/css/importers.css +1 -1
- umap/static/umap/css/slideshow.css +7 -5
- umap/static/umap/css/tableeditor.css +4 -3
- umap/static/umap/img/16-white.svg +1 -4
- umap/static/umap/img/16.svg +2 -6
- umap/static/umap/img/24-white.svg +4 -4
- umap/static/umap/img/24.svg +6 -6
- umap/static/umap/img/source/16-white.svg +2 -5
- umap/static/umap/img/source/16.svg +3 -7
- umap/static/umap/img/source/24-white.svg +7 -14
- umap/static/umap/img/source/24.svg +10 -17
- umap/static/umap/js/components/alerts/alert.css +20 -8
- umap/static/umap/js/modules/autocomplete.js +3 -3
- umap/static/umap/js/modules/browser.js +4 -3
- umap/static/umap/js/modules/caption.js +9 -11
- umap/static/umap/js/modules/data/features.js +994 -0
- umap/static/umap/js/modules/data/layer.js +1210 -0
- umap/static/umap/js/modules/formatter.js +12 -3
- umap/static/umap/js/modules/global.js +21 -5
- umap/static/umap/js/modules/permissions.js +280 -0
- umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
- umap/static/umap/js/modules/rendering/layers/base.js +105 -0
- umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
- umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
- umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
- umap/static/umap/js/modules/rendering/popup.js +99 -0
- umap/static/umap/js/modules/rendering/template.js +217 -0
- umap/static/umap/js/modules/rendering/ui.js +573 -0
- umap/static/umap/js/modules/schema.js +24 -0
- umap/static/umap/js/modules/share.js +66 -45
- umap/static/umap/js/modules/sync/updaters.js +9 -10
- umap/static/umap/js/modules/tableeditor.js +7 -7
- umap/static/umap/js/modules/ui/dialog.js +8 -4
- umap/static/umap/js/modules/utils.js +22 -13
- umap/static/umap/js/umap.controls.js +79 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +32 -12
- umap/static/umap/js/umap.js +65 -63
- umap/static/umap/locale/br.js +35 -35
- umap/static/umap/locale/br.json +35 -35
- umap/static/umap/locale/ca.js +50 -50
- umap/static/umap/locale/ca.json +50 -50
- umap/static/umap/locale/de.js +136 -136
- umap/static/umap/locale/de.json +136 -136
- umap/static/umap/locale/el.js +47 -47
- umap/static/umap/locale/el.json +47 -47
- umap/static/umap/locale/en.js +7 -1
- umap/static/umap/locale/en.json +7 -1
- umap/static/umap/locale/fa_IR.js +44 -44
- umap/static/umap/locale/fa_IR.json +44 -44
- umap/static/umap/locale/fr.js +8 -2
- umap/static/umap/locale/fr.json +8 -2
- umap/static/umap/locale/pt.js +17 -17
- umap/static/umap/locale/pt.json +17 -17
- umap/static/umap/locale/pt_PT.js +207 -207
- umap/static/umap/locale/pt_PT.json +207 -207
- umap/static/umap/locale/th_TH.js +25 -25
- umap/static/umap/locale/th_TH.json +25 -25
- umap/static/umap/map.css +107 -104
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
- umap/storage.py +1 -0
- umap/templates/404.html +5 -1
- umap/templates/500.html +3 -1
- umap/templates/auth/user_detail.html +8 -2
- umap/templates/auth/user_form.html +19 -10
- umap/templates/auth/user_stars.html +8 -2
- umap/templates/base.html +1 -0
- umap/templates/registration/login.html +18 -3
- umap/templates/umap/about.html +1 -0
- umap/templates/umap/about_summary.html +22 -7
- umap/templates/umap/components/alerts/alert.html +42 -21
- umap/templates/umap/content.html +2 -0
- umap/templates/umap/content_footer.html +6 -2
- umap/templates/umap/css.html +1 -0
- umap/templates/umap/dashboard_menu.html +15 -0
- umap/templates/umap/home.html +14 -4
- umap/templates/umap/js.html +4 -9
- umap/templates/umap/login_popup_end.html +10 -4
- umap/templates/umap/map_detail.html +8 -2
- umap/templates/umap/map_fragment.html +3 -1
- umap/templates/umap/map_init.html +2 -1
- umap/templates/umap/map_list.html +4 -3
- umap/templates/umap/map_table.html +36 -12
- umap/templates/umap/messages.html +0 -1
- umap/templates/umap/navigation.html +2 -1
- umap/templates/umap/password_change.html +5 -1
- umap/templates/umap/password_change_done.html +8 -2
- umap/templates/umap/search.html +8 -2
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +19 -0
- umap/templates/umap/team_detail.html +27 -0
- umap/templates/umap/team_form.html +60 -0
- umap/templates/umap/user_dashboard.html +7 -9
- umap/templates/umap/user_teams.html +51 -0
- umap/tests/base.py +8 -1
- umap/tests/conftest.py +6 -0
- umap/tests/fixtures/test_circles_layer.geojson +219 -0
- umap/tests/fixtures/test_upload_georss.xml +20 -0
- umap/tests/integration/conftest.py +18 -4
- umap/tests/integration/helpers.py +12 -0
- umap/tests/integration/test_anonymous_owned_map.py +23 -0
- umap/tests/integration/test_basics.py +29 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_draw_polygon.py +110 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +1 -1
- umap/tests/integration/test_import.py +64 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_team.py +47 -0
- umap/tests/integration/test_tilelayer.py +19 -2
- umap/tests/integration/test_view_marker.py +28 -1
- umap/tests/integration/test_websocket_sync.py +5 -5
- umap/tests/test_datalayer.py +32 -7
- umap/tests/test_datalayer_views.py +1 -1
- umap/tests/test_map.py +30 -4
- umap/tests/test_map_views.py +2 -2
- umap/tests/test_statics.py +40 -0
- umap/tests/test_team_views.py +131 -0
- umap/tests/test_views.py +15 -1
- umap/urls.py +23 -13
- umap/views.py +116 -10
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/METADATA +9 -9
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
- umap/static/umap/js/umap.datalayer.permissions.js +0 -70
- umap/static/umap/js/umap.features.js +0 -1290
- umap/static/umap/js/umap.layer.js +0 -1837
- umap/static/umap/js/umap.permissions.js +0 -208
- umap/static/umap/js/umap.popup.js +0 -341
- umap/static/umap/test/TableEditor.js +0 -104
- umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
- umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
- umap/static/umap/vendors/leaflet/leaflet.js +0 -6
- umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
- umap/tests/integration/test_statics.py +0 -47
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/pt_PT.js
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
const locale = {
|
|
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
|
-
"**double star for bold**": "**dois asteriscos
|
|
8
|
-
"*single star for italic*": "
|
|
9
|
-
"--- for a horizontal rule": "---
|
|
7
|
+
"**double star for bold**": "**dois asteriscos para negrito**",
|
|
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
18
|
"Add a line to the current multi": "Adicionar uma linha para o multi atual",
|
|
19
19
|
"Add a new property": "Adicionar uma nova propriedade",
|
|
20
20
|
"Add a polygon to the current multi": "Adicionar um polígono para o multi atual",
|
|
21
|
-
"Add image URL": "
|
|
22
|
-
"Add": "
|
|
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?",
|
|
@@ -40,10 +40,10 @@ const locale = {
|
|
|
40
40
|
"Auto": "Auto",
|
|
41
41
|
"Automatic": "Automático",
|
|
42
42
|
"Autostart when map is loaded": "Iniciar ao abrir o mapa",
|
|
43
|
-
"Back to preview": "
|
|
44
|
-
"Background overlay url": "
|
|
43
|
+
"Back to preview": "Voltar à pré-visualização",
|
|
44
|
+
"Background overlay url": "URL da sobreposição de 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",
|
|
@@ -52,14 +52,14 @@ const locale = {
|
|
|
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 telas",
|
|
55
|
-
"Change": "
|
|
55
|
+
"Change": "Alterar",
|
|
56
56
|
"Choose the data format": "Escolha o formato dos dados",
|
|
57
|
-
"Choropleth breakpoints": "
|
|
58
|
-
"Choropleth classes": "
|
|
59
|
-
"Choropleth color palette": "
|
|
60
|
-
"Choropleth mode": "
|
|
61
|
-
"Choropleth property value": "
|
|
62
|
-
"Choropleth": "
|
|
57
|
+
"Choropleth breakpoints": "Pontos de interrupção coropléticos",
|
|
58
|
+
"Choropleth classes": "Classes coropléticas",
|
|
59
|
+
"Choropleth color palette": "Palete de cores coropléticas",
|
|
60
|
+
"Choropleth mode": "Modo coroplético",
|
|
61
|
+
"Choropleth property value": "Valor da propriedade coroplética",
|
|
62
|
+
"Choropleth": "Coroplético",
|
|
63
63
|
"Circle": "Círculo",
|
|
64
64
|
"clear": "limpar",
|
|
65
65
|
"Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica",
|
|
@@ -77,38 +77,38 @@ const locale = {
|
|
|
77
77
|
"Clustering radius": "Raio do aglomerado",
|
|
78
78
|
"collapsed": "colapsado",
|
|
79
79
|
"color": "cor",
|
|
80
|
-
"Comma separated list of numbers, including min and max values.": "
|
|
81
|
-
"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 as caraterísticas. Para inverter a ordenação, coloque um sinal de menos (-) antes. Por exemplo, minha chave,-outra chave.",
|
|
82
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.",
|
|
83
|
-
"Congratulations, your map has been created!": "
|
|
83
|
+
"Congratulations, your map has been created!": "Parabéns, o seu mapa foi criado!",
|
|
84
84
|
"Continue line": "Continuar linha",
|
|
85
85
|
"Coordinates": "Coordenadas",
|
|
86
|
-
"copy": "
|
|
86
|
+
"copy": "copiar",
|
|
87
87
|
"Credits": "Créditos",
|
|
88
|
-
"Current map view": "
|
|
88
|
+
"Current map view": "Vista atual do mapa",
|
|
89
89
|
"Current view instead of default map view?": "Vista atual e não a vista padrão do mapa?",
|
|
90
90
|
"Custom background": "Fundo personalizado",
|
|
91
|
-
"Custom overlay": "
|
|
91
|
+
"Custom overlay": "Sobreposição personalizada",
|
|
92
92
|
"dash array": "série de traços",
|
|
93
93
|
"Data is browsable": "Os dados são navegáveis",
|
|
94
|
-
"Datalayers": "
|
|
94
|
+
"Datalayers": "Camadas de dados",
|
|
95
95
|
"Default interaction options": "Opções padrão de interação",
|
|
96
96
|
"Default properties": "Propriedades padrão",
|
|
97
97
|
"Default shape properties": "Propriedades padrão de formas geométricas",
|
|
98
|
-
"Default view": "
|
|
98
|
+
"Default view": "Vista padrão",
|
|
99
99
|
"Default zoom level": "Nível de aproximação padrão",
|
|
100
100
|
"Default": "Padrão",
|
|
101
101
|
"Default: name": "Padrão: nome",
|
|
102
|
-
"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.",
|
|
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
105
|
"Delete layer": "Eliminar camada",
|
|
106
106
|
"Delete this feature": "Eliminar este elemento",
|
|
107
107
|
"Delete this shape": "Eliminar esta forma geométrica",
|
|
108
|
-
"Delete this vertex (Alt+Click)": "Eliminar este vértice (Alt+
|
|
108
|
+
"Delete this vertex (Alt+Click)": "Eliminar este vértice (Alt+clique)",
|
|
109
109
|
"Delete": "Eliminar",
|
|
110
110
|
"description": "descrição",
|
|
111
|
-
"Direct link": "
|
|
111
|
+
"Direct link": "Hiperligação direta",
|
|
112
112
|
"Directions from here": "Direções a partir daqui",
|
|
113
113
|
"Display label": "Mostrar etiqueta",
|
|
114
114
|
"Display measure": "Mostrar medição",
|
|
@@ -121,7 +121,7 @@ const locale = {
|
|
|
121
121
|
"Display the locate control": "Mostrar o controlo de localizar",
|
|
122
122
|
"Display the measure control": "Mostrar o controlo de medição",
|
|
123
123
|
"Display the search control": "Mostrar o controlo de pesquisa",
|
|
124
|
-
"Display the star map button": "
|
|
124
|
+
"Display the star map button": "Mostrar o botão de marcar como favorito",
|
|
125
125
|
"Display the tile layers control": "Mostrar o controlo de camadas de telas",
|
|
126
126
|
"Display the zoom control": "Mostrar o controlo de aproximar e afastar (zoom)",
|
|
127
127
|
"Do you want to display a caption bar?": "Mostrar uma barra de cabeçalho?",
|
|
@@ -136,40 +136,40 @@ const locale = {
|
|
|
136
136
|
"Draw a marker": "Desenhar um marco",
|
|
137
137
|
"Draw a polygon": "Desenhar um polígono",
|
|
138
138
|
"Draw a polyline": "Desenhar uma polilinha",
|
|
139
|
-
"Drawing": "
|
|
139
|
+
"Drawing": "Desenho",
|
|
140
140
|
"Drop": "Comum",
|
|
141
141
|
"Dynamic properties": "Propriedades dinâmicas",
|
|
142
142
|
"Dynamic": "Dinâmico",
|
|
143
143
|
"Edit feature's layer": "Editar camada do elemento",
|
|
144
144
|
"Edit properties in a table": "Editar propriedades numa tabela",
|
|
145
|
-
"Edit the title of the map": "
|
|
145
|
+
"Edit the title of the map": "Editar o título do mapa",
|
|
146
146
|
"Edit this feature": "Editar este elemento",
|
|
147
147
|
"Edit": "Editar",
|
|
148
|
-
"Embed and link options": "
|
|
148
|
+
"Embed and link options": "Opções de incorporação e hiperligação",
|
|
149
149
|
"Embed the map": "Embeber o mapa",
|
|
150
|
-
"Emoji & Character": "Emoji
|
|
150
|
+
"Emoji & Character": "Emoji e caracteres",
|
|
151
151
|
"Empty": "Vazio",
|
|
152
|
-
"Equidistant": "
|
|
153
|
-
"Error in the overlay URL": "
|
|
152
|
+
"Equidistant": "Equidistante",
|
|
153
|
+
"Error in the overlay URL": "Erro no URL da sobreposição",
|
|
154
154
|
"Error in the tilelayer URL": "Erro no URL de telas",
|
|
155
|
-
"Exit Fullscreen": "Sair
|
|
155
|
+
"Exit Fullscreen": "Sair do ecrã inteiro",
|
|
156
156
|
"expanded": "expandido",
|
|
157
157
|
"Extract shape to separate feature": "Extrair forma geométrica para separar o elemento",
|
|
158
|
-
"Feature identifier key": "
|
|
159
|
-
"Feature properties": "
|
|
158
|
+
"Feature identifier key": "Chave de identificação do elemento",
|
|
159
|
+
"Feature properties": "Propriedades do elemento",
|
|
160
160
|
"Fetch data each time map view changes.": "Processar dados cada vez que o mapa é alterado.",
|
|
161
161
|
"fill color": "cor do preenchimento",
|
|
162
162
|
"fill opacity": "opacidade do preenchimento",
|
|
163
163
|
"fill": "preenchimento",
|
|
164
|
-
"Fit all data": "
|
|
164
|
+
"Fit all data": "Ajustar todos os dados",
|
|
165
165
|
"Format": "Formato",
|
|
166
166
|
"From zoom": "Do zoom",
|
|
167
|
-
"full backup": "
|
|
168
|
-
"Generic": "
|
|
169
|
-
"GeoRSS (only link)": "GeoRSS (apenas
|
|
167
|
+
"full backup": "cópia de segurança completa",
|
|
168
|
+
"Generic": "Genérico",
|
|
169
|
+
"GeoRSS (only link)": "GeoRSS (apenas a hiperligação)",
|
|
170
170
|
"GeoRSS (title + image)": "GeoRSS (título + imagem)",
|
|
171
|
-
"Go to \"{coords}\"": "
|
|
172
|
-
"Go to the homepage": "
|
|
171
|
+
"Go to \"{coords}\"": "Ir para \"{coords}\"",
|
|
172
|
+
"Go to the homepage": "Ir para a página inicial",
|
|
173
173
|
"Go to «{feature}»": "Ir a «{feature}»",
|
|
174
174
|
"Heatmap intensity property": "Propriedade da intensidade do mapa térmico",
|
|
175
175
|
"Heatmap radius": "Raio do mapa térmico",
|
|
@@ -180,10 +180,10 @@ const locale = {
|
|
|
180
180
|
"Hide controls": "Ocultar controlos",
|
|
181
181
|
"Home": "Início",
|
|
182
182
|
"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 aproximação (mais = melhor desempenho e aspeto mais suave, menos = mais preciso)",
|
|
183
|
-
"icon opacity": "
|
|
183
|
+
"icon opacity": "opacidade do ícone",
|
|
184
184
|
"Icon shape": "Forma do ícone",
|
|
185
185
|
"Icon symbol": "Símbolo do ícone",
|
|
186
|
-
"If false, the polygon or line will act as a part of the underlying map.": "
|
|
186
|
+
"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.",
|
|
187
187
|
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe com altura personalizada (em px): {{{http://iframe.url.com|height}}}",
|
|
188
188
|
"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}}}",
|
|
189
189
|
"iframe": "iframe",
|
|
@@ -193,7 +193,7 @@ const locale = {
|
|
|
193
193
|
"Import data": "Importar dados",
|
|
194
194
|
"Import in a new layer": "Importar uma nova camada",
|
|
195
195
|
"Imports all umap data, including layers and settings.": "Importa todos os dados uMap, incluindo camadas e definições.",
|
|
196
|
-
"Include full screen link?": "Incluir
|
|
196
|
+
"Include full screen link?": "Incluir a hiperligação para o ecrã completo?",
|
|
197
197
|
"Inherit": "Herdado",
|
|
198
198
|
"inherit": "herdado",
|
|
199
199
|
"Interaction options": "Opções de interação",
|
|
@@ -208,16 +208,16 @@ const locale = {
|
|
|
208
208
|
"Label direction": "Direção da etiqueta",
|
|
209
209
|
"Label key": "Chave da etiqueta",
|
|
210
210
|
"Labels are clickable": "Etiquetas são clicáveis",
|
|
211
|
-
"Latest feature": "
|
|
211
|
+
"Latest feature": "Último elemento",
|
|
212
212
|
"Latitude": "Latitude",
|
|
213
213
|
"Layer properties": "Propriedades da camada",
|
|
214
214
|
"Layer": "Camada",
|
|
215
215
|
"Licence": "Licença",
|
|
216
216
|
"licence": "licença",
|
|
217
217
|
"Limit bounds": "Extremos dos limites",
|
|
218
|
-
"Link to view the map": "
|
|
219
|
-
"Link to…": "
|
|
220
|
-
"Link with text: [[http://example.com|text of the link]]": "
|
|
218
|
+
"Link to view the map": "Hiperligação para ver o mapa",
|
|
219
|
+
"Link to…": "Hiperligação para…",
|
|
220
|
+
"Link with text: [[http://example.com|text of the link]]": "Hiperligação com texto: [[http://exemplo.com|texto da hiperligação]]",
|
|
221
221
|
"Long credits": "Créditos por extenso",
|
|
222
222
|
"Longitude": "Longitude",
|
|
223
223
|
"Make main shape": "Fazer forma geométrica principal",
|
|
@@ -225,9 +225,9 @@ const locale = {
|
|
|
225
225
|
"Manual": "Manual",
|
|
226
226
|
"Map background credits": "Créditos do fundo do mapa",
|
|
227
227
|
"Map has been attached to your account": "O mapa foi anexado à sua conta",
|
|
228
|
-
"Map has been saved!": "O mapa foi
|
|
229
|
-
"Map has been starred": "
|
|
230
|
-
"Map has been unstarred": "
|
|
228
|
+
"Map has been saved!": "O mapa foi guardado!",
|
|
229
|
+
"Map has been starred": "O mapa foi marcado como favorito",
|
|
230
|
+
"Map has been unstarred": "O mapa foi desmarcado como favorito",
|
|
231
231
|
"Map user content has been published under licence": "O conteúdo do mapa foi publicado sob a licença",
|
|
232
232
|
"Map's editors": "Editores do mapa",
|
|
233
233
|
"Map's owner": "Proprietário do mapa",
|
|
@@ -255,133 +255,133 @@ const locale = {
|
|
|
255
255
|
"no": "não",
|
|
256
256
|
"No.": "No.",
|
|
257
257
|
"None": "Nenhum",
|
|
258
|
-
"Number of desired classes (default 5)": "
|
|
258
|
+
"Number of desired classes (default 5)": "Número de classes pretendidas (padrão: 5)",
|
|
259
259
|
"On the bottom": "No fundo",
|
|
260
260
|
"On the left": "Na esquerda",
|
|
261
261
|
"On the right": "Na direita",
|
|
262
262
|
"On the top": "No topo",
|
|
263
|
-
"Only visible layers' data": "
|
|
263
|
+
"Only visible layers' data": "Apenas dados de camadas visíveis",
|
|
264
264
|
"opacity": "opacidade",
|
|
265
|
-
"Opacity": "
|
|
266
|
-
"Open current feature on load": "
|
|
267
|
-
"Open link in…": "Abrir
|
|
268
|
-
"Open share & download panel": "
|
|
265
|
+
"Opacity": "Opacidade",
|
|
266
|
+
"Open current feature on load": "Abrir o elemento atual ao carregar",
|
|
267
|
+
"Open link in…": "Abrir hiperligação em…",
|
|
268
|
+
"Open share & download panel": "Abrir painel de partilha e descarregamento",
|
|
269
269
|
"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",
|
|
270
270
|
"OpenStreetMap": "OpenStreetMap",
|
|
271
271
|
"Optional intensity property for heatmap": "Propriedade opcional da intensidade do mapa térmico",
|
|
272
272
|
"Optional. Same as color if not set.": "Opcional. Igual à cor se não for definido.",
|
|
273
273
|
"Optional.": "Opcional.",
|
|
274
|
-
"Override clustering radius (default 80)": "Sobrepor raio do aglomerado (padrão 80)",
|
|
275
|
-
"Override heatmap radius (default 25)": "Sobrepor raio do mapa térmico (padrão
|
|
274
|
+
"Override clustering radius (default 80)": "Sobrepor raio do aglomerado (padrão: 80)",
|
|
275
|
+
"Override heatmap radius (default 25)": "Sobrepor raio do mapa térmico (padrão: 25)",
|
|
276
276
|
"parent window": "janela pai",
|
|
277
277
|
"Paste your data here": "Cole aqui os seus dados",
|
|
278
|
-
"Permalink": "
|
|
279
|
-
"Permanent credits background": "
|
|
280
|
-
"Permanent credits": "
|
|
281
|
-
"Please be sure the licence is compliant with your use.": "
|
|
282
|
-
"Please choose a format": "
|
|
283
|
-
"Please enter the name of the property": "
|
|
284
|
-
"Please enter the new name of this property": "
|
|
285
|
-
"Please save the map first": "
|
|
278
|
+
"Permalink": "Hiperligação permanente",
|
|
279
|
+
"Permanent credits background": "Fundo dos créditos permanentes",
|
|
280
|
+
"Permanent credits": "Créditos permanentes",
|
|
281
|
+
"Please be sure the licence is compliant with your use.": "Confirme que a utilização está conforme a licença.",
|
|
282
|
+
"Please choose a format": "Escolha um formato",
|
|
283
|
+
"Please enter the name of the property": "Introduza o nome da propriedade",
|
|
284
|
+
"Please enter the new name of this property": "Introduza um novo nome desta propriedade",
|
|
285
|
+
"Please save the map first": "Guarde primeiro o mapa",
|
|
286
286
|
"Popup (large)": "Popup (largo)",
|
|
287
287
|
"Popup content style": "Estilo do conteúdo do popup",
|
|
288
288
|
"Popup content template": "Modelo de conteúdo do popup",
|
|
289
289
|
"Popup shape": "Forma do popup",
|
|
290
290
|
"Popup": "Popup",
|
|
291
|
-
"Powered by uMap": "
|
|
291
|
+
"Powered by uMap": "Utilizado com uMap",
|
|
292
292
|
"previous": "anterior",
|
|
293
|
-
"Problem in the response": "
|
|
293
|
+
"Problem in the response": "Problema na resposta",
|
|
294
294
|
"Properties imported:": "Propriedades importadas:",
|
|
295
295
|
"Provide an URL here": "Forneça um URL aqui",
|
|
296
296
|
"Proxy request": "Pedido proxy",
|
|
297
|
-
"Quantiles": "
|
|
298
|
-
"Recent": "
|
|
297
|
+
"Quantiles": "Quantis",
|
|
298
|
+
"Recent": "Recente",
|
|
299
299
|
"Remote data": "Dados remotos",
|
|
300
300
|
"Remove shape from the multi": "Remover forma do multi",
|
|
301
301
|
"Replace layer content": "Substituir o conteúdo da camada",
|
|
302
302
|
"Restore this version": "Restaurar esta versão",
|
|
303
|
-
"Save current edits": "
|
|
304
|
-
"Save map": "
|
|
305
|
-
"Save this center and zoom": "
|
|
306
|
-
"Save this location as new feature": "
|
|
307
|
-
"Save": "
|
|
308
|
-
"Saved center and zoom": "
|
|
303
|
+
"Save current edits": "Guardar edições atuais",
|
|
304
|
+
"Save map": "Guardar mapa",
|
|
305
|
+
"Save this center and zoom": "Guardar este centro e aproximar",
|
|
306
|
+
"Save this location as new feature": "Guardar esta localização como novo elemento",
|
|
307
|
+
"Save": "Guardar",
|
|
308
|
+
"Saved center and zoom": "Guardar centro e aproximar",
|
|
309
309
|
"Search location": "Procurar localização",
|
|
310
|
-
"Search": "
|
|
311
|
-
"Secret edit link:": "
|
|
312
|
-
"See full screen": "Ver
|
|
313
|
-
"See on OpenStreetMap": "
|
|
310
|
+
"Search": "Procurar",
|
|
311
|
+
"Secret edit link:": "Hiperligação secreta de edição:",
|
|
312
|
+
"See full screen": "Ver ecrã inteiro",
|
|
313
|
+
"See on OpenStreetMap": "Ver no OpenStreetMap",
|
|
314
314
|
"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…",
|
|
315
|
-
"settings": "
|
|
315
|
+
"settings": "definições",
|
|
316
316
|
"Shape properties": "Propriedades de formas geométricas",
|
|
317
|
-
"Share and download": "
|
|
318
|
-
"Share this link to open a customized map view": "
|
|
317
|
+
"Share and download": "Partilhar e descarregar",
|
|
318
|
+
"Share this link to open a customized map view": "Partilhar esta hiperligação para abrir uma vista de mapa personalizada",
|
|
319
319
|
"Short credits": "Créditos resumidos",
|
|
320
|
-
"Short link": "
|
|
321
|
-
"Show this layer in the caption": "
|
|
322
|
-
"Show/hide layer": "Mostrar/ocultar camada",
|
|
320
|
+
"Short link": "Hiperligação curta",
|
|
321
|
+
"Show this layer in the caption": "Mostrar esta camada na legenda",
|
|
322
|
+
"Show/hide layer": "Mostrar / ocultar camada",
|
|
323
323
|
"Side panel": "Painel lateral",
|
|
324
|
-
"Simple link: [[http://example.com]]": "
|
|
324
|
+
"Simple link: [[http://example.com]]": "Hiperligação simples: [[http://exemplo.com]]",
|
|
325
325
|
"Simplify": "Simplificar",
|
|
326
326
|
"Skipping unknown geometry.type: {type}": "A ignorar tipo de geometria desconhecido: {type}",
|
|
327
327
|
"Slideshow": "Apresentação",
|
|
328
328
|
"Sort key": "Chave de ordenação",
|
|
329
329
|
"Split line": "Linha de separação",
|
|
330
|
-
"Star this map": "
|
|
330
|
+
"Star this map": "Marcar o mapa como favorito",
|
|
331
331
|
"Start a hole here": "Começar um buraco aqui",
|
|
332
332
|
"Start slideshow": "Iniciar apresentação",
|
|
333
333
|
"Stop editing": "Parar edição",
|
|
334
334
|
"Stop slideshow": "Parar apresentação",
|
|
335
|
-
"Street": "
|
|
335
|
+
"Street": "Rua",
|
|
336
336
|
"stroke": "traço",
|
|
337
337
|
"Supported scheme": "Esquema suportado",
|
|
338
338
|
"Supported variables that will be dynamically replaced": "Variáveis suportadas que serão substituídas de forma dinâmica",
|
|
339
|
-
"Symbol": "
|
|
339
|
+
"Symbol": "Símbolo",
|
|
340
340
|
"Table": "Tabela",
|
|
341
341
|
"Text color for the cluster label": "Cor do texto para a etiqueta do aglomerado",
|
|
342
342
|
"Text formatting": "Formatação do texto",
|
|
343
|
-
"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}\")": "
|
|
344
|
-
"The name of the property to use as feature unique identifier.": "
|
|
345
|
-
"The zoom and center have been modified.": "
|
|
343
|
+
"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}”)",
|
|
344
|
+
"The name of the property to use as feature unique identifier.": "O nome da propriedade a utilizar como identificador único da caraterística.",
|
|
345
|
+
"The zoom and center have been modified.": "O zoom e o centro foram alterados.",
|
|
346
346
|
"TMS format": "Formato TMS",
|
|
347
347
|
"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)",
|
|
348
348
|
"To zoom": "Ao zoom",
|
|
349
|
-
"Toggle edit mode (⇧+Click)": "
|
|
350
|
-
"Toggle edit mode": "
|
|
349
|
+
"Toggle edit mode (⇧+Click)": "Alternar o modo de edição (⇧+clique)",
|
|
350
|
+
"Toggle edit mode": "Alternar modo de edição",
|
|
351
351
|
"Transfer shape to edited feature": "Transferir a forma geométrica para o elemento editado",
|
|
352
352
|
"Transform to lines": "Transformar em linha",
|
|
353
353
|
"Transform to polygon": "Transformar em polígono",
|
|
354
|
-
"Type a place name or coordinates": "
|
|
355
|
-
"Type char or paste emoji": "
|
|
354
|
+
"Type a place name or coordinates": "Introduzir um nome de local ou coordenadas",
|
|
355
|
+
"Type char or paste emoji": "Introduzir um caractere ou colar um emoji",
|
|
356
356
|
"Type of layer": "Tipo de camada",
|
|
357
357
|
"Unable to detect format of file {filename}": "Não foi possível detetar o formato do ficheiro {filename}",
|
|
358
358
|
"Untitled layer": "Camada sem nome",
|
|
359
359
|
"Untitled map": "Mapa sem nome",
|
|
360
360
|
"Update permissions and editors": "Alterar permisões e editores",
|
|
361
361
|
"Update permissions": "Permissões de atualização",
|
|
362
|
-
"Update who can see and edit the map": "
|
|
362
|
+
"Update who can see and edit the map": "Atualizar quem pode ver e editar o mapa",
|
|
363
363
|
"Url": "URL",
|
|
364
364
|
"URL": "URL",
|
|
365
365
|
"Use current bounds": "Usar extremos atuais",
|
|
366
366
|
"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.",
|
|
367
367
|
"User content credits": "Créditos do conteúdo do utilizador",
|
|
368
368
|
"User interface options": "Opções da interface de utilizador",
|
|
369
|
-
"User location": "
|
|
370
|
-
"Verify remote URL": "
|
|
369
|
+
"User location": "Localização do utilizador",
|
|
370
|
+
"Verify remote URL": "Verificar URL remoto",
|
|
371
371
|
"Versions": "Versões",
|
|
372
|
-
"View Fullscreen": "Ver
|
|
373
|
-
"View": "
|
|
374
|
-
"Visibility: {status}": "
|
|
372
|
+
"View Fullscreen": "Ver ecrã inteiro",
|
|
373
|
+
"View": "Ver",
|
|
374
|
+
"Visibility: {status}": "Visibilidade: {status}",
|
|
375
375
|
"weight": "espessura",
|
|
376
376
|
"Where do we go from here?": "Para onde vamos a partir daqui?",
|
|
377
377
|
"Whether to display or not polygons paths.": "Se mostrar ou não os caminhos dos polígonos.",
|
|
378
378
|
"Whether to fill polygons with color.": "Se mostrar ou não os polígonos preenchidos a cor.",
|
|
379
|
-
"Who can edit \"{layer}\"": "
|
|
379
|
+
"Who can edit \"{layer}\"": "Quem pode editar \"{layer}\"",
|
|
380
380
|
"Who can edit": "Quem pode editar",
|
|
381
381
|
"Who can view": "Quem pode ver",
|
|
382
382
|
"width": "largura",
|
|
383
383
|
"Will be displayed in the bottom right corner of the map": "Será mostrado no fundo à direita do mapa",
|
|
384
|
-
"Will be permanently visible in the bottom left corner of the map": "
|
|
384
|
+
"Will be permanently visible in the bottom left corner of the map": "Estará permanentemente visível no canto inferior esquerdo do mapa",
|
|
385
385
|
"Will be visible in the caption of the map": "Será visível no cabeçalho do mapa",
|
|
386
386
|
"yes": "sim",
|
|
387
387
|
"Zoom in": "Aproximar",
|
|
@@ -392,7 +392,7 @@ const locale = {
|
|
|
392
392
|
"Zoom to the previous": "Aproximar para o anterior",
|
|
393
393
|
"Zoom to this feature": "Aproximar a este elemento",
|
|
394
394
|
"Zoom to this place": "Aproximar para este local",
|
|
395
|
-
"{area} acres": "{area}
|
|
395
|
+
"{area} acres": "{area} hectares",
|
|
396
396
|
"{area} ha": "{area} ha",
|
|
397
397
|
"{area} m²": "{area} m²",
|
|
398
398
|
"{area} mi²": "{area} mi²",
|
|
@@ -401,104 +401,104 @@ const locale = {
|
|
|
401
401
|
"{delay} seconds": "{delay} segundos",
|
|
402
402
|
"{distance} km": "{distance} km",
|
|
403
403
|
"{distance} m": "{distance} m",
|
|
404
|
-
"{distance} miles": "{distance}
|
|
404
|
+
"{distance} miles": "{distance} milhas",
|
|
405
405
|
"{distance} NM": "{distance} NM",
|
|
406
406
|
"{distance} yd": "{distance} yd",
|
|
407
|
-
"Edit map name and caption": "
|
|
408
|
-
"Map advanced properties": "
|
|
409
|
-
"Edit map details": "
|
|
410
|
-
"Back to browser": "
|
|
411
|
-
"Toggle size": "
|
|
412
|
-
"Display the caption control": "
|
|
407
|
+
"Edit map name and caption": "Editar o nome e a legenda do mapa",
|
|
408
|
+
"Map advanced properties": "Propriedades avançadas do mapa",
|
|
409
|
+
"Edit map details": "Editar detalhes do mapa",
|
|
410
|
+
"Back to browser": "Voltar ao navegador",
|
|
411
|
+
"Toggle size": "Alternar tamanho",
|
|
412
|
+
"Display the caption control": "Mostrar o controlo de legendas",
|
|
413
413
|
"<empty value>": "<empty value>",
|
|
414
|
-
"Min": "
|
|
415
|
-
"Max": "
|
|
416
|
-
"From": "
|
|
417
|
-
"Until": "
|
|
418
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "
|
|
419
|
-
"Edit in OpenStreetMap": "
|
|
420
|
-
"Cannot determine latitude and longitude columns.": "
|
|
421
|
-
"Back to layers": "
|
|
422
|
-
"Filters": "
|
|
423
|
-
"Comma separated list of properties to use when filtering features by text input": "
|
|
424
|
-
"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.": "
|
|
425
|
-
"Search keys": "
|
|
426
|
-
"Filters keys": "
|
|
427
|
-
"Filter data": "
|
|
428
|
-
"Search map features…": "
|
|
429
|
-
"Reset all": "
|
|
430
|
-
"Open browser": "
|
|
431
|
-
"Open caption": "
|
|
432
|
-
"Your map has been created with an anonymous account!": "
|
|
433
|
-
"Real-time collaboration": "
|
|
434
|
-
"Cannot parse data": "
|
|
435
|
-
"Start typing...": "
|
|
436
|
-
"No result": "
|
|
437
|
-
"Data browser": "
|
|
438
|
-
"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.": "
|
|
439
|
-
"Overpass supported expressions": "
|
|
440
|
-
"key (eg. building)": "
|
|
441
|
-
"!key (eg. !name)": "!
|
|
442
|
-
"key=value (eg. building=yes)": "
|
|
443
|
-
"key!=value (eg. building!=yes)": "
|
|
444
|
-
"key~value (eg. name~Grisy)": "
|
|
445
|
-
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "
|
|
446
|
-
"More info about Overpass syntax": "
|
|
447
|
-
"For more complex needs, see": "
|
|
448
|
-
"Choose data": "
|
|
449
|
-
"Import helpers:": "
|
|
450
|
-
"Choose the format": "
|
|
451
|
-
"Choose the layer": "
|
|
452
|
-
"Layer name": "
|
|
453
|
-
"Choose import mode": "
|
|
454
|
-
"Copy into the layer": "
|
|
455
|
-
"Link to the layer as remote data": "
|
|
456
|
-
"Condition": "
|
|
457
|
-
"key=value or key!=value": "
|
|
458
|
-
"Are you sure you want to delete this rule?": "
|
|
459
|
-
"empty rule": "
|
|
460
|
-
"Conditional style rules": "
|
|
461
|
-
"Add rule": "
|
|
462
|
-
"Browser: data": "
|
|
463
|
-
"Browser: layers": "
|
|
464
|
-
"Browser: filters": "
|
|
465
|
-
"Enable real-time collaboration": "
|
|
466
|
-
"✅ Copied!": "✅
|
|
467
|
-
"Choose a dataset": "
|
|
468
|
-
"Choose this dataset": "
|
|
469
|
-
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine:
|
|
470
|
-
"Choose a theme": "
|
|
471
|
-
"Symplify all geometries to points": "
|
|
472
|
-
"Choose this data": "
|
|
473
|
-
"Search admin boundary": "
|
|
474
|
-
"Please choose a theme and a boundary first.": "
|
|
475
|
-
"Expression": "
|
|
476
|
-
"Geometry mode": "
|
|
477
|
-
"Only geometry centers": "
|
|
478
|
-
"Search area": "
|
|
479
|
-
"Type area name, or let empty to load data in current map view": "
|
|
480
|
-
"Data successfully imported!": "
|
|
481
|
-
"My Dashboard ({username})": "
|
|
482
|
-
"Clear data": "
|
|
483
|
-
"Remove layers": "
|
|
484
|
-
"Categorized": "
|
|
485
|
-
"Alphabetical": "
|
|
486
|
-
"Category property": "
|
|
487
|
-
"Color palette": "
|
|
488
|
-
"Categories": "
|
|
489
|
-
"Comma separated list of categories.": "
|
|
490
|
-
"Categories mode": "
|
|
491
|
-
"Remove filter for this column": "
|
|
492
|
-
"Add filter for this column": "
|
|
493
|
-
"Rename this column": "
|
|
494
|
-
"Delete this column": "
|
|
495
|
-
"Name “{name}” should not contain a dot.": "
|
|
496
|
-
"This name already exists: “{name}”": "
|
|
497
|
-
"Delete selected rows": "
|
|
498
|
-
"Found {count} rows. Are you sure you want to delete all?": "
|
|
499
|
-
"Expression is empty": "
|
|
414
|
+
"Min": "Mín",
|
|
415
|
+
"Max": "Máx",
|
|
416
|
+
"From": "De",
|
|
417
|
+
"Until": "Até",
|
|
418
|
+
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Exemplo: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
419
|
+
"Edit in OpenStreetMap": "Editar no OpenStreetMap",
|
|
420
|
+
"Cannot determine latitude and longitude columns.": "Não é possível determinar as colunas de latitude e longitude.",
|
|
421
|
+
"Back to layers": "Voltar às camadas",
|
|
422
|
+
"Filters": "Filtros",
|
|
423
|
+
"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",
|
|
424
|
+
"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|MyKey,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.",
|
|
425
|
+
"Search keys": "Pesquisar chaves",
|
|
426
|
+
"Filters keys": "Filtrar chaves",
|
|
427
|
+
"Filter data": "Filtrar dados",
|
|
428
|
+
"Search map features…": "Pesquisar elementos do mapa…",
|
|
429
|
+
"Reset all": "Repor tudo",
|
|
430
|
+
"Open browser": "Abrir navegador",
|
|
431
|
+
"Open caption": "Abrir legenda",
|
|
432
|
+
"Your map has been created with an anonymous account!": "O seu mapa foi criado com uma conta anónima!",
|
|
433
|
+
"Real-time collaboration": "Colaboração em tempo real",
|
|
434
|
+
"Cannot parse data": "Não é possível analisar os dados",
|
|
435
|
+
"Start typing...": "Começar a escrever...",
|
|
436
|
+
"No result": "Nenhum resultado",
|
|
437
|
+
"Data browser": "Navegador de dados",
|
|
438
|
+
"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.",
|
|
439
|
+
"Overpass supported expressions": "Expressões suportadas do Overpass",
|
|
440
|
+
"key (eg. building)": "chave (por exemplo building)",
|
|
441
|
+
"!key (eg. !name)": "!chave (por exemplo !name)",
|
|
442
|
+
"key=value (eg. building=yes)": "chave=valor (por exemplo building=yes)",
|
|
443
|
+
"key!=value (eg. building!=yes)": "chave!=valor (por exemplo building!=yes)",
|
|
444
|
+
"key~value (eg. name~Grisy)": "chave~valor (por exemplo name~Grisy)",
|
|
445
|
+
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "chave=\"valor|valor2\" (por exemplo name=\"Lisboa|Berlim\")",
|
|
446
|
+
"More info about Overpass syntax": "Mais informações sobre a sintaxe do Overpass",
|
|
447
|
+
"For more complex needs, see": "Para necessidades mais complexas, ver",
|
|
448
|
+
"Choose data": "Selecionar dados",
|
|
449
|
+
"Import helpers:": "Ajudantes de importação:",
|
|
450
|
+
"Choose the format": "Selecionar o formato",
|
|
451
|
+
"Choose the layer": "Selecionar a camada",
|
|
452
|
+
"Layer name": "Nome da camada",
|
|
453
|
+
"Choose import mode": "Selecionar o modo de importação",
|
|
454
|
+
"Copy into the layer": "Copiar para a camada",
|
|
455
|
+
"Link to the layer as remote data": "Hiperligação para camada como dados remotos",
|
|
456
|
+
"Condition": "Condição",
|
|
457
|
+
"key=value or key!=value": "chave=valor ou chave!=valor",
|
|
458
|
+
"Are you sure you want to delete this rule?": "Tem a certeza de que pretende eliminar esta regra?",
|
|
459
|
+
"empty rule": "Regra vazia",
|
|
460
|
+
"Conditional style rules": "Regras de estilo condicionais",
|
|
461
|
+
"Add rule": "Adicionar regra",
|
|
462
|
+
"Browser: data": "Navegador: dados",
|
|
463
|
+
"Browser: layers": "Navegador: camadas",
|
|
464
|
+
"Browser: filters": "Navegador: filtros",
|
|
465
|
+
"Enable real-time collaboration": "Ativar a colaboração em tempo real",
|
|
466
|
+
"✅ Copied!": "✅ Copiado!",
|
|
467
|
+
"Choose a dataset": "Escolher um conjunto de dados",
|
|
468
|
+
"Choose this dataset": "Escolher este conjunto de dados",
|
|
469
|
+
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: dados temáticos do OpenStreetMap",
|
|
470
|
+
"Choose a theme": "Escolher um tema",
|
|
471
|
+
"Symplify all geometries to points": "Simplificar todas as geometrias para pontos",
|
|
472
|
+
"Choose this data": "Escolher estes dados",
|
|
473
|
+
"Search admin boundary": "Pesquisar limites administrativos",
|
|
474
|
+
"Please choose a theme and a boundary first.": "Escolha primeiro um tema e um limite.",
|
|
475
|
+
"Expression": "Expressão",
|
|
476
|
+
"Geometry mode": "Modo de geometria",
|
|
477
|
+
"Only geometry centers": "Apenas centros de geometria",
|
|
478
|
+
"Search area": "Pesquisar área",
|
|
479
|
+
"Type area name, or let empty to load data in current map view": "Introduzir o nome da área ou deixar em branco para carregar os dados na vista de mapa atual",
|
|
480
|
+
"Data successfully imported!": "Dados importados com sucesso!",
|
|
481
|
+
"My Dashboard ({username})": "O meu painel de controlo ({username})",
|
|
482
|
+
"Clear data": "Limpar dados",
|
|
483
|
+
"Remove layers": "Remover camadas",
|
|
484
|
+
"Categorized": "Categorizado",
|
|
485
|
+
"Alphabetical": "Por ordem alfabética",
|
|
486
|
+
"Category property": "Categoria da propriedade",
|
|
487
|
+
"Color palette": "Paleta de cores",
|
|
488
|
+
"Categories": "Categorias",
|
|
489
|
+
"Comma separated list of categories.": "Lista de categorias separada por vírgulas.",
|
|
490
|
+
"Categories mode": "Modo de categorias",
|
|
491
|
+
"Remove filter for this column": "Remover filtro para esta coluna",
|
|
492
|
+
"Add filter for this column": "Adicionar filtro para esta coluna",
|
|
493
|
+
"Rename this column": "Mudar o nome desta coluna",
|
|
494
|
+
"Delete this column": "Eliminar esta coluna",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "O nome “{name}” não deve conter um ponto.",
|
|
496
|
+
"This name already exists: “{name}”": "Este nome já existe: “{name}”",
|
|
497
|
+
"Delete selected rows": "Eliminar as linhas selecionadas",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Foram encontradas {count} linhas. Tem a certeza de que pretende apagar todas?",
|
|
499
|
+
"Expression is empty": "A expressão está vazia",
|
|
500
500
|
"OK": "OK",
|
|
501
|
-
"Cancel": "
|
|
501
|
+
"Cancel": "Cancelar"
|
|
502
502
|
}
|
|
503
503
|
L.registerLocale("pt_PT", locale)
|
|
504
504
|
L.setLocale("pt_PT")
|