umap-project 1.14.0a5__py3-none-any.whl → 2.0.0a1__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 (216) hide show
  1. umap/__init__.py +1 -1
  2. umap/decorators.py +0 -14
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +137 -85
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +136 -84
  7. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/el/LC_MESSAGES/django.po +136 -84
  9. umap/locale/en/LC_MESSAGES/django.po +128 -88
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +136 -84
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +131 -91
  14. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/hu/LC_MESSAGES/django.po +137 -85
  16. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/it/LC_MESSAGES/django.po +136 -84
  18. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/ms/LC_MESSAGES/django.po +136 -84
  20. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/pl/LC_MESSAGES/django.po +136 -84
  22. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/sv/LC_MESSAGES/django.po +135 -83
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +143 -91
  26. umap/models.py +23 -1
  27. umap/settings/__init__.py +1 -4
  28. umap/settings/base.py +1 -0
  29. umap/static/umap/base.css +5 -0
  30. umap/static/umap/content.css +185 -13
  31. umap/static/umap/favicons/icon.svg +2 -2
  32. umap/static/umap/img/edit.svg +3 -3
  33. umap/static/umap/img/icon-delete.svg +4 -0
  34. umap/static/umap/img/icon-download.svg +13 -0
  35. umap/static/umap/img/icon-duplicate.svg +5 -0
  36. umap/static/umap/img/icon-edit.svg +12 -0
  37. umap/static/umap/img/icon-share.svg +11 -0
  38. umap/static/umap/img/icon-view.svg +12 -0
  39. umap/static/umap/img/logo.svg +2 -2
  40. umap/static/umap/img/logo_small.svg +2 -2
  41. umap/static/umap/img/marker.svg +4 -0
  42. umap/static/umap/img/opensource.svg +2 -2
  43. umap/static/umap/img/osm.svg +2 -2
  44. umap/static/umap/js/components/fragment.js +1 -1
  45. umap/static/umap/js/modules/browser.js +159 -0
  46. umap/static/umap/js/modules/global.js +3 -1
  47. umap/static/umap/js/modules/request.js +155 -0
  48. umap/static/umap/js/umap.autocomplete.js +28 -38
  49. umap/static/umap/js/umap.controls.js +73 -58
  50. umap/static/umap/js/umap.core.js +4 -9
  51. umap/static/umap/js/umap.datalayer.permissions.js +13 -12
  52. umap/static/umap/js/umap.features.js +51 -49
  53. umap/static/umap/js/umap.forms.js +19 -19
  54. umap/static/umap/js/umap.icon.js +17 -17
  55. umap/static/umap/js/umap.importer.js +2 -1
  56. umap/static/umap/js/umap.js +242 -291
  57. umap/static/umap/js/umap.layer.js +173 -141
  58. umap/static/umap/js/umap.permissions.js +24 -25
  59. umap/static/umap/js/umap.popup.js +14 -14
  60. umap/static/umap/js/umap.share.js +4 -4
  61. umap/static/umap/js/umap.slideshow.js +4 -4
  62. umap/static/umap/js/umap.tableeditor.js +2 -2
  63. umap/static/umap/js/umap.ui.js +1 -1
  64. umap/static/umap/locale/am_ET.js +1 -11
  65. umap/static/umap/locale/am_ET.json +1 -11
  66. umap/static/umap/locale/ar.js +1 -11
  67. umap/static/umap/locale/ar.json +1 -11
  68. umap/static/umap/locale/ast.js +1 -11
  69. umap/static/umap/locale/ast.json +1 -11
  70. umap/static/umap/locale/bg.js +1 -11
  71. umap/static/umap/locale/bg.json +1 -11
  72. umap/static/umap/locale/br.js +1 -11
  73. umap/static/umap/locale/br.json +1 -11
  74. umap/static/umap/locale/ca.js +1 -11
  75. umap/static/umap/locale/ca.json +1 -11
  76. umap/static/umap/locale/cs_CZ.js +1 -11
  77. umap/static/umap/locale/cs_CZ.json +1 -11
  78. umap/static/umap/locale/da.js +1 -11
  79. umap/static/umap/locale/da.json +1 -11
  80. umap/static/umap/locale/de.js +1 -11
  81. umap/static/umap/locale/de.json +1 -11
  82. umap/static/umap/locale/el.js +1 -11
  83. umap/static/umap/locale/el.json +1 -11
  84. umap/static/umap/locale/en.js +1 -11
  85. umap/static/umap/locale/en.json +1 -11
  86. umap/static/umap/locale/en_US.json +1 -11
  87. umap/static/umap/locale/es.js +1 -11
  88. umap/static/umap/locale/es.json +1 -11
  89. umap/static/umap/locale/et.js +1 -11
  90. umap/static/umap/locale/et.json +1 -11
  91. umap/static/umap/locale/fa_IR.js +6 -16
  92. umap/static/umap/locale/fa_IR.json +6 -16
  93. umap/static/umap/locale/fi.js +1 -11
  94. umap/static/umap/locale/fi.json +1 -11
  95. umap/static/umap/locale/fr.js +1 -11
  96. umap/static/umap/locale/fr.json +1 -11
  97. umap/static/umap/locale/gl.js +1 -11
  98. umap/static/umap/locale/gl.json +1 -11
  99. umap/static/umap/locale/he.js +1 -11
  100. umap/static/umap/locale/he.json +1 -11
  101. umap/static/umap/locale/hr.js +1 -11
  102. umap/static/umap/locale/hr.json +1 -11
  103. umap/static/umap/locale/hu.js +1 -11
  104. umap/static/umap/locale/hu.json +1 -11
  105. umap/static/umap/locale/id.js +1 -11
  106. umap/static/umap/locale/id.json +1 -11
  107. umap/static/umap/locale/is.js +1 -11
  108. umap/static/umap/locale/is.json +1 -11
  109. umap/static/umap/locale/it.js +1 -11
  110. umap/static/umap/locale/it.json +1 -11
  111. umap/static/umap/locale/ja.js +1 -11
  112. umap/static/umap/locale/ja.json +1 -11
  113. umap/static/umap/locale/ko.js +1 -11
  114. umap/static/umap/locale/ko.json +1 -11
  115. umap/static/umap/locale/lt.js +1 -11
  116. umap/static/umap/locale/lt.json +1 -11
  117. umap/static/umap/locale/ms.js +1 -11
  118. umap/static/umap/locale/ms.json +1 -11
  119. umap/static/umap/locale/nl.js +1 -11
  120. umap/static/umap/locale/nl.json +1 -11
  121. umap/static/umap/locale/no.js +1 -11
  122. umap/static/umap/locale/no.json +1 -11
  123. umap/static/umap/locale/pl.js +1 -11
  124. umap/static/umap/locale/pl.json +1 -11
  125. umap/static/umap/locale/pl_PL.json +1 -11
  126. umap/static/umap/locale/pt.js +1 -11
  127. umap/static/umap/locale/pt.json +1 -11
  128. umap/static/umap/locale/pt_BR.js +1 -11
  129. umap/static/umap/locale/pt_BR.json +1 -11
  130. umap/static/umap/locale/pt_PT.js +1 -11
  131. umap/static/umap/locale/pt_PT.json +1 -11
  132. umap/static/umap/locale/ro.js +1 -11
  133. umap/static/umap/locale/ro.json +1 -11
  134. umap/static/umap/locale/ru.js +1 -11
  135. umap/static/umap/locale/ru.json +1 -11
  136. umap/static/umap/locale/sk_SK.js +1 -11
  137. umap/static/umap/locale/sk_SK.json +1 -11
  138. umap/static/umap/locale/sl.js +1 -11
  139. umap/static/umap/locale/sl.json +1 -11
  140. umap/static/umap/locale/sr.js +1 -11
  141. umap/static/umap/locale/sr.json +1 -11
  142. umap/static/umap/locale/sv.js +1 -11
  143. umap/static/umap/locale/sv.json +1 -11
  144. umap/static/umap/locale/th_TH.js +1 -11
  145. umap/static/umap/locale/th_TH.json +1 -11
  146. umap/static/umap/locale/tr.js +1 -11
  147. umap/static/umap/locale/tr.json +1 -11
  148. umap/static/umap/locale/uk_UA.js +1 -11
  149. umap/static/umap/locale/uk_UA.json +1 -11
  150. umap/static/umap/locale/vi.js +1 -11
  151. umap/static/umap/locale/vi.json +1 -11
  152. umap/static/umap/locale/vi_VN.json +1 -11
  153. umap/static/umap/locale/zh.js +1 -11
  154. umap/static/umap/locale/zh.json +1 -11
  155. umap/static/umap/locale/zh_CN.json +1 -11
  156. umap/static/umap/locale/zh_TW.Big5.json +1 -11
  157. umap/static/umap/locale/zh_TW.js +17 -27
  158. umap/static/umap/locale/zh_TW.json +17 -27
  159. umap/static/umap/map.css +2 -2
  160. umap/static/umap/nav.css +2 -1
  161. umap/static/umap/test/.eslintrc +0 -1
  162. umap/static/umap/test/Choropleth.js +29 -27
  163. umap/static/umap/test/DataLayer.js +207 -239
  164. umap/static/umap/test/Feature.js +33 -58
  165. umap/static/umap/test/Map.Export.js +11 -11
  166. umap/static/umap/test/Map.js +66 -67
  167. umap/static/umap/test/Marker.js +36 -32
  168. umap/static/umap/test/Polygon.js +95 -95
  169. umap/static/umap/test/Polyline.js +31 -31
  170. umap/static/umap/test/TableEditor.js +29 -25
  171. umap/static/umap/test/_pre.js +2 -7
  172. umap/static/umap/test/index.html +4 -4
  173. umap/storage.py +2 -0
  174. umap/templates/auth/user_form.html +3 -2
  175. umap/templates/base.html +1 -0
  176. umap/templates/registration/login.html +51 -36
  177. umap/templates/umap/about_summary.html +1 -1
  178. umap/templates/umap/branding.html +3 -0
  179. umap/templates/umap/content.html +15 -39
  180. umap/templates/umap/header.html +0 -0
  181. umap/templates/umap/home.html +4 -2
  182. umap/templates/umap/js.html +0 -2
  183. umap/templates/umap/map_detail.html +9 -0
  184. umap/templates/umap/map_init.html +1 -1
  185. umap/templates/umap/map_messages.html +4 -2
  186. umap/templates/umap/map_table.html +130 -69
  187. umap/templates/umap/navigation.html +2 -4
  188. umap/templates/umap/user_dashboard.html +29 -6
  189. umap/tests/base.py +1 -1
  190. umap/tests/integration/conftest.py +18 -0
  191. umap/tests/integration/test_anonymous_owned_map.py +6 -3
  192. umap/tests/integration/test_browser.py +166 -6
  193. umap/tests/integration/test_collaborative_editing.py +23 -5
  194. umap/tests/integration/test_dashboard.py +17 -0
  195. umap/tests/integration/test_edit_datalayer.py +4 -3
  196. umap/tests/integration/test_export_map.py +1 -1
  197. umap/tests/integration/test_import.py +9 -4
  198. umap/tests/integration/test_map.py +64 -0
  199. umap/tests/integration/test_map_preview.py +75 -0
  200. umap/tests/integration/test_owned_map.py +11 -25
  201. umap/tests/integration/test_picto.py +3 -3
  202. umap/tests/integration/test_querystring.py +52 -0
  203. umap/tests/integration/test_share.py +22 -0
  204. umap/tests/test_map_views.py +157 -14
  205. umap/tests/test_views.py +50 -11
  206. umap/urls.py +6 -12
  207. umap/views.py +170 -47
  208. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/METADATA +13 -15
  209. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/RECORD +212 -200
  210. umap/static/umap/js/umap.browser.js +0 -148
  211. umap/static/umap/js/umap.xhr.js +0 -304
  212. umap/static/umap/test/Controls.js +0 -100
  213. umap/static/umap/test/Map.Init.js +0 -46
  214. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/WHEEL +0 -0
  215. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/entry_points.txt +0 -0
  216. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.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-01-08 12:33+0000\n"
