umap-project 2.8.1__py3-none-any.whl → 2.9.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 +15 -2
- umap/asgi.py +12 -7
- umap/context_processors.py +1 -0
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +111 -67
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +110 -66
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +129 -85
- umap/locale/en/LC_MESSAGES/django.po +103 -60
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +114 -69
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +105 -61
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +216 -171
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +10 -10
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +142 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +196 -151
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +115 -71
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +109 -65
- umap/management/commands/empty_trash.py +12 -1
- umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
- umap/models.py +43 -13
- umap/settings/base.py +5 -2
- umap/static/umap/base.css +5 -2
- umap/static/umap/content.css +2 -22
- umap/static/umap/css/bar.css +39 -10
- umap/static/umap/css/contextmenu.css +14 -2
- umap/static/umap/css/form.css +33 -39
- umap/static/umap/css/icon.css +47 -5
- umap/static/umap/css/panel.css +20 -2
- umap/static/umap/css/popup.css +0 -1
- umap/static/umap/css/tooltip.css +33 -31
- umap/static/umap/img/16-white.svg +5 -3
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +17 -16
- umap/static/umap/img/24.svg +29 -18
- umap/static/umap/img/providers/bitbucket.png +0 -0
- umap/static/umap/img/providers/github.png +0 -0
- umap/static/umap/img/providers/keycloak.png +0 -0
- umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
- umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- umap/static/umap/img/source/16-white.svg +6 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +20 -18
- umap/static/umap/img/source/24.svg +30 -19
- umap/static/umap/js/components/alerts/alert.js +4 -1
- umap/static/umap/js/modules/browser.js +8 -8
- umap/static/umap/js/modules/caption.js +30 -7
- umap/static/umap/js/modules/data/features.js +101 -56
- umap/static/umap/js/modules/data/layer.js +108 -83
- umap/static/umap/js/modules/form/builder.js +242 -0
- umap/static/umap/js/modules/form/fields.js +1346 -0
- umap/static/umap/js/modules/formatter.js +9 -8
- umap/static/umap/js/modules/help.js +20 -24
- umap/static/umap/js/modules/importer.js +6 -3
- umap/static/umap/js/modules/permissions.js +11 -6
- umap/static/umap/js/modules/rendering/icon.js +5 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +12 -8
- umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
- umap/static/umap/js/modules/rendering/map.js +1 -23
- umap/static/umap/js/modules/rendering/ui.js +20 -38
- umap/static/umap/js/modules/rules.js +3 -2
- umap/static/umap/js/modules/saving.js +5 -0
- umap/static/umap/js/modules/schema.js +8 -6
- umap/static/umap/js/modules/share.js +3 -3
- umap/static/umap/js/modules/sync/engine.js +56 -26
- umap/static/umap/js/modules/sync/updaters.js +15 -6
- umap/static/umap/js/modules/sync/websocket.js +50 -37
- umap/static/umap/js/modules/tableeditor.js +3 -2
- umap/static/umap/js/modules/ui/bar.js +101 -9
- umap/static/umap/js/modules/ui/base.js +7 -24
- umap/static/umap/js/modules/ui/contextmenu.js +9 -2
- umap/static/umap/js/modules/ui/panel.js +5 -1
- umap/static/umap/js/modules/ui/tooltip.js +19 -11
- umap/static/umap/js/modules/umap.js +124 -71
- umap/static/umap/js/modules/utils.js +196 -12
- umap/static/umap/js/umap.controls.js +12 -354
- umap/static/umap/locale/am_ET.js +17 -5
- umap/static/umap/locale/am_ET.json +17 -5
- umap/static/umap/locale/ar.js +17 -5
- umap/static/umap/locale/ar.json +17 -5
- umap/static/umap/locale/ast.js +17 -5
- umap/static/umap/locale/ast.json +17 -5
- umap/static/umap/locale/bg.js +17 -5
- umap/static/umap/locale/bg.json +17 -5
- umap/static/umap/locale/br.js +33 -20
- umap/static/umap/locale/br.json +33 -20
- umap/static/umap/locale/ca.js +17 -5
- umap/static/umap/locale/ca.json +17 -5
- umap/static/umap/locale/cs_CZ.js +15 -5
- umap/static/umap/locale/cs_CZ.json +15 -5
- umap/static/umap/locale/da.js +17 -5
- umap/static/umap/locale/da.json +17 -5
- umap/static/umap/locale/de.js +17 -5
- umap/static/umap/locale/de.json +17 -5
- umap/static/umap/locale/el.js +63 -51
- umap/static/umap/locale/el.json +63 -51
- umap/static/umap/locale/en.js +15 -5
- umap/static/umap/locale/en.json +15 -5
- umap/static/umap/locale/en_US.json +17 -5
- umap/static/umap/locale/es.js +25 -13
- umap/static/umap/locale/es.json +25 -13
- umap/static/umap/locale/et.js +17 -5
- umap/static/umap/locale/et.json +17 -5
- umap/static/umap/locale/eu.js +17 -5
- umap/static/umap/locale/eu.json +17 -5
- umap/static/umap/locale/fa_IR.js +17 -5
- umap/static/umap/locale/fa_IR.json +17 -5
- umap/static/umap/locale/fi.js +17 -5
- umap/static/umap/locale/fi.json +17 -5
- umap/static/umap/locale/fr.js +16 -6
- umap/static/umap/locale/fr.json +16 -6
- umap/static/umap/locale/gl.js +357 -345
- umap/static/umap/locale/gl.json +357 -345
- umap/static/umap/locale/he.js +17 -5
- umap/static/umap/locale/he.json +17 -5
- umap/static/umap/locale/hr.js +17 -5
- umap/static/umap/locale/hr.json +17 -5
- umap/static/umap/locale/hu.js +39 -27
- umap/static/umap/locale/hu.json +39 -27
- umap/static/umap/locale/id.js +17 -5
- umap/static/umap/locale/id.json +17 -5
- umap/static/umap/locale/is.js +17 -5
- umap/static/umap/locale/is.json +17 -5
- umap/static/umap/locale/it.js +125 -113
- umap/static/umap/locale/it.json +125 -113
- umap/static/umap/locale/ja.js +17 -5
- umap/static/umap/locale/ja.json +17 -5
- umap/static/umap/locale/ko.js +17 -5
- umap/static/umap/locale/ko.json +17 -5
- umap/static/umap/locale/lt.js +17 -5
- umap/static/umap/locale/lt.json +17 -5
- umap/static/umap/locale/ms.js +17 -5
- umap/static/umap/locale/ms.json +17 -5
- umap/static/umap/locale/nl.js +132 -119
- umap/static/umap/locale/nl.json +132 -119
- umap/static/umap/locale/no.js +17 -5
- umap/static/umap/locale/no.json +17 -5
- umap/static/umap/locale/pl.js +17 -5
- umap/static/umap/locale/pl.json +17 -5
- umap/static/umap/locale/pl_PL.json +17 -5
- umap/static/umap/locale/pt.js +38 -25
- umap/static/umap/locale/pt.json +38 -25
- umap/static/umap/locale/pt_BR.js +17 -5
- umap/static/umap/locale/pt_BR.json +17 -5
- umap/static/umap/locale/pt_PT.js +17 -5
- umap/static/umap/locale/pt_PT.json +17 -5
- umap/static/umap/locale/ro.js +17 -5
- umap/static/umap/locale/ro.json +17 -5
- umap/static/umap/locale/ru.js +17 -5
- umap/static/umap/locale/ru.json +17 -5
- umap/static/umap/locale/sk_SK.js +17 -5
- umap/static/umap/locale/sk_SK.json +17 -5
- umap/static/umap/locale/sl.js +17 -5
- umap/static/umap/locale/sl.json +17 -5
- umap/static/umap/locale/sr.js +17 -5
- umap/static/umap/locale/sr.json +17 -5
- umap/static/umap/locale/sv.js +17 -5
- umap/static/umap/locale/sv.json +17 -5
- umap/static/umap/locale/th_TH.js +17 -5
- umap/static/umap/locale/th_TH.json +17 -5
- umap/static/umap/locale/tr.js +17 -5
- umap/static/umap/locale/tr.json +17 -5
- umap/static/umap/locale/uk_UA.js +17 -5
- umap/static/umap/locale/uk_UA.json +17 -5
- umap/static/umap/locale/vi.js +17 -5
- umap/static/umap/locale/vi.json +17 -5
- umap/static/umap/locale/vi_VN.json +17 -5
- umap/static/umap/locale/zh.js +17 -5
- umap/static/umap/locale/zh.json +17 -5
- umap/static/umap/locale/zh_CN.json +17 -5
- umap/static/umap/locale/zh_TW.Big5.json +17 -5
- umap/static/umap/locale/zh_TW.js +15 -5
- umap/static/umap/locale/zh_TW.json +15 -5
- umap/static/umap/map.css +29 -76
- umap/static/umap/nav.css +6 -3
- umap/static/umap/unittests/utils.js +14 -0
- umap/static/umap/vars.css +3 -0
- umap/static/umap/vendors/dompurify/purify.es.js +138 -354
- umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
- umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
- umap/sync/__init__.py +0 -0
- umap/sync/app.py +187 -0
- umap/sync/payloads.py +56 -0
- umap/templates/auth/user_detail.html +4 -0
- umap/templates/auth/user_form.html +9 -6
- umap/templates/auth/user_stars.html +4 -0
- umap/templates/base.html +1 -1
- umap/templates/registration/login.html +2 -5
- umap/templates/umap/about.html +5 -0
- umap/templates/umap/about_summary.html +2 -2
- umap/templates/umap/components/provider.html +8 -0
- umap/templates/umap/content_footer.html +1 -1
- umap/templates/umap/css.html +0 -2
- umap/templates/umap/js.html +0 -4
- umap/templates/umap/map_detail.html +1 -1
- umap/templates/umap/password_change.html +4 -0
- umap/templates/umap/password_change_done.html +4 -0
- umap/templates/umap/search.html +4 -0
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +4 -0
- umap/templates/umap/team_detail.html +4 -0
- umap/templates/umap/team_form.html +4 -0
- umap/templates/umap/user_dashboard.html +1 -1
- umap/templates/umap/user_teams.html +4 -0
- umap/tests/base.py +3 -1
- umap/tests/integration/conftest.py +16 -23
- umap/tests/integration/test_anonymous_owned_map.py +2 -2
- umap/tests/integration/test_basics.py +4 -7
- umap/tests/integration/test_caption.py +1 -0
- umap/tests/integration/test_categorized_layer.py +4 -8
- umap/tests/integration/test_choropleth.py +1 -1
- umap/tests/integration/test_conditional_rules.py +3 -3
- umap/tests/integration/test_draw_polygon.py +14 -22
- umap/tests/integration/test_draw_polyline.py +6 -14
- umap/tests/integration/test_edit_datalayer.py +11 -11
- umap/tests/integration/test_edit_map.py +30 -4
- umap/tests/integration/test_edit_marker.py +5 -5
- umap/tests/integration/test_edit_polygon.py +6 -6
- umap/tests/integration/test_features_id_generation.py +2 -6
- umap/tests/integration/test_import.py +115 -29
- umap/tests/integration/test_optimistic_merge.py +1 -0
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_picto.py +8 -8
- umap/tests/integration/test_save.py +3 -2
- umap/tests/integration/test_star.py +13 -9
- umap/tests/integration/test_tableeditor.py +8 -7
- umap/tests/integration/test_view_marker.py +10 -0
- umap/tests/integration/test_websocket_sync.py +239 -64
- umap/tests/settings.py +2 -0
- umap/tests/test_datalayer.py +2 -3
- umap/tests/test_datalayer_views.py +20 -1
- umap/tests/test_empty_trash.py +10 -3
- umap/tests/test_map_views.py +11 -0
- umap/utils.py +27 -11
- umap/views.py +37 -6
- {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/METADATA +22 -22
- {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/RECORD +249 -250
- {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/WHEEL +1 -1
- umap/management/commands/run_websocket_server.py +0 -23
- umap/settings/local_s3.py +0 -45
- umap/static/umap/bitbucket.png +0 -0
- umap/static/umap/github.png +0 -0
- umap/static/umap/js/umap.forms.js +0 -1242
- umap/static/umap/keycloak.png +0 -0
- umap/static/umap/openstreetmap.png +0 -0
- umap/static/umap/twitter.png +0 -0
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
- umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
- umap/tests/test_websocket_server.py +0 -22
- umap/websocket_server.py +0 -202
- {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
# Translators:
|
|
6
6
|
# Navhy, 2019
|
|
7
7
|
# Navhy, 2019
|
|
8
|
+
# Miguel Anxo Bouzada <mbouzada@gmail.com>, 2025
|
|
8
9
|
# Navhy, 2019
|
|
9
10
|
# Nemigo Galiza <lescamposines@gmail.com>, 2017
|
|
10
11
|
# Rafael Ávila Coya <ravilacoya@gmail.com>, 2014
|
|
@@ -12,9 +13,9 @@ msgid ""
|
|
|
12
13
|
msgstr ""
|
|
13
14
|
"Project-Id-Version: uMap\n"
|
|
14
15
|
"Report-Msgid-Bugs-To: \n"
|
|
15
|
-
"POT-Creation-Date:
|
|
16
|
+
"POT-Creation-Date: 2025-01-31 17:29+0000\n"
|
|
16
17
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
17
|
-
"Last-Translator:
|
|
18
|
+
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2025\n"
|
|
18
19
|
"Language-Team: Galician (http://app.transifex.com/openstreetmap/umap/language/gl/)\n"
|
|
19
20
|
"MIME-Version: 1.0\n"
|
|
20
21
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -24,21 +25,21 @@ msgstr ""
|
|
|
24
25
|
|
|
25
26
|
#: admin.py:16
|
|
26
27
|
msgid "CSV Export"
|
|
27
|
-
msgstr ""
|
|
28
|
+
msgstr "Exportar CSV"
|
|
28
29
|
|
|
29
30
|
#: decorators.py:60
|
|
30
31
|
msgid "This map is not publicly available"
|
|
31
|
-
msgstr ""
|
|
32
|
+
msgstr "Este mapa non está dispoñíbel publicamente"
|
|
32
33
|
|
|
33
34
|
#: middleware.py:13
|
|
34
35
|
msgid "Site is readonly for maintenance"
|
|
35
|
-
msgstr "O sitio
|
|
36
|
+
msgstr "O sitio é só de lectura por mantemento"
|
|
36
37
|
|
|
37
38
|
#: models.py:60 models.py:79
|
|
38
39
|
msgid "name"
|
|
39
40
|
msgstr "nome"
|
|
40
41
|
|
|
41
|
-
#: models.py:62 models.py:
|
|
42
|
+
#: models.py:62 models.py:485
|
|
42
43
|
msgid "description"
|
|
43
44
|
msgstr "descrición"
|
|
44
45
|
|
|
@@ -58,45 +59,45 @@ msgstr "Modelo de URL que usa o formato de teselas de OSM"
|
|
|
58
59
|
msgid "Order of the tilelayers in the edit box"
|
|
59
60
|
msgstr "Orde das capas base na caixa de edición"
|
|
60
61
|
|
|
61
|
-
#: models.py:175 models.py:
|
|
62
|
+
#: models.py:175 models.py:479
|
|
62
63
|
msgid "Only editable with secret edit link"
|
|
63
|
-
msgstr "Só
|
|
64
|
+
msgstr "Só é posíbel editalo coa ligazón secreta de edición"
|
|
64
65
|
|
|
65
|
-
#: models.py:176 models.py:
|
|
66
|
+
#: models.py:176 models.py:480
|
|
66
67
|
msgid "Everyone can edit"
|
|
67
|
-
msgstr "Calquera pode
|
|
68
|
+
msgstr "Calquera pode editalo"
|
|
68
69
|
|
|
69
|
-
#: models.py:179 models.py:
|
|
70
|
+
#: models.py:179 models.py:473
|
|
70
71
|
msgid "Everyone"
|
|
71
|
-
msgstr ""
|
|
72
|
+
msgstr "Calquera"
|
|
72
73
|
|
|
73
|
-
#: models.py:180 models.py:189 models.py:
|
|
74
|
+
#: models.py:180 models.py:189 models.py:474
|
|
74
75
|
msgid "Editors and team only"
|
|
75
|
-
msgstr ""
|
|
76
|
+
msgstr "Só editores e equipo"
|
|
76
77
|
|
|
77
|
-
#: models.py:181 models.py:
|
|
78
|
+
#: models.py:181 models.py:475
|
|
78
79
|
msgid "Owner only"
|
|
79
|
-
msgstr ""
|
|
80
|
+
msgstr "Só o propietario"
|
|
80
81
|
|
|
81
82
|
#: models.py:184
|
|
82
83
|
msgid "Draft (private)"
|
|
83
|
-
msgstr ""
|
|
84
|
+
msgstr "Borrador (privado)"
|
|
84
85
|
|
|
85
86
|
#: models.py:185
|
|
86
87
|
msgid "Everyone (public)"
|
|
87
|
-
msgstr ""
|
|
88
|
+
msgstr "Calquera (público)"
|
|
88
89
|
|
|
89
90
|
#: models.py:188
|
|
90
91
|
msgid "Anyone with link"
|
|
91
|
-
msgstr ""
|
|
92
|
+
msgstr "Calquera con ligazón"
|
|
92
93
|
|
|
93
94
|
#: models.py:190
|
|
94
95
|
msgid "Blocked"
|
|
95
|
-
msgstr ""
|
|
96
|
+
msgstr "Bloqueado"
|
|
96
97
|
|
|
97
|
-
#: models.py:191
|
|
98
|
+
#: models.py:191 models.py:469
|
|
98
99
|
msgid "Deleted"
|
|
99
|
-
msgstr ""
|
|
100
|
+
msgstr "Eliminado"
|
|
100
101
|
|
|
101
102
|
#: models.py:194
|
|
102
103
|
msgid "center"
|
|
@@ -104,7 +105,7 @@ msgstr "centrar"
|
|
|
104
105
|
|
|
105
106
|
#: models.py:195
|
|
106
107
|
msgid "zoom"
|
|
107
|
-
msgstr "
|
|
108
|
+
msgstr "zoom"
|
|
108
109
|
|
|
109
110
|
#: models.py:197
|
|
110
111
|
msgid "locate"
|
|
@@ -124,7 +125,7 @@ msgstr "licenza"
|
|
|
124
125
|
|
|
125
126
|
#: models.py:213
|
|
126
127
|
msgid "owner"
|
|
127
|
-
msgstr "
|
|
128
|
+
msgstr "propietario"
|
|
128
129
|
|
|
129
130
|
#: models.py:217
|
|
130
131
|
msgid "editors"
|
|
@@ -132,33 +133,33 @@ msgstr "editores"
|
|
|
132
133
|
|
|
133
134
|
#: models.py:223
|
|
134
135
|
msgid "team"
|
|
135
|
-
msgstr ""
|
|
136
|
+
msgstr "equipo"
|
|
136
137
|
|
|
137
|
-
#: models.py:229 models.py:
|
|
138
|
+
#: models.py:229 models.py:501
|
|
138
139
|
msgid "edit status"
|
|
139
140
|
msgstr "estado da edición"
|
|
140
141
|
|
|
141
|
-
#: models.py:234
|
|
142
|
+
#: models.py:234 models.py:506
|
|
142
143
|
msgid "share status"
|
|
143
144
|
msgstr "compartir o estado"
|
|
144
145
|
|
|
145
|
-
#: models.py:237 models.py:
|
|
146
|
+
#: models.py:237 models.py:496
|
|
146
147
|
msgid "settings"
|
|
147
148
|
msgstr "axustes"
|
|
148
149
|
|
|
149
|
-
#: models.py:
|
|
150
|
+
#: models.py:407
|
|
150
151
|
msgid "Clone of"
|
|
151
152
|
msgstr "Clon de"
|
|
152
153
|
|
|
153
|
-
#: models.py:
|
|
154
|
+
#: models.py:468 models.py:472 models.py:478
|
|
154
155
|
msgid "Inherit"
|
|
155
|
-
msgstr ""
|
|
156
|
+
msgstr "Herdar"
|
|
156
157
|
|
|
157
|
-
#: models.py:
|
|
158
|
+
#: models.py:491
|
|
158
159
|
msgid "display on load"
|
|
159
160
|
msgstr "amosar na carga"
|
|
160
161
|
|
|
161
|
-
#: models.py:
|
|
162
|
+
#: models.py:492
|
|
162
163
|
msgid "Display this layer on load."
|
|
163
164
|
msgstr "Amosar esta capa na carga."
|
|
164
165
|
|
|
@@ -167,71 +168,85 @@ msgid ""
|
|
|
167
168
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
168
169
|
"target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
|
|
169
170
|
" permissions."
|
|
170
|
-
msgstr ""
|
|
171
|
+
msgstr "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" target=\"_blank\">Consulta aquí a documentación</a> sobre como xestionar os permisos dos mapas."
|
|
171
172
|
|
|
172
173
|
#: templates/403.html:10 templates/404.html:8
|
|
173
174
|
msgid "← Go to the homepage"
|
|
174
|
-
msgstr ""
|
|
175
|
+
msgstr "← Ir á páxina de inicio"
|
|
175
176
|
|
|
176
177
|
#: templates/404.html:7
|
|
177
178
|
msgid "404 Page Not Found"
|
|
178
|
-
msgstr ""
|
|
179
|
+
msgstr "404 Páxina non atopada"
|
|
180
|
+
|
|
181
|
+
#: templates/auth/user_detail.html:6
|
|
182
|
+
#, python-format
|
|
183
|
+
msgid "%(current_user)s’s maps"
|
|
184
|
+
msgstr "Mapas de %(current_user)s"
|
|
179
185
|
|
|
180
|
-
#: templates/auth/user_detail.html:
|
|
186
|
+
#: templates/auth/user_detail.html:12
|
|
181
187
|
#, python-format
|
|
182
188
|
msgid "Browse %(current_user)s's maps"
|
|
183
189
|
msgstr "Navegador %(current_user)s dos mapas"
|
|
184
190
|
|
|
185
|
-
#: templates/auth/user_detail.html:
|
|
191
|
+
#: templates/auth/user_detail.html:21
|
|
186
192
|
#, python-format
|
|
187
193
|
msgid "%(current_user)s has no maps."
|
|
188
194
|
msgstr "%(current_user)s non ten mapas."
|
|
189
195
|
|
|
190
|
-
#: templates/auth/user_form.html:
|
|
196
|
+
#: templates/auth/user_form.html:6
|
|
197
|
+
msgid "My Profile"
|
|
198
|
+
msgstr "O meu perfil"
|
|
199
|
+
|
|
200
|
+
#: templates/auth/user_form.html:24 templates/umap/team_form.html:25
|
|
191
201
|
msgid "Save"
|
|
192
|
-
msgstr ""
|
|
202
|
+
msgstr "Gardar"
|
|
193
203
|
|
|
194
|
-
#: templates/auth/user_form.html:
|
|
204
|
+
#: templates/auth/user_form.html:30
|
|
195
205
|
msgid "Your current providers"
|
|
196
|
-
msgstr ""
|
|
206
|
+
msgstr "Os teus provedores actuais"
|
|
197
207
|
|
|
198
|
-
#: templates/auth/user_form.html:
|
|
208
|
+
#: templates/auth/user_form.html:44
|
|
199
209
|
msgid "Connect to another provider"
|
|
200
|
-
msgstr ""
|
|
210
|
+
msgstr "Conecta con outro provedor"
|
|
201
211
|
|
|
202
|
-
#: templates/auth/user_form.html:
|
|
212
|
+
#: templates/auth/user_form.html:47
|
|
203
213
|
msgid ""
|
|
204
214
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
205
215
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
206
|
-
msgstr ""
|
|
216
|
+
msgstr "É un bo hábito conectar a túa conta a máis dun provedor, no caso de que un provedor non estea dispoñíbel, de xeito temporal ou incluso permanente."
|
|
217
|
+
|
|
218
|
+
#: templates/auth/user_stars.html:6
|
|
219
|
+
#, python-format
|
|
220
|
+
msgid "%(current_user)s’s starred maps"
|
|
221
|
+
msgstr "Mapas destacados de %(current_user)s"
|
|
207
222
|
|
|
208
|
-
#: templates/auth/user_stars.html:
|
|
223
|
+
#: templates/auth/user_stars.html:12
|
|
209
224
|
#, python-format
|
|
210
225
|
msgid "Browse %(current_user)s's starred maps"
|
|
211
|
-
msgstr ""
|
|
226
|
+
msgstr "Consultar os mapas favoritos de %(current_user)s"
|
|
212
227
|
|
|
213
|
-
#: templates/auth/user_stars.html:
|
|
228
|
+
#: templates/auth/user_stars.html:21
|
|
214
229
|
#, python-format
|
|
215
230
|
msgid "%(current_user)s has no starred maps yet."
|
|
216
|
-
msgstr ""
|
|
231
|
+
msgstr "%(current_user)s aínda non ten mapas destacados con estrela."
|
|
217
232
|
|
|
218
233
|
#: templates/base.html:13
|
|
219
234
|
msgid ""
|
|
220
235
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
221
236
|
"them in your site."
|
|
222
|
-
msgstr ""
|
|
237
|
+
msgstr "uMap permíteche crear mapas con capas de OpenStreetMap nun minuto e incrustalos no teu sitio web."
|
|
223
238
|
|
|
224
239
|
#: templates/registration/login.html:6 templates/registration/login.html:46
|
|
225
240
|
msgid "Login"
|
|
226
|
-
msgstr "
|
|
241
|
+
msgstr "Acceder"
|
|
227
242
|
|
|
228
243
|
#: templates/registration/login.html:22
|
|
229
244
|
msgid "To save and easily find your maps, identify yourself."
|
|
230
|
-
msgstr ""
|
|
245
|
+
msgstr "Para gardar e atopar doadamente os seus mapas, identifíquese."
|
|
231
246
|
|
|
232
247
|
#: templates/registration/login.html:25
|
|
233
248
|
msgid "Please log in with your account:"
|
|
234
|
-
msgstr ""
|
|
249
|
+
msgstr "Accede coa túa conta"
|
|
235
250
|
|
|
236
251
|
#: templates/registration/login.html:42
|
|
237
252
|
msgid "Username"
|
|
@@ -243,14 +258,18 @@ msgstr "Contrasinal"
|
|
|
243
258
|
|
|
244
259
|
#: templates/registration/login.html:52
|
|
245
260
|
msgid "Please choose a provider:"
|
|
246
|
-
msgstr ""
|
|
261
|
+
msgstr "Escolle un provedor"
|
|
262
|
+
|
|
263
|
+
#: templates/umap/about.html:5 templates/umap/navigation.html:22
|
|
264
|
+
msgid "About"
|
|
265
|
+
msgstr "Sobre"
|
|
247
266
|
|
|
248
267
|
#: templates/umap/about_summary.html:12
|
|
249
268
|
#, python-format
|
|
250
269
|
msgid ""
|
|
251
270
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
252
271
|
"layers in a minute and embed them in your site."
|
|
253
|
-
msgstr "
|
|
272
|
+
msgstr "uMap permíteche crear mapas con capas de <a href=\"%(osm_url)s\" />OpenStreetMap</a> nun minuto e incrustalos no teu sitio web."
|
|
254
273
|
|
|
255
274
|
#: templates/umap/about_summary.html:23
|
|
256
275
|
msgid "Choose the layers of your map"
|
|
@@ -298,7 +317,7 @@ msgstr "Xogar ca versión de proba"
|
|
|
298
317
|
#: templates/umap/components/alerts/alert.html:66
|
|
299
318
|
#: templates/umap/components/alerts/alert.html:94
|
|
300
319
|
msgid "Close"
|
|
301
|
-
msgstr ""
|
|
320
|
+
msgstr "Pechar"
|
|
302
321
|
|
|
303
322
|
#: templates/umap/components/alerts/alert.html:32
|
|
304
323
|
#, python-format
|
|
@@ -306,45 +325,45 @@ msgid ""
|
|
|
306
325
|
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
307
326
|
"target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
308
327
|
"target=\"_blank\">log in</a>."
|
|
309
|
-
msgstr ""
|
|
328
|
+
msgstr "Consello pro: para atopar doadamente os teus mapas, <a href=\"%(login_url)s\" target=\"_blank\">crea unha conta</a> ou <a href=\"%(login_url)s\" target=\"_blank\">accede</a>."
|
|
310
329
|
|
|
311
330
|
#: templates/umap/components/alerts/alert.html:37
|
|
312
331
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
313
|
-
msgstr ""
|
|
332
|
+
msgstr "Aquí tes a túa ligazón secreta para editar o mapa, gárdeo a seguro:"
|
|
314
333
|
|
|
315
334
|
#: templates/umap/components/alerts/alert.html:41
|
|
316
335
|
msgid "Copy link"
|
|
317
|
-
msgstr ""
|
|
336
|
+
msgstr "Copiar a ligazón"
|
|
318
337
|
|
|
319
338
|
#: templates/umap/components/alerts/alert.html:48
|
|
320
339
|
msgid "Enter your email address to receive the secret link:"
|
|
321
|
-
msgstr ""
|
|
340
|
+
msgstr "Introduce o teu enderezo de correo para recibir a ligazón secreta:"
|
|
322
341
|
|
|
323
342
|
#: templates/umap/components/alerts/alert.html:54
|
|
324
343
|
msgid "Email"
|
|
325
|
-
msgstr ""
|
|
344
|
+
msgstr "Correo"
|
|
326
345
|
|
|
327
346
|
#: templates/umap/components/alerts/alert.html:57
|
|
328
347
|
msgid "Send me the link"
|
|
329
|
-
msgstr ""
|
|
348
|
+
msgstr "Enviádeme a ligazón"
|
|
330
349
|
|
|
331
350
|
#: templates/umap/components/alerts/alert.html:81
|
|
332
351
|
msgid "See their edits in another tab"
|
|
333
|
-
msgstr ""
|
|
352
|
+
msgstr "Consulta as súas edicións noutra lapela"
|
|
334
353
|
|
|
335
354
|
#: templates/umap/components/alerts/alert.html:84
|
|
336
355
|
msgid "Keep your changes and loose theirs"
|
|
337
|
-
msgstr ""
|
|
356
|
+
msgstr "Conserva os teus cambios e deixa os seus"
|
|
338
357
|
|
|
339
358
|
#: templates/umap/components/alerts/alert.html:87
|
|
340
359
|
msgid "Keep their changes and loose yours"
|
|
341
|
-
msgstr ""
|
|
360
|
+
msgstr "Conserva os seus cambios e deixa os teus"
|
|
342
361
|
|
|
343
362
|
#: templates/umap/content.html:26
|
|
344
363
|
msgid ""
|
|
345
364
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
346
365
|
"allowed."
|
|
347
|
-
msgstr ""
|
|
366
|
+
msgstr "Esta instancia de uMap está actualmente en modo de só lectura, non se permite a creación ou edición."
|
|
348
367
|
|
|
349
368
|
#: templates/umap/content.html:34
|
|
350
369
|
#, python-format
|
|
@@ -353,44 +372,44 @@ msgid ""
|
|
|
353
372
|
"need a stable instance, please use <a "
|
|
354
373
|
"href=\"%(stable_url)s\">%(stable_url)s</a>. You can also host your own "
|
|
355
374
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
356
|
-
msgstr "Esta é unha instancia de
|
|
375
|
+
msgstr "Esta é unha instancia de demostración, empregada para probas e publicacións previas. Se precisas unha instancia estábel, emprega <a href=\"%(stable_url)s\">%(stable_url)s</a>. Tamén podes aloxar a túa propia instancia, é de <a href=\"%(repo_url)s\">código aberto</a>!"
|
|
357
376
|
|
|
358
377
|
#: templates/umap/content_footer.html:5
|
|
359
378
|
msgid "An OpenStreetMap project"
|
|
360
|
-
msgstr ""
|
|
379
|
+
msgstr "Un proxecto de OpenStreetMap"
|
|
361
380
|
|
|
362
381
|
#: templates/umap/content_footer.html:6
|
|
363
382
|
msgid "version"
|
|
364
|
-
msgstr ""
|
|
383
|
+
msgstr "versión"
|
|
365
384
|
|
|
366
385
|
#: templates/umap/content_footer.html:7
|
|
367
386
|
msgid "Hosted by"
|
|
368
|
-
msgstr ""
|
|
387
|
+
msgstr "Aloxado por"
|
|
369
388
|
|
|
370
389
|
#: templates/umap/content_footer.html:8
|
|
371
390
|
msgid "Contact"
|
|
372
|
-
msgstr ""
|
|
391
|
+
msgstr "Contacto"
|
|
373
392
|
|
|
374
393
|
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
375
394
|
msgid "Help"
|
|
376
|
-
msgstr ""
|
|
395
|
+
msgstr "Axuda"
|
|
377
396
|
|
|
378
397
|
#: templates/umap/dashboard_menu.html:6
|
|
379
398
|
#, python-format
|
|
380
399
|
msgid "My Maps (%(count)s)"
|
|
381
|
-
msgstr ""
|
|
400
|
+
msgstr "Os meus mapas (%(count)s)"
|
|
382
401
|
|
|
383
402
|
#: templates/umap/dashboard_menu.html:8
|
|
384
403
|
msgid "My Maps"
|
|
385
|
-
msgstr ""
|
|
404
|
+
msgstr "Os meus mapas"
|
|
386
405
|
|
|
387
406
|
#: templates/umap/dashboard_menu.html:12
|
|
388
407
|
msgid "My profile"
|
|
389
|
-
msgstr ""
|
|
408
|
+
msgstr "O meu perfil"
|
|
390
409
|
|
|
391
410
|
#: templates/umap/dashboard_menu.html:15
|
|
392
411
|
msgid "My teams"
|
|
393
|
-
msgstr ""
|
|
412
|
+
msgstr "Os meus equipos"
|
|
394
413
|
|
|
395
414
|
#: templates/umap/home.html:14
|
|
396
415
|
msgid "Map of the uMaps"
|
|
@@ -398,7 +417,7 @@ msgstr "Mapa do uMaps"
|
|
|
398
417
|
|
|
399
418
|
#: templates/umap/home.html:24
|
|
400
419
|
msgid "Get inspired, browse maps"
|
|
401
|
-
msgstr "Inspírate
|
|
420
|
+
msgstr "Inspírate, consulta mapas"
|
|
402
421
|
|
|
403
422
|
#: templates/umap/login_popup_end.html:4
|
|
404
423
|
msgid "You are logged in. Continuing..."
|
|
@@ -412,97 +431,97 @@ msgstr "por"
|
|
|
412
431
|
msgid "More"
|
|
413
432
|
msgstr "Máis"
|
|
414
433
|
|
|
415
|
-
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:
|
|
434
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
|
|
416
435
|
msgid "Name"
|
|
417
|
-
msgstr ""
|
|
436
|
+
msgstr "Nome"
|
|
418
437
|
|
|
419
438
|
#: templates/umap/map_table.html:11
|
|
420
439
|
msgid "Preview"
|
|
421
|
-
msgstr ""
|
|
440
|
+
msgstr "Vista previa"
|
|
422
441
|
|
|
423
442
|
#: templates/umap/map_table.html:14
|
|
424
443
|
msgid "Who can see"
|
|
425
|
-
msgstr ""
|
|
444
|
+
msgstr "Quen pode ver"
|
|
426
445
|
|
|
427
446
|
#: templates/umap/map_table.html:17
|
|
428
447
|
msgid "Who can edit"
|
|
429
|
-
msgstr ""
|
|
448
|
+
msgstr "Quen pode editar"
|
|
430
449
|
|
|
431
450
|
#: templates/umap/map_table.html:20
|
|
432
451
|
msgid "Last save"
|
|
433
|
-
msgstr ""
|
|
452
|
+
msgstr "Última modificación"
|
|
434
453
|
|
|
435
454
|
#: templates/umap/map_table.html:23
|
|
436
455
|
msgid "Owner"
|
|
437
|
-
msgstr ""
|
|
456
|
+
msgstr "Propietario"
|
|
438
457
|
|
|
439
|
-
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:
|
|
458
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
|
|
440
459
|
msgid "Actions"
|
|
441
|
-
msgstr ""
|
|
460
|
+
msgstr "Accións"
|
|
442
461
|
|
|
443
462
|
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
444
463
|
msgid "Open preview"
|
|
445
|
-
msgstr ""
|
|
464
|
+
msgstr "Abrir a vista previa"
|
|
446
465
|
|
|
447
466
|
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
448
467
|
msgid "Share"
|
|
449
|
-
msgstr ""
|
|
468
|
+
msgstr "Compartir"
|
|
450
469
|
|
|
451
470
|
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
452
|
-
#: templates/umap/user_teams.html:
|
|
471
|
+
#: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
|
|
453
472
|
msgid "Edit"
|
|
454
|
-
msgstr ""
|
|
473
|
+
msgstr "Editar"
|
|
455
474
|
|
|
456
475
|
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
457
476
|
msgid "Download"
|
|
458
|
-
msgstr ""
|
|
477
|
+
msgstr "Descargar"
|
|
459
478
|
|
|
460
479
|
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
461
480
|
msgid "Clone"
|
|
462
|
-
msgstr ""
|
|
481
|
+
msgstr "Clonar"
|
|
463
482
|
|
|
464
483
|
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
465
484
|
msgid "Delete"
|
|
466
|
-
msgstr ""
|
|
485
|
+
msgstr "Eliminar"
|
|
467
486
|
|
|
468
487
|
#: templates/umap/map_table.html:117
|
|
469
488
|
msgid "first"
|
|
470
|
-
msgstr ""
|
|
489
|
+
msgstr "primeira"
|
|
471
490
|
|
|
472
491
|
#: templates/umap/map_table.html:118
|
|
473
492
|
msgid "previous"
|
|
474
|
-
msgstr ""
|
|
493
|
+
msgstr "anterior"
|
|
475
494
|
|
|
476
495
|
#: templates/umap/map_table.html:126
|
|
477
496
|
#, python-format
|
|
478
497
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
479
|
-
msgstr ""
|
|
498
|
+
msgstr "Páxina %(maps_number)s de %(num_pages)s"
|
|
480
499
|
|
|
481
500
|
#: templates/umap/map_table.html:131
|
|
482
501
|
msgid "next"
|
|
483
|
-
msgstr ""
|
|
502
|
+
msgstr "seguinte"
|
|
484
503
|
|
|
485
504
|
#: templates/umap/map_table.html:132
|
|
486
505
|
msgid "last"
|
|
487
|
-
msgstr ""
|
|
506
|
+
msgstr "última"
|
|
488
507
|
|
|
489
508
|
#: templates/umap/map_table.html:140
|
|
490
509
|
#, python-format
|
|
491
510
|
msgid "Lines per page: %(per_page)s"
|
|
492
|
-
msgstr ""
|
|
511
|
+
msgstr "Liñas por páxina: %(per_page)s"
|
|
493
512
|
|
|
494
513
|
#: templates/umap/map_table.html:145
|
|
495
514
|
#, python-format
|
|
496
515
|
msgid "%(count)s maps"
|
|
497
|
-
msgstr ""
|
|
516
|
+
msgstr "%(count)s mapas"
|
|
498
517
|
|
|
499
518
|
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
500
519
|
msgid "My Dashboard"
|
|
501
|
-
msgstr ""
|
|
520
|
+
msgstr "O meu taboleiro"
|
|
502
521
|
|
|
503
522
|
#: templates/umap/navigation.html:14
|
|
504
523
|
msgid "Starred maps"
|
|
505
|
-
msgstr ""
|
|
524
|
+
msgstr "Mapas destacados con estrelas"
|
|
506
525
|
|
|
507
526
|
#: templates/umap/navigation.html:18
|
|
508
527
|
msgid "Log in"
|
|
@@ -512,182 +531,208 @@ msgstr "Iniciar a sesión"
|
|
|
512
531
|
msgid "Sign in"
|
|
513
532
|
msgstr "Rexistrarse"
|
|
514
533
|
|
|
515
|
-
#: templates/umap/navigation.html:22
|
|
516
|
-
msgid "About"
|
|
517
|
-
msgstr "Acerca de"
|
|
518
|
-
|
|
519
534
|
#: templates/umap/navigation.html:30
|
|
520
535
|
msgid "Change password"
|
|
521
|
-
msgstr "
|
|
536
|
+
msgstr "Cambiar o contrasinal"
|
|
522
537
|
|
|
523
538
|
#: templates/umap/navigation.html:34
|
|
524
539
|
msgid "Log out"
|
|
525
540
|
msgstr "Saír"
|
|
526
541
|
|
|
527
|
-
#: templates/umap/password_change.html:
|
|
542
|
+
#: templates/umap/password_change.html:6
|
|
543
|
+
#: templates/umap/password_change.html:11
|
|
528
544
|
msgid "Password change"
|
|
529
|
-
msgstr "Contrasinal
|
|
545
|
+
msgstr "Contrasinal cambiado"
|
|
530
546
|
|
|
531
|
-
#: templates/umap/password_change.html:
|
|
547
|
+
#: templates/umap/password_change.html:14
|
|
532
548
|
msgid ""
|
|
533
549
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
534
550
|
" password twice so we can verify you typed it in correctly."
|
|
535
|
-
msgstr "
|
|
551
|
+
msgstr "Introduce o teu contrasinal antigo, por seguranza, e após introduce o teu novo contrasinal dúas veces para que poidamos verificar que o escribiches de xeito correcto."
|
|
536
552
|
|
|
537
|
-
#: templates/umap/password_change.html:
|
|
553
|
+
#: templates/umap/password_change.html:21
|
|
538
554
|
msgid "Old password"
|
|
539
555
|
msgstr "Contrasinal antigo"
|
|
540
556
|
|
|
541
|
-
#: templates/umap/password_change.html:
|
|
557
|
+
#: templates/umap/password_change.html:26
|
|
542
558
|
msgid "New password"
|
|
543
559
|
msgstr "Novo contrasinal"
|
|
544
560
|
|
|
545
|
-
#: templates/umap/password_change.html:
|
|
561
|
+
#: templates/umap/password_change.html:30
|
|
546
562
|
msgid "New password confirmation"
|
|
547
563
|
msgstr "Confirmar novo contrasinal"
|
|
548
564
|
|
|
549
|
-
#: templates/umap/password_change.html:
|
|
565
|
+
#: templates/umap/password_change.html:31
|
|
550
566
|
msgid "Change my password"
|
|
551
|
-
msgstr "
|
|
567
|
+
msgstr "Cambiar o meu contrasinal"
|
|
552
568
|
|
|
553
|
-
#: templates/umap/password_change_done.html:
|
|
569
|
+
#: templates/umap/password_change_done.html:6
|
|
570
|
+
#: templates/umap/password_change_done.html:11
|
|
554
571
|
msgid "Password change successful"
|
|
555
|
-
msgstr "O contrasinal foi
|
|
572
|
+
msgstr "O contrasinal foi cambiado correctamente"
|
|
556
573
|
|
|
557
|
-
#: templates/umap/password_change_done.html:
|
|
574
|
+
#: templates/umap/password_change_done.html:14
|
|
558
575
|
msgid "Your password was changed."
|
|
559
|
-
msgstr "O
|
|
576
|
+
msgstr "O teu contrasinal foi cambiado."
|
|
560
577
|
|
|
561
|
-
#: templates/umap/search.html:
|
|
578
|
+
#: templates/umap/search.html:6
|
|
579
|
+
msgid "Explore maps"
|
|
580
|
+
msgstr "Examinar mapas"
|
|
581
|
+
|
|
582
|
+
#: templates/umap/search.html:19
|
|
562
583
|
#, python-format
|
|
563
584
|
msgid "%(count)s map found:"
|
|
564
585
|
msgid_plural "%(count)s maps found:"
|
|
565
|
-
msgstr[0] ""
|
|
566
|
-
msgstr[1] ""
|
|
586
|
+
msgstr[0] "Atopouse %(count)s mapa:"
|
|
587
|
+
msgstr[1] "Atopáronse %(count)s mapas:"
|
|
567
588
|
|
|
568
|
-
#: templates/umap/search.html:
|
|
589
|
+
#: templates/umap/search.html:28
|
|
569
590
|
msgid "No map found."
|
|
570
|
-
msgstr ""
|
|
591
|
+
msgstr "Non se atopou ningún mapa."
|
|
571
592
|
|
|
572
|
-
#: templates/umap/search.html:
|
|
593
|
+
#: templates/umap/search.html:33
|
|
573
594
|
msgid "Latest created maps"
|
|
574
|
-
msgstr ""
|
|
595
|
+
msgstr "Últimos mapas creados"
|
|
575
596
|
|
|
576
597
|
#: templates/umap/search_bar.html:4
|
|
577
598
|
msgid "Search maps"
|
|
578
|
-
msgstr "
|
|
599
|
+
msgstr "Buscar mapas"
|
|
579
600
|
|
|
580
601
|
#: templates/umap/search_bar.html:15
|
|
581
602
|
msgid "Search"
|
|
582
|
-
msgstr "
|
|
603
|
+
msgstr "Buscar"
|
|
604
|
+
|
|
605
|
+
#: templates/umap/team_confirm_delete.html:6
|
|
606
|
+
msgid "Team deletion"
|
|
607
|
+
msgstr "Eliminación do equipo"
|
|
583
608
|
|
|
584
|
-
#: templates/umap/team_detail.html:
|
|
609
|
+
#: templates/umap/team_detail.html:6
|
|
610
|
+
#, python-format
|
|
611
|
+
msgid "%(current_team)s’s maps"
|
|
612
|
+
msgstr "Mapas de %(current_team)s"
|
|
613
|
+
|
|
614
|
+
#: templates/umap/team_detail.html:14
|
|
585
615
|
#, python-format
|
|
586
616
|
msgid "Browse %(current_team)s's maps"
|
|
587
|
-
msgstr ""
|
|
617
|
+
msgstr "Os mapas de %(current_team)s"
|
|
588
618
|
|
|
589
|
-
#: templates/umap/team_detail.html:
|
|
619
|
+
#: templates/umap/team_detail.html:26
|
|
590
620
|
#, python-format
|
|
591
621
|
msgid "%(current_team)s has no public maps."
|
|
592
|
-
msgstr ""
|
|
622
|
+
msgstr "%(current_team)s non ten mapas públicos"
|
|
623
|
+
|
|
624
|
+
#: templates/umap/team_form.html:6
|
|
625
|
+
msgid "Create or edit a team"
|
|
626
|
+
msgstr "Crear ou editar un equipo"
|
|
593
627
|
|
|
594
|
-
#: templates/umap/team_form.html:
|
|
628
|
+
#: templates/umap/team_form.html:28
|
|
595
629
|
msgid "Delete this team"
|
|
596
|
-
msgstr ""
|
|
630
|
+
msgstr "Eliminar este equipo"
|
|
597
631
|
|
|
598
|
-
#: templates/umap/team_form.html:
|
|
632
|
+
#: templates/umap/team_form.html:51
|
|
599
633
|
msgid "Add user"
|
|
600
|
-
msgstr ""
|
|
634
|
+
msgstr "Engadir usuario"
|
|
601
635
|
|
|
602
636
|
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
603
637
|
msgid "Search my maps"
|
|
604
|
-
msgstr ""
|
|
638
|
+
msgstr "Buscar nos meus mapas"
|
|
605
639
|
|
|
606
640
|
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
607
641
|
msgid "Map’s title"
|
|
608
|
-
msgstr ""
|
|
642
|
+
msgstr "Título do mapa"
|
|
609
643
|
|
|
610
644
|
#: templates/umap/user_dashboard.html:30
|
|
611
645
|
#, python-format
|
|
612
646
|
msgid "Download %(count)s maps"
|
|
613
|
-
msgstr ""
|
|
647
|
+
msgstr "Descargar %(count)s mapas"
|
|
614
648
|
|
|
615
649
|
#: templates/umap/user_dashboard.html:40
|
|
616
650
|
msgid "You have no map yet."
|
|
617
|
-
msgstr ""
|
|
651
|
+
msgstr "Aínda non tes ningún mapa."
|
|
652
|
+
|
|
653
|
+
#: templates/umap/user_teams.html:6
|
|
654
|
+
msgid "My Teams"
|
|
655
|
+
msgstr "Os meus equipos"
|
|
618
656
|
|
|
619
|
-
#: templates/umap/user_teams.html:
|
|
657
|
+
#: templates/umap/user_teams.html:21
|
|
620
658
|
msgid "Users"
|
|
621
|
-
msgstr ""
|
|
659
|
+
msgstr "Usuarios"
|
|
622
660
|
|
|
623
|
-
#: templates/umap/user_teams.html:
|
|
661
|
+
#: templates/umap/user_teams.html:52
|
|
624
662
|
msgid "New team"
|
|
625
|
-
msgstr ""
|
|
663
|
+
msgstr "Novo equipo"
|
|
626
664
|
|
|
627
665
|
#: views.py:234
|
|
628
666
|
msgid "Cannot delete a team with more than one member"
|
|
629
|
-
msgstr ""
|
|
667
|
+
msgstr "Non é posíbel eliminar un equipo con máis dun membro"
|
|
630
668
|
|
|
631
669
|
#: views.py:238
|
|
632
670
|
#, python-format
|
|
633
671
|
msgid "Team “%(name)s” has been deleted"
|
|
634
|
-
msgstr ""
|
|
672
|
+
msgstr "Foi eliminado o equipo %(name)s"
|
|
635
673
|
|
|
636
674
|
#: views.py:442
|
|
637
675
|
msgid "View the map"
|
|
638
|
-
msgstr "
|
|
676
|
+
msgstr "Ver o mapa"
|
|
639
677
|
|
|
640
|
-
#: views.py:
|
|
678
|
+
#: views.py:838
|
|
641
679
|
msgid "See full screen"
|
|
642
|
-
msgstr ""
|
|
680
|
+
msgstr "Ver a pantalla completa"
|
|
643
681
|
|
|
644
|
-
#: views.py:
|
|
682
|
+
#: views.py:981
|
|
645
683
|
msgid "Map editors updated with success!"
|
|
646
|
-
msgstr "O editores do mapa foron actualizados
|
|
684
|
+
msgstr "O editores do mapa foron actualizados correctamente!"
|
|
647
685
|
|
|
648
|
-
#: views.py:
|
|
686
|
+
#: views.py:1017
|
|
649
687
|
#, python-format
|
|
650
688
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
651
|
-
msgstr ""
|
|
689
|
+
msgstr "A ligazón de edición de uMap para o teu mapa: %(map_name)s"
|
|
652
690
|
|
|
653
|
-
#: views.py:
|
|
691
|
+
#: views.py:1020
|
|
654
692
|
#, python-format
|
|
655
693
|
msgid "Here is your secret edit link: %(link)s"
|
|
656
|
-
msgstr ""
|
|
694
|
+
msgstr "Aquí tes a túa ligazón secret de edicióna: %(link)s"
|
|
657
695
|
|
|
658
|
-
#: views.py:
|
|
696
|
+
#: views.py:1027
|
|
659
697
|
#, python-format
|
|
660
698
|
msgid "Can't send email to %(email)s"
|
|
661
|
-
msgstr ""
|
|
699
|
+
msgstr "Non é posíbel enviar o correo a %(email)s"
|
|
662
700
|
|
|
663
|
-
#: views.py:
|
|
701
|
+
#: views.py:1030
|
|
664
702
|
#, python-format
|
|
665
703
|
msgid "Email sent to %(email)s"
|
|
666
|
-
msgstr ""
|
|
704
|
+
msgstr "Correo enviado a %(email)s"
|
|
667
705
|
|
|
668
|
-
#: views.py:
|
|
706
|
+
#: views.py:1041
|
|
669
707
|
msgid "Only its owner can delete the map."
|
|
670
708
|
msgstr "Só o seu dono pode eliminar o mapa."
|
|
671
709
|
|
|
672
|
-
#: views.py:
|
|
710
|
+
#: views.py:1044
|
|
673
711
|
msgid "Map successfully deleted."
|
|
674
|
-
msgstr ""
|
|
712
|
+
msgstr "O mapa foi eliminado correctamente."
|
|
675
713
|
|
|
676
|
-
#: views.py:
|
|
714
|
+
#: views.py:1070
|
|
677
715
|
#, python-format
|
|
678
716
|
msgid ""
|
|
679
717
|
"Your map has been cloned! If you want to edit this map from another "
|
|
680
718
|
"computer, please use this link: %(anonymous_url)s"
|
|
681
|
-
msgstr "O teu mapa foi clonado! Se
|
|
719
|
+
msgstr "O teu mapa foi clonado! Se queres editar este mapa desde outro computador, emprega esta ligazón: %(anonymous_url)s"
|
|
682
720
|
|
|
683
|
-
#: views.py:
|
|
721
|
+
#: views.py:1075
|
|
684
722
|
msgid "Congratulations, your map has been cloned!"
|
|
685
723
|
msgstr "Parabéns! O teu mapa foi clonado!"
|
|
686
724
|
|
|
687
|
-
#: views.py:
|
|
725
|
+
#: views.py:1329
|
|
688
726
|
msgid "Layer successfully deleted."
|
|
689
|
-
msgstr "A capa foi eliminada
|
|
727
|
+
msgstr "A capa foi eliminada correctamente."
|
|
690
728
|
|
|
691
|
-
#: views.py:
|
|
729
|
+
#: views.py:1351
|
|
692
730
|
msgid "Permissions updated with success!"
|
|
693
|
-
msgstr ""
|
|
731
|
+
msgstr "Os permisos foron actualizados correctamente!"
|
|
732
|
+
|
|
733
|
+
#: views.py:1430
|
|
734
|
+
#, python-format
|
|
735
|
+
msgid ""
|
|
736
|
+
"Using “%(name)s” to authenticate is deprecated. Please configure another "
|
|
737
|
+
"provider in your profile page."
|
|
738
|
+
msgstr "Usar «%(name)s» para autenticarse está obsoleto. Configura outro provedor na túa páxina de perfil."
|