umap-project 2.5.0__py3-none-any.whl → 2.6.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/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 +347 -235
- 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 +9 -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 +8 -12
- 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 +993 -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/importers/overpass.js +22 -8
- 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 +610 -0
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/js/modules/schema.js +25 -1
- 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 +80 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +41 -17
- umap/static/umap/js/umap.js +72 -65
- umap/static/umap/locale/am_ET.js +8 -2
- umap/static/umap/locale/am_ET.json +8 -2
- umap/static/umap/locale/ar.js +8 -2
- umap/static/umap/locale/ar.json +8 -2
- umap/static/umap/locale/ast.js +8 -2
- umap/static/umap/locale/ast.json +8 -2
- umap/static/umap/locale/bg.js +8 -2
- umap/static/umap/locale/bg.json +8 -2
- umap/static/umap/locale/br.js +42 -36
- umap/static/umap/locale/br.json +42 -36
- umap/static/umap/locale/ca.js +67 -61
- umap/static/umap/locale/ca.json +67 -61
- umap/static/umap/locale/cs_CZ.js +8 -2
- umap/static/umap/locale/cs_CZ.json +8 -2
- umap/static/umap/locale/da.js +8 -2
- umap/static/umap/locale/da.json +8 -2
- umap/static/umap/locale/de.js +143 -137
- umap/static/umap/locale/de.json +143 -137
- umap/static/umap/locale/el.js +54 -48
- umap/static/umap/locale/el.json +54 -48
- umap/static/umap/locale/en.js +10 -2
- umap/static/umap/locale/en.json +10 -2
- umap/static/umap/locale/en_US.json +8 -2
- umap/static/umap/locale/es.js +8 -2
- umap/static/umap/locale/es.json +8 -2
- umap/static/umap/locale/et.js +8 -2
- umap/static/umap/locale/et.json +8 -2
- umap/static/umap/locale/eu.js +346 -338
- umap/static/umap/locale/eu.json +346 -338
- umap/static/umap/locale/fa_IR.js +415 -407
- umap/static/umap/locale/fa_IR.json +415 -407
- umap/static/umap/locale/fi.js +8 -2
- umap/static/umap/locale/fi.json +8 -2
- umap/static/umap/locale/fr.js +11 -3
- umap/static/umap/locale/fr.json +11 -3
- umap/static/umap/locale/gl.js +8 -2
- umap/static/umap/locale/gl.json +8 -2
- umap/static/umap/locale/he.js +8 -2
- umap/static/umap/locale/he.json +8 -2
- umap/static/umap/locale/hr.js +8 -2
- umap/static/umap/locale/hr.json +8 -2
- umap/static/umap/locale/hu.js +31 -23
- umap/static/umap/locale/hu.json +31 -23
- umap/static/umap/locale/id.js +8 -2
- umap/static/umap/locale/id.json +8 -2
- umap/static/umap/locale/is.js +8 -2
- umap/static/umap/locale/is.json +8 -2
- umap/static/umap/locale/it.js +8 -2
- umap/static/umap/locale/it.json +8 -2
- umap/static/umap/locale/ja.js +8 -2
- umap/static/umap/locale/ja.json +8 -2
- umap/static/umap/locale/ko.js +8 -2
- umap/static/umap/locale/ko.json +8 -2
- umap/static/umap/locale/lt.js +8 -2
- umap/static/umap/locale/lt.json +8 -2
- umap/static/umap/locale/ms.js +8 -2
- umap/static/umap/locale/ms.json +8 -2
- umap/static/umap/locale/nl.js +8 -2
- umap/static/umap/locale/nl.json +8 -2
- umap/static/umap/locale/no.js +8 -2
- umap/static/umap/locale/no.json +8 -2
- umap/static/umap/locale/pl.js +54 -48
- umap/static/umap/locale/pl.json +54 -48
- umap/static/umap/locale/pl_PL.json +8 -2
- umap/static/umap/locale/pt.js +24 -18
- umap/static/umap/locale/pt.json +24 -18
- umap/static/umap/locale/pt_BR.js +8 -2
- umap/static/umap/locale/pt_BR.json +8 -2
- umap/static/umap/locale/pt_PT.js +214 -208
- umap/static/umap/locale/pt_PT.json +214 -208
- umap/static/umap/locale/ro.js +8 -2
- umap/static/umap/locale/ro.json +8 -2
- umap/static/umap/locale/ru.js +8 -2
- umap/static/umap/locale/ru.json +8 -2
- umap/static/umap/locale/sk_SK.js +8 -2
- umap/static/umap/locale/sk_SK.json +8 -2
- umap/static/umap/locale/sl.js +8 -2
- umap/static/umap/locale/sl.json +8 -2
- umap/static/umap/locale/sr.js +8 -2
- umap/static/umap/locale/sr.json +8 -2
- umap/static/umap/locale/sv.js +8 -2
- umap/static/umap/locale/sv.json +8 -2
- umap/static/umap/locale/th_TH.js +33 -27
- umap/static/umap/locale/th_TH.json +33 -27
- umap/static/umap/locale/tr.js +8 -2
- umap/static/umap/locale/tr.json +8 -2
- umap/static/umap/locale/uk_UA.js +8 -2
- umap/static/umap/locale/uk_UA.json +8 -2
- umap/static/umap/locale/vi.js +8 -2
- umap/static/umap/locale/vi.json +8 -2
- umap/static/umap/locale/vi_VN.json +8 -2
- umap/static/umap/locale/zh.js +8 -2
- umap/static/umap/locale/zh.json +8 -2
- umap/static/umap/locale/zh_CN.json +8 -2
- umap/static/umap/locale/zh_TW.Big5.json +8 -2
- umap/static/umap/locale/zh_TW.js +102 -96
- umap/static/umap/locale/zh_TW.json +102 -96
- umap/static/umap/map.css +111 -108
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/storage.py +4 -3
- 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 +7 -3
- 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 +6 -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_browser.py +20 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +138 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +3 -3
- umap/tests/integration/test_import.py +124 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_querystring.py +7 -0
- 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.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
- 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.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.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,51 +77,50 @@ 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",
|
|
115
115
|
"display name": "mostrar nome",
|
|
116
116
|
"Display on load": "Mostrar ao carregar",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Mostrar o controlo para abrir o editor OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "Mostrar o controlo das camadas de dados",
|
|
119
118
|
"Display the embed control": "Mostrar o controlo de embeber",
|
|
120
119
|
"Display the fullscreen control": "Mostrar o controlo de ecrã total",
|
|
121
120
|
"Display the locate control": "Mostrar o controlo de localizar",
|
|
122
121
|
"Display the measure control": "Mostrar o controlo de medição",
|
|
123
122
|
"Display the search control": "Mostrar o controlo de pesquisa",
|
|
124
|
-
"Display the star map button": "
|
|
123
|
+
"Display the star map button": "Mostrar o botão de marcar como favorito",
|
|
125
124
|
"Display the tile layers control": "Mostrar o controlo de camadas de telas",
|
|
126
125
|
"Display the zoom control": "Mostrar o controlo de aproximar e afastar (zoom)",
|
|
127
126
|
"Do you want to display a caption bar?": "Mostrar uma barra de cabeçalho?",
|
|
@@ -136,40 +135,40 @@ const locale = {
|
|
|
136
135
|
"Draw a marker": "Desenhar um marco",
|
|
137
136
|
"Draw a polygon": "Desenhar um polígono",
|
|
138
137
|
"Draw a polyline": "Desenhar uma polilinha",
|
|
139
|
-
"Drawing": "
|
|
138
|
+
"Drawing": "Desenho",
|
|
140
139
|
"Drop": "Comum",
|
|
141
140
|
"Dynamic properties": "Propriedades dinâmicas",
|
|
142
141
|
"Dynamic": "Dinâmico",
|
|
143
142
|
"Edit feature's layer": "Editar camada do elemento",
|
|
144
143
|
"Edit properties in a table": "Editar propriedades numa tabela",
|
|
145
|
-
"Edit the title of the map": "
|
|
144
|
+
"Edit the title of the map": "Editar o título do mapa",
|
|
146
145
|
"Edit this feature": "Editar este elemento",
|
|
147
146
|
"Edit": "Editar",
|
|
148
|
-
"Embed and link options": "
|
|
147
|
+
"Embed and link options": "Opções de incorporação e hiperligação",
|
|
149
148
|
"Embed the map": "Embeber o mapa",
|
|
150
|
-
"Emoji & Character": "Emoji
|
|
149
|
+
"Emoji & Character": "Emoji e caracteres",
|
|
151
150
|
"Empty": "Vazio",
|
|
152
|
-
"Equidistant": "
|
|
153
|
-
"Error in the overlay URL": "
|
|
151
|
+
"Equidistant": "Equidistante",
|
|
152
|
+
"Error in the overlay URL": "Erro no URL da sobreposição",
|
|
154
153
|
"Error in the tilelayer URL": "Erro no URL de telas",
|
|
155
|
-
"Exit Fullscreen": "Sair
|
|
154
|
+
"Exit Fullscreen": "Sair do ecrã inteiro",
|
|
156
155
|
"expanded": "expandido",
|
|
157
156
|
"Extract shape to separate feature": "Extrair forma geométrica para separar o elemento",
|
|
158
|
-
"Feature identifier key": "
|
|
159
|
-
"Feature properties": "
|
|
157
|
+
"Feature identifier key": "Chave de identificação do elemento",
|
|
158
|
+
"Feature properties": "Propriedades do elemento",
|
|
160
159
|
"Fetch data each time map view changes.": "Processar dados cada vez que o mapa é alterado.",
|
|
161
160
|
"fill color": "cor do preenchimento",
|
|
162
161
|
"fill opacity": "opacidade do preenchimento",
|
|
163
162
|
"fill": "preenchimento",
|
|
164
|
-
"Fit all data": "
|
|
163
|
+
"Fit all data": "Ajustar todos os dados",
|
|
165
164
|
"Format": "Formato",
|
|
166
165
|
"From zoom": "Do zoom",
|
|
167
|
-
"full backup": "
|
|
168
|
-
"Generic": "
|
|
169
|
-
"GeoRSS (only link)": "GeoRSS (apenas
|
|
166
|
+
"full backup": "cópia de segurança completa",
|
|
167
|
+
"Generic": "Genérico",
|
|
168
|
+
"GeoRSS (only link)": "GeoRSS (apenas a hiperligação)",
|
|
170
169
|
"GeoRSS (title + image)": "GeoRSS (título + imagem)",
|
|
171
|
-
"Go to \"{coords}\"": "
|
|
172
|
-
"Go to the homepage": "
|
|
170
|
+
"Go to \"{coords}\"": "Ir para \"{coords}\"",
|
|
171
|
+
"Go to the homepage": "Ir para a página inicial",
|
|
173
172
|
"Go to «{feature}»": "Ir a «{feature}»",
|
|
174
173
|
"Heatmap intensity property": "Propriedade da intensidade do mapa térmico",
|
|
175
174
|
"Heatmap radius": "Raio do mapa térmico",
|
|
@@ -180,10 +179,10 @@ const locale = {
|
|
|
180
179
|
"Hide controls": "Ocultar controlos",
|
|
181
180
|
"Home": "Início",
|
|
182
181
|
"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": "
|
|
182
|
+
"icon opacity": "opacidade do ícone",
|
|
184
183
|
"Icon shape": "Forma do ícone",
|
|
185
184
|
"Icon symbol": "Símbolo do ícone",
|
|
186
|
-
"If false, the polygon or line will act as a part of the underlying map.": "
|
|
185
|
+
"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
186
|
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe com altura personalizada (em px): {{{http://iframe.url.com|height}}}",
|
|
188
187
|
"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
188
|
"iframe": "iframe",
|
|
@@ -193,7 +192,7 @@ const locale = {
|
|
|
193
192
|
"Import data": "Importar dados",
|
|
194
193
|
"Import in a new layer": "Importar uma nova camada",
|
|
195
194
|
"Imports all umap data, including layers and settings.": "Importa todos os dados uMap, incluindo camadas e definições.",
|
|
196
|
-
"Include full screen link?": "Incluir
|
|
195
|
+
"Include full screen link?": "Incluir a hiperligação para o ecrã completo?",
|
|
197
196
|
"Inherit": "Herdado",
|
|
198
197
|
"inherit": "herdado",
|
|
199
198
|
"Interaction options": "Opções de interação",
|
|
@@ -208,16 +207,16 @@ const locale = {
|
|
|
208
207
|
"Label direction": "Direção da etiqueta",
|
|
209
208
|
"Label key": "Chave da etiqueta",
|
|
210
209
|
"Labels are clickable": "Etiquetas são clicáveis",
|
|
211
|
-
"Latest feature": "
|
|
210
|
+
"Latest feature": "Último elemento",
|
|
212
211
|
"Latitude": "Latitude",
|
|
213
212
|
"Layer properties": "Propriedades da camada",
|
|
214
213
|
"Layer": "Camada",
|
|
215
214
|
"Licence": "Licença",
|
|
216
215
|
"licence": "licença",
|
|
217
216
|
"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]]": "
|
|
217
|
+
"Link to view the map": "Hiperligação para ver o mapa",
|
|
218
|
+
"Link to…": "Hiperligação para…",
|
|
219
|
+
"Link with text: [[http://example.com|text of the link]]": "Hiperligação com texto: [[http://exemplo.com|texto da hiperligação]]",
|
|
221
220
|
"Long credits": "Créditos por extenso",
|
|
222
221
|
"Longitude": "Longitude",
|
|
223
222
|
"Make main shape": "Fazer forma geométrica principal",
|
|
@@ -225,9 +224,9 @@ const locale = {
|
|
|
225
224
|
"Manual": "Manual",
|
|
226
225
|
"Map background credits": "Créditos do fundo do mapa",
|
|
227
226
|
"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": "
|
|
227
|
+
"Map has been saved!": "O mapa foi guardado!",
|
|
228
|
+
"Map has been starred": "O mapa foi marcado como favorito",
|
|
229
|
+
"Map has been unstarred": "O mapa foi desmarcado como favorito",
|
|
231
230
|
"Map user content has been published under licence": "O conteúdo do mapa foi publicado sob a licença",
|
|
232
231
|
"Map's editors": "Editores do mapa",
|
|
233
232
|
"Map's owner": "Proprietário do mapa",
|
|
@@ -255,133 +254,133 @@ const locale = {
|
|
|
255
254
|
"no": "não",
|
|
256
255
|
"No.": "No.",
|
|
257
256
|
"None": "Nenhum",
|
|
258
|
-
"Number of desired classes (default 5)": "
|
|
257
|
+
"Number of desired classes (default 5)": "Número de classes pretendidas (padrão: 5)",
|
|
259
258
|
"On the bottom": "No fundo",
|
|
260
259
|
"On the left": "Na esquerda",
|
|
261
260
|
"On the right": "Na direita",
|
|
262
261
|
"On the top": "No topo",
|
|
263
|
-
"Only visible layers' data": "
|
|
262
|
+
"Only visible layers' data": "Apenas dados de camadas visíveis",
|
|
264
263
|
"opacity": "opacidade",
|
|
265
|
-
"Opacity": "
|
|
266
|
-
"Open current feature on load": "
|
|
267
|
-
"Open link in…": "Abrir
|
|
268
|
-
"Open share & download panel": "
|
|
264
|
+
"Opacity": "Opacidade",
|
|
265
|
+
"Open current feature on load": "Abrir o elemento atual ao carregar",
|
|
266
|
+
"Open link in…": "Abrir hiperligação em…",
|
|
267
|
+
"Open share & download panel": "Abrir painel de partilha e descarregamento",
|
|
269
268
|
"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
269
|
"OpenStreetMap": "OpenStreetMap",
|
|
271
270
|
"Optional intensity property for heatmap": "Propriedade opcional da intensidade do mapa térmico",
|
|
272
271
|
"Optional. Same as color if not set.": "Opcional. Igual à cor se não for definido.",
|
|
273
272
|
"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
|
|
273
|
+
"Override clustering radius (default 80)": "Sobrepor raio do aglomerado (padrão: 80)",
|
|
274
|
+
"Override heatmap radius (default 25)": "Sobrepor raio do mapa térmico (padrão: 25)",
|
|
276
275
|
"parent window": "janela pai",
|
|
277
276
|
"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": "
|
|
277
|
+
"Permalink": "Hiperligação permanente",
|
|
278
|
+
"Permanent credits background": "Fundo dos créditos permanentes",
|
|
279
|
+
"Permanent credits": "Créditos permanentes",
|
|
280
|
+
"Please be sure the licence is compliant with your use.": "Confirme que a utilização está conforme a licença.",
|
|
281
|
+
"Please choose a format": "Escolha um formato",
|
|
282
|
+
"Please enter the name of the property": "Introduza o nome da propriedade",
|
|
283
|
+
"Please enter the new name of this property": "Introduza um novo nome desta propriedade",
|
|
284
|
+
"Please save the map first": "Guarde primeiro o mapa",
|
|
286
285
|
"Popup (large)": "Popup (largo)",
|
|
287
286
|
"Popup content style": "Estilo do conteúdo do popup",
|
|
288
287
|
"Popup content template": "Modelo de conteúdo do popup",
|
|
289
288
|
"Popup shape": "Forma do popup",
|
|
290
289
|
"Popup": "Popup",
|
|
291
|
-
"Powered by uMap": "
|
|
290
|
+
"Powered by uMap": "Utilizado com uMap",
|
|
292
291
|
"previous": "anterior",
|
|
293
|
-
"Problem in the response": "
|
|
292
|
+
"Problem in the response": "Problema na resposta",
|
|
294
293
|
"Properties imported:": "Propriedades importadas:",
|
|
295
294
|
"Provide an URL here": "Forneça um URL aqui",
|
|
296
295
|
"Proxy request": "Pedido proxy",
|
|
297
|
-
"Quantiles": "
|
|
298
|
-
"Recent": "
|
|
296
|
+
"Quantiles": "Quantis",
|
|
297
|
+
"Recent": "Recente",
|
|
299
298
|
"Remote data": "Dados remotos",
|
|
300
299
|
"Remove shape from the multi": "Remover forma do multi",
|
|
301
300
|
"Replace layer content": "Substituir o conteúdo da camada",
|
|
302
301
|
"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": "
|
|
302
|
+
"Save current edits": "Guardar edições atuais",
|
|
303
|
+
"Save map": "Guardar mapa",
|
|
304
|
+
"Save this center and zoom": "Guardar este centro e aproximar",
|
|
305
|
+
"Save this location as new feature": "Guardar esta localização como novo elemento",
|
|
306
|
+
"Save": "Guardar",
|
|
307
|
+
"Saved center and zoom": "Guardar centro e aproximar",
|
|
309
308
|
"Search location": "Procurar localização",
|
|
310
|
-
"Search": "
|
|
311
|
-
"Secret edit link:": "
|
|
312
|
-
"See full screen": "Ver
|
|
313
|
-
"See on OpenStreetMap": "
|
|
309
|
+
"Search": "Procurar",
|
|
310
|
+
"Secret edit link:": "Hiperligação secreta de edição:",
|
|
311
|
+
"See full screen": "Ver ecrã inteiro",
|
|
312
|
+
"See on OpenStreetMap": "Ver no OpenStreetMap",
|
|
314
313
|
"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": "
|
|
314
|
+
"settings": "definições",
|
|
316
315
|
"Shape properties": "Propriedades de formas geométricas",
|
|
317
|
-
"Share and download": "
|
|
318
|
-
"Share this link to open a customized map view": "
|
|
316
|
+
"Share and download": "Partilhar e descarregar",
|
|
317
|
+
"Share this link to open a customized map view": "Partilhar esta hiperligação para abrir uma vista de mapa personalizada",
|
|
319
318
|
"Short credits": "Créditos resumidos",
|
|
320
|
-
"Short link": "
|
|
321
|
-
"Show this layer in the caption": "
|
|
322
|
-
"Show/hide layer": "Mostrar/ocultar camada",
|
|
319
|
+
"Short link": "Hiperligação curta",
|
|
320
|
+
"Show this layer in the caption": "Mostrar esta camada na legenda",
|
|
321
|
+
"Show/hide layer": "Mostrar / ocultar camada",
|
|
323
322
|
"Side panel": "Painel lateral",
|
|
324
|
-
"Simple link: [[http://example.com]]": "
|
|
323
|
+
"Simple link: [[http://example.com]]": "Hiperligação simples: [[http://exemplo.com]]",
|
|
325
324
|
"Simplify": "Simplificar",
|
|
326
325
|
"Skipping unknown geometry.type: {type}": "A ignorar tipo de geometria desconhecido: {type}",
|
|
327
326
|
"Slideshow": "Apresentação",
|
|
328
327
|
"Sort key": "Chave de ordenação",
|
|
329
328
|
"Split line": "Linha de separação",
|
|
330
|
-
"Star this map": "
|
|
329
|
+
"Star this map": "Marcar o mapa como favorito",
|
|
331
330
|
"Start a hole here": "Começar um buraco aqui",
|
|
332
331
|
"Start slideshow": "Iniciar apresentação",
|
|
333
332
|
"Stop editing": "Parar edição",
|
|
334
333
|
"Stop slideshow": "Parar apresentação",
|
|
335
|
-
"Street": "
|
|
334
|
+
"Street": "Rua",
|
|
336
335
|
"stroke": "traço",
|
|
337
336
|
"Supported scheme": "Esquema suportado",
|
|
338
337
|
"Supported variables that will be dynamically replaced": "Variáveis suportadas que serão substituídas de forma dinâmica",
|
|
339
|
-
"Symbol": "
|
|
338
|
+
"Symbol": "Símbolo",
|
|
340
339
|
"Table": "Tabela",
|
|
341
340
|
"Text color for the cluster label": "Cor do texto para a etiqueta do aglomerado",
|
|
342
341
|
"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.": "
|
|
342
|
+
"The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "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}”)",
|
|
343
|
+
"The name of the property to use as feature unique identifier.": "O nome da propriedade a utilizar como identificador único da caraterística.",
|
|
344
|
+
"The zoom and center have been modified.": "O zoom e o centro foram alterados.",
|
|
346
345
|
"TMS format": "Formato TMS",
|
|
347
346
|
"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
347
|
"To zoom": "Ao zoom",
|
|
349
|
-
"Toggle edit mode (⇧+Click)": "
|
|
350
|
-
"Toggle edit mode": "
|
|
348
|
+
"Toggle edit mode (⇧+Click)": "Alternar o modo de edição (⇧+clique)",
|
|
349
|
+
"Toggle edit mode": "Alternar modo de edição",
|
|
351
350
|
"Transfer shape to edited feature": "Transferir a forma geométrica para o elemento editado",
|
|
352
351
|
"Transform to lines": "Transformar em linha",
|
|
353
352
|
"Transform to polygon": "Transformar em polígono",
|
|
354
|
-
"Type a place name or coordinates": "
|
|
355
|
-
"Type char or paste emoji": "
|
|
353
|
+
"Type a place name or coordinates": "Introduzir um nome de local ou coordenadas",
|
|
354
|
+
"Type char or paste emoji": "Introduzir um caractere ou colar um emoji",
|
|
356
355
|
"Type of layer": "Tipo de camada",
|
|
357
356
|
"Unable to detect format of file {filename}": "Não foi possível detetar o formato do ficheiro {filename}",
|
|
358
357
|
"Untitled layer": "Camada sem nome",
|
|
359
358
|
"Untitled map": "Mapa sem nome",
|
|
360
359
|
"Update permissions and editors": "Alterar permisões e editores",
|
|
361
360
|
"Update permissions": "Permissões de atualização",
|
|
362
|
-
"Update who can see and edit the map": "
|
|
361
|
+
"Update who can see and edit the map": "Atualizar quem pode ver e editar o mapa",
|
|
363
362
|
"Url": "URL",
|
|
364
363
|
"URL": "URL",
|
|
365
364
|
"Use current bounds": "Usar extremos atuais",
|
|
366
365
|
"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
366
|
"User content credits": "Créditos do conteúdo do utilizador",
|
|
368
367
|
"User interface options": "Opções da interface de utilizador",
|
|
369
|
-
"User location": "
|
|
370
|
-
"Verify remote URL": "
|
|
368
|
+
"User location": "Localização do utilizador",
|
|
369
|
+
"Verify remote URL": "Verificar URL remoto",
|
|
371
370
|
"Versions": "Versões",
|
|
372
|
-
"View Fullscreen": "Ver
|
|
373
|
-
"View": "
|
|
374
|
-
"Visibility: {status}": "
|
|
371
|
+
"View Fullscreen": "Ver ecrã inteiro",
|
|
372
|
+
"View": "Ver",
|
|
373
|
+
"Visibility: {status}": "Visibilidade: {status}",
|
|
375
374
|
"weight": "espessura",
|
|
376
375
|
"Where do we go from here?": "Para onde vamos a partir daqui?",
|
|
377
376
|
"Whether to display or not polygons paths.": "Se mostrar ou não os caminhos dos polígonos.",
|
|
378
377
|
"Whether to fill polygons with color.": "Se mostrar ou não os polígonos preenchidos a cor.",
|
|
379
|
-
"Who can edit \"{layer}\"": "
|
|
378
|
+
"Who can edit \"{layer}\"": "Quem pode editar \"{layer}\"",
|
|
380
379
|
"Who can edit": "Quem pode editar",
|
|
381
380
|
"Who can view": "Quem pode ver",
|
|
382
381
|
"width": "largura",
|
|
383
382
|
"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": "
|
|
383
|
+
"Will be permanently visible in the bottom left corner of the map": "Estará permanentemente visível no canto inferior esquerdo do mapa",
|
|
385
384
|
"Will be visible in the caption of the map": "Será visível no cabeçalho do mapa",
|
|
386
385
|
"yes": "sim",
|
|
387
386
|
"Zoom in": "Aproximar",
|
|
@@ -392,7 +391,7 @@ const locale = {
|
|
|
392
391
|
"Zoom to the previous": "Aproximar para o anterior",
|
|
393
392
|
"Zoom to this feature": "Aproximar a este elemento",
|
|
394
393
|
"Zoom to this place": "Aproximar para este local",
|
|
395
|
-
"{area} acres": "{area}
|
|
394
|
+
"{area} acres": "{area} hectares",
|
|
396
395
|
"{area} ha": "{area} ha",
|
|
397
396
|
"{area} m²": "{area} m²",
|
|
398
397
|
"{area} mi²": "{area} mi²",
|
|
@@ -401,104 +400,111 @@ const locale = {
|
|
|
401
400
|
"{delay} seconds": "{delay} segundos",
|
|
402
401
|
"{distance} km": "{distance} km",
|
|
403
402
|
"{distance} m": "{distance} m",
|
|
404
|
-
"{distance} miles": "{distance}
|
|
403
|
+
"{distance} miles": "{distance} milhas",
|
|
405
404
|
"{distance} NM": "{distance} NM",
|
|
406
405
|
"{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": "
|
|
406
|
+
"Edit map name and caption": "Editar o nome e a legenda do mapa",
|
|
407
|
+
"Map advanced properties": "Propriedades avançadas do mapa",
|
|
408
|
+
"Edit map details": "Editar detalhes do mapa",
|
|
409
|
+
"Back to browser": "Voltar ao navegador",
|
|
410
|
+
"Toggle size": "Alternar tamanho",
|
|
411
|
+
"Display the caption control": "Mostrar o controlo de legendas",
|
|
413
412
|
"<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": "
|
|
413
|
+
"Min": "Mín",
|
|
414
|
+
"Max": "Máx",
|
|
415
|
+
"From": "De",
|
|
416
|
+
"Until": "Até",
|
|
417
|
+
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Exemplo: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
418
|
+
"Edit in OpenStreetMap": "Editar no OpenStreetMap",
|
|
419
|
+
"Cannot determine latitude and longitude columns.": "Não é possível determinar as colunas de latitude e longitude.",
|
|
420
|
+
"Back to layers": "Voltar às camadas",
|
|
421
|
+
"Filters": "Filtros",
|
|
422
|
+
"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",
|
|
423
|
+
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "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.",
|
|
424
|
+
"Search keys": "Pesquisar chaves",
|
|
425
|
+
"Filters keys": "Filtrar chaves",
|
|
426
|
+
"Filter data": "Filtrar dados",
|
|
427
|
+
"Search map features…": "Pesquisar elementos do mapa…",
|
|
428
|
+
"Reset all": "Repor tudo",
|
|
429
|
+
"Open browser": "Abrir navegador",
|
|
430
|
+
"Open caption": "Abrir legenda",
|
|
431
|
+
"Your map has been created with an anonymous account!": "O seu mapa foi criado com uma conta anónima!",
|
|
432
|
+
"Real-time collaboration": "Colaboração em tempo real",
|
|
433
|
+
"Cannot parse data": "Não é possível analisar os dados",
|
|
434
|
+
"Start typing...": "Começar a escrever...",
|
|
435
|
+
"No result": "Nenhum resultado",
|
|
436
|
+
"Data browser": "Navegador de dados",
|
|
437
|
+
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "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.",
|
|
438
|
+
"Overpass supported expressions": "Expressões suportadas do Overpass",
|
|
439
|
+
"key (eg. building)": "chave (por exemplo building)",
|
|
440
|
+
"!key (eg. !name)": "!chave (por exemplo !name)",
|
|
441
|
+
"key=value (eg. building=yes)": "chave=valor (por exemplo building=yes)",
|
|
442
|
+
"key!=value (eg. building!=yes)": "chave!=valor (por exemplo building!=yes)",
|
|
443
|
+
"key~value (eg. name~Grisy)": "chave~valor (por exemplo name~Grisy)",
|
|
444
|
+
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "chave=\"valor|valor2\" (por exemplo name=\"Lisboa|Berlim\")",
|
|
445
|
+
"More info about Overpass syntax": "Mais informações sobre a sintaxe do Overpass",
|
|
446
|
+
"For more complex needs, see": "Para necessidades mais complexas, ver",
|
|
447
|
+
"Choose data": "Selecionar dados",
|
|
448
|
+
"Import helpers:": "Ajudantes de importação:",
|
|
449
|
+
"Choose the format": "Selecionar o formato",
|
|
450
|
+
"Choose the layer": "Selecionar a camada",
|
|
451
|
+
"Layer name": "Nome da camada",
|
|
452
|
+
"Choose import mode": "Selecionar o modo de importação",
|
|
453
|
+
"Copy into the layer": "Copiar para a camada",
|
|
454
|
+
"Link to the layer as remote data": "Hiperligação para camada como dados remotos",
|
|
455
|
+
"Condition": "Condição",
|
|
456
|
+
"key=value or key!=value": "chave=valor ou chave!=valor",
|
|
457
|
+
"Are you sure you want to delete this rule?": "Tem a certeza de que pretende eliminar esta regra?",
|
|
458
|
+
"empty rule": "Regra vazia",
|
|
459
|
+
"Conditional style rules": "Regras de estilo condicionais",
|
|
460
|
+
"Add rule": "Adicionar regra",
|
|
461
|
+
"Browser: data": "Navegador: dados",
|
|
462
|
+
"Browser: layers": "Navegador: camadas",
|
|
463
|
+
"Browser: filters": "Navegador: filtros",
|
|
464
|
+
"Enable real-time collaboration": "Ativar a colaboração em tempo real",
|
|
465
|
+
"✅ Copied!": "✅ Copiado!",
|
|
466
|
+
"Choose a dataset": "Escolher um conjunto de dados",
|
|
467
|
+
"Choose this dataset": "Escolher este conjunto de dados",
|
|
468
|
+
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: dados temáticos do OpenStreetMap",
|
|
469
|
+
"Choose a theme": "Escolher um tema",
|
|
470
|
+
"Symplify all geometries to points": "Simplificar todas as geometrias para pontos",
|
|
471
|
+
"Choose this data": "Escolher estes dados",
|
|
472
|
+
"Search admin boundary": "Pesquisar limites administrativos",
|
|
473
|
+
"Please choose a theme and a boundary first.": "Escolha primeiro um tema e um limite.",
|
|
474
|
+
"Expression": "Expressão",
|
|
475
|
+
"Geometry mode": "Modo de geometria",
|
|
476
|
+
"Only geometry centers": "Apenas centros de geometria",
|
|
477
|
+
"Search area": "Pesquisar área",
|
|
478
|
+
"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",
|
|
479
|
+
"Data successfully imported!": "Dados importados com sucesso!",
|
|
480
|
+
"My Dashboard ({username})": "O meu painel de controlo ({username})",
|
|
481
|
+
"Clear data": "Limpar dados",
|
|
482
|
+
"Remove layers": "Remover camadas",
|
|
483
|
+
"Categorized": "Categorizado",
|
|
484
|
+
"Alphabetical": "Por ordem alfabética",
|
|
485
|
+
"Category property": "Categoria da propriedade",
|
|
486
|
+
"Color palette": "Paleta de cores",
|
|
487
|
+
"Categories": "Categorias",
|
|
488
|
+
"Comma separated list of categories.": "Lista de categorias separada por vírgulas.",
|
|
489
|
+
"Categories mode": "Modo de categorias",
|
|
490
|
+
"Remove filter for this column": "Remover filtro para esta coluna",
|
|
491
|
+
"Add filter for this column": "Adicionar filtro para esta coluna",
|
|
492
|
+
"Rename this column": "Mudar o nome desta coluna",
|
|
493
|
+
"Delete this column": "Eliminar esta coluna",
|
|
494
|
+
"Name “{name}” should not contain a dot.": "O nome “{name}” não deve conter um ponto.",
|
|
495
|
+
"This name already exists: “{name}”": "Este nome já existe: “{name}”",
|
|
496
|
+
"Delete selected rows": "Eliminar as linhas selecionadas",
|
|
497
|
+
"Found {count} rows. Are you sure you want to delete all?": "Foram encontradas {count} linhas. Tem a certeza de que pretende apagar todas?",
|
|
498
|
+
"Expression is empty": "A expressão está vazia",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "
|
|
500
|
+
"Cancel": "Cancelar",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control"
|
|
502
508
|
}
|
|
503
509
|
L.registerLocale("pt_PT", locale)
|
|
504
510
|
L.setLocale("pt_PT")
|