17
+ "POT-Creation-Date: 2024-02-09 10:52+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:349
35
+ #: forms.py:69 models.py:371
36
36
  msgid "Inherit"
37
37
  msgstr "Heredar"
38
38
 
@@ -40,107 +40,107 @@ 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:49
43
+ #: models.py:50
44
44
  msgid "name"
45
45
  msgstr "nombre"
46
46
 
47
- #: models.py:80
47
+ #: models.py:81
48
48
  msgid "details"
49
49
  msgstr "detalles"
50
50
 
51
- #: models.py:81
51
+ #: models.py:82
52
52
  msgid "Link to a page where the licence is detailed."
53
53
  msgstr "Enlace a una página donde se detalla la licencia."
54
54
 
55
- #: models.py:91
55
+ #: models.py:92
56
56
  msgid "URL template using OSM tile format"
57
57
  msgstr "Plantilla URL usando el formato de teselas OSM"
58
58
 
59
- #: models.py:97
59
+ #: models.py:98
60
60
  msgid "Order of the tilelayers in the edit box"
61
61
  msgstr "Orden de las capas de teselas en la caja de edición"
62
62
 
63
- #: models.py:143 models.py:350
63
+ #: models.py:144 models.py:372
64
64
  msgid "Everyone"
65
65
  msgstr "Todos"
