umap-project 2.9.0b0__py3-none-any.whl → 2.9.1__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.
- umap/__init__.py +1 -1
- umap/admin.py +15 -2
- 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 +112 -67
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +132 -87
- umap/locale/en/LC_MESSAGES/django.po +11 -10
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +117 -71
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +11 -10
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +219 -173
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +145 -100
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +198 -152
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +118 -73
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +112 -67
- umap/middleware.py +30 -1
- umap/models.py +20 -10
- umap/settings/base.py +2 -1
- umap/static/umap/base.css +4 -1
- umap/static/umap/css/bar.css +32 -0
- umap/static/umap/css/contextmenu.css +14 -2
- umap/static/umap/css/form.css +5 -10
- umap/static/umap/css/icon.css +39 -3
- umap/static/umap/css/panel.css +18 -1
- umap/static/umap/css/popup.css +0 -1
- umap/static/umap/img/16-white.svg +3 -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/twitter-oauth2.png +0 -0
- umap/static/umap/img/source/16-white.svg +4 -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/modules/browser.js +2 -2
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +80 -32
- umap/static/umap/js/modules/data/layer.js +37 -50
- umap/static/umap/js/modules/form/builder.js +23 -22
- umap/static/umap/js/modules/form/fields.js +13 -5
- umap/static/umap/js/modules/formatter.js +6 -2
- umap/static/umap/js/modules/help.js +17 -23
- umap/static/umap/js/modules/importer.js +5 -2
- umap/static/umap/js/modules/permissions.js +6 -2
- umap/static/umap/js/modules/rendering/layers/classified.js +1 -1
- umap/static/umap/js/modules/rendering/map.js +1 -21
- umap/static/umap/js/modules/rendering/ui.js +20 -38
- umap/static/umap/js/modules/rules.js +1 -1
- umap/static/umap/js/modules/saving.js +5 -0
- umap/static/umap/js/modules/schema.js +4 -1
- umap/static/umap/js/modules/sync/engine.js +39 -14
- umap/static/umap/js/modules/sync/updaters.js +7 -6
- umap/static/umap/js/modules/sync/websocket.js +48 -40
- umap/static/umap/js/modules/ui/bar.js +84 -0
- 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/umap.js +85 -44
- umap/static/umap/js/umap.controls.js +11 -341
- 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 +20 -15
- umap/static/umap/locale/br.json +20 -15
- umap/static/umap/locale/ca.js +8 -4
- umap/static/umap/locale/ca.json +8 -4
- umap/static/umap/locale/cs_CZ.js +8 -4
- umap/static/umap/locale/cs_CZ.json +8 -4
- umap/static/umap/locale/da.js +17 -5
- umap/static/umap/locale/da.json +17 -5
- umap/static/umap/locale/de.js +8 -4
- umap/static/umap/locale/de.json +8 -4
- umap/static/umap/locale/el.js +54 -50
- umap/static/umap/locale/el.json +54 -50
- umap/static/umap/locale/en.js +9 -4
- umap/static/umap/locale/en.json +9 -4
- umap/static/umap/locale/en_US.json +17 -5
- umap/static/umap/locale/es.js +13 -9
- umap/static/umap/locale/es.json +13 -9
- umap/static/umap/locale/et.js +17 -5
- umap/static/umap/locale/et.json +17 -5
- umap/static/umap/locale/eu.js +8 -4
- umap/static/umap/locale/eu.json +8 -4
- umap/static/umap/locale/fa_IR.js +8 -4
- umap/static/umap/locale/fa_IR.json +8 -4
- umap/static/umap/locale/fi.js +17 -5
- umap/static/umap/locale/fi.json +17 -5
- umap/static/umap/locale/fr.js +9 -4
- umap/static/umap/locale/fr.json +9 -4
- umap/static/umap/locale/gl.js +13 -9
- umap/static/umap/locale/gl.json +13 -9
- 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 +8 -4
- umap/static/umap/locale/hu.json +8 -4
- 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 +31 -27
- umap/static/umap/locale/it.json +31 -27
- 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 +8 -4
- umap/static/umap/locale/ms.json +8 -4
- umap/static/umap/locale/nl.js +132 -127
- umap/static/umap/locale/nl.json +132 -127
- umap/static/umap/locale/no.js +17 -5
- umap/static/umap/locale/no.json +17 -5
- umap/static/umap/locale/pl.js +8 -4
- umap/static/umap/locale/pl.json +8 -4
- umap/static/umap/locale/pl_PL.json +17 -5
- umap/static/umap/locale/pt.js +38 -33
- umap/static/umap/locale/pt.json +38 -33
- 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 +8 -4
- umap/static/umap/locale/pt_PT.json +8 -4
- 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 +8 -4
- umap/static/umap/locale/th_TH.json +8 -4
- 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 +14 -10
- umap/static/umap/locale/zh_TW.json +14 -10
- umap/static/umap/map.css +17 -68
- umap/static/umap/nav.css +4 -0
- umap/static/umap/vars.css +1 -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/app.py +19 -13
- umap/sync/payloads.py +8 -1
- umap/templates/auth/user_form.html +2 -2
- umap/templates/umap/content_footer.html +1 -1
- umap/templates/umap/css.html +0 -2
- umap/templates/umap/js.html +0 -1
- umap/templates/umap/messages.html +5 -1
- umap/templates/umap/search_bar.html +1 -0
- umap/tests/integration/test_anonymous_owned_map.py +2 -2
- umap/tests/integration/test_basics.py +2 -5
- 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 +11 -19
- umap/tests/integration/test_draw_polyline.py +6 -14
- umap/tests/integration/test_edit_datalayer.py +10 -10
- umap/tests/integration/test_edit_map.py +27 -1
- umap/tests/integration/test_edit_marker.py +5 -5
- umap/tests/integration/test_edit_polygon.py +5 -5
- umap/tests/integration/test_features_id_generation.py +2 -6
- umap/tests/integration/test_import.py +93 -29
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_save.py +2 -2
- umap/tests/integration/test_tableeditor.py +7 -7
- umap/tests/integration/test_view_marker.py +10 -0
- umap/tests/integration/test_websocket_sync.py +128 -32
- umap/utils.py +4 -1
- umap/views.py +0 -9
- {umap_project-2.9.0b0.dist-info → umap_project-2.9.1.dist-info}/METADATA +13 -13
- {umap_project-2.9.0b0.dist-info → umap_project-2.9.1.dist-info}/RECORD +202 -204
- umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
- {umap_project-2.9.0b0.dist-info → umap_project-2.9.1.dist-info}/WHEEL +0 -0
- {umap_project-2.9.0b0.dist-info → umap_project-2.9.1.dist-info}/entry_points.txt +0 -0
- {umap_project-2.9.0b0.dist-info → umap_project-2.9.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
# Eric Armijo, 2023
|
|
9
9
|
# Gonzalo Gabriel Perez <zalitoar@gmail.com>, 2019
|
|
10
10
|
# Ignacio L'Episcopo, 2024
|
|
11
|
+
# Ignacio L'Episcopo, 2024-2025
|
|
11
12
|
# Igor Támara <igor@tamarapatino.org>, 2013
|
|
12
13
|
# 3c4f354c26c2c190ba28f9c2666d7fdb_003e9d1 <b28923423b98dace80389ae64c99bf93_129697>, 2014
|
|
13
14
|
# 3c4f354c26c2c190ba28f9c2666d7fdb_003e9d1 <b28923423b98dace80389ae64c99bf93_129697>, 2014,2016-2017,2020
|
|
@@ -16,9 +17,9 @@ msgid ""
|
|
|
16
17
|
msgstr ""
|
|
17
18
|
"Project-Id-Version: uMap\n"
|
|
18
19
|
"Report-Msgid-Bugs-To: \n"
|
|
19
|
-
"POT-Creation-Date:
|
|
20
|
+
"POT-Creation-Date: 2025-03-03 17:36+0000\n"
|
|
20
21
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
21
|
-
"Last-Translator: Ignacio L'Episcopo, 2024\n"
|
|
22
|
+
"Last-Translator: Ignacio L'Episcopo, 2024-2025\n"
|
|
22
23
|
"Language-Team: Spanish (http://app.transifex.com/openstreetmap/umap/language/es/)\n"
|
|
23
24
|
"MIME-Version: 1.0\n"
|
|
24
25
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -32,17 +33,25 @@ msgstr "Exportar CSV"
|
|
|
32
33
|
|
|
33
34
|
#: decorators.py:60
|
|
34
35
|
msgid "This map is not publicly available"
|
|
35
|
-
msgstr ""
|
|
36
|
+
msgstr "Este mapa no está disponible públicamente"
|
|
36
37
|
|
|
37
|
-
#: middleware.py:
|
|
38
|
+
#: middleware.py:19
|
|
38
39
|
msgid "Site is readonly for maintenance"
|
|
39
40
|
msgstr "Sitio en modo solo lectura por mantenimiento"
|
|
40
41
|
|
|
42
|
+
#: middleware.py:34
|
|
43
|
+
#, python-format
|
|
44
|
+
msgid ""
|
|
45
|
+
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
46
|
+
"Please configure another provider below before losing access to your account"
|
|
47
|
+
" and maps."
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
41
50
|
#: models.py:60 models.py:79
|
|
42
51
|
msgid "name"
|
|
43
52
|
msgstr "nombre"
|
|
44
53
|
|
|
45
|
-
#: models.py:62 models.py:
|
|
54
|
+
#: models.py:62 models.py:485
|
|
46
55
|
msgid "description"
|
|
47
56
|
msgstr "descripción"
|
|
48
57
|
|
|
@@ -62,29 +71,29 @@ msgstr "Plantilla de URL usando el formato de teselas OSM"
|
|
|
62
71
|
msgid "Order of the tilelayers in the edit box"
|
|
63
72
|
msgstr "Orden de las capas de teselas en el cuadro de edición"
|
|
64
73
|
|
|
65
|
-
#: models.py:175 models.py:
|
|
74
|
+
#: models.py:175 models.py:479
|
|
66
75
|
msgid "Only editable with secret edit link"
|
|
67
76
|
msgstr "Solo editable con enlace secreto de edición"
|
|
68
77
|
|
|
69
|
-
#: models.py:176 models.py:
|
|
78
|
+
#: models.py:176 models.py:480
|
|
70
79
|
msgid "Everyone can edit"
|
|
71
80
|
msgstr "Todos pueden editar"
|
|
72
81
|
|
|
73
|
-
#: models.py:179 models.py:
|
|
82
|
+
#: models.py:179 models.py:473
|
|
74
83
|
msgid "Everyone"
|
|
75
84
|
msgstr "Todos"
|
|
76
85
|
|
|
77
|
-
#: models.py:180 models.py:189 models.py:
|
|
86
|
+
#: models.py:180 models.py:189 models.py:474
|
|
78
87
|
msgid "Editors and team only"
|
|
79
88
|
msgstr "Solo editores y equipo"
|
|
80
89
|
|
|
81
|
-
#: models.py:181 models.py:
|
|
90
|
+
#: models.py:181 models.py:475
|
|
82
91
|
msgid "Owner only"
|
|
83
92
|
msgstr "Solo el propietario"
|
|
84
93
|
|
|
85
94
|
#: models.py:184
|
|
86
95
|
msgid "Draft (private)"
|
|
87
|
-
msgstr ""
|
|
96
|
+
msgstr "Borrador (privado)"
|
|
88
97
|
|
|
89
98
|
#: models.py:185
|
|
90
99
|
msgid "Everyone (public)"
|
|
@@ -98,9 +107,9 @@ msgstr "Cualquiera con el enlace"
|
|
|
98
107
|
msgid "Blocked"
|
|
99
108
|
msgstr "Bloqueado"
|
|
100
109
|
|
|
101
|
-
#: models.py:191
|
|
110
|
+
#: models.py:191 models.py:469
|
|
102
111
|
msgid "Deleted"
|
|
103
|
-
msgstr ""
|
|
112
|
+
msgstr "Eliminado"
|
|
104
113
|
|
|
105
114
|
#: models.py:194
|
|
106
115
|
msgid "center"
|
|
@@ -138,31 +147,31 @@ msgstr "editores"
|
|
|
138
147
|
msgid "team"
|
|
139
148
|
msgstr "equipo"
|
|
140
149
|
|
|
141
|
-
#: models.py:229 models.py:
|
|
150
|
+
#: models.py:229 models.py:501
|
|
142
151
|
msgid "edit status"
|
|
143
152
|
msgstr "estado de edición"
|
|
144
153
|
|
|
145
|
-
#: models.py:234
|
|
154
|
+
#: models.py:234 models.py:506
|
|
146
155
|
msgid "share status"
|
|
147
156
|
msgstr "estado de compartir"
|
|
148
157
|
|
|
149
|
-
#: models.py:237 models.py:
|
|
158
|
+
#: models.py:237 models.py:496
|
|
150
159
|
msgid "settings"
|
|
151
160
|
msgstr "ajustes"
|
|
152
161
|
|
|
153
|
-
#: models.py:
|
|
162
|
+
#: models.py:407
|
|
154
163
|
msgid "Clone of"
|
|
155
164
|
msgstr "Clon de"
|
|
156
165
|
|
|
157
|
-
#: models.py:
|
|
166
|
+
#: models.py:468 models.py:472 models.py:478
|
|
158
167
|
msgid "Inherit"
|
|
159
168
|
msgstr "Heredar"
|
|
160
169
|
|
|
161
|
-
#: models.py:
|
|
170
|
+
#: models.py:491
|
|
162
171
|
msgid "display on load"
|
|
163
172
|
msgstr "mostrar al cargar"
|
|
164
173
|
|
|
165
|
-
#: models.py:
|
|
174
|
+
#: models.py:492
|
|
166
175
|
msgid "Display this layer on load."
|
|
167
176
|
msgstr "Mostrar esta capa al cargar."
|
|
168
177
|
|
|
@@ -171,50 +180,64 @@ msgid ""
|
|
|
171
180
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
172
181
|
"target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
|
|
173
182
|
" permissions."
|
|
174
|
-
msgstr ""
|
|
183
|
+
msgstr "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" target=\"_blank\">Consulta aquí la documentación</a> sobre cómo gestionar los permisos del mapa."
|
|
175
184
|
|
|
176
185
|
#: templates/403.html:10 templates/404.html:8
|
|
177
186
|
msgid "← Go to the homepage"
|
|
178
|
-
msgstr ""
|
|
187
|
+
msgstr "← Ir a la página principal"
|
|
179
188
|
|
|
180
189
|
#: templates/404.html:7
|
|
181
190
|
msgid "404 Page Not Found"
|
|
182
|
-
msgstr ""
|
|
191
|
+
msgstr "404 Página no encontrada"
|
|
192
|
+
|
|
193
|
+
#: templates/auth/user_detail.html:6
|
|
194
|
+
#, python-format
|
|
195
|
+
msgid "%(current_user)s’s maps"
|
|
196
|
+
msgstr "Mapas de %(current_user)s"
|
|
183
197
|
|
|
184
|
-
#: templates/auth/user_detail.html:
|
|
198
|
+
#: templates/auth/user_detail.html:12
|
|
185
199
|
#, python-format
|
|
186
200
|
msgid "Browse %(current_user)s's maps"
|
|
187
201
|
msgstr "Explorar los mapas de %(current_user)s"
|
|
188
202
|
|
|
189
|
-
#: templates/auth/user_detail.html:
|
|
203
|
+
#: templates/auth/user_detail.html:21
|
|
190
204
|
#, python-format
|
|
191
205
|
msgid "%(current_user)s has no maps."
|
|
192
206
|
msgstr "%(current_user)s no tiene mapas."
|
|
193
207
|
|
|
194
|
-
#: templates/auth/user_form.html:
|
|
208
|
+
#: templates/auth/user_form.html:6
|
|
209
|
+
msgid "My Profile"
|
|
210
|
+
msgstr "Mi perfil"
|
|
211
|
+
|
|
212
|
+
#: templates/auth/user_form.html:24 templates/umap/team_form.html:25
|
|
195
213
|
msgid "Save"
|
|
196
214
|
msgstr "Guardar"
|
|
197
215
|
|
|
198
|
-
#: templates/auth/user_form.html:
|
|
216
|
+
#: templates/auth/user_form.html:30
|
|
199
217
|
msgid "Your current providers"
|
|
200
218
|
msgstr "Tus proveedores actuales"
|
|
201
219
|
|
|
202
|
-
#: templates/auth/user_form.html:
|
|
220
|
+
#: templates/auth/user_form.html:44
|
|
203
221
|
msgid "Connect to another provider"
|
|
204
222
|
msgstr "Conectar con otro proveedor"
|
|
205
223
|
|
|
206
|
-
#: templates/auth/user_form.html:
|
|
224
|
+
#: templates/auth/user_form.html:47
|
|
207
225
|
msgid ""
|
|
208
226
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
209
227
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
210
228
|
msgstr "Es un buen hábito conectar tu cuenta a más de un proveedor, en caso de que uno no esté disponible, temporal o permanentemente."
|
|
211
229
|
|
|
212
|
-
#: templates/auth/user_stars.html:
|
|
230
|
+
#: templates/auth/user_stars.html:6
|
|
231
|
+
#, python-format
|
|
232
|
+
msgid "%(current_user)s’s starred maps"
|
|
233
|
+
msgstr "Mapas destacados de %(current_user)s"
|
|
234
|
+
|
|
235
|
+
#: templates/auth/user_stars.html:12
|
|
213
236
|
#, python-format
|
|
214
237
|
msgid "Browse %(current_user)s's starred maps"
|
|
215
238
|
msgstr "Explorar los mapas destacados de %(current_user)s"
|
|
216
239
|
|
|
217
|
-
#: templates/auth/user_stars.html:
|
|
240
|
+
#: templates/auth/user_stars.html:21
|
|
218
241
|
#, python-format
|
|
219
242
|
msgid "%(current_user)s has no starred maps yet."
|
|
220
243
|
msgstr "%(current_user)s no tiene mapas destacados todavía."
|
|
@@ -231,11 +254,11 @@ msgstr "Iniciar sesión"
|
|
|
231
254
|
|
|
232
255
|
#: templates/registration/login.html:22
|
|
233
256
|
msgid "To save and easily find your maps, identify yourself."
|
|
234
|
-
msgstr ""
|
|
257
|
+
msgstr "Para guardar y encontrar fácilmente tus mapas, identifícate."
|
|
235
258
|
|
|
236
259
|
#: templates/registration/login.html:25
|
|
237
260
|
msgid "Please log in with your account:"
|
|
238
|
-
msgstr ""
|
|
261
|
+
msgstr "Por favor, inicia sesión con tu cuenta:"
|
|
239
262
|
|
|
240
263
|
#: templates/registration/login.html:42
|
|
241
264
|
msgid "Username"
|
|
@@ -247,7 +270,11 @@ msgstr "Contraseña"
|
|
|
247
270
|
|
|
248
271
|
#: templates/registration/login.html:52
|
|
249
272
|
msgid "Please choose a provider:"
|
|
250
|
-
msgstr ""
|
|
273
|
+
msgstr "Por favor, elige un proveedor:"
|
|
274
|
+
|
|
275
|
+
#: templates/umap/about.html:5 templates/umap/navigation.html:22
|
|
276
|
+
msgid "About"
|
|
277
|
+
msgstr "Acerca de"
|
|
251
278
|
|
|
252
279
|
#: templates/umap/about_summary.html:12
|
|
253
280
|
#, python-format
|
|
@@ -416,7 +443,7 @@ msgstr "por"
|
|
|
416
443
|
msgid "More"
|
|
417
444
|
msgstr "Más"
|
|
418
445
|
|
|
419
|
-
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:
|
|
446
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
|
|
420
447
|
msgid "Name"
|
|
421
448
|
msgstr "Nombre"
|
|
422
449
|
|
|
@@ -440,7 +467,7 @@ msgstr "Último guardado"
|
|
|
440
467
|
msgid "Owner"
|
|
441
468
|
msgstr "Dueño"
|
|
442
469
|
|
|
443
|
-
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:
|
|
470
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
|
|
444
471
|
msgid "Actions"
|
|
445
472
|
msgstr "Acciones"
|
|
446
473
|
|
|
@@ -453,7 +480,7 @@ msgid "Share"
|
|
|
453
480
|
msgstr "Compartir"
|
|
454
481
|
|
|
455
482
|
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
456
|
-
#: templates/umap/user_teams.html:
|
|
483
|
+
#: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
|
|
457
484
|
msgid "Edit"
|
|
458
485
|
msgstr "Editar"
|
|
459
486
|
|
|
@@ -516,10 +543,6 @@ msgstr "Ingresar"
|
|
|
516
543
|
msgid "Sign in"
|
|
517
544
|
msgstr "Regístrarse"
|
|
518
545
|
|
|
519
|
-
#: templates/umap/navigation.html:22
|
|
520
|
-
msgid "About"
|
|
521
|
-
msgstr "Acerca de"
|
|
522
|
-
|
|
523
546
|
#: templates/umap/navigation.html:30
|
|
524
547
|
msgid "Change password"
|
|
525
548
|
msgstr "Cambiar contraseña"
|
|
@@ -528,41 +551,47 @@ msgstr "Cambiar contraseña"
|
|
|
528
551
|
msgid "Log out"
|
|
529
552
|
msgstr "Salir"
|
|
530
553
|
|
|
531
|
-
#: templates/umap/password_change.html:
|
|
554
|
+
#: templates/umap/password_change.html:6
|
|
555
|
+
#: templates/umap/password_change.html:11
|
|
532
556
|
msgid "Password change"
|
|
533
557
|
msgstr "Contraseña cambiada"
|
|
534
558
|
|
|
535
|
-
#: templates/umap/password_change.html:
|
|
559
|
+
#: templates/umap/password_change.html:14
|
|
536
560
|
msgid ""
|
|
537
561
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
538
562
|
" password twice so we can verify you typed it in correctly."
|
|
539
563
|
msgstr "Introduzca su contraseña antigua, por seguridad, y luego introduzca su nueva contraseña dos veces para que podamos verificar si ha escrito correctamente."
|
|
540
564
|
|
|
541
|
-
#: templates/umap/password_change.html:
|
|
565
|
+
#: templates/umap/password_change.html:21
|
|
542
566
|
msgid "Old password"
|
|
543
567
|
msgstr "Contraseña antigua"
|
|
544
568
|
|
|
545
|
-
#: templates/umap/password_change.html:
|
|
569
|
+
#: templates/umap/password_change.html:26
|
|
546
570
|
msgid "New password"
|
|
547
571
|
msgstr "Nueva contraseña"
|
|
548
572
|
|
|
549
|
-
#: templates/umap/password_change.html:
|
|
573
|
+
#: templates/umap/password_change.html:30
|
|
550
574
|
msgid "New password confirmation"
|
|
551
575
|
msgstr "Confirmar nueva contraseña"
|
|
552
576
|
|
|
553
|
-
#: templates/umap/password_change.html:
|
|
577
|
+
#: templates/umap/password_change.html:31
|
|
554
578
|
msgid "Change my password"
|
|
555
579
|
msgstr "Cambiar mi contraseña"
|
|
556
580
|
|
|
557
|
-
#: templates/umap/password_change_done.html:
|
|
581
|
+
#: templates/umap/password_change_done.html:6
|
|
582
|
+
#: templates/umap/password_change_done.html:11
|
|
558
583
|
msgid "Password change successful"
|
|
559
584
|
msgstr "Contraseña cambiada con éxito"
|
|
560
585
|
|
|
561
|
-
#: templates/umap/password_change_done.html:
|
|
586
|
+
#: templates/umap/password_change_done.html:14
|
|
562
587
|
msgid "Your password was changed."
|
|
563
588
|
msgstr "Su contraseña fue guardada."
|
|
564
589
|
|
|
565
|
-
#: templates/umap/search.html:
|
|
590
|
+
#: templates/umap/search.html:6
|
|
591
|
+
msgid "Explore maps"
|
|
592
|
+
msgstr "Explorar mapas"
|
|
593
|
+
|
|
594
|
+
#: templates/umap/search.html:19
|
|
566
595
|
#, python-format
|
|
567
596
|
msgid "%(count)s map found:"
|
|
568
597
|
msgid_plural "%(count)s maps found:"
|
|
@@ -570,11 +599,11 @@ msgstr[0] "%(count)s mapa encontrado:"
|
|
|
570
599
|
msgstr[1] "%(count)s mapas encontrados:"
|
|
571
600
|
msgstr[2] "%(count)s mapas encontrados:"
|
|
572
601
|
|
|
573
|
-
#: templates/umap/search.html:
|
|
602
|
+
#: templates/umap/search.html:28
|
|
574
603
|
msgid "No map found."
|
|
575
604
|
msgstr "No se ha encontrado ningún mapa."
|
|
576
605
|
|
|
577
|
-
#: templates/umap/search.html:
|
|
606
|
+
#: templates/umap/search.html:33
|
|
578
607
|
msgid "Latest created maps"
|
|
579
608
|
msgstr "Últimos mapas creados"
|
|
580
609
|
|
|
@@ -582,25 +611,38 @@ msgstr "Últimos mapas creados"
|
|
|
582
611
|
msgid "Search maps"
|
|
583
612
|
msgstr "Buscar mapas"
|
|
584
613
|
|
|
585
|
-
#: templates/umap/search_bar.html:
|
|
614
|
+
#: templates/umap/search_bar.html:16
|
|
586
615
|
msgid "Search"
|
|
587
616
|
msgstr "Buscar"
|
|
588
617
|
|
|
589
|
-
#: templates/umap/
|
|
618
|
+
#: templates/umap/team_confirm_delete.html:6
|
|
619
|
+
msgid "Team deletion"
|
|
620
|
+
msgstr "Eliminación de equipo"
|
|
621
|
+
|
|
622
|
+
#: templates/umap/team_detail.html:6
|
|
623
|
+
#, python-format
|
|
624
|
+
msgid "%(current_team)s’s maps"
|
|
625
|
+
msgstr "Mapas de %(current_team)s"
|
|
626
|
+
|
|
627
|
+
#: templates/umap/team_detail.html:14
|
|
590
628
|
#, python-format
|
|
591
629
|
msgid "Browse %(current_team)s's maps"
|
|
592
630
|
msgstr "Explorar los mapas de %(current_team)s"
|
|
593
631
|
|
|
594
|
-
#: templates/umap/team_detail.html:
|
|
632
|
+
#: templates/umap/team_detail.html:26
|
|
595
633
|
#, python-format
|
|
596
634
|
msgid "%(current_team)s has no public maps."
|
|
597
635
|
msgstr "%(current_team)s no tiene mapas públicos."
|
|
598
636
|
|
|
599
|
-
#: templates/umap/team_form.html:
|
|
637
|
+
#: templates/umap/team_form.html:6
|
|
638
|
+
msgid "Create or edit a team"
|
|
639
|
+
msgstr "Crear o editar un equipo"
|
|
640
|
+
|
|
641
|
+
#: templates/umap/team_form.html:28
|
|
600
642
|
msgid "Delete this team"
|
|
601
643
|
msgstr "Eliminar este equipo"
|
|
602
644
|
|
|
603
|
-
#: templates/umap/team_form.html:
|
|
645
|
+
#: templates/umap/team_form.html:51
|
|
604
646
|
msgid "Add user"
|
|
605
647
|
msgstr "Añadir usuario"
|
|
606
648
|
|
|
@@ -621,11 +663,15 @@ msgstr "Descargar %(count)s mapas"
|
|
|
621
663
|
msgid "You have no map yet."
|
|
622
664
|
msgstr "Aún no tiene mapa."
|
|
623
665
|
|
|
624
|
-
#: templates/umap/user_teams.html:
|
|
666
|
+
#: templates/umap/user_teams.html:6
|
|
667
|
+
msgid "My Teams"
|
|
668
|
+
msgstr "Mis equipos"
|
|
669
|
+
|
|
670
|
+
#: templates/umap/user_teams.html:21
|
|
625
671
|
msgid "Users"
|
|
626
672
|
msgstr "Usuarios"
|
|
627
673
|
|
|
628
|
-
#: templates/umap/user_teams.html:
|
|
674
|
+
#: templates/umap/user_teams.html:52
|
|
629
675
|
msgid "New team"
|
|
630
676
|
msgstr "Nuevo equipo"
|
|
631
677
|
|
|
@@ -642,57 +688,57 @@ msgstr "El equipo “%(name)s” ha sido eliminado"
|
|
|
642
688
|
msgid "View the map"
|
|
643
689
|
msgstr "Ver el mapa"
|
|
644
690
|
|
|
645
|
-
#: views.py:
|
|
691
|
+
#: views.py:838
|
|
646
692
|
msgid "See full screen"
|
|
647
693
|
msgstr "Ver en pantalla completa"
|
|
648
694
|
|
|
649
|
-
#: views.py:
|
|
695
|
+
#: views.py:981
|
|
650
696
|
msgid "Map editors updated with success!"
|
|
651
697
|
msgstr "¡Los editores del mapas han sido actualizados con éxito!"
|
|
652
698
|
|
|
653
|
-
#: views.py:
|
|
699
|
+
#: views.py:1017
|
|
654
700
|
#, python-format
|
|
655
701
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
656
702
|
msgstr "El enlace de edición de uMap para tu mapa: %(map_name)s"
|
|
657
703
|
|
|
658
|
-
#: views.py:
|
|
704
|
+
#: views.py:1020
|
|
659
705
|
#, python-format
|
|
660
706
|
msgid "Here is your secret edit link: %(link)s"
|
|
661
707
|
msgstr "Aquí está tu enlace secreto de edición: %(link)s"
|
|
662
708
|
|
|
663
|
-
#: views.py:
|
|
709
|
+
#: views.py:1027
|
|
664
710
|
#, python-format
|
|
665
711
|
msgid "Can't send email to %(email)s"
|
|
666
712
|
msgstr "No se puede enviar correo electrónico a %(email)s"
|
|
667
713
|
|
|
668
|
-
#: views.py:
|
|
714
|
+
#: views.py:1030
|
|
669
715
|
#, python-format
|
|
670
716
|
msgid "Email sent to %(email)s"
|
|
671
717
|
msgstr "Correo electrónico enviado a %(email)s"
|
|
672
718
|
|
|
673
|
-
#: views.py:
|
|
719
|
+
#: views.py:1041
|
|
674
720
|
msgid "Only its owner can delete the map."
|
|
675
721
|
msgstr "Sólo el propietario puede borrar el mapa."
|
|
676
722
|
|
|
677
|
-
#: views.py:
|
|
723
|
+
#: views.py:1044
|
|
678
724
|
msgid "Map successfully deleted."
|
|
679
725
|
msgstr "Mapa eliminado correctamente."
|
|
680
726
|
|
|
681
|
-
#: views.py:
|
|
727
|
+
#: views.py:1070
|
|
682
728
|
#, python-format
|
|
683
729
|
msgid ""
|
|
684
730
|
"Your map has been cloned! If you want to edit this map from another "
|
|
685
731
|
"computer, please use this link: %(anonymous_url)s"
|
|
686
732
|
msgstr "¡Tu mapa ha sido clonado! Si quieres editar este mapa desde otro ordenador, usa este enlace: %(anonymous_url)s"
|
|
687
733
|
|
|
688
|
-
#: views.py:
|
|
734
|
+
#: views.py:1075
|
|
689
735
|
msgid "Congratulations, your map has been cloned!"
|
|
690
736
|
msgstr "¡Enhorabuena! ¡Tu mapa ha sido clonado!"
|
|
691
737
|
|
|
692
|
-
#: views.py:
|
|
738
|
+
#: views.py:1329
|
|
693
739
|
msgid "Layer successfully deleted."
|
|
694
740
|
msgstr "Se eliminó la capa con éxito."
|
|
695
741
|
|
|
696
|
-
#: views.py:
|
|
742
|
+
#: views.py:1351
|
|
697
743
|
msgid "Permissions updated with success!"
|
|
698
744
|
msgstr "¡Permisos actualizados con éxito!"
|
|
Binary file
|
|
@@ -24,7 +24,7 @@ msgid ""
|
|
|
24
24
|
msgstr ""
|
|
25
25
|
"Project-Id-Version: uMap\n"
|
|
26
26
|
"Report-Msgid-Bugs-To: \n"
|
|
27
|
-
"POT-Creation-Date: 2025-
|
|
27
|
+
"POT-Creation-Date: 2025-03-03 17:36+0000\n"
|
|
28
28
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
29
29
|
"Last-Translator: yohanboniface <yohanboniface@free.fr>, 2013-2014,2018-2019,2023-2025\n"
|
|
30
30
|
"Language-Team: French (http://app.transifex.com/openstreetmap/umap/language/fr/)\n"
|
|
@@ -42,10 +42,18 @@ msgstr "Export CSV"
|
|
|
42
42
|
msgid "This map is not publicly available"
|
|
43
43
|
msgstr "Cette carte n'est pas publique"
|
|
44
44
|
|
|
45
|
-
#: middleware.py:
|
|
45
|
+
#: middleware.py:19
|
|
46
46
|
msgid "Site is readonly for maintenance"
|
|
47
47
|
msgstr "Le site est en lecture seule pour maintenance."
|
|
48
48
|
|
|
49
|
+
#: middleware.py:34
|
|
50
|
+
#, python-format
|
|
51
|
+
msgid ""
|
|
52
|
+
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
53
|
+
"Please configure another provider below before losing access to your account"
|
|
54
|
+
" and maps."
|
|
55
|
+
msgstr "L’utilisation de “%(name)s” pour s’authentifier est dépréciée et sera bientôt rendue impossible. Veuillez configurer un nouveau fournisseur ci-dessous avant de perdre l’accès à votre compte et à vos cartes."
|
|
56
|
+
|
|
49
57
|
#: models.py:60 models.py:79
|
|
50
58
|
msgid "name"
|
|
51
59
|
msgstr "nom"
|
|
@@ -610,7 +618,7 @@ msgstr "Dernières cartes créées."
|
|
|
610
618
|
msgid "Search maps"
|
|
611
619
|
msgstr "Chercher des cartes"
|
|
612
620
|
|
|
613
|
-
#: templates/umap/search_bar.html:
|
|
621
|
+
#: templates/umap/search_bar.html:16
|
|
614
622
|
msgid "Search"
|
|
615
623
|
msgstr "Chercher"
|
|
616
624
|
|
|
@@ -741,10 +749,3 @@ msgstr "Calque supprimé."
|
|
|
741
749
|
#: views.py:1351
|
|
742
750
|
msgid "Permissions updated with success!"
|
|
743
751
|
msgstr "Les permissions ont bien été modifiées !"
|
|
744
|
-
|
|
745
|
-
#: views.py:1430
|
|
746
|
-
#, python-format
|
|
747
|
-
msgid ""
|
|
748
|
-
"Using “%(name)s” to authenticate is deprecated. Please configure another "
|
|
749
|
-
"provider in your profile page."
|
|
750
|
-
msgstr "L'utilisation de “%(name)s” pour s'authentifier est déprécié. Veuillez configurer un nouveau fournisseur sur votre page profil."
|
|
Binary file
|