umap-project 2.8.2__py3-none-any.whl → 2.9.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (260) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +15 -2
  3. umap/asgi.py +12 -7
  4. umap/context_processors.py +1 -0
  5. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/br/LC_MESSAGES/django.po +111 -67
  7. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/cs_CZ/LC_MESSAGES/django.po +110 -66
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +129 -85
  11. umap/locale/en/LC_MESSAGES/django.po +103 -60
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +114 -69
  14. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/fr/LC_MESSAGES/django.po +105 -61
  16. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/gl/LC_MESSAGES/django.po +216 -171
  18. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/it/LC_MESSAGES/django.po +142 -98
  20. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/nl/LC_MESSAGES/django.po +196 -151
  22. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/pt/LC_MESSAGES/django.po +115 -71
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +109 -65
  26. umap/management/commands/empty_trash.py +12 -1
  27. umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
  28. umap/models.py +43 -13
  29. umap/settings/base.py +5 -2
  30. umap/static/umap/base.css +5 -2
  31. umap/static/umap/content.css +2 -22
  32. umap/static/umap/css/bar.css +39 -10
  33. umap/static/umap/css/contextmenu.css +14 -2
  34. umap/static/umap/css/form.css +33 -39
  35. umap/static/umap/css/icon.css +47 -5
  36. umap/static/umap/css/panel.css +20 -2
  37. umap/static/umap/css/popup.css +0 -1
  38. umap/static/umap/css/tooltip.css +33 -31
  39. umap/static/umap/img/16-white.svg +5 -3
  40. umap/static/umap/img/16.svg +1 -1
  41. umap/static/umap/img/24-white.svg +17 -16
  42. umap/static/umap/img/24.svg +29 -18
  43. umap/static/umap/img/providers/bitbucket.png +0 -0
  44. umap/static/umap/img/providers/github.png +0 -0
  45. umap/static/umap/img/providers/keycloak.png +0 -0
  46. umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
  47. umap/static/umap/img/providers/twitter-oauth2.png +0 -0
  48. umap/static/umap/img/source/16-white.svg +6 -4
  49. umap/static/umap/img/source/16.svg +1 -1
  50. umap/static/umap/img/source/24-white.svg +20 -18
  51. umap/static/umap/img/source/24.svg +30 -19
  52. umap/static/umap/js/components/alerts/alert.js +4 -1
  53. umap/static/umap/js/modules/browser.js +8 -8
  54. umap/static/umap/js/modules/caption.js +30 -7
  55. umap/static/umap/js/modules/data/features.js +101 -56
  56. umap/static/umap/js/modules/data/layer.js +108 -83
  57. umap/static/umap/js/modules/form/builder.js +242 -0
  58. umap/static/umap/js/modules/form/fields.js +1346 -0
  59. umap/static/umap/js/modules/formatter.js +9 -8
  60. umap/static/umap/js/modules/help.js +20 -24
  61. umap/static/umap/js/modules/importer.js +6 -3
  62. umap/static/umap/js/modules/permissions.js +11 -6
  63. umap/static/umap/js/modules/rendering/icon.js +5 -1
  64. umap/static/umap/js/modules/rendering/layers/classified.js +12 -8
  65. umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
  66. umap/static/umap/js/modules/rendering/map.js +1 -23
  67. umap/static/umap/js/modules/rendering/ui.js +20 -38
  68. umap/static/umap/js/modules/rules.js +3 -2
  69. umap/static/umap/js/modules/saving.js +5 -0
  70. umap/static/umap/js/modules/schema.js +8 -6
  71. umap/static/umap/js/modules/share.js +3 -3
  72. umap/static/umap/js/modules/sync/engine.js +56 -26
  73. umap/static/umap/js/modules/sync/updaters.js +15 -6
  74. umap/static/umap/js/modules/sync/websocket.js +50 -37
  75. umap/static/umap/js/modules/tableeditor.js +3 -2
  76. umap/static/umap/js/modules/ui/bar.js +101 -9
  77. umap/static/umap/js/modules/ui/base.js +7 -24
  78. umap/static/umap/js/modules/ui/contextmenu.js +9 -2
  79. umap/static/umap/js/modules/ui/panel.js +5 -1
  80. umap/static/umap/js/modules/ui/tooltip.js +19 -11
  81. umap/static/umap/js/modules/umap.js +121 -68
  82. umap/static/umap/js/modules/utils.js +196 -12
  83. umap/static/umap/js/umap.controls.js +11 -353
  84. umap/static/umap/locale/am_ET.js +17 -5
  85. umap/static/umap/locale/am_ET.json +17 -5
  86. umap/static/umap/locale/ar.js +17 -5
  87. umap/static/umap/locale/ar.json +17 -5
  88. umap/static/umap/locale/ast.js +17 -5
  89. umap/static/umap/locale/ast.json +17 -5
  90. umap/static/umap/locale/bg.js +17 -5
  91. umap/static/umap/locale/bg.json +17 -5
  92. umap/static/umap/locale/br.js +33 -20
  93. umap/static/umap/locale/br.json +33 -20
  94. umap/static/umap/locale/ca.js +17 -5
  95. umap/static/umap/locale/ca.json +17 -5
  96. umap/static/umap/locale/cs_CZ.js +15 -5
  97. umap/static/umap/locale/cs_CZ.json +15 -5
  98. umap/static/umap/locale/da.js +17 -5
  99. umap/static/umap/locale/da.json +17 -5
  100. umap/static/umap/locale/de.js +17 -5
  101. umap/static/umap/locale/de.json +17 -5
  102. umap/static/umap/locale/el.js +63 -51
  103. umap/static/umap/locale/el.json +63 -51
  104. umap/static/umap/locale/en.js +15 -5
  105. umap/static/umap/locale/en.json +15 -5
  106. umap/static/umap/locale/en_US.json +17 -5
  107. umap/static/umap/locale/es.js +25 -13
  108. umap/static/umap/locale/es.json +25 -13
  109. umap/static/umap/locale/et.js +17 -5
  110. umap/static/umap/locale/et.json +17 -5
  111. umap/static/umap/locale/eu.js +17 -5
  112. umap/static/umap/locale/eu.json +17 -5
  113. umap/static/umap/locale/fa_IR.js +17 -5
  114. umap/static/umap/locale/fa_IR.json +17 -5
  115. umap/static/umap/locale/fi.js +17 -5
  116. umap/static/umap/locale/fi.json +17 -5
  117. umap/static/umap/locale/fr.js +16 -6
  118. umap/static/umap/locale/fr.json +16 -6
  119. umap/static/umap/locale/gl.js +357 -345
  120. umap/static/umap/locale/gl.json +357 -345
  121. umap/static/umap/locale/he.js +17 -5
  122. umap/static/umap/locale/he.json +17 -5
  123. umap/static/umap/locale/hr.js +17 -5
  124. umap/static/umap/locale/hr.json +17 -5
  125. umap/static/umap/locale/hu.js +14 -5
  126. umap/static/umap/locale/hu.json +14 -5
  127. umap/static/umap/locale/id.js +17 -5
  128. umap/static/umap/locale/id.json +17 -5
  129. umap/static/umap/locale/is.js +17 -5
  130. umap/static/umap/locale/is.json +17 -5
  131. umap/static/umap/locale/it.js +125 -113
  132. umap/static/umap/locale/it.json +125 -113
  133. umap/static/umap/locale/ja.js +17 -5
  134. umap/static/umap/locale/ja.json +17 -5
  135. umap/static/umap/locale/ko.js +17 -5
  136. umap/static/umap/locale/ko.json +17 -5
  137. umap/static/umap/locale/lt.js +17 -5
  138. umap/static/umap/locale/lt.json +17 -5
  139. umap/static/umap/locale/ms.js +17 -5
  140. umap/static/umap/locale/ms.json +17 -5
  141. umap/static/umap/locale/nl.js +132 -119
  142. umap/static/umap/locale/nl.json +132 -119
  143. umap/static/umap/locale/no.js +17 -5
  144. umap/static/umap/locale/no.json +17 -5
  145. umap/static/umap/locale/pl.js +17 -5
  146. umap/static/umap/locale/pl.json +17 -5
  147. umap/static/umap/locale/pl_PL.json +17 -5
  148. umap/static/umap/locale/pt.js +38 -25
  149. umap/static/umap/locale/pt.json +38 -25
  150. umap/static/umap/locale/pt_BR.js +17 -5
  151. umap/static/umap/locale/pt_BR.json +17 -5
  152. umap/static/umap/locale/pt_PT.js +17 -5
  153. umap/static/umap/locale/pt_PT.json +17 -5
  154. umap/static/umap/locale/ro.js +17 -5
  155. umap/static/umap/locale/ro.json +17 -5
  156. umap/static/umap/locale/ru.js +17 -5
  157. umap/static/umap/locale/ru.json +17 -5
  158. umap/static/umap/locale/sk_SK.js +17 -5
  159. umap/static/umap/locale/sk_SK.json +17 -5
  160. umap/static/umap/locale/sl.js +17 -5
  161. umap/static/umap/locale/sl.json +17 -5
  162. umap/static/umap/locale/sr.js +17 -5
  163. umap/static/umap/locale/sr.json +17 -5
  164. umap/static/umap/locale/sv.js +17 -5
  165. umap/static/umap/locale/sv.json +17 -5
  166. umap/static/umap/locale/th_TH.js +17 -5
  167. umap/static/umap/locale/th_TH.json +17 -5
  168. umap/static/umap/locale/tr.js +17 -5
  169. umap/static/umap/locale/tr.json +17 -5
  170. umap/static/umap/locale/uk_UA.js +17 -5
  171. umap/static/umap/locale/uk_UA.json +17 -5
  172. umap/static/umap/locale/vi.js +17 -5
  173. umap/static/umap/locale/vi.json +17 -5
  174. umap/static/umap/locale/vi_VN.json +17 -5
  175. umap/static/umap/locale/zh.js +17 -5
  176. umap/static/umap/locale/zh.json +17 -5
  177. umap/static/umap/locale/zh_CN.json +17 -5
  178. umap/static/umap/locale/zh_TW.Big5.json +17 -5
  179. umap/static/umap/locale/zh_TW.js +15 -5
  180. umap/static/umap/locale/zh_TW.json +15 -5
  181. umap/static/umap/map.css +29 -76
  182. umap/static/umap/nav.css +6 -3
  183. umap/static/umap/unittests/utils.js +14 -0
  184. umap/static/umap/vars.css +3 -0
  185. umap/static/umap/vendors/dompurify/purify.es.js +138 -354
  186. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  187. umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
  188. umap/sync/__init__.py +0 -0
  189. umap/sync/app.py +187 -0
  190. umap/sync/payloads.py +56 -0
  191. umap/templates/auth/user_detail.html +4 -0
  192. umap/templates/auth/user_form.html +9 -6
  193. umap/templates/auth/user_stars.html +4 -0
  194. umap/templates/base.html +1 -1
  195. umap/templates/registration/login.html +2 -5
  196. umap/templates/umap/about.html +5 -0
  197. umap/templates/umap/about_summary.html +2 -2
  198. umap/templates/umap/components/provider.html +8 -0
  199. umap/templates/umap/content_footer.html +1 -1
  200. umap/templates/umap/css.html +0 -2
  201. umap/templates/umap/js.html +0 -4
  202. umap/templates/umap/map_detail.html +1 -1
  203. umap/templates/umap/password_change.html +4 -0
  204. umap/templates/umap/password_change_done.html +4 -0
  205. umap/templates/umap/search.html +4 -0
  206. umap/templates/umap/search_bar.html +1 -0
  207. umap/templates/umap/team_confirm_delete.html +4 -0
  208. umap/templates/umap/team_detail.html +4 -0
  209. umap/templates/umap/team_form.html +4 -0
  210. umap/templates/umap/user_dashboard.html +1 -1
  211. umap/templates/umap/user_teams.html +4 -0
  212. umap/tests/base.py +3 -1
  213. umap/tests/integration/conftest.py +16 -23
  214. umap/tests/integration/test_anonymous_owned_map.py +2 -2
  215. umap/tests/integration/test_basics.py +4 -7
  216. umap/tests/integration/test_caption.py +1 -0
  217. umap/tests/integration/test_categorized_layer.py +4 -8
  218. umap/tests/integration/test_choropleth.py +1 -1
  219. umap/tests/integration/test_conditional_rules.py +3 -3
  220. umap/tests/integration/test_draw_polygon.py +14 -22
  221. umap/tests/integration/test_draw_polyline.py +6 -14
  222. umap/tests/integration/test_edit_datalayer.py +11 -11
  223. umap/tests/integration/test_edit_map.py +30 -4
  224. umap/tests/integration/test_edit_marker.py +5 -5
  225. umap/tests/integration/test_edit_polygon.py +6 -6
  226. umap/tests/integration/test_features_id_generation.py +2 -6
  227. umap/tests/integration/test_import.py +115 -29
  228. umap/tests/integration/test_optimistic_merge.py +1 -0
  229. umap/tests/integration/test_owned_map.py +1 -1
  230. umap/tests/integration/test_picto.py +8 -8
  231. umap/tests/integration/test_save.py +3 -2
  232. umap/tests/integration/test_star.py +13 -9
  233. umap/tests/integration/test_tableeditor.py +8 -7
  234. umap/tests/integration/test_view_marker.py +10 -0
  235. umap/tests/integration/test_websocket_sync.py +239 -64
  236. umap/tests/settings.py +2 -0
  237. umap/tests/test_datalayer.py +2 -3
  238. umap/tests/test_datalayer_views.py +20 -1
  239. umap/tests/test_empty_trash.py +10 -3
  240. umap/tests/test_map_views.py +11 -0
  241. umap/utils.py +27 -11
  242. umap/views.py +37 -6
  243. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/METADATA +22 -22
  244. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/RECORD +247 -248
  245. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/WHEEL +1 -1
  246. umap/management/commands/run_websocket_server.py +0 -23
  247. umap/settings/local_s3.py +0 -45
  248. umap/static/umap/bitbucket.png +0 -0
  249. umap/static/umap/github.png +0 -0
  250. umap/static/umap/js/umap.forms.js +0 -1242
  251. umap/static/umap/keycloak.png +0 -0
  252. umap/static/umap/openstreetmap.png +0 -0
  253. umap/static/umap/twitter.png +0 -0
  254. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
  255. umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
  256. umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
  257. umap/tests/test_websocket_server.py +0 -22
  258. umap/websocket_server.py +0 -202
  259. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/entry_points.txt +0 -0
  260. {umap_project-2.8.2.dist-info → umap_project-2.9.0.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: 2024-12-24 08:39+0000\n"
20
+ "POT-Creation-Date: 2025-01-31 17:29+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,7 +33,7 @@ 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
38
  #: middleware.py:13
38
39
  msgid "Site is readonly for maintenance"
@@ -42,7 +43,7 @@ msgstr "Sitio en modo solo lectura por mantenimiento"
42
43
  msgid "name"
43
44
  msgstr "nombre"
44
45
 
45
- #: models.py:62 models.py:475
46
+ #: models.py:62 models.py:485
46
47
  msgid "description"
47
48
  msgstr "descripción"
48
49
 
@@ -62,29 +63,29 @@ msgstr "Plantilla de URL usando el formato de teselas OSM"
62
63
  msgid "Order of the tilelayers in the edit box"
63
64
  msgstr "Orden de las capas de teselas en el cuadro de edición"
64
65
 
65
- #: models.py:175 models.py:469
66
+ #: models.py:175 models.py:479
66
67
  msgid "Only editable with secret edit link"
67
68
  msgstr "Solo editable con enlace secreto de edición"
68
69
 
69
- #: models.py:176 models.py:470
70
+ #: models.py:176 models.py:480
70
71
  msgid "Everyone can edit"
71
72
  msgstr "Todos pueden editar"
72
73
 
73
- #: models.py:179 models.py:463
74
+ #: models.py:179 models.py:473
74
75
  msgid "Everyone"
75
76
  msgstr "Todos"
76
77
 
77
- #: models.py:180 models.py:189 models.py:464
78
+ #: models.py:180 models.py:189 models.py:474
78
79
  msgid "Editors and team only"
79
80
  msgstr "Solo editores y equipo"
80
81
 
81
- #: models.py:181 models.py:465
82
+ #: models.py:181 models.py:475
82
83
  msgid "Owner only"
83
84
  msgstr "Solo el propietario"
84
85
 
85
86
  #: models.py:184
86
87
  msgid "Draft (private)"
87
- msgstr ""
88
+ msgstr "Borrador (privado)"
88
89
 
89
90
  #: models.py:185
90
91
  msgid "Everyone (public)"
@@ -98,9 +99,9 @@ msgstr "Cualquiera con el enlace"
98
99
  msgid "Blocked"
99
100
  msgstr "Bloqueado"
100
101
 
101
- #: models.py:191
102
+ #: models.py:191 models.py:469
102
103
  msgid "Deleted"
103
- msgstr ""
104
+ msgstr "Eliminado"
104
105
 
105
106
  #: models.py:194
106
107
  msgid "center"
@@ -138,31 +139,31 @@ msgstr "editores"
138
139
  msgid "team"
139
140
  msgstr "equipo"
140
141
 
141
- #: models.py:229 models.py:491
142
+ #: models.py:229 models.py:501
142
143
  msgid "edit status"
143
144
  msgstr "estado de edición"
144
145
 
145
- #: models.py:234
146
+ #: models.py:234 models.py:506
146
147
  msgid "share status"
147
148
  msgstr "estado de compartir"
148
149
 
149
- #: models.py:237 models.py:486
150
+ #: models.py:237 models.py:496
150
151
  msgid "settings"
151
152
  msgstr "ajustes"
152
153
 
153
- #: models.py:402
154
+ #: models.py:407
154
155
  msgid "Clone of"
155
156
  msgstr "Clon de"
156
157
 
157
- #: models.py:462 models.py:468
158
+ #: models.py:468 models.py:472 models.py:478
158
159
  msgid "Inherit"
159
160
  msgstr "Heredar"
160
161
 
161
- #: models.py:481
162
+ #: models.py:491
162
163
  msgid "display on load"
163
164
  msgstr "mostrar al cargar"
164
165
 
165
- #: models.py:482
166
+ #: models.py:492
166
167
  msgid "Display this layer on load."
167
168
  msgstr "Mostrar esta capa al cargar."
168
169
 
@@ -171,50 +172,64 @@ msgid ""
171
172
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
172
173
  "target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
173
174
  " permissions."
174
- msgstr ""
175
+ 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
176
 
176
177
  #: templates/403.html:10 templates/404.html:8
177
178
  msgid "← Go to the homepage"
178
- msgstr ""
179
+ msgstr "← Ir a la página principal"
179
180
 
180
181
  #: templates/404.html:7
181
182
  msgid "404 Page Not Found"
182
- msgstr ""
183
+ msgstr "404 Página no encontrada"
184
+
185
+ #: templates/auth/user_detail.html:6
186
+ #, python-format
187
+ msgid "%(current_user)s’s maps"
188
+ msgstr "Mapas de %(current_user)s"
183
189
 
184
- #: templates/auth/user_detail.html:8
190
+ #: templates/auth/user_detail.html:12
185
191
  #, python-format
186
192
  msgid "Browse %(current_user)s's maps"
187
193
  msgstr "Explorar los mapas de %(current_user)s"
188
194
 
189
- #: templates/auth/user_detail.html:17
195
+ #: templates/auth/user_detail.html:21
190
196
  #, python-format
191
197
  msgid "%(current_user)s has no maps."
192
198
  msgstr "%(current_user)s no tiene mapas."
193
199
 
194
- #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
200
+ #: templates/auth/user_form.html:6
201
+ msgid "My Profile"
202
+ msgstr "Mi perfil"
203
+
204
+ #: templates/auth/user_form.html:24 templates/umap/team_form.html:25
195
205
  msgid "Save"
196
206
  msgstr "Guardar"
197
207
 
198
- #: templates/auth/user_form.html:27
208
+ #: templates/auth/user_form.html:30
199
209
  msgid "Your current providers"
200
210
  msgstr "Tus proveedores actuales"
201
211
 
202
- #: templates/auth/user_form.html:39
212
+ #: templates/auth/user_form.html:44
203
213
  msgid "Connect to another provider"
204
214
  msgstr "Conectar con otro proveedor"
205
215
 
206
- #: templates/auth/user_form.html:42
216
+ #: templates/auth/user_form.html:47
207
217
  msgid ""
208
218
  "It's a good habit to connect your account to more than one provider, in case"
209
219
  " one provider becomes unavailable, temporarily or even permanently."
210
220
  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
221
 
212
- #: templates/auth/user_stars.html:8
222
+ #: templates/auth/user_stars.html:6
223
+ #, python-format
224
+ msgid "%(current_user)s’s starred maps"
225
+ msgstr "Mapas destacados de %(current_user)s"
226
+
227
+ #: templates/auth/user_stars.html:12
213
228
  #, python-format
214
229
  msgid "Browse %(current_user)s's starred maps"
215
230
  msgstr "Explorar los mapas destacados de %(current_user)s"
216
231
 
217
- #: templates/auth/user_stars.html:17
232
+ #: templates/auth/user_stars.html:21
218
233
  #, python-format
219
234
  msgid "%(current_user)s has no starred maps yet."
220
235
  msgstr "%(current_user)s no tiene mapas destacados todavía."
@@ -231,11 +246,11 @@ msgstr "Iniciar sesión"
231
246
 
232
247
  #: templates/registration/login.html:22
233
248
  msgid "To save and easily find your maps, identify yourself."
234
- msgstr ""
249
+ msgstr "Para guardar y encontrar fácilmente tus mapas, identifícate."
235
250
 
236
251
  #: templates/registration/login.html:25
237
252
  msgid "Please log in with your account:"
238
- msgstr ""
253
+ msgstr "Por favor, inicia sesión con tu cuenta:"
239
254
 
240
255
  #: templates/registration/login.html:42
241
256
  msgid "Username"
@@ -247,7 +262,11 @@ msgstr "Contraseña"
247
262
 
248
263
  #: templates/registration/login.html:52
249
264
  msgid "Please choose a provider:"
250
- msgstr ""
265
+ msgstr "Por favor, elige un proveedor:"
266
+
267
+ #: templates/umap/about.html:5 templates/umap/navigation.html:22
268
+ msgid "About"
269
+ msgstr "Acerca de"
251
270
 
252
271
  #: templates/umap/about_summary.html:12
253
272
  #, python-format
@@ -416,7 +435,7 @@ msgstr "por"
416
435
  msgid "More"
417
436
  msgstr "Más"
418
437
 
419
- #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
438
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
420
439
  msgid "Name"
421
440
  msgstr "Nombre"
422
441
 
@@ -440,7 +459,7 @@ msgstr "Último guardado"
440
459
  msgid "Owner"
441
460
  msgstr "Dueño"
442
461
 
443
- #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
462
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
444
463
  msgid "Actions"
445
464
  msgstr "Acciones"
446
465
 
@@ -453,7 +472,7 @@ msgid "Share"
453
472
  msgstr "Compartir"
454
473
 
455
474
  #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
456
- #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
475
+ #: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
457
476
  msgid "Edit"
458
477
  msgstr "Editar"
459
478
 
@@ -516,10 +535,6 @@ msgstr "Ingresar"
516
535
  msgid "Sign in"
517
536
  msgstr "Regístrarse"
518
537
 
519
- #: templates/umap/navigation.html:22
520
- msgid "About"
521
- msgstr "Acerca de"
522
-
523
538
  #: templates/umap/navigation.html:30
524
539
  msgid "Change password"
525
540
  msgstr "Cambiar contraseña"
@@ -528,41 +543,47 @@ msgstr "Cambiar contraseña"
528
543
  msgid "Log out"
529
544
  msgstr "Salir"
530
545
 
531
- #: templates/umap/password_change.html:7
546
+ #: templates/umap/password_change.html:6
547
+ #: templates/umap/password_change.html:11
532
548
  msgid "Password change"
533
549
  msgstr "Contraseña cambiada"
534
550
 
535
- #: templates/umap/password_change.html:10
551
+ #: templates/umap/password_change.html:14
536
552
  msgid ""
537
553
  "Please enter your old password, for security's sake, and then enter your new"
538
554
  " password twice so we can verify you typed it in correctly."
539
555
  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
556
 
541
- #: templates/umap/password_change.html:17
557
+ #: templates/umap/password_change.html:21
542
558
  msgid "Old password"
543
559
  msgstr "Contraseña antigua"
544
560
 
545
- #: templates/umap/password_change.html:22
561
+ #: templates/umap/password_change.html:26
546
562
  msgid "New password"
547
563
  msgstr "Nueva contraseña"
548
564
 
549
- #: templates/umap/password_change.html:26
565
+ #: templates/umap/password_change.html:30
550
566
  msgid "New password confirmation"
551
567
  msgstr "Confirmar nueva contraseña"
552
568
 
553
- #: templates/umap/password_change.html:27
569
+ #: templates/umap/password_change.html:31
554
570
  msgid "Change my password"
555
571
  msgstr "Cambiar mi contraseña"
556
572
 
557
- #: templates/umap/password_change_done.html:7
573
+ #: templates/umap/password_change_done.html:6
574
+ #: templates/umap/password_change_done.html:11
558
575
  msgid "Password change successful"
559
576
  msgstr "Contraseña cambiada con éxito"
560
577
 
561
- #: templates/umap/password_change_done.html:10
578
+ #: templates/umap/password_change_done.html:14
562
579
  msgid "Your password was changed."
563
580
  msgstr "Su contraseña fue guardada."
564
581
 
565
- #: templates/umap/search.html:15
582
+ #: templates/umap/search.html:6
583
+ msgid "Explore maps"
584
+ msgstr "Explorar mapas"
585
+
586
+ #: templates/umap/search.html:19
566
587
  #, python-format
567
588
  msgid "%(count)s map found:"
568
589
  msgid_plural "%(count)s maps found:"
@@ -570,11 +591,11 @@ msgstr[0] "%(count)s mapa encontrado:"
570
591
  msgstr[1] "%(count)s mapas encontrados:"
571
592
  msgstr[2] "%(count)s mapas encontrados:"
572
593
 
573
- #: templates/umap/search.html:24
594
+ #: templates/umap/search.html:28
574
595
  msgid "No map found."
575
596
  msgstr "No se ha encontrado ningún mapa."
576
597
 
577
- #: templates/umap/search.html:29
598
+ #: templates/umap/search.html:33
578
599
  msgid "Latest created maps"
579
600
  msgstr "Últimos mapas creados"
580
601
 
@@ -586,21 +607,34 @@ msgstr "Buscar mapas"
586
607
  msgid "Search"
587
608
  msgstr "Buscar"
588
609
 
589
- #: templates/umap/team_detail.html:10
610
+ #: templates/umap/team_confirm_delete.html:6
611
+ msgid "Team deletion"
612
+ msgstr "Eliminación de equipo"
613
+
614
+ #: templates/umap/team_detail.html:6
615
+ #, python-format
616
+ msgid "%(current_team)s’s maps"
617
+ msgstr "Mapas de %(current_team)s"
618
+
619
+ #: templates/umap/team_detail.html:14
590
620
  #, python-format
591
621
  msgid "Browse %(current_team)s's maps"
592
622
  msgstr "Explorar los mapas de %(current_team)s"
593
623
 
594
- #: templates/umap/team_detail.html:22
624
+ #: templates/umap/team_detail.html:26
595
625
  #, python-format
596
626
  msgid "%(current_team)s has no public maps."
597
627
  msgstr "%(current_team)s no tiene mapas públicos."
598
628
 
599
- #: templates/umap/team_form.html:24
629
+ #: templates/umap/team_form.html:6
630
+ msgid "Create or edit a team"
631
+ msgstr "Crear o editar un equipo"
632
+
633
+ #: templates/umap/team_form.html:28
600
634
  msgid "Delete this team"
601
635
  msgstr "Eliminar este equipo"
602
636
 
603
- #: templates/umap/team_form.html:47
637
+ #: templates/umap/team_form.html:51
604
638
  msgid "Add user"
605
639
  msgstr "Añadir usuario"
606
640
 
@@ -621,11 +655,15 @@ msgstr "Descargar %(count)s mapas"
621
655
  msgid "You have no map yet."
622
656
  msgstr "Aún no tiene mapa."
623
657
 
624
- #: templates/umap/user_teams.html:17
658
+ #: templates/umap/user_teams.html:6
659
+ msgid "My Teams"
660
+ msgstr "Mis equipos"
661
+
662
+ #: templates/umap/user_teams.html:21
625
663
  msgid "Users"
626
664
  msgstr "Usuarios"
627
665
 
628
- #: templates/umap/user_teams.html:48
666
+ #: templates/umap/user_teams.html:52
629
667
  msgid "New team"
630
668
  msgstr "Nuevo equipo"
631
669
 
@@ -642,57 +680,64 @@ msgstr "El equipo “%(name)s” ha sido eliminado"
642
680
  msgid "View the map"
643
681
  msgstr "Ver el mapa"
644
682
 
645
- #: views.py:825
683
+ #: views.py:838
646
684
  msgid "See full screen"
647
685
  msgstr "Ver en pantalla completa"
648
686
 
649
- #: views.py:968
687
+ #: views.py:981
650
688
  msgid "Map editors updated with success!"
651
689
  msgstr "¡Los editores del mapas han sido actualizados con éxito!"
652
690
 
653
- #: views.py:1004
691
+ #: views.py:1017
654
692
  #, python-format
655
693
  msgid "The uMap edit link for your map: %(map_name)s"
656
694
  msgstr "El enlace de edición de uMap para tu mapa: %(map_name)s"
657
695
 
658
- #: views.py:1007
696
+ #: views.py:1020
659
697
  #, python-format
660
698
  msgid "Here is your secret edit link: %(link)s"
661
699
  msgstr "Aquí está tu enlace secreto de edición: %(link)s"
662
700
 
663
- #: views.py:1014
701
+ #: views.py:1027
664
702
  #, python-format
665
703
  msgid "Can't send email to %(email)s"
666
704
  msgstr "No se puede enviar correo electrónico a %(email)s"
667
705
 
668
- #: views.py:1017
706
+ #: views.py:1030
669
707
  #, python-format
670
708
  msgid "Email sent to %(email)s"
671
709
  msgstr "Correo electrónico enviado a %(email)s"
672
710
 
673
- #: views.py:1028
711
+ #: views.py:1041
674
712
  msgid "Only its owner can delete the map."
675
713
  msgstr "Sólo el propietario puede borrar el mapa."
676
714
 
677
- #: views.py:1031
715
+ #: views.py:1044
678
716
  msgid "Map successfully deleted."
679
717
  msgstr "Mapa eliminado correctamente."
680
718
 
681
- #: views.py:1057
719
+ #: views.py:1070
682
720
  #, python-format
683
721
  msgid ""
684
722
  "Your map has been cloned! If you want to edit this map from another "
685
723
  "computer, please use this link: %(anonymous_url)s"
686
724
  msgstr "¡Tu mapa ha sido clonado! Si quieres editar este mapa desde otro ordenador, usa este enlace: %(anonymous_url)s"
687
725
 
688
- #: views.py:1062
726
+ #: views.py:1075
689
727
  msgid "Congratulations, your map has been cloned!"
690
728
  msgstr "¡Enhorabuena! ¡Tu mapa ha sido clonado!"
691
729
 
692
- #: views.py:1313
730
+ #: views.py:1329
693
731
  msgid "Layer successfully deleted."
694
732
  msgstr "Se eliminó la capa con éxito."
695
733
 
696
- #: views.py:1335
734
+ #: views.py:1351
697
735
  msgid "Permissions updated with success!"
698
736
  msgstr "¡Permisos actualizados con éxito!"
737
+
738
+ #: views.py:1430
739
+ #, python-format
740
+ msgid ""
741
+ "Using “%(name)s” to authenticate is deprecated. Please configure another "
742
+ "provider in your profile page."
743
+ msgstr "Usar “%(name)s” para autenticar está obsoleto. Configura otro proveedor en la página de tu perfil."
Binary file