umap-project 2.5.0__py3-none-any.whl → 2.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/admin.py +6 -1
- umap/context_processors.py +2 -1
- umap/decorators.py +13 -2
- umap/forms.py +26 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +252 -146
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +274 -162
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +299 -187
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +215 -159
- umap/locale/en/LC_MESSAGES/django.po +211 -155
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +255 -144
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +254 -198
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +216 -160
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +215 -159
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +252 -146
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +252 -146
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +254 -148
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +215 -159
- umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- umap/locale/sv/LC_MESSAGES/django.po +254 -143
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
- umap/migrations/0022_add_team.py +94 -0
- umap/models.py +45 -10
- umap/settings/__init__.py +2 -0
- umap/settings/base.py +9 -2
- umap/static/umap/base.css +32 -41
- umap/static/umap/content.css +19 -25
- umap/static/umap/css/icon.css +63 -37
- umap/static/umap/css/importers.css +1 -1
- umap/static/umap/css/slideshow.css +7 -5
- umap/static/umap/css/tableeditor.css +4 -3
- umap/static/umap/img/16-white.svg +1 -4
- umap/static/umap/img/16.svg +2 -6
- umap/static/umap/img/24-white.svg +4 -4
- umap/static/umap/img/24.svg +6 -6
- umap/static/umap/img/source/16-white.svg +2 -5
- umap/static/umap/img/source/16.svg +3 -7
- umap/static/umap/img/source/24-white.svg +7 -14
- umap/static/umap/img/source/24.svg +10 -17
- umap/static/umap/js/components/alerts/alert.css +20 -8
- umap/static/umap/js/modules/autocomplete.js +8 -12
- umap/static/umap/js/modules/browser.js +4 -3
- umap/static/umap/js/modules/caption.js +9 -11
- umap/static/umap/js/modules/data/features.js +993 -0
- umap/static/umap/js/modules/data/layer.js +1210 -0
- umap/static/umap/js/modules/formatter.js +12 -3
- umap/static/umap/js/modules/global.js +21 -5
- umap/static/umap/js/modules/importers/overpass.js +22 -8
- umap/static/umap/js/modules/permissions.js +280 -0
- umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
- umap/static/umap/js/modules/rendering/layers/base.js +105 -0
- umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
- umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
- umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
- umap/static/umap/js/modules/rendering/popup.js +99 -0
- umap/static/umap/js/modules/rendering/template.js +217 -0
- umap/static/umap/js/modules/rendering/ui.js +610 -0
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/js/modules/schema.js +25 -1
- umap/static/umap/js/modules/share.js +66 -45
- umap/static/umap/js/modules/sync/updaters.js +9 -10
- umap/static/umap/js/modules/tableeditor.js +7 -7
- umap/static/umap/js/modules/ui/dialog.js +8 -4
- umap/static/umap/js/modules/utils.js +22 -13
- umap/static/umap/js/umap.controls.js +80 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +41 -17
- umap/static/umap/js/umap.js +72 -65
- umap/static/umap/locale/am_ET.js +8 -2
- umap/static/umap/locale/am_ET.json +8 -2
- umap/static/umap/locale/ar.js +8 -2
- umap/static/umap/locale/ar.json +8 -2
- umap/static/umap/locale/ast.js +8 -2
- umap/static/umap/locale/ast.json +8 -2
- umap/static/umap/locale/bg.js +8 -2
- umap/static/umap/locale/bg.json +8 -2
- umap/static/umap/locale/br.js +42 -36
- umap/static/umap/locale/br.json +42 -36
- umap/static/umap/locale/ca.js +67 -61
- umap/static/umap/locale/ca.json +67 -61
- umap/static/umap/locale/cs_CZ.js +8 -2
- umap/static/umap/locale/cs_CZ.json +8 -2
- umap/static/umap/locale/da.js +8 -2
- umap/static/umap/locale/da.json +8 -2
- umap/static/umap/locale/de.js +143 -137
- umap/static/umap/locale/de.json +143 -137
- umap/static/umap/locale/el.js +54 -48
- umap/static/umap/locale/el.json +54 -48
- umap/static/umap/locale/en.js +10 -2
- umap/static/umap/locale/en.json +10 -2
- umap/static/umap/locale/en_US.json +8 -2
- umap/static/umap/locale/es.js +8 -2
- umap/static/umap/locale/es.json +8 -2
- umap/static/umap/locale/et.js +8 -2
- umap/static/umap/locale/et.json +8 -2
- umap/static/umap/locale/eu.js +346 -338
- umap/static/umap/locale/eu.json +346 -338
- umap/static/umap/locale/fa_IR.js +415 -407
- umap/static/umap/locale/fa_IR.json +415 -407
- umap/static/umap/locale/fi.js +8 -2
- umap/static/umap/locale/fi.json +8 -2
- umap/static/umap/locale/fr.js +11 -3
- umap/static/umap/locale/fr.json +11 -3
- umap/static/umap/locale/gl.js +8 -2
- umap/static/umap/locale/gl.json +8 -2
- umap/static/umap/locale/he.js +8 -2
- umap/static/umap/locale/he.json +8 -2
- umap/static/umap/locale/hr.js +8 -2
- umap/static/umap/locale/hr.json +8 -2
- umap/static/umap/locale/hu.js +31 -23
- umap/static/umap/locale/hu.json +31 -23
- umap/static/umap/locale/id.js +8 -2
- umap/static/umap/locale/id.json +8 -2
- umap/static/umap/locale/is.js +8 -2
- umap/static/umap/locale/is.json +8 -2
- umap/static/umap/locale/it.js +8 -2
- umap/static/umap/locale/it.json +8 -2
- umap/static/umap/locale/ja.js +8 -2
- umap/static/umap/locale/ja.json +8 -2
- umap/static/umap/locale/ko.js +8 -2
- umap/static/umap/locale/ko.json +8 -2
- umap/static/umap/locale/lt.js +8 -2
- umap/static/umap/locale/lt.json +8 -2
- umap/static/umap/locale/ms.js +8 -2
- umap/static/umap/locale/ms.json +8 -2
- umap/static/umap/locale/nl.js +8 -2
- umap/static/umap/locale/nl.json +8 -2
- umap/static/umap/locale/no.js +8 -2
- umap/static/umap/locale/no.json +8 -2
- umap/static/umap/locale/pl.js +54 -48
- umap/static/umap/locale/pl.json +54 -48
- umap/static/umap/locale/pl_PL.json +8 -2
- umap/static/umap/locale/pt.js +24 -18
- umap/static/umap/locale/pt.json +24 -18
- umap/static/umap/locale/pt_BR.js +8 -2
- umap/static/umap/locale/pt_BR.json +8 -2
- umap/static/umap/locale/pt_PT.js +214 -208
- umap/static/umap/locale/pt_PT.json +214 -208
- umap/static/umap/locale/ro.js +8 -2
- umap/static/umap/locale/ro.json +8 -2
- umap/static/umap/locale/ru.js +8 -2
- umap/static/umap/locale/ru.json +8 -2
- umap/static/umap/locale/sk_SK.js +8 -2
- umap/static/umap/locale/sk_SK.json +8 -2
- umap/static/umap/locale/sl.js +8 -2
- umap/static/umap/locale/sl.json +8 -2
- umap/static/umap/locale/sr.js +8 -2
- umap/static/umap/locale/sr.json +8 -2
- umap/static/umap/locale/sv.js +8 -2
- umap/static/umap/locale/sv.json +8 -2
- umap/static/umap/locale/th_TH.js +33 -27
- umap/static/umap/locale/th_TH.json +33 -27
- umap/static/umap/locale/tr.js +8 -2
- umap/static/umap/locale/tr.json +8 -2
- umap/static/umap/locale/uk_UA.js +8 -2
- umap/static/umap/locale/uk_UA.json +8 -2
- umap/static/umap/locale/vi.js +8 -2
- umap/static/umap/locale/vi.json +8 -2
- umap/static/umap/locale/vi_VN.json +8 -2
- umap/static/umap/locale/zh.js +8 -2
- umap/static/umap/locale/zh.json +8 -2
- umap/static/umap/locale/zh_CN.json +8 -2
- umap/static/umap/locale/zh_TW.Big5.json +8 -2
- umap/static/umap/locale/zh_TW.js +102 -96
- umap/static/umap/locale/zh_TW.json +102 -96
- umap/static/umap/map.css +111 -108
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/storage.py +4 -3
- umap/templates/404.html +5 -1
- umap/templates/500.html +3 -1
- umap/templates/auth/user_detail.html +8 -2
- umap/templates/auth/user_form.html +19 -10
- umap/templates/auth/user_stars.html +8 -2
- umap/templates/base.html +1 -0
- umap/templates/registration/login.html +18 -3
- umap/templates/umap/about.html +1 -0
- umap/templates/umap/about_summary.html +22 -7
- umap/templates/umap/components/alerts/alert.html +42 -21
- umap/templates/umap/content.html +2 -0
- umap/templates/umap/content_footer.html +7 -3
- umap/templates/umap/css.html +1 -0
- umap/templates/umap/dashboard_menu.html +15 -0
- umap/templates/umap/home.html +14 -4
- umap/templates/umap/js.html +4 -9
- umap/templates/umap/login_popup_end.html +10 -4
- umap/templates/umap/map_detail.html +8 -2
- umap/templates/umap/map_fragment.html +3 -1
- umap/templates/umap/map_init.html +2 -1
- umap/templates/umap/map_list.html +6 -3
- umap/templates/umap/map_table.html +36 -12
- umap/templates/umap/messages.html +0 -1
- umap/templates/umap/navigation.html +2 -1
- umap/templates/umap/password_change.html +5 -1
- umap/templates/umap/password_change_done.html +8 -2
- umap/templates/umap/search.html +8 -2
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +19 -0
- umap/templates/umap/team_detail.html +27 -0
- umap/templates/umap/team_form.html +60 -0
- umap/templates/umap/user_dashboard.html +7 -9
- umap/templates/umap/user_teams.html +51 -0
- umap/tests/base.py +8 -1
- umap/tests/conftest.py +6 -0
- umap/tests/fixtures/test_circles_layer.geojson +219 -0
- umap/tests/fixtures/test_upload_georss.xml +20 -0
- umap/tests/integration/conftest.py +18 -4
- umap/tests/integration/helpers.py +12 -0
- umap/tests/integration/test_anonymous_owned_map.py +23 -0
- umap/tests/integration/test_basics.py +29 -0
- umap/tests/integration/test_browser.py +20 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +138 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +3 -3
- umap/tests/integration/test_import.py +124 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_querystring.py +7 -0
- umap/tests/integration/test_team.py +47 -0
- umap/tests/integration/test_tilelayer.py +19 -2
- umap/tests/integration/test_view_marker.py +28 -1
- umap/tests/integration/test_websocket_sync.py +5 -5
- umap/tests/test_datalayer.py +32 -7
- umap/tests/test_datalayer_views.py +1 -1
- umap/tests/test_map.py +30 -4
- umap/tests/test_map_views.py +2 -2
- umap/tests/test_statics.py +40 -0
- umap/tests/test_team_views.py +131 -0
- umap/tests/test_views.py +15 -1
- umap/urls.py +23 -13
- umap/views.py +116 -10
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
- umap/static/umap/js/umap.datalayer.permissions.js +0 -70
- umap/static/umap/js/umap.features.js +0 -1290
- umap/static/umap/js/umap.layer.js +0 -1837
- umap/static/umap/js/umap.permissions.js +0 -208
- umap/static/umap/js/umap.popup.js +0 -341
- umap/static/umap/test/TableEditor.js +0 -104
- umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
- umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
- umap/static/umap/vendors/leaflet/leaflet.js +0 -6
- umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
- umap/tests/integration/test_statics.py +0 -47
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -14,7 +14,7 @@ msgid ""
|
|
|
14
14
|
msgstr ""
|
|
15
15
|
"Project-Id-Version: uMap\n"
|
|
16
16
|
"Report-Msgid-Bugs-To: \n"
|
|
17
|
-
"POT-Creation-Date: 2024-
|
|
17
|
+
"POT-Creation-Date: 2024-08-30 18:23+0000\n"
|
|
18
18
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
19
19
|
"Last-Translator: Eric Armijo, 2023\n"
|
|
20
20
|
"Language-Team: Spanish (http://app.transifex.com/openstreetmap/umap/language/es/)\n"
|
|
@@ -32,7 +32,7 @@ msgstr "Sólo puede editarse con el enlace secreto de edición"
|
|
|
32
32
|
msgid "Everyone can edit"
|
|
33
33
|
msgstr "Todos pueden editar"
|
|
34
34
|
|
|
35
|
-
#: forms.py:69 models.py:
|
|
35
|
+
#: forms.py:69 models.py:423
|
|
36
36
|
msgid "Inherit"
|
|
37
37
|
msgstr "Heredar"
|
|
38
38
|
|
|
@@ -40,242 +40,284 @@ msgstr "Heredar"
|
|
|
40
40
|
msgid "Site is readonly for maintenance"
|
|
41
41
|
msgstr "El sitio está en sólo lectura por mantenimiento"
|
|
42
42
|
|
|
43
|
-
#: models.py:
|
|
43
|
+
#: models.py:54 models.py:73
|
|
44
44
|
msgid "name"
|
|
45
45
|
msgstr "nombre"
|
|
46
46
|
|
|
47
|
-
#: models.py:
|
|
47
|
+
#: models.py:56 models.py:433
|
|
48
|
+
msgid "description"
|
|
49
|
+
msgstr "descripción"
|
|
50
|
+
|
|
51
|
+
#: models.py:104
|
|
48
52
|
msgid "details"
|
|
49
53
|
msgstr "detalles"
|
|
50
54
|
|
|
51
|
-
#: models.py:
|
|
55
|
+
#: models.py:105
|
|
52
56
|
msgid "Link to a page where the licence is detailed."
|
|
53
57
|
msgstr "Enlace a una página donde se detalla la licencia."
|
|
54
58
|
|
|
55
|
-
#: models.py:
|
|
59
|
+
#: models.py:115
|
|
56
60
|
msgid "URL template using OSM tile format"
|
|
57
61
|
msgstr "Plantilla URL usando el formato de teselas OSM"
|
|
58
62
|
|
|
59
|
-
#: models.py:
|
|
63
|
+
#: models.py:121
|
|
60
64
|
msgid "Order of the tilelayers in the edit box"
|
|
61
65
|
msgstr "Orden de las capas de teselas en la caja de edición"
|
|
62
66
|
|
|
63
|
-
#: models.py:
|
|
67
|
+
#: models.py:167 models.py:424
|
|
64
68
|
msgid "Everyone"
|
|
65
69
|
msgstr "Todos"
|
|
66
70
|
|
|
67
|
-
#: models.py:
|
|
68
|
-
msgid "Editors only"
|
|
69
|
-
msgstr "
|
|
71
|
+
#: models.py:168 models.py:174 models.py:425
|
|
72
|
+
msgid "Editors and team only"
|
|
73
|
+
msgstr ""
|
|
70
74
|
|
|
71
|
-
#: models.py:
|
|
75
|
+
#: models.py:169 models.py:426
|
|
72
76
|
msgid "Owner only"
|
|
73
77
|
msgstr "Sólo propietario"
|
|
74
78
|
|
|
75
|
-
#: models.py:
|
|
79
|
+
#: models.py:172
|
|
76
80
|
msgid "Everyone (public)"
|
|
77
81
|
msgstr "Todos (público)"
|
|
78
82
|
|
|
79
|
-
#: models.py:
|
|
83
|
+
#: models.py:173
|
|
80
84
|
msgid "Anyone with link"
|
|
81
85
|
msgstr "Cualquiera con enlace"
|
|
82
86
|
|
|
83
|
-
#: models.py:
|
|
87
|
+
#: models.py:175
|
|
84
88
|
msgid "Blocked"
|
|
85
89
|
msgstr "Bloqueado"
|
|
86
90
|
|
|
87
|
-
#: models.py:
|
|
88
|
-
msgid "description"
|
|
89
|
-
msgstr "descripción"
|
|
90
|
-
|
|
91
|
-
#: models.py:156
|
|
91
|
+
#: models.py:178
|
|
92
92
|
msgid "center"
|
|
93
93
|
msgstr "centrar"
|
|
94
94
|
|
|
95
|
-
#: models.py:
|
|
95
|
+
#: models.py:179
|
|
96
96
|
msgid "zoom"
|
|
97
97
|
msgstr "acercar/alejar"
|
|
98
98
|
|
|
99
|
-
#: models.py:
|
|
99
|
+
#: models.py:181
|
|
100
100
|
msgid "locate"
|
|
101
101
|
msgstr "ubicar"
|
|
102
102
|
|
|
103
|
-
#: models.py:
|
|
103
|
+
#: models.py:181
|
|
104
104
|
msgid "Locate user on load?"
|
|
105
105
|
msgstr "¿Al cargar ubicar al usuario?"
|
|
106
106
|
|
|
107
|
-
#: models.py:
|
|
107
|
+
#: models.py:185
|
|
108
108
|
msgid "Choose the map licence."
|
|
109
109
|
msgstr "Elija la licencia del mapa."
|
|
110
110
|
|
|
111
|
-
#: models.py:
|
|
111
|
+
#: models.py:186
|
|
112
112
|
msgid "licence"
|
|
113
113
|
msgstr "licencia"
|
|
114
114
|
|
|
115
|
-
#: models.py:
|
|
115
|
+
#: models.py:197
|
|
116
116
|
msgid "owner"
|
|
117
117
|
msgstr "propietario"
|
|
118
118
|
|
|
119
|
-
#: models.py:
|
|
119
|
+
#: models.py:201
|
|
120
120
|
msgid "editors"
|
|
121
121
|
msgstr "editores"
|
|
122
122
|
|
|
123
|
-
#: models.py:
|
|
123
|
+
#: models.py:207
|
|
124
|
+
msgid "team"
|
|
125
|
+
msgstr ""
|
|
126
|
+
|
|
127
|
+
#: models.py:213 models.py:447
|
|
124
128
|
msgid "edit status"
|
|
125
129
|
msgstr "estado de la edición"
|
|
126
130
|
|
|
127
|
-
#: models.py:
|
|
131
|
+
#: models.py:218
|
|
128
132
|
msgid "share status"
|
|
129
133
|
msgstr "compartir estado"
|
|
130
134
|
|
|
131
|
-
#: models.py:
|
|
135
|
+
#: models.py:221 models.py:442
|
|
132
136
|
msgid "settings"
|
|
133
137
|
msgstr "ajustes"
|
|
134
138
|
|
|
135
|
-
#: models.py:
|
|
139
|
+
#: models.py:364
|
|
136
140
|
msgid "Clone of"
|
|
137
141
|
msgstr "Clon de"
|
|
138
142
|
|
|
139
|
-
#: models.py:
|
|
143
|
+
#: models.py:437
|
|
140
144
|
msgid "display on load"
|
|
141
145
|
msgstr "mostrar al cargar"
|
|
142
146
|
|
|
143
|
-
#: models.py:
|
|
147
|
+
#: models.py:438
|
|
144
148
|
msgid "Display this layer on load."
|
|
145
149
|
msgstr "Mostrar esta capa al cargar."
|
|
146
150
|
|
|
147
|
-
#: templates/404.html:
|
|
151
|
+
#: templates/404.html:8
|
|
148
152
|
msgid "Take me to the home page"
|
|
149
153
|
msgstr "Lléveme a la página principal"
|
|
150
154
|
|
|
151
|
-
#: templates/auth/user_detail.html:
|
|
155
|
+
#: templates/auth/user_detail.html:8
|
|
152
156
|
#, python-format
|
|
153
157
|
msgid "Browse %(current_user)s's maps"
|
|
154
158
|
msgstr "Navegar los mapas de %(current_user)s"
|
|
155
159
|
|
|
156
|
-
#: templates/auth/user_detail.html:
|
|
160
|
+
#: templates/auth/user_detail.html:17
|
|
157
161
|
#, python-format
|
|
158
162
|
msgid "%(current_user)s has no maps."
|
|
159
163
|
msgstr "%(current_user)s no tiene mapas."
|
|
160
164
|
|
|
161
|
-
#: templates/auth/user_form.html:
|
|
162
|
-
msgid "My Maps"
|
|
163
|
-
msgstr ""
|
|
164
|
-
|
|
165
|
-
#: templates/auth/user_form.html:7
|
|
166
|
-
msgid "My Profile"
|
|
167
|
-
msgstr "Mi perfil"
|
|
168
|
-
|
|
169
|
-
#: templates/auth/user_form.html:20
|
|
165
|
+
#: templates/auth/user_form.html:21 templates/umap/team_form.html:21
|
|
170
166
|
msgid "Save"
|
|
171
167
|
msgstr "Guardar"
|
|
172
168
|
|
|
173
|
-
#: templates/auth/user_form.html:
|
|
169
|
+
#: templates/auth/user_form.html:27
|
|
174
170
|
msgid "Your current providers"
|
|
175
171
|
msgstr "Sus proveedores actuales"
|
|
176
172
|
|
|
177
|
-
#: templates/auth/user_form.html:
|
|
173
|
+
#: templates/auth/user_form.html:39
|
|
178
174
|
msgid "Connect to another provider"
|
|
179
175
|
msgstr "Conectarse a otro proveedor"
|
|
180
176
|
|
|
181
|
-
#: templates/auth/user_form.html:
|
|
177
|
+
#: templates/auth/user_form.html:42
|
|
182
178
|
msgid ""
|
|
183
179
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
184
180
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
185
181
|
msgstr "Es una buena costumbre conectar tu cuenta a más de un proveedor, por si uno de ellos deja de estar disponible, temporal o incluso permanentemente."
|
|
186
182
|
|
|
187
|
-
#: templates/auth/user_stars.html:
|
|
183
|
+
#: templates/auth/user_stars.html:8
|
|
188
184
|
#, python-format
|
|
189
185
|
msgid "Browse %(current_user)s's starred maps"
|
|
190
186
|
msgstr "Examinar los mapas con estrellas de %(current_user)s"
|
|
191
187
|
|
|
192
|
-
#: templates/auth/user_stars.html:
|
|
188
|
+
#: templates/auth/user_stars.html:17
|
|
193
189
|
#, python-format
|
|
194
190
|
msgid "%(current_user)s has no starred maps yet."
|
|
195
191
|
msgstr "%(current_user)s aún no tiene mapas con estrellas."
|
|
196
192
|
|
|
197
|
-
#: templates/base.html:
|
|
193
|
+
#: templates/base.html:13
|
|
198
194
|
msgid ""
|
|
199
195
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
200
196
|
"them in your site."
|
|
201
197
|
msgstr "uMap le permite crear mapas con capas de OpenStreetMap en un minuto e incrustarlos en su sitio web."
|
|
202
198
|
|
|
203
|
-
#: templates/registration/login.html:
|
|
199
|
+
#: templates/registration/login.html:6 templates/registration/login.html:45
|
|
200
|
+
msgid "Login"
|
|
201
|
+
msgstr "Usuario"
|
|
202
|
+
|
|
203
|
+
#: templates/registration/login.html:24
|
|
204
204
|
msgid "Please log in with your account"
|
|
205
205
|
msgstr "Inicie sesión con su cuenta"
|
|
206
206
|
|
|
207
|
-
#: templates/registration/login.html:
|
|
207
|
+
#: templates/registration/login.html:41
|
|
208
208
|
msgid "Username"
|
|
209
209
|
msgstr "Nombre de usuario"
|
|
210
210
|
|
|
211
|
-
#: templates/registration/login.html:
|
|
211
|
+
#: templates/registration/login.html:44
|
|
212
212
|
msgid "Password"
|
|
213
213
|
msgstr "Contraseña"
|
|
214
214
|
|
|
215
|
-
#: templates/registration/login.html:
|
|
216
|
-
msgid "Login"
|
|
217
|
-
msgstr "Usuario"
|
|
218
|
-
|
|
219
|
-
#: templates/registration/login.html:37
|
|
215
|
+
#: templates/registration/login.html:51
|
|
220
216
|
msgid "Please choose a provider"
|
|
221
217
|
msgstr "Elige un proveedor"
|
|
222
218
|
|
|
223
|
-
#: templates/umap/about_summary.html:
|
|
219
|
+
#: templates/umap/about_summary.html:12
|
|
224
220
|
#, python-format
|
|
225
221
|
msgid ""
|
|
226
222
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
227
223
|
"layers in a minute and embed them in your site."
|
|
228
224
|
msgstr "uMap te permite crear mapas con capas de <a href=\"%(osm_url)s\" />OpenStreetMap</a> en un minuto y embeberlo en tu sitio."
|
|
229
225
|
|
|
230
|
-
#: templates/umap/about_summary.html:
|
|
226
|
+
#: templates/umap/about_summary.html:23
|
|
231
227
|
msgid "Choose the layers of your map"
|
|
232
228
|
msgstr "Elija las capas de su mapa"
|
|
233
229
|
|
|
234
|
-
#: templates/umap/about_summary.html:
|
|
230
|
+
#: templates/umap/about_summary.html:26
|
|
235
231
|
msgid "Add POIs: markers, lines, polygons..."
|
|
236
232
|
msgstr "Añade PDIs: marcadores, líneas, polígonos..."
|
|
237
233
|
|
|
238
|
-
#: templates/umap/about_summary.html:
|
|
234
|
+
#: templates/umap/about_summary.html:29
|
|
239
235
|
msgid "Manage POIs colours and icons"
|
|
240
236
|
msgstr "Elija los colores y los iconos de los PDIs"
|
|
241
237
|
|
|
242
|
-
#: templates/umap/about_summary.html:
|
|
238
|
+
#: templates/umap/about_summary.html:32
|
|
243
239
|
msgid "Manage map options: display a minimap, locate user on load…"
|
|
244
240
|
msgstr "Gestiona opciones del mapa: mostrar un minimapa, localizar al usuario al cargar..."
|
|
245
241
|
|
|
246
|
-
#: templates/umap/about_summary.html:
|
|
242
|
+
#: templates/umap/about_summary.html:35
|
|
247
243
|
msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
|
|
248
244
|
msgstr "Importa por lotes datos geoestructurados (geojson, gpx, kml, osm...)"
|
|
249
245
|
|
|
250
|
-
#: templates/umap/about_summary.html:
|
|
246
|
+
#: templates/umap/about_summary.html:38
|
|
251
247
|
msgid "Choose the license for your data"
|
|
252
248
|
msgstr "Elige la licencia de tus datos"
|
|
253
249
|
|
|
254
|
-
#: templates/umap/about_summary.html:
|
|
250
|
+
#: templates/umap/about_summary.html:41
|
|
255
251
|
msgid "Embed and share your map"
|
|
256
252
|
msgstr "Embebe y comparte tu mapa"
|
|
257
253
|
|
|
258
|
-
#: templates/umap/about_summary.html:
|
|
254
|
+
#: templates/umap/about_summary.html:52
|
|
259
255
|
#, python-format
|
|
260
256
|
msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
261
257
|
msgstr "Y es de <a href=\"%(repo_url)s\">código abierto</a>!"
|
|
262
258
|
|
|
263
|
-
#: templates/umap/about_summary.html:
|
|
264
|
-
#: templates/umap/user_dashboard.html:
|
|
259
|
+
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
260
|
+
#: templates/umap/user_dashboard.html:40
|
|
265
261
|
msgid "Create a map"
|
|
266
262
|
msgstr "Crea un mapa"
|
|
267
263
|
|
|
268
|
-
#: templates/umap/about_summary.html:
|
|
264
|
+
#: templates/umap/about_summary.html:66
|
|
269
265
|
msgid "Play with the demo"
|
|
270
266
|
msgstr "Juega con el demo"
|
|
271
267
|
|
|
272
|
-
#: templates/umap/
|
|
268
|
+
#: templates/umap/components/alerts/alert.html:15
|
|
269
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
270
|
+
#: templates/umap/components/alerts/alert.html:92
|
|
271
|
+
msgid "Close"
|
|
272
|
+
msgstr ""
|
|
273
|
+
|
|
274
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
275
|
+
#, python-format
|
|
276
|
+
msgid ""
|
|
277
|
+
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
278
|
+
"target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
279
|
+
"target=\"_blank\">log in</a>."
|
|
280
|
+
msgstr ""
|
|
281
|
+
|
|
282
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
283
|
+
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
284
|
+
msgstr ""
|
|
285
|
+
|
|
286
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
287
|
+
msgid "Copy link"
|
|
288
|
+
msgstr ""
|
|
289
|
+
|
|
290
|
+
#: templates/umap/components/alerts/alert.html:46
|
|
291
|
+
msgid "Enter your email address to receive the secret link:"
|
|
292
|
+
msgstr ""
|
|
293
|
+
|
|
294
|
+
#: templates/umap/components/alerts/alert.html:52
|
|
295
|
+
msgid "Email"
|
|
296
|
+
msgstr ""
|
|
297
|
+
|
|
298
|
+
#: templates/umap/components/alerts/alert.html:55
|
|
299
|
+
msgid "Send me the link"
|
|
300
|
+
msgstr ""
|
|
301
|
+
|
|
302
|
+
#: templates/umap/components/alerts/alert.html:79
|
|
303
|
+
msgid "See their edits in another tab"
|
|
304
|
+
msgstr ""
|
|
305
|
+
|
|
306
|
+
#: templates/umap/components/alerts/alert.html:82
|
|
307
|
+
msgid "Keep your changes and loose theirs"
|
|
308
|
+
msgstr ""
|
|
309
|
+
|
|
310
|
+
#: templates/umap/components/alerts/alert.html:85
|
|
311
|
+
msgid "Keep their changes and loose yours"
|
|
312
|
+
msgstr ""
|
|
313
|
+
|
|
314
|
+
#: templates/umap/content.html:26
|
|
273
315
|
msgid ""
|
|
274
316
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
275
317
|
"allowed."
|
|
276
318
|
msgstr "Esta instancia de uMap está actualmente en modo de sólo lectura, no se permite la creación/edición."
|
|
277
319
|
|
|
278
|
-
#: templates/umap/content.html:
|
|
320
|
+
#: templates/umap/content.html:34
|
|
279
321
|
#, python-format
|
|
280
322
|
msgid ""
|
|
281
323
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -284,176 +326,210 @@ msgid ""
|
|
|
284
326
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
285
327
|
msgstr "Esta es una instancia de demostración, usada para pruebas y lanzamientos previos. Si necesita una instancia estable, use <a href=\"%(stable_url)s\">%(stable_url)s</a>. También puede instalar su propia instancia en su servidor; ¡es <a href=\"%(repo_url)s\">código abierto</a>!"
|
|
286
328
|
|
|
287
|
-
#: templates/umap/
|
|
329
|
+
#: templates/umap/content_footer.html:5
|
|
330
|
+
msgid "An OpenStreetMap project"
|
|
331
|
+
msgstr ""
|
|
332
|
+
|
|
333
|
+
#: templates/umap/content_footer.html:6
|
|
334
|
+
msgid "version"
|
|
335
|
+
msgstr ""
|
|
336
|
+
|
|
337
|
+
#: templates/umap/content_footer.html:7
|
|
338
|
+
msgid "Hosted by"
|
|
339
|
+
msgstr ""
|
|
340
|
+
|
|
341
|
+
#: templates/umap/content_footer.html:8
|
|
342
|
+
msgid "Contact"
|
|
343
|
+
msgstr ""
|
|
344
|
+
|
|
345
|
+
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
346
|
+
msgid "Help"
|
|
347
|
+
msgstr "Ayuda"
|
|
348
|
+
|
|
349
|
+
#: templates/umap/dashboard_menu.html:6
|
|
350
|
+
#, python-format
|
|
351
|
+
msgid "My Maps (%(count)s)"
|
|
352
|
+
msgstr ""
|
|
353
|
+
|
|
354
|
+
#: templates/umap/dashboard_menu.html:8
|
|
355
|
+
msgid "My Maps"
|
|
356
|
+
msgstr ""
|
|
357
|
+
|
|
358
|
+
#: templates/umap/dashboard_menu.html:11
|
|
359
|
+
msgid "My profile"
|
|
360
|
+
msgstr "Mi perfil"
|
|
361
|
+
|
|
362
|
+
#: templates/umap/dashboard_menu.html:13
|
|
363
|
+
msgid "My teams"
|
|
364
|
+
msgstr ""
|
|
365
|
+
|
|
366
|
+
#: templates/umap/home.html:14
|
|
288
367
|
msgid "Map of the uMaps"
|
|
289
368
|
msgstr "Mapa de los uMaps"
|
|
290
369
|
|
|
291
|
-
#: templates/umap/home.html:
|
|
370
|
+
#: templates/umap/home.html:24
|
|
292
371
|
msgid "Get inspired, browse maps"
|
|
293
372
|
msgstr "Inspírate, navega por los mapas"
|
|
294
373
|
|
|
295
|
-
#: templates/umap/login_popup_end.html:
|
|
374
|
+
#: templates/umap/login_popup_end.html:4
|
|
296
375
|
msgid "You are logged in. Continuing..."
|
|
297
376
|
msgstr "Has iniciado sesión. Continuando..."
|
|
298
377
|
|
|
299
|
-
#: templates/umap/map_list.html:
|
|
378
|
+
#: templates/umap/map_list.html:10 views.py:433
|
|
300
379
|
msgid "by"
|
|
301
380
|
msgstr "por"
|
|
302
381
|
|
|
303
|
-
#: templates/umap/map_list.html:
|
|
382
|
+
#: templates/umap/map_list.html:18
|
|
304
383
|
msgid "More"
|
|
305
384
|
msgstr "Más"
|
|
306
385
|
|
|
307
|
-
#: templates/umap/map_table.html:
|
|
386
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
|
|
308
387
|
msgid "Name"
|
|
309
388
|
msgstr "Nombre"
|
|
310
389
|
|
|
311
|
-
#: templates/umap/map_table.html:
|
|
390
|
+
#: templates/umap/map_table.html:11
|
|
312
391
|
msgid "Preview"
|
|
313
392
|
msgstr ""
|
|
314
393
|
|
|
315
|
-
#: templates/umap/map_table.html:
|
|
394
|
+
#: templates/umap/map_table.html:14
|
|
316
395
|
msgid "Who can see"
|
|
317
396
|
msgstr ""
|
|
318
397
|
|
|
319
|
-
#: templates/umap/map_table.html:
|
|
398
|
+
#: templates/umap/map_table.html:17
|
|
320
399
|
msgid "Who can edit"
|
|
321
400
|
msgstr ""
|
|
322
401
|
|
|
323
|
-
#: templates/umap/map_table.html:
|
|
402
|
+
#: templates/umap/map_table.html:20
|
|
324
403
|
msgid "Last save"
|
|
325
404
|
msgstr "Último guardado"
|
|
326
405
|
|
|
327
|
-
#: templates/umap/map_table.html:
|
|
406
|
+
#: templates/umap/map_table.html:23
|
|
328
407
|
msgid "Owner"
|
|
329
408
|
msgstr "Dueño"
|
|
330
409
|
|
|
331
|
-
#: templates/umap/map_table.html:
|
|
410
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
|
|
332
411
|
msgid "Actions"
|
|
333
412
|
msgstr "Acciones"
|
|
334
413
|
|
|
335
|
-
#: templates/umap/map_table.html:
|
|
414
|
+
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
336
415
|
msgid "Open preview"
|
|
337
416
|
msgstr ""
|
|
338
417
|
|
|
339
|
-
#: templates/umap/map_table.html:
|
|
418
|
+
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
340
419
|
msgid "Share"
|
|
341
420
|
msgstr "Compartir"
|
|
342
421
|
|
|
343
|
-
#: templates/umap/map_table.html:
|
|
422
|
+
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
423
|
+
#: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
|
|
344
424
|
msgid "Edit"
|
|
345
425
|
msgstr "Editar"
|
|
346
426
|
|
|
347
|
-
#: templates/umap/map_table.html:
|
|
427
|
+
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
348
428
|
msgid "Download"
|
|
349
429
|
msgstr "Descargar"
|
|
350
430
|
|
|
351
|
-
#: templates/umap/map_table.html:
|
|
431
|
+
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
352
432
|
msgid "Clone"
|
|
353
433
|
msgstr ""
|
|
354
434
|
|
|
355
|
-
#: templates/umap/map_table.html:
|
|
435
|
+
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
356
436
|
msgid "Delete"
|
|
357
437
|
msgstr ""
|
|
358
438
|
|
|
359
|
-
#: templates/umap/map_table.html:
|
|
439
|
+
#: templates/umap/map_table.html:117
|
|
360
440
|
msgid "first"
|
|
361
441
|
msgstr ""
|
|
362
442
|
|
|
363
|
-
#: templates/umap/map_table.html:
|
|
443
|
+
#: templates/umap/map_table.html:118
|
|
364
444
|
msgid "previous"
|
|
365
445
|
msgstr ""
|
|
366
446
|
|
|
367
|
-
#: templates/umap/map_table.html:
|
|
447
|
+
#: templates/umap/map_table.html:126
|
|
368
448
|
#, python-format
|
|
369
449
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
370
450
|
msgstr ""
|
|
371
451
|
|
|
372
|
-
#: templates/umap/map_table.html:
|
|
452
|
+
#: templates/umap/map_table.html:131
|
|
373
453
|
msgid "next"
|
|
374
454
|
msgstr ""
|
|
375
455
|
|
|
376
|
-
#: templates/umap/map_table.html:
|
|
456
|
+
#: templates/umap/map_table.html:132
|
|
377
457
|
msgid "last"
|
|
378
458
|
msgstr ""
|
|
379
459
|
|
|
380
|
-
#: templates/umap/map_table.html:
|
|
460
|
+
#: templates/umap/map_table.html:140
|
|
381
461
|
#, python-format
|
|
382
462
|
msgid "Lines per page: %(per_page)s"
|
|
383
463
|
msgstr ""
|
|
384
464
|
|
|
385
|
-
#: templates/umap/map_table.html:
|
|
465
|
+
#: templates/umap/map_table.html:145
|
|
386
466
|
#, python-format
|
|
387
467
|
msgid "%(count)s maps"
|
|
388
468
|
msgstr ""
|
|
389
469
|
|
|
390
|
-
#: templates/umap/navigation.html:
|
|
470
|
+
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
391
471
|
msgid "My Dashboard"
|
|
392
472
|
msgstr "Mi panel de control"
|
|
393
473
|
|
|
394
|
-
#: templates/umap/navigation.html:
|
|
474
|
+
#: templates/umap/navigation.html:14
|
|
395
475
|
msgid "Starred maps"
|
|
396
476
|
msgstr "Mapas con estrellas"
|
|
397
477
|
|
|
398
|
-
#: templates/umap/navigation.html:
|
|
478
|
+
#: templates/umap/navigation.html:18
|
|
399
479
|
msgid "Log in"
|
|
400
480
|
msgstr "Ingresar"
|
|
401
481
|
|
|
402
|
-
#: templates/umap/navigation.html:
|
|
482
|
+
#: templates/umap/navigation.html:18
|
|
403
483
|
msgid "Sign in"
|
|
404
484
|
msgstr "Regístrarse"
|
|
405
485
|
|
|
406
|
-
#: templates/umap/navigation.html:
|
|
486
|
+
#: templates/umap/navigation.html:22
|
|
407
487
|
msgid "About"
|
|
408
488
|
msgstr "Acerca de"
|
|
409
489
|
|
|
410
|
-
#: templates/umap/navigation.html:
|
|
411
|
-
msgid "Help"
|
|
412
|
-
msgstr "Ayuda"
|
|
413
|
-
|
|
414
|
-
#: templates/umap/navigation.html:29
|
|
490
|
+
#: templates/umap/navigation.html:30
|
|
415
491
|
msgid "Change password"
|
|
416
492
|
msgstr "Cambiar contraseña"
|
|
417
493
|
|
|
418
|
-
#: templates/umap/navigation.html:
|
|
494
|
+
#: templates/umap/navigation.html:34
|
|
419
495
|
msgid "Log out"
|
|
420
496
|
msgstr "Salir"
|
|
421
497
|
|
|
422
|
-
#: templates/umap/password_change.html:
|
|
498
|
+
#: templates/umap/password_change.html:7
|
|
423
499
|
msgid "Password change"
|
|
424
500
|
msgstr "Contraseña cambiada"
|
|
425
501
|
|
|
426
|
-
#: templates/umap/password_change.html:
|
|
502
|
+
#: templates/umap/password_change.html:10
|
|
427
503
|
msgid ""
|
|
428
504
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
429
505
|
" password twice so we can verify you typed it in correctly."
|
|
430
506
|
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."
|
|
431
507
|
|
|
432
|
-
#: templates/umap/password_change.html:
|
|
508
|
+
#: templates/umap/password_change.html:17
|
|
433
509
|
msgid "Old password"
|
|
434
510
|
msgstr "Contraseña antigua"
|
|
435
511
|
|
|
436
|
-
#: templates/umap/password_change.html:
|
|
512
|
+
#: templates/umap/password_change.html:22
|
|
437
513
|
msgid "New password"
|
|
438
514
|
msgstr "Nueva contraseña"
|
|
439
515
|
|
|
440
|
-
#: templates/umap/password_change.html:
|
|
516
|
+
#: templates/umap/password_change.html:26
|
|
441
517
|
msgid "New password confirmation"
|
|
442
518
|
msgstr "Confirmar nueva contraseña"
|
|
443
519
|
|
|
444
|
-
#: templates/umap/password_change.html:
|
|
520
|
+
#: templates/umap/password_change.html:27
|
|
445
521
|
msgid "Change my password"
|
|
446
522
|
msgstr "Cambiar mi contraseña"
|
|
447
523
|
|
|
448
|
-
#: templates/umap/password_change_done.html:
|
|
524
|
+
#: templates/umap/password_change_done.html:7
|
|
449
525
|
msgid "Password change successful"
|
|
450
526
|
msgstr "Contraseña cambiada con éxito"
|
|
451
527
|
|
|
452
|
-
#: templates/umap/password_change_done.html:
|
|
528
|
+
#: templates/umap/password_change_done.html:10
|
|
453
529
|
msgid "Your password was changed."
|
|
454
530
|
msgstr "Su contraseña fue guardada."
|
|
455
531
|
|
|
456
|
-
#: templates/umap/search.html:
|
|
532
|
+
#: templates/umap/search.html:15
|
|
457
533
|
#, python-format
|
|
458
534
|
msgid "%(count)s map found:"
|
|
459
535
|
msgid_plural "%(count)s maps found:"
|
|
@@ -461,94 +537,129 @@ msgstr[0] "%(count)s mapa encontrado:"
|
|
|
461
537
|
msgstr[1] "%(count)s mapas encontrados:"
|
|
462
538
|
msgstr[2] "%(count)s mapas encontrados:"
|
|
463
539
|
|
|
464
|
-
#: templates/umap/search.html:
|
|
540
|
+
#: templates/umap/search.html:24
|
|
465
541
|
msgid "No map found."
|
|
466
542
|
msgstr "No se ha encontrado ningún mapa."
|
|
467
543
|
|
|
468
|
-
#: templates/umap/search.html:
|
|
544
|
+
#: templates/umap/search.html:29
|
|
469
545
|
msgid "Latest created maps"
|
|
470
546
|
msgstr "Últimos mapas creados"
|
|
471
547
|
|
|
472
|
-
#: templates/umap/search_bar.html:
|
|
548
|
+
#: templates/umap/search_bar.html:4
|
|
473
549
|
msgid "Search maps"
|
|
474
550
|
msgstr "Buscar mapas"
|
|
475
551
|
|
|
476
|
-
#: templates/umap/search_bar.html:
|
|
552
|
+
#: templates/umap/search_bar.html:15
|
|
477
553
|
msgid "Search"
|
|
478
554
|
msgstr "Buscar"
|
|
479
555
|
|
|
480
|
-
#: templates/umap/
|
|
481
|
-
|
|
482
|
-
|
|
556
|
+
#: templates/umap/team_detail.html:10
|
|
557
|
+
#, python-format
|
|
558
|
+
msgid "Browse %(current_team)s's maps"
|
|
559
|
+
msgstr ""
|
|
483
560
|
|
|
484
|
-
#: templates/umap/
|
|
561
|
+
#: templates/umap/team_detail.html:22
|
|
485
562
|
#, python-format
|
|
486
|
-
msgid "
|
|
563
|
+
msgid "%(current_team)s has no public maps."
|
|
487
564
|
msgstr ""
|
|
488
565
|
|
|
489
|
-
#: templates/umap/
|
|
490
|
-
msgid "
|
|
491
|
-
msgstr "
|
|
566
|
+
#: templates/umap/team_form.html:24
|
|
567
|
+
msgid "Delete this team"
|
|
568
|
+
msgstr ""
|
|
569
|
+
|
|
570
|
+
#: templates/umap/team_form.html:47
|
|
571
|
+
msgid "Add user"
|
|
572
|
+
msgstr ""
|
|
492
573
|
|
|
493
|
-
#: templates/umap/user_dashboard.html:
|
|
574
|
+
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
575
|
+
msgid "Search my maps"
|
|
576
|
+
msgstr "Buscar en mis mapas"
|
|
577
|
+
|
|
578
|
+
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
494
579
|
msgid "Map’s title"
|
|
495
580
|
msgstr ""
|
|
496
581
|
|
|
497
|
-
#: templates/umap/user_dashboard.html:
|
|
582
|
+
#: templates/umap/user_dashboard.html:30
|
|
498
583
|
#, python-format
|
|
499
584
|
msgid "Download %(count)s maps"
|
|
500
585
|
msgstr ""
|
|
501
586
|
|
|
502
|
-
#: templates/umap/user_dashboard.html:
|
|
587
|
+
#: templates/umap/user_dashboard.html:40
|
|
503
588
|
msgid "You have no map yet."
|
|
504
589
|
msgstr "Aún no tiene mapa."
|
|
505
590
|
|
|
506
|
-
#:
|
|
591
|
+
#: templates/umap/user_teams.html:17
|
|
592
|
+
msgid "Users"
|
|
593
|
+
msgstr ""
|
|
594
|
+
|
|
595
|
+
#: templates/umap/user_teams.html:48
|
|
596
|
+
msgid "New team"
|
|
597
|
+
msgstr ""
|
|
598
|
+
|
|
599
|
+
#: views.py:235
|
|
600
|
+
msgid "Cannot delete a team with more than one member"
|
|
601
|
+
msgstr ""
|
|
602
|
+
|
|
603
|
+
#: views.py:239
|
|
604
|
+
#, python-format
|
|
605
|
+
msgid "Team “%(name)s” has been deleted"
|
|
606
|
+
msgstr ""
|
|
607
|
+
|
|
608
|
+
#: views.py:438
|
|
507
609
|
msgid "View the map"
|
|
508
610
|
msgstr "Ver el mapa"
|
|
509
611
|
|
|
510
|
-
#: views.py:
|
|
612
|
+
#: views.py:824
|
|
511
613
|
msgid "See full screen"
|
|
512
614
|
msgstr ""
|
|
513
615
|
|
|
514
|
-
#: views.py:
|
|
616
|
+
#: views.py:953
|
|
515
617
|
msgid "Map editors updated with success!"
|
|
516
618
|
msgstr "¡Los editores del mapas han sido actualizados con éxito!"
|
|
517
619
|
|
|
518
|
-
#: views.py:
|
|
620
|
+
#: views.py:989
|
|
519
621
|
#, python-format
|
|
520
622
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
521
623
|
msgstr "El enlace de edición de uMap para tu mapa: %(map_name)s"
|
|
522
624
|
|
|
523
|
-
#: views.py:
|
|
625
|
+
#: views.py:992
|
|
524
626
|
#, python-format
|
|
525
627
|
msgid "Here is your secret edit link: %(link)s"
|
|
526
628
|
msgstr "Aquí está tu enlace secreto de edición: %(link)s"
|
|
527
629
|
|
|
528
|
-
#: views.py:
|
|
630
|
+
#: views.py:999
|
|
631
|
+
#, python-format
|
|
632
|
+
msgid "Can't send email to %(email)s"
|
|
633
|
+
msgstr ""
|
|
634
|
+
|
|
635
|
+
#: views.py:1002
|
|
529
636
|
#, python-format
|
|
530
637
|
msgid "Email sent to %(email)s"
|
|
531
638
|
msgstr "Correo electrónico enviado a %(email)s"
|
|
532
639
|
|
|
533
|
-
#: views.py:
|
|
640
|
+
#: views.py:1013
|
|
534
641
|
msgid "Only its owner can delete the map."
|
|
535
642
|
msgstr "Sólo el propietario puede borrar el mapa."
|
|
536
643
|
|
|
537
|
-
#: views.py:
|
|
644
|
+
#: views.py:1016
|
|
645
|
+
msgid "Map successfully deleted."
|
|
646
|
+
msgstr ""
|
|
647
|
+
|
|
648
|
+
#: views.py:1042
|
|
538
649
|
#, python-format
|
|
539
650
|
msgid ""
|
|
540
651
|
"Your map has been cloned! If you want to edit this map from another "
|
|
541
652
|
"computer, please use this link: %(anonymous_url)s"
|
|
542
653
|
msgstr "¡Tu mapa ha sido clonado! Si quieres editar este mapa desde otro ordenador, usa este enlace: %(anonymous_url)s"
|
|
543
654
|
|
|
544
|
-
#: views.py:
|
|
655
|
+
#: views.py:1047
|
|
545
656
|
msgid "Congratulations, your map has been cloned!"
|
|
546
657
|
msgstr "¡Enhorabuena! ¡Tu mapa ha sido clonado!"
|
|
547
658
|
|
|
548
|
-
#: views.py:
|
|
659
|
+
#: views.py:1282
|
|
549
660
|
msgid "Layer successfully deleted."
|
|
550
661
|
msgstr "Se eliminó la capa con éxito."
|
|
551
662
|
|
|
552
|
-
#: views.py:
|
|
663
|
+
#: views.py:1304
|
|
553
664
|
msgid "Permissions updated with success!"
|
|
554
665
|
msgstr "¡Permisos actualizados con éxito!"
|