umap-project 2.5.1__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 +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 +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.1.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.1.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.1.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -10,7 +10,7 @@ msgid ""
|
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: uMap\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2024-
|
|
13
|
+
"POT-Creation-Date: 2024-08-30 18:23+0000\n"
|
|
14
14
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
15
15
|
"Last-Translator: lecalam, 2024\n"
|
|
16
16
|
"Language-Team: Portuguese (http://app.transifex.com/openstreetmap/umap/language/pt/)\n"
|
|
@@ -28,7 +28,7 @@ msgstr "Unicamente editável através de hiperligação secreta"
|
|
|
28
28
|
msgid "Everyone can edit"
|
|
29
29
|
msgstr "Todos podem editar"
|
|
30
30
|
|
|
31
|
-
#: forms.py:69 models.py:
|
|
31
|
+
#: forms.py:69 models.py:423
|
|
32
32
|
msgid "Inherit"
|
|
33
33
|
msgstr "Herdado"
|
|
34
34
|
|
|
@@ -36,242 +36,238 @@ msgstr "Herdado"
|
|
|
36
36
|
msgid "Site is readonly for maintenance"
|
|
37
37
|
msgstr "O site está em modo de leitura para manutenção"
|
|
38
38
|
|
|
39
|
-
#: models.py:
|
|
39
|
+
#: models.py:54 models.py:73
|
|
40
40
|
msgid "name"
|
|
41
41
|
msgstr "nome"
|
|
42
42
|
|
|
43
|
-
#: models.py:
|
|
43
|
+
#: models.py:56 models.py:433
|
|
44
|
+
msgid "description"
|
|
45
|
+
msgstr "descrição"
|
|
46
|
+
|
|
47
|
+
#: models.py:104
|
|
44
48
|
msgid "details"
|
|
45
49
|
msgstr "detalhes"
|
|
46
50
|
|
|
47
|
-
#: models.py:
|
|
51
|
+
#: models.py:105
|
|
48
52
|
msgid "Link to a page where the licence is detailed."
|
|
49
53
|
msgstr "Hiperligação para uma página detalhando a licença."
|
|
50
54
|
|
|
51
|
-
#: models.py:
|
|
55
|
+
#: models.py:115
|
|
52
56
|
msgid "URL template using OSM tile format"
|
|
53
57
|
msgstr "Modelo de URL no formato de mosaicos OSM"
|
|
54
58
|
|
|
55
|
-
#: models.py:
|
|
59
|
+
#: models.py:121
|
|
56
60
|
msgid "Order of the tilelayers in the edit box"
|
|
57
61
|
msgstr "Ordem das camadas de mosaicos na caixa de edição"
|
|
58
62
|
|
|
59
|
-
#: models.py:
|
|
63
|
+
#: models.py:167 models.py:424
|
|
60
64
|
msgid "Everyone"
|
|
61
65
|
msgstr "Todos"
|
|
62
66
|
|
|
63
|
-
#: models.py:
|
|
64
|
-
msgid "Editors only"
|
|
65
|
-
msgstr "
|
|
67
|
+
#: models.py:168 models.py:174 models.py:425
|
|
68
|
+
msgid "Editors and team only"
|
|
69
|
+
msgstr ""
|
|
66
70
|
|
|
67
|
-
#: models.py:
|
|
71
|
+
#: models.py:169 models.py:426
|
|
68
72
|
msgid "Owner only"
|
|
69
73
|
msgstr "Apenas o proprietário"
|
|
70
74
|
|
|
71
|
-
#: models.py:
|
|
75
|
+
#: models.py:172
|
|
72
76
|
msgid "Everyone (public)"
|
|
73
77
|
msgstr "Todos (público)"
|
|
74
78
|
|
|
75
|
-
#: models.py:
|
|
79
|
+
#: models.py:173
|
|
76
80
|
msgid "Anyone with link"
|
|
77
81
|
msgstr "Quem tiver a hiperligação"
|
|
78
82
|
|
|
79
|
-
#: models.py:
|
|
83
|
+
#: models.py:175
|
|
80
84
|
msgid "Blocked"
|
|
81
85
|
msgstr "Bloqueado"
|
|
82
86
|
|
|
83
|
-
#: models.py:
|
|
87
|
+
#: models.py:178
|
|
84
88
|
msgid "center"
|
|
85
89
|
msgstr "centro"
|
|
86
90
|
|
|
87
|
-
#: models.py:
|
|
91
|
+
#: models.py:179
|
|
88
92
|
msgid "zoom"
|
|
89
93
|
msgstr "zoom"
|
|
90
94
|
|
|
91
|
-
#: models.py:
|
|
95
|
+
#: models.py:181
|
|
92
96
|
msgid "locate"
|
|
93
97
|
msgstr "localizar"
|
|
94
98
|
|
|
95
|
-
#: models.py:
|
|
99
|
+
#: models.py:181
|
|
96
100
|
msgid "Locate user on load?"
|
|
97
101
|
msgstr "Localizar utilizador no início?"
|
|
98
102
|
|
|
99
|
-
#: models.py:
|
|
103
|
+
#: models.py:185
|
|
100
104
|
msgid "Choose the map licence."
|
|
101
105
|
msgstr "Escolha uma licença para o mapa."
|
|
102
106
|
|
|
103
|
-
#: models.py:
|
|
107
|
+
#: models.py:186
|
|
104
108
|
msgid "licence"
|
|
105
109
|
msgstr "licença"
|
|
106
110
|
|
|
107
|
-
#: models.py:
|
|
111
|
+
#: models.py:197
|
|
108
112
|
msgid "owner"
|
|
109
113
|
msgstr "proprietário"
|
|
110
114
|
|
|
111
|
-
#: models.py:
|
|
115
|
+
#: models.py:201
|
|
112
116
|
msgid "editors"
|
|
113
117
|
msgstr "editores"
|
|
114
118
|
|
|
115
|
-
#: models.py:
|
|
119
|
+
#: models.py:207
|
|
120
|
+
msgid "team"
|
|
121
|
+
msgstr ""
|
|
122
|
+
|
|
123
|
+
#: models.py:213 models.py:447
|
|
116
124
|
msgid "edit status"
|
|
117
125
|
msgstr "editar estado"
|
|
118
126
|
|
|
119
|
-
#: models.py:
|
|
127
|
+
#: models.py:218
|
|
120
128
|
msgid "share status"
|
|
121
129
|
msgstr "partilhar estado"
|
|
122
130
|
|
|
123
|
-
#: models.py:
|
|
131
|
+
#: models.py:221 models.py:442
|
|
124
132
|
msgid "settings"
|
|
125
133
|
msgstr "parâmetros"
|
|
126
134
|
|
|
127
|
-
#: models.py:
|
|
135
|
+
#: models.py:364
|
|
128
136
|
msgid "Clone of"
|
|
129
137
|
msgstr "Clone de"
|
|
130
138
|
|
|
131
|
-
#: models.py:
|
|
132
|
-
msgid "description"
|
|
133
|
-
msgstr "descrição"
|
|
134
|
-
|
|
135
|
-
#: models.py:403
|
|
139
|
+
#: models.py:437
|
|
136
140
|
msgid "display on load"
|
|
137
141
|
msgstr "mostrar no início"
|
|
138
142
|
|
|
139
|
-
#: models.py:
|
|
143
|
+
#: models.py:438
|
|
140
144
|
msgid "Display this layer on load."
|
|
141
145
|
msgstr "Mostrar esta camada ao carregar."
|
|
142
146
|
|
|
143
|
-
#: templates/404.html:
|
|
147
|
+
#: templates/404.html:8
|
|
144
148
|
msgid "Take me to the home page"
|
|
145
149
|
msgstr "Ir para a página principal"
|
|
146
150
|
|
|
147
|
-
#: templates/auth/user_detail.html:
|
|
151
|
+
#: templates/auth/user_detail.html:8
|
|
148
152
|
#, python-format
|
|
149
153
|
msgid "Browse %(current_user)s's maps"
|
|
150
154
|
msgstr "Ver mapas de %(current_user)s"
|
|
151
155
|
|
|
152
|
-
#: templates/auth/user_detail.html:
|
|
156
|
+
#: templates/auth/user_detail.html:17
|
|
153
157
|
#, python-format
|
|
154
158
|
msgid "%(current_user)s has no maps."
|
|
155
159
|
msgstr "%(current_user)s não tem mapas."
|
|
156
160
|
|
|
157
|
-
#: templates/auth/user_form.html:
|
|
158
|
-
msgid "My Maps"
|
|
159
|
-
msgstr "Meus mapas"
|
|
160
|
-
|
|
161
|
-
#: templates/auth/user_form.html:7
|
|
162
|
-
msgid "My Profile"
|
|
163
|
-
msgstr "Meu perfil"
|
|
164
|
-
|
|
165
|
-
#: templates/auth/user_form.html:20
|
|
161
|
+
#: templates/auth/user_form.html:21 templates/umap/team_form.html:21
|
|
166
162
|
msgid "Save"
|
|
167
163
|
msgstr "Guardar"
|
|
168
164
|
|
|
169
|
-
#: templates/auth/user_form.html:
|
|
165
|
+
#: templates/auth/user_form.html:27
|
|
170
166
|
msgid "Your current providers"
|
|
171
167
|
msgstr "Os seus fornecedores atuais"
|
|
172
168
|
|
|
173
|
-
#: templates/auth/user_form.html:
|
|
169
|
+
#: templates/auth/user_form.html:39
|
|
174
170
|
msgid "Connect to another provider"
|
|
175
171
|
msgstr "Conectar a outro fornecedor"
|
|
176
172
|
|
|
177
|
-
#: templates/auth/user_form.html:
|
|
173
|
+
#: templates/auth/user_form.html:42
|
|
178
174
|
msgid ""
|
|
179
175
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
180
176
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
181
177
|
msgstr "É um bom hábito conectar a sua conta a mais do que um fornecedor, no caso de um fornecedor ficar indisponível, temporariamente ou mesmo permanentemente."
|
|
182
178
|
|
|
183
|
-
#: templates/auth/user_stars.html:
|
|
179
|
+
#: templates/auth/user_stars.html:8
|
|
184
180
|
#, python-format
|
|
185
181
|
msgid "Browse %(current_user)s's starred maps"
|
|
186
182
|
msgstr "Ver mapas com estrela de %(current_user)s's"
|
|
187
183
|
|
|
188
|
-
#: templates/auth/user_stars.html:
|
|
184
|
+
#: templates/auth/user_stars.html:17
|
|
189
185
|
#, python-format
|
|
190
186
|
msgid "%(current_user)s has no starred maps yet."
|
|
191
187
|
msgstr "%(current_user)s não tem mapas com estrela."
|
|
192
188
|
|
|
193
|
-
#: templates/base.html:
|
|
189
|
+
#: templates/base.html:13
|
|
194
190
|
msgid ""
|
|
195
191
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
196
192
|
"them in your site."
|
|
197
193
|
msgstr "uMap permite-lhe criar mapas com camadas do OpenStreetMap num minuto e incorporá-los no seu site."
|
|
198
194
|
|
|
199
|
-
#: templates/registration/login.html:
|
|
195
|
+
#: templates/registration/login.html:6 templates/registration/login.html:45
|
|
196
|
+
msgid "Login"
|
|
197
|
+
msgstr "Entrar"
|
|
198
|
+
|
|
199
|
+
#: templates/registration/login.html:24
|
|
200
200
|
msgid "Please log in with your account"
|
|
201
201
|
msgstr "Por favor entre na sua conta"
|
|
202
202
|
|
|
203
|
-
#: templates/registration/login.html:
|
|
203
|
+
#: templates/registration/login.html:41
|
|
204
204
|
msgid "Username"
|
|
205
205
|
msgstr "Nome de utilizador"
|
|
206
206
|
|
|
207
|
-
#: templates/registration/login.html:
|
|
207
|
+
#: templates/registration/login.html:44
|
|
208
208
|
msgid "Password"
|
|
209
209
|
msgstr "Palavra-passe"
|
|
210
210
|
|
|
211
|
-
#: templates/registration/login.html:
|
|
212
|
-
msgid "Login"
|
|
213
|
-
msgstr "Entrar"
|
|
214
|
-
|
|
215
|
-
#: templates/registration/login.html:37
|
|
211
|
+
#: templates/registration/login.html:51
|
|
216
212
|
msgid "Please choose a provider"
|
|
217
213
|
msgstr "Por favor escolha um fornecedor"
|
|
218
214
|
|
|
219
|
-
#: templates/umap/about_summary.html:
|
|
215
|
+
#: templates/umap/about_summary.html:12
|
|
220
216
|
#, python-format
|
|
221
217
|
msgid ""
|
|
222
218
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
223
219
|
"layers in a minute and embed them in your site."
|
|
224
220
|
msgstr "O uMap permite criar mapas através de camadas do <a href=\"%(osm_url)s\" />OpenStreetMap</a> num minuto e mostrá-los no seu site."
|
|
225
221
|
|
|
226
|
-
#: templates/umap/about_summary.html:
|
|
222
|
+
#: templates/umap/about_summary.html:23
|
|
227
223
|
msgid "Choose the layers of your map"
|
|
228
224
|
msgstr "Escolha as camadas do mapa"
|
|
229
225
|
|
|
230
|
-
#: templates/umap/about_summary.html:
|
|
226
|
+
#: templates/umap/about_summary.html:26
|
|
231
227
|
msgid "Add POIs: markers, lines, polygons..."
|
|
232
228
|
msgstr "Adicione POIs: marcadores, linhas, polígonos..."
|
|
233
229
|
|
|
234
|
-
#: templates/umap/about_summary.html:
|
|
230
|
+
#: templates/umap/about_summary.html:29
|
|
235
231
|
msgid "Manage POIs colours and icons"
|
|
236
232
|
msgstr "Altere as cores dos POI e ícones"
|
|
237
233
|
|
|
238
|
-
#: templates/umap/about_summary.html:
|
|
234
|
+
#: templates/umap/about_summary.html:32
|
|
239
235
|
msgid "Manage map options: display a minimap, locate user on load…"
|
|
240
236
|
msgstr "Configure diversas opções: mostrar um minimapa, localizar o utilizador ao carregar..."
|
|
241
237
|
|
|
242
|
-
#: templates/umap/about_summary.html:
|
|
238
|
+
#: templates/umap/about_summary.html:35
|
|
243
239
|
msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
|
|
244
240
|
msgstr "Importe dados geo-estruturados em lote (geojson, gpx, kml, osm...)"
|
|
245
241
|
|
|
246
|
-
#: templates/umap/about_summary.html:
|
|
242
|
+
#: templates/umap/about_summary.html:38
|
|
247
243
|
msgid "Choose the license for your data"
|
|
248
244
|
msgstr "Escolha uma licença para os seus dados"
|
|
249
245
|
|
|
250
|
-
#: templates/umap/about_summary.html:
|
|
246
|
+
#: templates/umap/about_summary.html:41
|
|
251
247
|
msgid "Embed and share your map"
|
|
252
248
|
msgstr "Exporte e partilhe o seu mapa"
|
|
253
249
|
|
|
254
|
-
#: templates/umap/about_summary.html:
|
|
250
|
+
#: templates/umap/about_summary.html:52
|
|
255
251
|
#, python-format
|
|
256
252
|
msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
257
253
|
msgstr "E está disponível em <a href=\"%(repo_url)s\">código aberto</a>!"
|
|
258
254
|
|
|
259
|
-
#: templates/umap/about_summary.html:
|
|
260
|
-
#: templates/umap/user_dashboard.html:
|
|
255
|
+
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
256
|
+
#: templates/umap/user_dashboard.html:40
|
|
261
257
|
msgid "Create a map"
|
|
262
258
|
msgstr "Criar um mapa"
|
|
263
259
|
|
|
264
|
-
#: templates/umap/about_summary.html:
|
|
260
|
+
#: templates/umap/about_summary.html:66
|
|
265
261
|
msgid "Play with the demo"
|
|
266
262
|
msgstr "Testar a demo"
|
|
267
263
|
|
|
268
|
-
#: templates/umap/components/alerts/alert.html:
|
|
269
|
-
#: templates/umap/components/alerts/alert.html:
|
|
270
|
-
#: templates/umap/components/alerts/alert.html:
|
|
264
|
+
#: templates/umap/components/alerts/alert.html:15
|
|
265
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
266
|
+
#: templates/umap/components/alerts/alert.html:92
|
|
271
267
|
msgid "Close"
|
|
272
268
|
msgstr "Fechar"
|
|
273
269
|
|
|
274
|
-
#: templates/umap/components/alerts/alert.html:
|
|
270
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
275
271
|
#, python-format
|
|
276
272
|
msgid ""
|
|
277
273
|
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
@@ -279,45 +275,45 @@ msgid ""
|
|
|
279
275
|
"target=\"_blank\">log in</a>."
|
|
280
276
|
msgstr "Sugestão: para voltar a encontrar facilmente os seus mapas, <a href=\"%(login_url)s\" target=\"_blank\">crie uma conta</a> ou <a href=\"%(login_url)s\" target=\"_blank\">inicie a sessão</a>."
|
|
281
277
|
|
|
282
|
-
#: templates/umap/components/alerts/alert.html:
|
|
278
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
283
279
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
284
280
|
msgstr "Aqui está a sua hiperligação secreta para editar o mapa, por favor mantenha-a segura:"
|
|
285
281
|
|
|
286
|
-
#: templates/umap/components/alerts/alert.html:
|
|
282
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
287
283
|
msgid "Copy link"
|
|
288
284
|
msgstr "Copiar hiperligação"
|
|
289
285
|
|
|
290
|
-
#: templates/umap/components/alerts/alert.html:
|
|
286
|
+
#: templates/umap/components/alerts/alert.html:46
|
|
291
287
|
msgid "Enter your email address to receive the secret link:"
|
|
292
288
|
msgstr "Introduza o seu endereço de e-mail para receber a hiperligação secreta:"
|
|
293
289
|
|
|
294
|
-
#: templates/umap/components/alerts/alert.html:
|
|
290
|
+
#: templates/umap/components/alerts/alert.html:52
|
|
295
291
|
msgid "Email"
|
|
296
292
|
msgstr "E-mail"
|
|
297
293
|
|
|
298
|
-
#: templates/umap/components/alerts/alert.html:
|
|
294
|
+
#: templates/umap/components/alerts/alert.html:55
|
|
299
295
|
msgid "Send me the link"
|
|
300
296
|
msgstr "Envie-me a hiperligação"
|
|
301
297
|
|
|
302
|
-
#: templates/umap/components/alerts/alert.html:
|
|
298
|
+
#: templates/umap/components/alerts/alert.html:79
|
|
303
299
|
msgid "See their edits in another tab"
|
|
304
300
|
msgstr "Ver as edições deles noutro separador"
|
|
305
301
|
|
|
306
|
-
#: templates/umap/components/alerts/alert.html:
|
|
302
|
+
#: templates/umap/components/alerts/alert.html:82
|
|
307
303
|
msgid "Keep your changes and loose theirs"
|
|
308
304
|
msgstr "Manter as minhas mudanças e perder as deles"
|
|
309
305
|
|
|
310
|
-
#: templates/umap/components/alerts/alert.html:
|
|
306
|
+
#: templates/umap/components/alerts/alert.html:85
|
|
311
307
|
msgid "Keep their changes and loose yours"
|
|
312
308
|
msgstr "Manter as mudanças deles e perder as minhas"
|
|
313
309
|
|
|
314
|
-
#: templates/umap/content.html:
|
|
310
|
+
#: templates/umap/content.html:26
|
|
315
311
|
msgid ""
|
|
316
312
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
317
313
|
"allowed."
|
|
318
314
|
msgstr "Esta instância do uMap está atualmente em modo só de leitura, não sendo permitida a criação/edição."
|
|
319
315
|
|
|
320
|
-
#: templates/umap/content.html:
|
|
316
|
+
#: templates/umap/content.html:34
|
|
321
317
|
#, python-format
|
|
322
318
|
msgid ""
|
|
323
319
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -326,176 +322,210 @@ msgid ""
|
|
|
326
322
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
327
323
|
msgstr "Esta é uma versão de demonstração, utilizada para testes e pré-lançamentos. Se precisar de uma versão estável, por favor utilize <a href=\"%(stable_url)s\">%(stable_url)s</a>. Pode também alojar a sua própria instância, e é em <a href=\"%(repo_url)s\">código aberto</a>!"
|
|
328
324
|
|
|
329
|
-
#: templates/umap/
|
|
325
|
+
#: templates/umap/content_footer.html:5
|
|
326
|
+
msgid "An OpenStreetMap project"
|
|
327
|
+
msgstr ""
|
|
328
|
+
|
|
329
|
+
#: templates/umap/content_footer.html:6
|
|
330
|
+
msgid "version"
|
|
331
|
+
msgstr ""
|
|
332
|
+
|
|
333
|
+
#: templates/umap/content_footer.html:7
|
|
334
|
+
msgid "Hosted by"
|
|
335
|
+
msgstr ""
|
|
336
|
+
|
|
337
|
+
#: templates/umap/content_footer.html:8
|
|
338
|
+
msgid "Contact"
|
|
339
|
+
msgstr ""
|
|
340
|
+
|
|
341
|
+
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
342
|
+
msgid "Help"
|
|
343
|
+
msgstr "Ajuda"
|
|
344
|
+
|
|
345
|
+
#: templates/umap/dashboard_menu.html:6
|
|
346
|
+
#, python-format
|
|
347
|
+
msgid "My Maps (%(count)s)"
|
|
348
|
+
msgstr "Meus mapas (%(count)s)"
|
|
349
|
+
|
|
350
|
+
#: templates/umap/dashboard_menu.html:8
|
|
351
|
+
msgid "My Maps"
|
|
352
|
+
msgstr "Meus mapas"
|
|
353
|
+
|
|
354
|
+
#: templates/umap/dashboard_menu.html:11
|
|
355
|
+
msgid "My profile"
|
|
356
|
+
msgstr "Meu perfil"
|
|
357
|
+
|
|
358
|
+
#: templates/umap/dashboard_menu.html:13
|
|
359
|
+
msgid "My teams"
|
|
360
|
+
msgstr ""
|
|
361
|
+
|
|
362
|
+
#: templates/umap/home.html:14
|
|
330
363
|
msgid "Map of the uMaps"
|
|
331
364
|
msgstr "Mapa dos uMaps"
|
|
332
365
|
|
|
333
|
-
#: templates/umap/home.html:
|
|
366
|
+
#: templates/umap/home.html:24
|
|
334
367
|
msgid "Get inspired, browse maps"
|
|
335
368
|
msgstr "Inspire-se, explore os mapas"
|
|
336
369
|
|
|
337
|
-
#: templates/umap/login_popup_end.html:
|
|
370
|
+
#: templates/umap/login_popup_end.html:4
|
|
338
371
|
msgid "You are logged in. Continuing..."
|
|
339
372
|
msgstr "Sucesso na identificação. Continuando..."
|
|
340
373
|
|
|
341
|
-
#: templates/umap/map_list.html:
|
|
374
|
+
#: templates/umap/map_list.html:10 views.py:433
|
|
342
375
|
msgid "by"
|
|
343
376
|
msgstr "por"
|
|
344
377
|
|
|
345
|
-
#: templates/umap/map_list.html:
|
|
378
|
+
#: templates/umap/map_list.html:18
|
|
346
379
|
msgid "More"
|
|
347
380
|
msgstr "Mais"
|
|
348
381
|
|
|
349
|
-
#: templates/umap/map_table.html:
|
|
382
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
|
|
350
383
|
msgid "Name"
|
|
351
384
|
msgstr "Nome"
|
|
352
385
|
|
|
353
|
-
#: templates/umap/map_table.html:
|
|
386
|
+
#: templates/umap/map_table.html:11
|
|
354
387
|
msgid "Preview"
|
|
355
388
|
msgstr "Pré-visualizar"
|
|
356
389
|
|
|
357
|
-
#: templates/umap/map_table.html:
|
|
390
|
+
#: templates/umap/map_table.html:14
|
|
358
391
|
msgid "Who can see"
|
|
359
392
|
msgstr "Quem pode ver"
|
|
360
393
|
|
|
361
|
-
#: templates/umap/map_table.html:
|
|
394
|
+
#: templates/umap/map_table.html:17
|
|
362
395
|
msgid "Who can edit"
|
|
363
396
|
msgstr "Quem pode editar"
|
|
364
397
|
|
|
365
|
-
#: templates/umap/map_table.html:
|
|
398
|
+
#: templates/umap/map_table.html:20
|
|
366
399
|
msgid "Last save"
|
|
367
400
|
msgstr "Último guardar"
|
|
368
401
|
|
|
369
|
-
#: templates/umap/map_table.html:
|
|
402
|
+
#: templates/umap/map_table.html:23
|
|
370
403
|
msgid "Owner"
|
|
371
404
|
msgstr "Proprietário"
|
|
372
405
|
|
|
373
|
-
#: templates/umap/map_table.html:
|
|
406
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
|
|
374
407
|
msgid "Actions"
|
|
375
408
|
msgstr "Ações"
|
|
376
409
|
|
|
377
|
-
#: templates/umap/map_table.html:
|
|
410
|
+
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
378
411
|
msgid "Open preview"
|
|
379
412
|
msgstr "Abrir pré-visualização"
|
|
380
413
|
|
|
381
|
-
#: templates/umap/map_table.html:
|
|
414
|
+
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
382
415
|
msgid "Share"
|
|
383
416
|
msgstr "Partilhar"
|
|
384
417
|
|
|
385
|
-
#: templates/umap/map_table.html:
|
|
418
|
+
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
419
|
+
#: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
|
|
386
420
|
msgid "Edit"
|
|
387
421
|
msgstr "Editar"
|
|
388
422
|
|
|
389
|
-
#: templates/umap/map_table.html:
|
|
423
|
+
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
390
424
|
msgid "Download"
|
|
391
425
|
msgstr "Descarregar"
|
|
392
426
|
|
|
393
|
-
#: templates/umap/map_table.html:
|
|
427
|
+
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
394
428
|
msgid "Clone"
|
|
395
429
|
msgstr "Clonar"
|
|
396
430
|
|
|
397
|
-
#: templates/umap/map_table.html:
|
|
431
|
+
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
398
432
|
msgid "Delete"
|
|
399
433
|
msgstr "Eliminar"
|
|
400
434
|
|
|
401
|
-
#: templates/umap/map_table.html:
|
|
435
|
+
#: templates/umap/map_table.html:117
|
|
402
436
|
msgid "first"
|
|
403
437
|
msgstr "primeiro"
|
|
404
438
|
|
|
405
|
-
#: templates/umap/map_table.html:
|
|
439
|
+
#: templates/umap/map_table.html:118
|
|
406
440
|
msgid "previous"
|
|
407
441
|
msgstr "anterior"
|
|
408
442
|
|
|
409
|
-
#: templates/umap/map_table.html:
|
|
443
|
+
#: templates/umap/map_table.html:126
|
|
410
444
|
#, python-format
|
|
411
445
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
412
446
|
msgstr "Página %(maps_number)s de %(num_pages)s"
|
|
413
447
|
|
|
414
|
-
#: templates/umap/map_table.html:
|
|
448
|
+
#: templates/umap/map_table.html:131
|
|
415
449
|
msgid "next"
|
|
416
450
|
msgstr "seguinte"
|
|
417
451
|
|
|
418
|
-
#: templates/umap/map_table.html:
|
|
452
|
+
#: templates/umap/map_table.html:132
|
|
419
453
|
msgid "last"
|
|
420
454
|
msgstr "+ultimo"
|
|
421
455
|
|
|
422
|
-
#: templates/umap/map_table.html:
|
|
456
|
+
#: templates/umap/map_table.html:140
|
|
423
457
|
#, python-format
|
|
424
458
|
msgid "Lines per page: %(per_page)s"
|
|
425
459
|
msgstr "Linhas por página: %(per_page)s"
|
|
426
460
|
|
|
427
|
-
#: templates/umap/map_table.html:
|
|
461
|
+
#: templates/umap/map_table.html:145
|
|
428
462
|
#, python-format
|
|
429
463
|
msgid "%(count)s maps"
|
|
430
464
|
msgstr "%(count)s mapas"
|
|
431
465
|
|
|
432
|
-
#: templates/umap/navigation.html:
|
|
466
|
+
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
433
467
|
msgid "My Dashboard"
|
|
434
468
|
msgstr "O meu painel de controlo"
|
|
435
469
|
|
|
436
|
-
#: templates/umap/navigation.html:
|
|
470
|
+
#: templates/umap/navigation.html:14
|
|
437
471
|
msgid "Starred maps"
|
|
438
472
|
msgstr "Mapas com estrela"
|
|
439
473
|
|
|
440
|
-
#: templates/umap/navigation.html:
|
|
474
|
+
#: templates/umap/navigation.html:18
|
|
441
475
|
msgid "Log in"
|
|
442
476
|
msgstr "Entrar"
|
|
443
477
|
|
|
444
|
-
#: templates/umap/navigation.html:
|
|
478
|
+
#: templates/umap/navigation.html:18
|
|
445
479
|
msgid "Sign in"
|
|
446
480
|
msgstr "Criar conta"
|
|
447
481
|
|
|
448
|
-
#: templates/umap/navigation.html:
|
|
482
|
+
#: templates/umap/navigation.html:22
|
|
449
483
|
msgid "About"
|
|
450
484
|
msgstr "Sobre"
|
|
451
485
|
|
|
452
|
-
#: templates/umap/navigation.html:
|
|
453
|
-
msgid "Help"
|
|
454
|
-
msgstr "Ajuda"
|
|
455
|
-
|
|
456
|
-
#: templates/umap/navigation.html:29
|
|
486
|
+
#: templates/umap/navigation.html:30
|
|
457
487
|
msgid "Change password"
|
|
458
488
|
msgstr "Alterar palavra-passe"
|
|
459
489
|
|
|
460
|
-
#: templates/umap/navigation.html:
|
|
490
|
+
#: templates/umap/navigation.html:34
|
|
461
491
|
msgid "Log out"
|
|
462
492
|
msgstr "Sair"
|
|
463
493
|
|
|
464
|
-
#: templates/umap/password_change.html:
|
|
494
|
+
#: templates/umap/password_change.html:7
|
|
465
495
|
msgid "Password change"
|
|
466
496
|
msgstr "Alterar palavra-passe"
|
|
467
497
|
|
|
468
|
-
#: templates/umap/password_change.html:
|
|
498
|
+
#: templates/umap/password_change.html:10
|
|
469
499
|
msgid ""
|
|
470
500
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
471
501
|
" password twice so we can verify you typed it in correctly."
|
|
472
502
|
msgstr "Por favor introduza a sua palavra-passe antiga, por motivos de segurança, e então introduza a sua nova palavra-passe 2 vezes para que possamos verificar se a digitou corretamente."
|
|
473
503
|
|
|
474
|
-
#: templates/umap/password_change.html:
|
|
504
|
+
#: templates/umap/password_change.html:17
|
|
475
505
|
msgid "Old password"
|
|
476
506
|
msgstr "Palavra-passe antiga"
|
|
477
507
|
|
|
478
|
-
#: templates/umap/password_change.html:
|
|
508
|
+
#: templates/umap/password_change.html:22
|
|
479
509
|
msgid "New password"
|
|
480
510
|
msgstr "Nova palavra-passe"
|
|
481
511
|
|
|
482
|
-
#: templates/umap/password_change.html:
|
|
512
|
+
#: templates/umap/password_change.html:26
|
|
483
513
|
msgid "New password confirmation"
|
|
484
514
|
msgstr "Confirmação da palavra-passe"
|
|
485
515
|
|
|
486
|
-
#: templates/umap/password_change.html:
|
|
516
|
+
#: templates/umap/password_change.html:27
|
|
487
517
|
msgid "Change my password"
|
|
488
518
|
msgstr "Alterar a minha palavra-passe"
|
|
489
519
|
|
|
490
|
-
#: templates/umap/password_change_done.html:
|
|
520
|
+
#: templates/umap/password_change_done.html:7
|
|
491
521
|
msgid "Password change successful"
|
|
492
522
|
msgstr "Alteração da palavra-passe bem sucedida"
|
|
493
523
|
|
|
494
|
-
#: templates/umap/password_change_done.html:
|
|
524
|
+
#: templates/umap/password_change_done.html:10
|
|
495
525
|
msgid "Your password was changed."
|
|
496
526
|
msgstr "A sua palavra-passe foi alterada"
|
|
497
527
|
|
|
498
|
-
#: templates/umap/search.html:
|
|
528
|
+
#: templates/umap/search.html:15
|
|
499
529
|
#, python-format
|
|
500
530
|
msgid "%(count)s map found:"
|
|
501
531
|
msgid_plural "%(count)s maps found:"
|
|
@@ -503,103 +533,129 @@ msgstr[0] "%(count)s mapa encontrado:"
|
|
|
503
533
|
msgstr[1] "%(count)s mapas encontrados:"
|
|
504
534
|
msgstr[2] "%(count)s mapas encontrados:"
|
|
505
535
|
|
|
506
|
-
#: templates/umap/search.html:
|
|
536
|
+
#: templates/umap/search.html:24
|
|
507
537
|
msgid "No map found."
|
|
508
538
|
msgstr "Não foi encontrado nenhum mapa."
|
|
509
539
|
|
|
510
|
-
#: templates/umap/search.html:
|
|
540
|
+
#: templates/umap/search.html:29
|
|
511
541
|
msgid "Latest created maps"
|
|
512
542
|
msgstr "Últimos mapas criados"
|
|
513
543
|
|
|
514
|
-
#: templates/umap/search_bar.html:
|
|
544
|
+
#: templates/umap/search_bar.html:4
|
|
515
545
|
msgid "Search maps"
|
|
516
546
|
msgstr "Procurar mapas"
|
|
517
547
|
|
|
518
|
-
#: templates/umap/search_bar.html:
|
|
548
|
+
#: templates/umap/search_bar.html:15
|
|
519
549
|
msgid "Search"
|
|
520
550
|
msgstr "Procurar"
|
|
521
551
|
|
|
522
|
-
#: templates/umap/
|
|
523
|
-
|
|
524
|
-
|
|
552
|
+
#: templates/umap/team_detail.html:10
|
|
553
|
+
#, python-format
|
|
554
|
+
msgid "Browse %(current_team)s's maps"
|
|
555
|
+
msgstr ""
|
|
525
556
|
|
|
526
|
-
#: templates/umap/
|
|
557
|
+
#: templates/umap/team_detail.html:22
|
|
527
558
|
#, python-format
|
|
528
|
-
msgid "
|
|
529
|
-
msgstr "
|
|
559
|
+
msgid "%(current_team)s has no public maps."
|
|
560
|
+
msgstr ""
|
|
530
561
|
|
|
531
|
-
#: templates/umap/
|
|
532
|
-
msgid "
|
|
533
|
-
msgstr "
|
|
562
|
+
#: templates/umap/team_form.html:24
|
|
563
|
+
msgid "Delete this team"
|
|
564
|
+
msgstr ""
|
|
565
|
+
|
|
566
|
+
#: templates/umap/team_form.html:47
|
|
567
|
+
msgid "Add user"
|
|
568
|
+
msgstr ""
|
|
569
|
+
|
|
570
|
+
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
571
|
+
msgid "Search my maps"
|
|
572
|
+
msgstr "Procurar os meus mapas"
|
|
534
573
|
|
|
535
|
-
#: templates/umap/user_dashboard.html:
|
|
574
|
+
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
536
575
|
msgid "Map’s title"
|
|
537
576
|
msgstr "Título do mapa"
|
|
538
577
|
|
|
539
|
-
#: templates/umap/user_dashboard.html:
|
|
578
|
+
#: templates/umap/user_dashboard.html:30
|
|
540
579
|
#, python-format
|
|
541
580
|
msgid "Download %(count)s maps"
|
|
542
581
|
msgstr "Descarregar %(count)s mapas"
|
|
543
582
|
|
|
544
|
-
#: templates/umap/user_dashboard.html:
|
|
583
|
+
#: templates/umap/user_dashboard.html:40
|
|
545
584
|
msgid "You have no map yet."
|
|
546
585
|
msgstr "Ainda não tem nenhum mapa."
|
|
547
586
|
|
|
548
|
-
#:
|
|
587
|
+
#: templates/umap/user_teams.html:17
|
|
588
|
+
msgid "Users"
|
|
589
|
+
msgstr ""
|
|
590
|
+
|
|
591
|
+
#: templates/umap/user_teams.html:48
|
|
592
|
+
msgid "New team"
|
|
593
|
+
msgstr ""
|
|
594
|
+
|
|
595
|
+
#: views.py:235
|
|
596
|
+
msgid "Cannot delete a team with more than one member"
|
|
597
|
+
msgstr ""
|
|
598
|
+
|
|
599
|
+
#: views.py:239
|
|
600
|
+
#, python-format
|
|
601
|
+
msgid "Team “%(name)s” has been deleted"
|
|
602
|
+
msgstr ""
|
|
603
|
+
|
|
604
|
+
#: views.py:438
|
|
549
605
|
msgid "View the map"
|
|
550
606
|
msgstr "Ver o mapa"
|
|
551
607
|
|
|
552
|
-
#: views.py:
|
|
608
|
+
#: views.py:824
|
|
553
609
|
msgid "See full screen"
|
|
554
610
|
msgstr "Ver em ecrã inteiro"
|
|
555
611
|
|
|
556
|
-
#: views.py:
|
|
612
|
+
#: views.py:953
|
|
557
613
|
msgid "Map editors updated with success!"
|
|
558
614
|
msgstr "Os editores do mapa foram atualizados com sucesso!"
|
|
559
615
|
|
|
560
|
-
#: views.py:
|
|
616
|
+
#: views.py:989
|
|
561
617
|
#, python-format
|
|
562
618
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
563
619
|
msgstr "A hiperligação de edição do uMap para o seu mapa: %(map_name)s"
|
|
564
620
|
|
|
565
|
-
#: views.py:
|
|
621
|
+
#: views.py:992
|
|
566
622
|
#, python-format
|
|
567
623
|
msgid "Here is your secret edit link: %(link)s"
|
|
568
624
|
msgstr "Aqui está a hiperligação de edição secreta: %(link)s"
|
|
569
625
|
|
|
570
|
-
#: views.py:
|
|
626
|
+
#: views.py:999
|
|
571
627
|
#, python-format
|
|
572
628
|
msgid "Can't send email to %(email)s"
|
|
573
629
|
msgstr "Não é possível enviar o email para %(email)s"
|
|
574
630
|
|
|
575
|
-
#: views.py:
|
|
631
|
+
#: views.py:1002
|
|
576
632
|
#, python-format
|
|
577
633
|
msgid "Email sent to %(email)s"
|
|
578
634
|
msgstr "Email enviado para %(email)s"
|
|
579
635
|
|
|
580
|
-
#: views.py:
|
|
636
|
+
#: views.py:1013
|
|
581
637
|
msgid "Only its owner can delete the map."
|
|
582
638
|
msgstr "Só o proprietário pode eliminar o mapa."
|
|
583
639
|
|
|
584
|
-
#: views.py:
|
|
640
|
+
#: views.py:1016
|
|
585
641
|
msgid "Map successfully deleted."
|
|
586
642
|
msgstr "Mapa eliminado com sucesso."
|
|
587
643
|
|
|
588
|
-
#: views.py:
|
|
644
|
+
#: views.py:1042
|
|
589
645
|
#, python-format
|
|
590
646
|
msgid ""
|
|
591
647
|
"Your map has been cloned! If you want to edit this map from another "
|
|
592
648
|
"computer, please use this link: %(anonymous_url)s"
|
|
593
649
|
msgstr "O seu mapa foi clonado! Se quiser editar este mapa noutro computador, por favor utilize esta hiperligação: %(anonymous_url)s"
|
|
594
650
|
|
|
595
|
-
#: views.py:
|
|
651
|
+
#: views.py:1047
|
|
596
652
|
msgid "Congratulations, your map has been cloned!"
|
|
597
653
|
msgstr "Parabéns, o seu mapa foi clonado!"
|
|
598
654
|
|
|
599
|
-
#: views.py:
|
|
655
|
+
#: views.py:1282
|
|
600
656
|
msgid "Layer successfully deleted."
|
|
601
657
|
msgstr "Camada eliminada com sucesso."
|
|
602
658
|
|
|
603
|
-
#: views.py:
|
|
659
|
+
#: views.py:1304
|
|
604
660
|
msgid "Permissions updated with success!"
|
|
605
661
|
msgstr "Permissões atualizadas com sucesso!"
|