66
66
 
67
- #: models.py:144 models.py:150 models.py:351
67
+ #: models.py:145 models.py:151 models.py:373
68
68
  msgid "Editors only"
69
69
  msgstr "Sólo editores"
70
70
 
71
- #: models.py:145 models.py:352
71
+ #: models.py:146 models.py:374
72
72
  msgid "Owner only"
73
73
  msgstr "Sólo propietario"
74
74
 
75
- #: models.py:148
75
+ #: models.py:149
76
76
  msgid "Everyone (public)"
77
77
  msgstr "Todos (público)"
78
78
 
79
- #: models.py:149
79
+ #: models.py:150
80
80
  msgid "Anyone with link"
81
81
  msgstr "Cualquiera con enlace"
82
82
 
83
- #: models.py:151
83
+ #: models.py:152
84
84
  msgid "Blocked"
85
85
  msgstr "Bloqueado"
86
86
 
87
- #: models.py:154 models.py:356
87
+ #: models.py:155 models.py:378
88
88
  msgid "description"
89
89
  msgstr "descripción"
90
90
 
91
- #: models.py:155
91
+ #: models.py:156
92
92
  msgid "center"
93
93
  msgstr "centrar"
94
94
 
95
- #: models.py:156
95
+ #: models.py:157
96
96
  msgid "zoom"
