umap-project 3.0.5__py3-none-any.whl → 3.1.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/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.mo +0 -0
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +219 -73
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +15 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +34 -1
- umap/static/umap/locale/en.json +34 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_init.html +3 -1
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_basics.py +9 -1
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +65 -19
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/METADATA +15 -15
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/RECORD +145 -132
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -17,7 +17,7 @@ msgid ""
|
|
|
17
17
|
msgstr ""
|
|
18
18
|
"Project-Id-Version: uMap\n"
|
|
19
19
|
"Report-Msgid-Bugs-To: \n"
|
|
20
|
-
"POT-Creation-Date: 2025-
|
|
20
|
+
"POT-Creation-Date: 2025-06-10 09:19+0000\n"
|
|
21
21
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
22
22
|
"Last-Translator: Ignacio L'Episcopo, 2024-2025\n"
|
|
23
23
|
"Language-Team: Spanish (http://app.transifex.com/openstreetmap/umap/language/es/)\n"
|
|
@@ -51,7 +51,7 @@ msgstr "El uso de “%(name)s” para autenticar está obsoleto y se eliminará
|
|
|
51
51
|
msgid "name"
|
|
52
52
|
msgstr "nombre"
|
|
53
53
|
|
|
54
|
-
#: models.py:63 models.py:
|
|
54
|
+
#: models.py:63 models.py:503
|
|
55
55
|
msgid "description"
|
|
56
56
|
msgstr "descripción"
|
|
57
57
|
|
|
@@ -71,23 +71,23 @@ msgstr "Plantilla de URL usando el formato de teselas OSM"
|
|
|
71
71
|
msgid "Order of the tilelayers in the edit box"
|
|
72
72
|
msgstr "Orden de las capas de teselas en el cuadro de edición"
|
|
73
73
|
|
|
74
|
-
#: models.py:176 models.py:
|
|
74
|
+
#: models.py:176 models.py:497
|
|
75
75
|
msgid "Only editable with secret edit link"
|
|
76
76
|
msgstr "Solo editable con enlace secreto de edición"
|
|
77
77
|
|
|
78
|
-
#: models.py:177 models.py:
|
|
78
|
+
#: models.py:177 models.py:498
|
|
79
79
|
msgid "Everyone can edit"
|
|
80
80
|
msgstr "Todos pueden editar"
|
|
81
81
|
|
|
82
|
-
#: models.py:180 models.py:
|
|
82
|
+
#: models.py:180 models.py:491
|
|
83
83
|
msgid "Everyone"
|
|
84
84
|
msgstr "Todos"
|
|
85
85
|
|
|
86
|
-
#: models.py:181 models.py:190 models.py:
|
|
86
|
+
#: models.py:181 models.py:190 models.py:492
|
|
87
87
|
msgid "Editors and team only"
|
|
88
88
|
msgstr "Solo editores y equipo"
|
|
89
89
|
|
|
90
|
-
#: models.py:182 models.py:
|
|
90
|
+
#: models.py:182 models.py:493
|
|
91
91
|
msgid "Owner only"
|
|
92
92
|
msgstr "Solo el propietario"
|
|
93
93
|
|
|
@@ -107,7 +107,7 @@ msgstr "Cualquiera con el enlace"
|
|
|
107
107
|
msgid "Blocked"
|
|
108
108
|
msgstr "Bloqueado"
|
|
109
109
|
|
|
110
|
-
#: models.py:192 models.py:
|
|
110
|
+
#: models.py:192 models.py:487
|
|
111
111
|
msgid "Deleted"
|
|
112
112
|
msgstr "Eliminado"
|
|
113
113
|
|
|
@@ -147,99 +147,123 @@ msgstr "editores"
|
|
|
147
147
|
msgid "team"
|
|
148
148
|
msgstr "equipo"
|
|
149
149
|
|
|
150
|
-
#: models.py:230 models.py:
|
|
150
|
+
#: models.py:230 models.py:519
|
|
151
151
|
msgid "edit status"
|
|
152
152
|
msgstr "estado de edición"
|
|
153
153
|
|
|
154
|
-
#: models.py:235 models.py:
|
|
154
|
+
#: models.py:235 models.py:524
|
|
155
155
|
msgid "share status"
|
|
156
156
|
msgstr "estado de compartir"
|
|
157
157
|
|
|
158
|
-
#: models.py:238 models.py:
|
|
158
|
+
#: models.py:238 models.py:514
|
|
159
159
|
msgid "settings"
|
|
160
160
|
msgstr "ajustes"
|
|
161
161
|
|
|
162
|
-
#: models.py:
|
|
162
|
+
#: models.py:243
|
|
163
|
+
msgid "save as template"
|
|
164
|
+
msgstr "guardar como plantilla"
|
|
165
|
+
|
|
166
|
+
#: models.py:244
|
|
167
|
+
msgid "This map is a template map."
|
|
168
|
+
msgstr "Este mapa es una plantilla."
|
|
169
|
+
|
|
170
|
+
#: models.py:420
|
|
163
171
|
msgid "Clone of"
|
|
164
172
|
msgstr "Clon de"
|
|
165
173
|
|
|
166
|
-
#: models.py:
|
|
174
|
+
#: models.py:486 models.py:490 models.py:496
|
|
167
175
|
msgid "Inherit"
|
|
168
176
|
msgstr "Heredar"
|
|
169
177
|
|
|
170
|
-
#: models.py:
|
|
178
|
+
#: models.py:509
|
|
171
179
|
msgid "display on load"
|
|
172
180
|
msgstr "mostrar al cargar"
|
|
173
181
|
|
|
174
|
-
#: models.py:
|
|
182
|
+
#: models.py:510
|
|
175
183
|
msgid "Display this layer on load."
|
|
176
184
|
msgstr "Mostrar esta capa al cargar."
|
|
177
185
|
|
|
178
|
-
#: settings/base.py:
|
|
186
|
+
#: settings/base.py:283
|
|
187
|
+
msgid "uMap user documentation"
|
|
188
|
+
msgstr "Documentación para usuarios de uMap"
|
|
189
|
+
|
|
190
|
+
#: settings/base.py:288
|
|
191
|
+
msgid "Video tutorials"
|
|
192
|
+
msgstr "Tutoriales en video"
|
|
193
|
+
|
|
194
|
+
#: settings/base.py:293
|
|
195
|
+
msgid "OpenStreetMap.org forum"
|
|
196
|
+
msgstr "Foro de OpenStreetMap.org"
|
|
197
|
+
|
|
198
|
+
#: settings/base.py:298
|
|
199
|
+
msgid "OpenStreetMap France forum"
|
|
200
|
+
msgstr "Foro de OpenStreetMap Francia"
|
|
201
|
+
|
|
202
|
+
#: settings/base.py:318
|
|
179
203
|
msgid "Art and Culture"
|
|
180
204
|
msgstr "Arte y cultura"
|
|
181
205
|
|
|
182
|
-
#: settings/base.py:
|
|
206
|
+
#: settings/base.py:319
|
|
183
207
|
msgid "Cycling"
|
|
184
208
|
msgstr "Ciclismo"
|
|
185
209
|
|
|
186
|
-
#: settings/base.py:
|
|
210
|
+
#: settings/base.py:320
|
|
187
211
|
msgid "Business"
|
|
188
212
|
msgstr "Negocios"
|
|
189
213
|
|
|
190
|
-
#: settings/base.py:
|
|
214
|
+
#: settings/base.py:321
|
|
191
215
|
msgid "Environment"
|
|
192
216
|
msgstr "Medio ambiente"
|
|
193
217
|
|
|
194
|
-
#: settings/base.py:
|
|
218
|
+
#: settings/base.py:322
|
|
195
219
|
msgid "Education"
|
|
196
220
|
msgstr "Educación"
|
|
197
221
|
|
|
198
|
-
#: settings/base.py:
|
|
222
|
+
#: settings/base.py:323
|
|
199
223
|
msgid "Food and Agriculture"
|
|
200
224
|
msgstr "Alimentos y agricultura"
|
|
201
225
|
|
|
202
|
-
#: settings/base.py:
|
|
226
|
+
#: settings/base.py:324
|
|
203
227
|
msgid "Geopolitics"
|
|
204
228
|
msgstr "Geopolítica"
|
|
205
229
|
|
|
206
|
-
#: settings/base.py:
|
|
230
|
+
#: settings/base.py:325
|
|
207
231
|
msgid "Health"
|
|
208
232
|
msgstr "Salud"
|
|
209
233
|
|
|
210
|
-
#: settings/base.py:
|
|
234
|
+
#: settings/base.py:326
|
|
211
235
|
msgid "Hiking"
|
|
212
236
|
msgstr "Senderismo"
|
|
213
237
|
|
|
214
|
-
#: settings/base.py:
|
|
238
|
+
#: settings/base.py:327
|
|
215
239
|
msgid "History"
|
|
216
240
|
msgstr "Historia"
|
|
217
241
|
|
|
218
|
-
#: settings/base.py:
|
|
242
|
+
#: settings/base.py:328
|
|
219
243
|
msgid "Public sector"
|
|
220
244
|
msgstr "Sector público"
|
|
221
245
|
|
|
222
|
-
#: settings/base.py:
|
|
246
|
+
#: settings/base.py:329
|
|
223
247
|
msgid "Science"
|
|
224
248
|
msgstr "Ciencia"
|
|
225
249
|
|
|
226
|
-
#: settings/base.py:
|
|
250
|
+
#: settings/base.py:330
|
|
227
251
|
msgid "Shopping"
|
|
228
252
|
msgstr "Compras"
|
|
229
253
|
|
|
230
|
-
#: settings/base.py:
|
|
254
|
+
#: settings/base.py:331
|
|
231
255
|
msgid "Sport and Leisure"
|
|
232
256
|
msgstr "Deporte y ocio"
|
|
233
257
|
|
|
234
|
-
#: settings/base.py:
|
|
258
|
+
#: settings/base.py:332
|
|
235
259
|
msgid "Travel"
|
|
236
260
|
msgstr "Viajes"
|
|
237
261
|
|
|
238
|
-
#: settings/base.py:
|
|
262
|
+
#: settings/base.py:333
|
|
239
263
|
msgid "Transports"
|
|
240
264
|
msgstr "Transporte"
|
|
241
265
|
|
|
242
|
-
#: settings/base.py:
|
|
266
|
+
#: settings/base.py:334
|
|
243
267
|
msgid "Tourism"
|
|
244
268
|
msgstr "Turismo"
|
|
245
269
|
|
|
@@ -385,7 +409,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
385
409
|
msgstr "¡Y es de <a href=\"%(repo_url)s\">código abierto</a>!"
|
|
386
410
|
|
|
387
411
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
388
|
-
#: templates/umap/user_dashboard.html:
|
|
412
|
+
#: templates/umap/user_dashboard.html:16
|
|
389
413
|
msgid "Create a map"
|
|
390
414
|
msgstr "Crear un mapa"
|
|
391
415
|
|
|
@@ -483,11 +507,20 @@ msgstr "Mis mapas (%(count)s)"
|
|
|
483
507
|
msgid "My Maps"
|
|
484
508
|
msgstr "Mis mapas"
|
|
485
509
|
|
|
486
|
-
#: templates/umap/dashboard_menu.html:
|
|
510
|
+
#: templates/umap/dashboard_menu.html:11
|
|
511
|
+
#, python-format
|
|
512
|
+
msgid "My Templates (%(count)s)"
|
|
513
|
+
msgstr "Mis plantillas (%(count)s)"
|
|
514
|
+
|
|
515
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
516
|
+
msgid "My Templates"
|
|
517
|
+
msgstr "Mis plantillas"
|
|
518
|
+
|
|
519
|
+
#: templates/umap/dashboard_menu.html:17
|
|
487
520
|
msgid "My profile"
|
|
488
521
|
msgstr "Mi perfil"
|
|
489
522
|
|
|
490
|
-
#: templates/umap/dashboard_menu.html:
|
|
523
|
+
#: templates/umap/dashboard_menu.html:20
|
|
491
524
|
msgid "My teams"
|
|
492
525
|
msgstr "Mis equipos"
|
|
493
526
|
|
|
@@ -503,10 +536,18 @@ msgstr "Inspírate, navega por los mapas"
|
|
|
503
536
|
msgid "You are logged in. Continuing..."
|
|
504
537
|
msgstr "Has iniciado sesión. Continuando..."
|
|
505
538
|
|
|
506
|
-
#: templates/umap/map_list.html:
|
|
539
|
+
#: templates/umap/map_list.html:15
|
|
540
|
+
msgid "template"
|
|
541
|
+
msgstr "plantilla"
|
|
542
|
+
|
|
543
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
507
544
|
msgid "by"
|
|
508
545
|
msgstr "por"
|
|
509
546
|
|
|
547
|
+
#: templates/umap/map_list.html:22
|
|
548
|
+
msgid "See the template"
|
|
549
|
+
msgstr "Ver la plantilla"
|
|
550
|
+
|
|
510
551
|
#: templates/umap/map_list.html:22
|
|
511
552
|
msgid "See the map"
|
|
512
553
|
msgstr "Ver el mapa"
|
|
@@ -543,7 +584,7 @@ msgstr "Dueño"
|
|
|
543
584
|
msgid "Actions"
|
|
544
585
|
msgstr "Acciones"
|
|
545
586
|
|
|
546
|
-
#: templates/umap/map_table.html:
|
|
587
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
547
588
|
msgid "Open preview"
|
|
548
589
|
msgstr "Abrir vista previa"
|
|
549
590
|
|
|
@@ -671,7 +712,7 @@ msgstr[0] "%(count)s mapa encontrado:"
|
|
|
671
712
|
msgstr[1] "%(count)s mapas encontrados:"
|
|
672
713
|
msgstr[2] "%(count)s mapas encontrados:"
|
|
673
714
|
|
|
674
|
-
#: templates/umap/search.html:30
|
|
715
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
675
716
|
msgid "No map found."
|
|
676
717
|
msgstr "No se ha encontrado ningún mapa."
|
|
677
718
|
|
|
@@ -726,20 +767,20 @@ msgstr "Eliminar este equipo"
|
|
|
726
767
|
msgid "Add user"
|
|
727
768
|
msgstr "Añadir usuario"
|
|
728
769
|
|
|
729
|
-
#: templates/umap/user_dashboard.html:
|
|
770
|
+
#: templates/umap/user_dashboard.html:10
|
|
730
771
|
msgid "Search my maps"
|
|
731
772
|
msgstr "Buscar en mis mapas"
|
|
732
773
|
|
|
733
|
-
#: templates/umap/user_dashboard.html:
|
|
734
|
-
msgid "Map’s
|
|
735
|
-
msgstr "
|
|
774
|
+
#: templates/umap/user_dashboard.html:11
|
|
775
|
+
msgid "Map’s name"
|
|
776
|
+
msgstr "Nombre del mapa"
|
|
736
777
|
|
|
737
|
-
#: templates/umap/user_dashboard.html:
|
|
778
|
+
#: templates/umap/user_dashboard.html:12
|
|
738
779
|
#, python-format
|
|
739
780
|
msgid "Download %(count)s maps"
|
|
740
781
|
msgstr "Descargar %(count)s mapas"
|
|
741
782
|
|
|
742
|
-
#: templates/umap/user_dashboard.html:
|
|
783
|
+
#: templates/umap/user_dashboard.html:15
|
|
743
784
|
msgid "You have no map yet."
|
|
744
785
|
msgstr "Aún no tiene mapa."
|
|
745
786
|
|
|
@@ -755,70 +796,95 @@ msgstr "Usuarios"
|
|
|
755
796
|
msgid "New team"
|
|
756
797
|
msgstr "Nuevo equipo"
|
|
757
798
|
|
|
758
|
-
#:
|
|
799
|
+
#: templates/umap/user_templates.html:10
|
|
800
|
+
msgid "Search my templates"
|
|
801
|
+
msgstr "Buscar mis plantillas"
|
|
802
|
+
|
|
803
|
+
#: templates/umap/user_templates.html:11
|
|
804
|
+
msgid "Template’s name"
|
|
805
|
+
msgstr "Nombre de la plantilla"
|
|
806
|
+
|
|
807
|
+
#: templates/umap/user_templates.html:12
|
|
808
|
+
#, python-format
|
|
809
|
+
msgid "Download %(count)s templates"
|
|
810
|
+
msgstr "Descargar %(count)s plantillas"
|
|
811
|
+
|
|
812
|
+
#: templates/umap/user_templates.html:15
|
|
813
|
+
msgid "You have no template yet."
|
|
814
|
+
msgstr "Aún no tienes plantillas."
|
|
815
|
+
|
|
816
|
+
#: templates/umap/user_templates.html:16
|
|
817
|
+
msgid "Create a template"
|
|
818
|
+
msgstr "Crear una plantilla"
|
|
819
|
+
|
|
820
|
+
#: templates/umap/user_templates.html:17
|
|
821
|
+
msgid "No template found."
|
|
822
|
+
msgstr "No se encontró ninguna plantilla."
|
|
823
|
+
|
|
824
|
+
#: views.py:233
|
|
759
825
|
msgid "Cannot delete a team with more than one member"
|
|
760
826
|
msgstr "No se puede eliminar un equipo con más de un miembro"
|
|
761
827
|
|
|
762
|
-
#: views.py:
|
|
828
|
+
#: views.py:237
|
|
763
829
|
#, python-format
|
|
764
830
|
msgid "Team “%(name)s” has been deleted"
|
|
765
831
|
msgstr "El equipo “%(name)s” ha sido eliminado"
|
|
766
832
|
|
|
767
|
-
#: views.py:
|
|
833
|
+
#: views.py:463
|
|
768
834
|
msgid "View the map"
|
|
769
835
|
msgstr "Ver el mapa"
|
|
770
836
|
|
|
771
|
-
#: views.py:
|
|
837
|
+
#: views.py:864
|
|
772
838
|
msgid "See full screen"
|
|
773
839
|
msgstr "Ver en pantalla completa"
|
|
774
840
|
|
|
775
|
-
#: views.py:
|
|
841
|
+
#: views.py:1007
|
|
776
842
|
msgid "Map editors updated with success!"
|
|
777
843
|
msgstr "¡Los editores del mapas han sido actualizados con éxito!"
|
|
778
844
|
|
|
779
|
-
#: views.py:
|
|
845
|
+
#: views.py:1043
|
|
780
846
|
#, python-format
|
|
781
847
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
782
848
|
msgstr "El enlace de edición de uMap para tu mapa: %(map_name)s"
|
|
783
849
|
|
|
784
|
-
#: views.py:
|
|
850
|
+
#: views.py:1046
|
|
785
851
|
#, python-format
|
|
786
852
|
msgid "Here is your secret edit link: %(link)s"
|
|
787
853
|
msgstr "Aquí está tu enlace secreto de edición: %(link)s"
|
|
788
854
|
|
|
789
|
-
#: views.py:
|
|
855
|
+
#: views.py:1053
|
|
790
856
|
#, python-format
|
|
791
857
|
msgid "Can't send email to %(email)s"
|
|
792
858
|
msgstr "No se puede enviar correo electrónico a %(email)s"
|
|
793
859
|
|
|
794
|
-
#: views.py:
|
|
860
|
+
#: views.py:1056
|
|
795
861
|
#, python-format
|
|
796
862
|
msgid "Email sent to %(email)s"
|
|
797
863
|
msgstr "Correo electrónico enviado a %(email)s"
|
|
798
864
|
|
|
799
|
-
#: views.py:
|
|
865
|
+
#: views.py:1067
|
|
800
866
|
msgid "Only its owner can delete the map."
|
|
801
867
|
msgstr "Sólo el propietario puede borrar el mapa."
|
|
802
868
|
|
|
803
|
-
#: views.py:
|
|
869
|
+
#: views.py:1073
|
|
804
870
|
msgid "Map successfully deleted."
|
|
805
871
|
msgstr "Mapa eliminado correctamente."
|
|
806
872
|
|
|
807
|
-
#: views.py:
|
|
873
|
+
#: views.py:1099
|
|
808
874
|
#, python-format
|
|
809
875
|
msgid ""
|
|
810
876
|
"Your map has been cloned! If you want to edit this map from another "
|
|
811
877
|
"computer, please use this link: %(anonymous_url)s"
|
|
812
878
|
msgstr "¡Tu mapa ha sido clonado! Si quieres editar este mapa desde otro ordenador, usa este enlace: %(anonymous_url)s"
|
|
813
879
|
|
|
814
|
-
#: views.py:
|
|
880
|
+
#: views.py:1104
|
|
815
881
|
msgid "Congratulations, your map has been cloned!"
|
|
816
882
|
msgstr "¡Enhorabuena! ¡Tu mapa ha sido clonado!"
|
|
817
883
|
|
|
818
|
-
#: views.py:
|
|
884
|
+
#: views.py:1358
|
|
819
885
|
msgid "Layer successfully deleted."
|
|
820
886
|
msgstr "Se eliminó la capa con éxito."
|
|
821
887
|
|
|
822
|
-
#: views.py:
|
|
888
|
+
#: views.py:1380
|
|
823
889
|
msgid "Permissions updated with success!"
|
|
824
890
|
msgstr "¡Permisos actualizados con éxito!"
|
|
Binary file
|