97
97
  msgstr "acercar/alejar"
98
98
 
99
- #: models.py:158
99
+ #: models.py:159
100
100
  msgid "locate"
101
101
  msgstr "ubicar"
102
102
 
103
- #: models.py:158
103
+ #: models.py:159
104
104
  msgid "Locate user on load?"
105
105
  msgstr "¿Al cargar ubicar al usuario?"
106
106
 
107
- #: models.py:162
107
+ #: models.py:163
108
108
  msgid "Choose the map licence."
109
109
  msgstr "Elija la licencia del mapa."
110
110
 
111
- #: models.py:163
111
+ #: models.py:164
112
112
  msgid "licence"
113
113
  msgstr "licencia"
114
114
 
115
- #: models.py:174
115
+ #: models.py:175
116
116
  msgid "owner"
117
117
  msgstr "propietario"
118
118
 
119
- #: models.py:178
119
+ #: models.py:179
120
120
  msgid "editors"
121
121
  msgstr "editores"
122
122
 
123
- #: models.py:183 models.py:370
123
+ #: models.py:184 models.py:392
124
124
  msgid "edit status"
125
125
  msgstr "estado de la edición"
126
126
 
127
- #: models.py:188
127
+ #: models.py:189
128
128
  msgid "share status"
129
129
  msgstr "compartir estado"
130
130
 
131
- #: models.py:191 models.py:365
131
+ #: models.py:192 models.py:387
132
132
  msgid "settings"
133
133
  msgstr "ajustes"
134
134
 
135
- #: models.py:298
135
+ #: models.py:320
136
136
  msgid "Clone of"
137
137
  msgstr "Clon de"
138
138
 
139
- #: models.py:360
139
+ #: models.py:382
140
140
  msgid "display on load"
141
141
  msgstr "mostrar al cargar"
142
142
 
143
- #: models.py:361
143
+ #: models.py:383
144
144
  msgid "Display this layer on load."
145
145
  msgstr "Mostrar esta capa al cargar."
146
146
 
@@ -158,28 +158,27 @@ msgstr "Navegar los mapas de %(current_user)s"
158
158
  msgid "%(current_user)s has no maps."
159
159
  msgstr "%(current_user)s no tiene mapas."
160
160
 
161
- #: templates/auth/user_form.html:6 templates/umap/navigation.html:12
162
- #: templates/umap/user_dashboard.html:4 templates/umap/user_dashboard.html:10
163
- msgid "My Dashboard"
164
- msgstr "Mi panel de control"
165
-
166
161
  #: templates/auth/user_form.html:6
162
+ msgid "My Maps"
163
+ msgstr ""
164
+
165
+ #: templates/auth/user_form.html:7
167
166
  msgid "My Profile"
168
167
  msgstr "Mi perfil"
169
168
 
170
- #: templates/auth/user_form.html:19
169
+ #: templates/auth/user_form.html:20
171
170
  msgid "Save"
172
171
  msgstr "Guardar"
173
172
 
174
- #: templates/auth/user_form.html:24
173
+ #: templates/auth/user_form.html:25
175
174
  msgid "Your current providers"
176
175
  msgstr "Sus proveedores actuales"
177
176
 
178
- #: templates/auth/user_form.html:30
177
+ #: templates/auth/user_form.html:31
179
178
  msgid "Connect to another provider"
180
179
  msgstr "Conectarse a otro proveedor"
181
180
 
182
- #: templates/auth/user_form.html:32
181
+ #: templates/auth/user_form.html:33
183
182
  msgid ""
184
183
  "It's a good habit to connect your account to more than one provider, in case"
185
184
  " one provider becomes unavailable, temporarily or even permanently."
@@ -201,23 +200,23 @@ msgid ""
201
200
  "them in your site."
202
201
  msgstr "uMap le permite crear mapas con capas de OpenStreetMap en un minuto e incrustarlos en su sitio web."
203
202
 
204
- #: templates/registration/login.html:3
203
+ #: templates/registration/login.html:16
205
204
  msgid "Please log in with your account"
206
205
  msgstr "Inicie sesión con su cuenta"
207
206
 
208
- #: templates/registration/login.html:15
207
+ #: templates/registration/login.html:28
209
208
  msgid "Username"
210
209
  msgstr "Nombre de usuario"
211
210
 
212
- #: templates/registration/login.html:18
211
+ #: templates/registration/login.html:31
213
212
  msgid "Password"
214
213
  msgstr "Contraseña"
215
214
 
216
- #: templates/registration/login.html:19
215
+ #: templates/registration/login.html:32
217
216
  msgid "Login"
218
217
  msgstr "Usuario"
219
218
 
220
- #: templates/registration/login.html:24
219
+ #: templates/registration/login.html:37
221
220
  msgid "Please choose a provider"
222
221
  msgstr "Elige un proveedor"
223
222
 
@@ -261,8 +260,8 @@ msgstr "Embebe y comparte tu mapa"
261
260
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
262
261
  msgstr "Y es de <a href=\"%(repo_url)s\">código abierto</a>!"
263
262
 
264
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:42
265
- #: templates/umap/user_dashboard.html:20
263
+ #: templates/umap/about_summary.html:48 templates/umap/navigation.html:40
264
+ #: templates/umap/user_dashboard.html:41
266
265
  msgid "Create a map"
267
266
  msgstr "Crea un mapa"
268
267
 
@@ -270,13 +269,13 @@ msgstr "Crea un mapa"
270
269
  msgid "Play with the demo"
271
270
  msgstr "Juega con el demo"
272
271
 
273
- #: templates/umap/content.html:23
272
+ #: templates/umap/content.html:22
274
273
  msgid ""
275
274
  "This instance of uMap is currently in read only mode, no creation/edit is "
276
275
  "allowed."
277
276
  msgstr "Esta instancia de uMap está actualmente en modo de sólo lectura, no se permite la creación/edición."
278
277
 
279
- #: templates/umap/content.html:31
278
+ #: templates/umap/content.html:30
280
279
  #, python-format
281
280
  msgid ""
282
281
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -289,7 +288,7 @@ msgstr "Esta es una instancia de demostración, usada para pruebas y lanzamiento
289
288
  msgid "Map of the uMaps"
290
289
  msgstr "Mapa de los uMaps"
291
290
 
292
- #: templates/umap/home.html:13
291
+ #: templates/umap/home.html:14
293
292
  msgid "Get inspired, browse maps"
294
293
  msgstr "Inspírate, navega por los mapas"
295
294
 
@@ -297,7 +296,7 @@ msgstr "Inspírate, navega por los mapas"
297
296
  msgid "You are logged in. Continuing..."
298
297
  msgstr "Has iniciado sesión. Continuando..."
299
298
 
300
- #: templates/umap/map_list.html:9 views.py:296
299
+ #: templates/umap/map_list.html:9 views.py:341
301
300
  msgid "by"
302
301
  msgstr "por"
303
302
 
@@ -314,86 +313,118 @@ msgid "Preview"
314
313
  msgstr ""
315
314
 
316
315
  #: templates/umap/map_table.html:7
317
- msgid "Who can see / edit"
318
- msgstr "Quién puede ver / editar"
316
+ msgid "Who can see"
317
+ msgstr ""
319
318
 
320
319
  #: templates/umap/map_table.html:8
320
+ msgid "Who can edit"
321
+ msgstr ""
322
+
323
+ #: templates/umap/map_table.html:9
321
324
  msgid "Last save"
322
325
  msgstr "Último guardado"
323
326
 
324
- #: templates/umap/map_table.html:9
327
+ #: templates/umap/map_table.html:10
325
328
  msgid "Owner"
326
329
  msgstr "Dueño"
327
330
 
328
- #: templates/umap/map_table.html:10
331
+ #: templates/umap/map_table.html:11
329
332
  msgid "Actions"
330
333
  msgstr "Acciones"
331
334
 
332
- #: templates/umap/map_table.html:22
335
+ #: templates/umap/map_table.html:24 templates/umap/map_table.html:26
333
336
  msgid "Open preview"
334
337
  msgstr ""
335
338
 
336
- #: templates/umap/map_table.html:38
339
+ #: templates/umap/map_table.html:45 templates/umap/map_table.html:47
337
340
  msgid "Share"
338
341
  msgstr "Compartir"
339
342
 
340
- #: templates/umap/map_table.html:39
343
+ #: templates/umap/map_table.html:50 templates/umap/map_table.html:52
341
344
  msgid "Edit"
342
345
  msgstr "Editar"
343
346
 
344
- #: templates/umap/map_table.html:40
347
+ #: templates/umap/map_table.html:55 templates/umap/map_table.html:57
345
348
  msgid "Download"
346
349
  msgstr "Descargar"
347
350
 
348
- #: templates/umap/map_table.html:49
351
+ #: templates/umap/map_table.html:62 templates/umap/map_table.html:64
352
+ msgid "Clone"
353
+ msgstr ""
354
+
355
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
356
+ msgid "Delete"
357
+ msgstr ""
358
+
359
+ #: templates/umap/map_table.html:86
349
360
  msgid "first"
350
361
  msgstr ""
351
362
 
352
- #: templates/umap/map_table.html:50
363
+ #: templates/umap/map_table.html:87
353
364
  msgid "previous"
354
365
  msgstr ""
355
366
 
356
- #: templates/umap/map_table.html:59
367
+ #: templates/umap/map_table.html:96
357
368
  #, python-format
358
369
  msgid ""
359
370
  "\n"
360
- " Page %(maps_number)s of %(num_pages)s\n"
361
- " "
371
+ " Page %(maps_number)s of %(num_pages)s\n"
372
+ " "
362
373
  msgstr ""
363
374
 
364
- #: templates/umap/map_table.html:65
375
+ #: templates/umap/map_table.html:102
365
376
  msgid "next"
366
377
  msgstr ""
367
378
 
368
- #: templates/umap/map_table.html:66
379
+ #: templates/umap/map_table.html:103
369
380
  msgid "last"
370
381
  msgstr ""
371
382
 
372
- #: templates/umap/navigation.html:15
383
+ #: templates/umap/map_table.html:111
384
+ #, python-format
385
+ msgid ""
386
+ "\n"
387
+ " Lines per page: %(per_page)s\n"
388
+ " "
389
+ msgstr ""
390
+
391
+ #: templates/umap/map_table.html:116
392
+ #, python-format
393
+ msgid ""
394
+ "\n"
395
+ " %(count)s maps\n"
396
+ " "
397
+ msgstr ""
398
+
399
+ #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
400
+ msgid "My Dashboard"
401
+ msgstr "Mi panel de control"
402
+
403
+ #: templates/umap/navigation.html:13
373
404
  msgid "Starred maps"
374
405
  msgstr "Mapas con estrellas"
375
406
 
376
- #: templates/umap/navigation.html:19
407
+ #: templates/umap/navigation.html:17
377
408
  msgid "Log in"
378
409
  msgstr "Ingresar"
379
410
 
380
- #: templates/umap/navigation.html:19
411
+ #: templates/umap/navigation.html:17
381
412
  msgid "Sign in"
382
413
  msgstr "Regístrarse"
383
414
 
384
- #: templates/umap/navigation.html:23
415
+ #: templates/umap/navigation.html:21
385
416
  msgid "About"
386
417
  msgstr "Acerca de"
387
418
 
388
- #: templates/umap/navigation.html:26
419
+ #: templates/umap/navigation.html:24
389
420
  msgid "Help"
390
421
  msgstr "Ayuda"
391
422
 
392
- #: templates/umap/navigation.html:31
423
+ #: templates/umap/navigation.html:29
393
424
  msgid "Change password"
394
425
  msgstr "Cambiar contraseña"
395
426
 
396
- #: templates/umap/navigation.html:35
427
+ #: templates/umap/navigation.html:33
397
428
  msgid "Log out"
398
429
  msgstr "Salir"
399
430
 
@@ -451,7 +482,7 @@ msgstr "Últimos mapas creados"
451
482
  msgid "Search maps"
452
483
  msgstr "Buscar mapas"
453
484
 
454
- #: templates/umap/search_bar.html:14
485
+ #: templates/umap/search_bar.html:14 templates/umap/user_dashboard.html:25
455
486
  msgid "Search"
456
487
  msgstr "Buscar"
457
488
 
@@ -459,60 +490,81 @@ msgstr "Buscar"
459
490
  msgid "Search my maps"
460
491
  msgstr "Buscar en mis mapas"
461
492
 
462
- #: templates/umap/user_dashboard.html:10
493
+ #: templates/umap/user_dashboard.html:11
494
+ #, python-format
495
+ msgid "My Maps (%(count)s)"
496
+ msgstr ""
497
+
498
+ #: templates/umap/user_dashboard.html:13
463
499
  msgid "My profile"
464
500
  msgstr "Mi perfil"
465
501
 
466
- #: templates/umap/user_dashboard.html:20
502
+ #: templates/umap/user_dashboard.html:21
503
+ msgid "Map’s title"
504
+ msgstr ""
505
+
506
+ #: templates/umap/user_dashboard.html:31
507
+ #, python-format
508
+ msgid ""
509
+ "\n"
510
+ " Download %(count)s maps\n"
511
+ " "
512
+ msgstr ""
513
+
514
+ #: templates/umap/user_dashboard.html:41
467
515
  msgid "You have no map yet."
468
516
  msgstr "Aún no tiene mapa."
469
517
 
470
- #: views.py:301
518
+ #: views.py:346
471
519
  msgid "View the map"
472
520
  msgstr "Ver el mapa"
473
521
 
474
- #: views.py:660
522
+ #: views.py:704
523
+ msgid "See full screen"
524
+ msgstr ""
525
+
526
+ #: views.py:779
475
527
  msgid "Map has been updated!"
476
528
  msgstr "¡El mapa ha sido actualizado!"
477
529
 
478
- #: views.py:685
530
+ #: views.py:804
479
531
  msgid "Map editors updated with success!"
480
532
  msgstr "¡Los editores del mapas han sido actualizados con éxito!"
481
533
 
482
- #: views.py:723
534
+ #: views.py:842
483
535
  #, python-format
484
536
  msgid "The uMap edit link for your map: %(map_name)s"
485
537
  msgstr "El enlace de edición de uMap para tu mapa: %(map_name)s"
486
538
 
487
- #: views.py:726
539
+ #: views.py:845
488
540
  #, python-format
489
541
  msgid "Here is your secret edit link: %(link)s"
490
542
  msgstr "Aquí está tu enlace secreto de edición: %(link)s"
491
543
 
492
- #: views.py:732
544
+ #: views.py:851
493
545
  #, python-format
494
546
  msgid "Email sent to %(email)s"
495
547
  msgstr "Correo electrónico enviado a %(email)s"
496
548
 
497
- #: views.py:743
549
+ #: views.py:862
498
550
  msgid "Only its owner can delete the map."
499
551
  msgstr "Sólo el propietario puede borrar el mapa."
500
552
 
501
- #: views.py:766
553
+ #: views.py:890
502
554
  #, python-format
503
555
  msgid ""
504
556
  "Your map has been cloned! If you want to edit this map from another "
505
557
  "computer, please use this link: %(anonymous_url)s"
506
558
  msgstr "¡Tu mapa ha sido clonado! Si quieres editar este mapa desde otro ordenador, usa este enlace: %(anonymous_url)s"
507
559
 
508
- #: views.py:771
560
+ #: views.py:895
509
561
  msgid "Congratulations, your map has been cloned!"
510
562
  msgstr "¡Enhorabuena! ¡Tu mapa ha sido clonado!"
511
563
 
512
- #: views.py:1007
564
+ #: views.py:1131
513
565
  msgid "Layer successfully deleted."
514
566
  msgstr "Se eliminó la capa con éxito."
515
567
 
516
- #: views.py:1029
568
+ #: views.py:1153
517
569
  msgid "Permissions updated with success!"
518
570
  msgstr "¡Permisos actualizados con éxito!"
Binary file