umap-project 2.5.1__py3-none-any.whl → 2.6.0b0__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 (193) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +346 -234
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +3 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +3 -3
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +994 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/permissions.js +280 -0
  68. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  69. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  70. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  71. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  72. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  73. umap/static/umap/js/modules/rendering/popup.js +99 -0
  74. umap/static/umap/js/modules/rendering/template.js +217 -0
  75. umap/static/umap/js/modules/rendering/ui.js +573 -0
  76. umap/static/umap/js/modules/schema.js +24 -0
  77. umap/static/umap/js/modules/share.js +66 -45
  78. umap/static/umap/js/modules/sync/updaters.js +9 -10
  79. umap/static/umap/js/modules/tableeditor.js +7 -7
  80. umap/static/umap/js/modules/ui/dialog.js +8 -4
  81. umap/static/umap/js/modules/utils.js +22 -13
  82. umap/static/umap/js/umap.controls.js +79 -146
  83. umap/static/umap/js/umap.core.js +9 -9
  84. umap/static/umap/js/umap.forms.js +32 -12
  85. umap/static/umap/js/umap.js +65 -63
  86. umap/static/umap/locale/br.js +35 -35
  87. umap/static/umap/locale/br.json +35 -35
  88. umap/static/umap/locale/ca.js +50 -50
  89. umap/static/umap/locale/ca.json +50 -50
  90. umap/static/umap/locale/de.js +136 -136
  91. umap/static/umap/locale/de.json +136 -136
  92. umap/static/umap/locale/el.js +47 -47
  93. umap/static/umap/locale/el.json +47 -47
  94. umap/static/umap/locale/en.js +7 -1
  95. umap/static/umap/locale/en.json +7 -1
  96. umap/static/umap/locale/fa_IR.js +44 -44
  97. umap/static/umap/locale/fa_IR.json +44 -44
  98. umap/static/umap/locale/fr.js +8 -2
  99. umap/static/umap/locale/fr.json +8 -2
  100. umap/static/umap/locale/pt.js +17 -17
  101. umap/static/umap/locale/pt.json +17 -17
  102. umap/static/umap/locale/pt_PT.js +207 -207
  103. umap/static/umap/locale/pt_PT.json +207 -207
  104. umap/static/umap/locale/th_TH.js +25 -25
  105. umap/static/umap/locale/th_TH.json +25 -25
  106. umap/static/umap/map.css +107 -104
  107. umap/static/umap/nav.css +19 -10
  108. umap/static/umap/unittests/utils.js +230 -107
  109. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  110. umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
  111. umap/storage.py +1 -0
  112. umap/templates/404.html +5 -1
  113. umap/templates/500.html +3 -1
  114. umap/templates/auth/user_detail.html +8 -2
  115. umap/templates/auth/user_form.html +19 -10
  116. umap/templates/auth/user_stars.html +8 -2
  117. umap/templates/base.html +1 -0
  118. umap/templates/registration/login.html +18 -3
  119. umap/templates/umap/about.html +1 -0
  120. umap/templates/umap/about_summary.html +22 -7
  121. umap/templates/umap/components/alerts/alert.html +42 -21
  122. umap/templates/umap/content.html +2 -0
  123. umap/templates/umap/content_footer.html +6 -2
  124. umap/templates/umap/css.html +1 -0
  125. umap/templates/umap/dashboard_menu.html +15 -0
  126. umap/templates/umap/home.html +14 -4
  127. umap/templates/umap/js.html +4 -9
  128. umap/templates/umap/login_popup_end.html +10 -4
  129. umap/templates/umap/map_detail.html +8 -2
  130. umap/templates/umap/map_fragment.html +3 -1
  131. umap/templates/umap/map_init.html +2 -1
  132. umap/templates/umap/map_list.html +4 -3
  133. umap/templates/umap/map_table.html +36 -12
  134. umap/templates/umap/messages.html +0 -1
  135. umap/templates/umap/navigation.html +2 -1
  136. umap/templates/umap/password_change.html +5 -1
  137. umap/templates/umap/password_change_done.html +8 -2
  138. umap/templates/umap/search.html +8 -2
  139. umap/templates/umap/search_bar.html +1 -0
  140. umap/templates/umap/team_confirm_delete.html +19 -0
  141. umap/templates/umap/team_detail.html +27 -0
  142. umap/templates/umap/team_form.html +60 -0
  143. umap/templates/umap/user_dashboard.html +7 -9
  144. umap/templates/umap/user_teams.html +51 -0
  145. umap/tests/base.py +8 -1
  146. umap/tests/conftest.py +6 -0
  147. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  148. umap/tests/fixtures/test_upload_georss.xml +20 -0
  149. umap/tests/integration/conftest.py +18 -4
  150. umap/tests/integration/helpers.py +12 -0
  151. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  152. umap/tests/integration/test_basics.py +29 -0
  153. umap/tests/integration/test_caption.py +20 -0
  154. umap/tests/integration/test_circles_layer.py +69 -0
  155. umap/tests/integration/test_draw_polygon.py +110 -13
  156. umap/tests/integration/test_draw_polyline.py +8 -18
  157. umap/tests/integration/test_edit_datalayer.py +1 -1
  158. umap/tests/integration/test_import.py +64 -5
  159. umap/tests/integration/test_owned_map.py +21 -13
  160. umap/tests/integration/test_team.py +47 -0
  161. umap/tests/integration/test_tilelayer.py +19 -2
  162. umap/tests/integration/test_view_marker.py +28 -1
  163. umap/tests/integration/test_websocket_sync.py +5 -5
  164. umap/tests/test_datalayer.py +32 -7
  165. umap/tests/test_datalayer_views.py +1 -1
  166. umap/tests/test_map.py +30 -4
  167. umap/tests/test_map_views.py +2 -2
  168. umap/tests/test_statics.py +40 -0
  169. umap/tests/test_team_views.py +131 -0
  170. umap/tests/test_views.py +15 -1
  171. umap/urls.py +23 -13
  172. umap/views.py +116 -10
  173. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/METADATA +9 -9
  174. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
  175. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  176. umap/static/umap/js/umap.features.js +0 -1290
  177. umap/static/umap/js/umap.layer.js +0 -1837
  178. umap/static/umap/js/umap.permissions.js +0 -208
  179. umap/static/umap/js/umap.popup.js +0 -341
  180. umap/static/umap/test/TableEditor.js +0 -104
  181. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  182. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  183. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  184. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  185. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  186. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  187. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  188. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  189. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  190. umap/tests/integration/test_statics.py +0 -47
  191. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/WHEEL +0 -0
  192. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
  193. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.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-02-15 13:53+0000\n"
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:371
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:50
43
+ #: models.py:54 models.py:73
44
44
  msgid "name"
45
45
  msgstr "nombre"
46
46
 
47
- #: models.py:81
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:82
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:92
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:98
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:144 models.py:372
67
+ #: models.py:167 models.py:424
64
68
  msgid "Everyone"
65
69
  msgstr "Todos"
66
70
 
67
- #: models.py:145 models.py:151 models.py:373
68
- msgid "Editors only"
69
- msgstr "Sólo editores"
71
+ #: models.py:168 models.py:174 models.py:425
72
+ msgid "Editors and team only"
73
+ msgstr ""
70
74
 
71
- #: models.py:146 models.py:374
75
+ #: models.py:169 models.py:426
72
76
  msgid "Owner only"
73
77
  msgstr "Sólo propietario"
74
78
 
75
- #: models.py:149
79
+ #: models.py:172
76
80
  msgid "Everyone (public)"
77
81
  msgstr "Todos (público)"
78
82
 
79
- #: models.py:150
83
+ #: models.py:173
80
84
  msgid "Anyone with link"
81
85
  msgstr "Cualquiera con enlace"
82
86
 
83
- #: models.py:152
87
+ #: models.py:175
84
88
  msgid "Blocked"
85
89
  msgstr "Bloqueado"
86
90
 
87
- #: models.py:155 models.py:378
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:157
95
+ #: models.py:179
96
96
  msgid "zoom"
97
97
  msgstr "acercar/alejar"
98
98
 
99
- #: models.py:159
99
+ #: models.py:181
100
100
  msgid "locate"
101
101
  msgstr "ubicar"
102
102
 
103
- #: models.py:159
103
+ #: models.py:181
104
104
  msgid "Locate user on load?"
105
105
  msgstr "¿Al cargar ubicar al usuario?"
106
106
 
107
- #: models.py:163
107
+ #: models.py:185
108
108
  msgid "Choose the map licence."
109
109
  msgstr "Elija la licencia del mapa."
110
110
 
111
- #: models.py:164
111
+ #: models.py:186
112
112
  msgid "licence"
113
113
  msgstr "licencia"
114
114
 
115
- #: models.py:175
115
+ #: models.py:197
116
116
  msgid "owner"
117
117
  msgstr "propietario"
118
118
 
119
- #: models.py:179
119
+ #: models.py:201
120
120
  msgid "editors"
121
121
  msgstr "editores"
122
122
 
123
- #: models.py:184 models.py:392
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:189
131
+ #: models.py:218
128
132
  msgid "share status"
129
133
  msgstr "compartir estado"
130
134
 
131
- #: models.py:192 models.py:387
135
+ #: models.py:221 models.py:442
132
136
  msgid "settings"
133
137
  msgstr "ajustes"
134
138
 
135
- #: models.py:320
139
+ #: models.py:364
136
140
  msgid "Clone of"
137
141
  msgstr "Clon de"
138
142
 
139
- #: models.py:382
143
+ #: models.py:437
140
144
  msgid "display on load"
141
145
  msgstr "mostrar al cargar"
142
146
 
143
- #: models.py:383
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:6
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:5
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:12
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:6
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:25
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:31
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:33
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:5
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:12
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:12
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:16
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:28
207
+ #: templates/registration/login.html:41
208
208
  msgid "Username"
209
209
  msgstr "Nombre de usuario"
210
210
 
211
- #: templates/registration/login.html:31
211
+ #: templates/registration/login.html:44
212
212
  msgid "Password"
213
213
  msgstr "Contraseña"
214
214
 
215
- #: templates/registration/login.html:32
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:11
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:21
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:22
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:23
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:24
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:25
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:26
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:27
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:37
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:48 templates/umap/navigation.html:38
264
- #: templates/umap/user_dashboard.html:42
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:51
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/content.html:22
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:30
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/home.html:8
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:14
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:2
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:9 views.py:341
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:17
382
+ #: templates/umap/map_list.html:18
304
383
  msgid "More"
305
384
  msgstr "Más"
306
385
 
307
- #: templates/umap/map_table.html:6
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:7
390
+ #: templates/umap/map_table.html:11
312
391
  msgid "Preview"
313
392
  msgstr ""
314
393
 
315
- #: templates/umap/map_table.html:8
394
+ #: templates/umap/map_table.html:14
316
395
  msgid "Who can see"
317
396
  msgstr ""
318
397
 
319
- #: templates/umap/map_table.html:9
398
+ #: templates/umap/map_table.html:17
320
399
  msgid "Who can edit"
321
400
  msgstr ""
322
401
 
323
- #: templates/umap/map_table.html:10
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:11
406
+ #: templates/umap/map_table.html:23
328
407
  msgid "Owner"
329
408
  msgstr "Dueño"
330
409
 
331
- #: templates/umap/map_table.html:12
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:25 templates/umap/map_table.html:27
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:46 templates/umap/map_table.html:48
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:51 templates/umap/map_table.html:53
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:56 templates/umap/map_table.html:58
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:63 templates/umap/map_table.html:65
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:73 templates/umap/map_table.html:75
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:88
439
+ #: templates/umap/map_table.html:117
360
440
  msgid "first"
361
441
  msgstr ""
362
442
 
363
- #: templates/umap/map_table.html:89
443
+ #: templates/umap/map_table.html:118
364
444
  msgid "previous"
365
445
  msgstr ""
366
446
 
367
- #: templates/umap/map_table.html:98
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:104
452
+ #: templates/umap/map_table.html:131
373
453
  msgid "next"
374
454
  msgstr ""
375
455
 
376
- #: templates/umap/map_table.html:105
456
+ #: templates/umap/map_table.html:132
377
457
  msgid "last"
378
458
  msgstr ""
379
459
 
380
- #: templates/umap/map_table.html:113
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:118
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:10 templates/umap/user_dashboard.html:4
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:13
474
+ #: templates/umap/navigation.html:14
395
475
  msgid "Starred maps"
396
476
  msgstr "Mapas con estrellas"
397
477
 
398
- #: templates/umap/navigation.html:17
478
+ #: templates/umap/navigation.html:18
399
479
  msgid "Log in"
400
480
  msgstr "Ingresar"
401
481
 
402
- #: templates/umap/navigation.html:17
482
+ #: templates/umap/navigation.html:18
403
483
  msgid "Sign in"
404
484
  msgstr "Regístrarse"
405
485
 
406
- #: templates/umap/navigation.html:21
486
+ #: templates/umap/navigation.html:22
407
487
  msgid "About"
408
488
  msgstr "Acerca de"
409
489
 
410
- #: templates/umap/navigation.html:24
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:33
494
+ #: templates/umap/navigation.html:34
419
495
  msgid "Log out"
420
496
  msgstr "Salir"
421
497
 
422
- #: templates/umap/password_change.html:4
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:6
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:13
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:18
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:22
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:23
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:4
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:5
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:10
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:18
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:21
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:3
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:14
552
+ #: templates/umap/search_bar.html:15
477
553
  msgid "Search"
478
554
  msgstr "Buscar"
479
555
 
480
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:26
481
- msgid "Search my maps"
482
- msgstr "Buscar en mis mapas"
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/user_dashboard.html:11
561
+ #: templates/umap/team_detail.html:22
485
562
  #, python-format
486
- msgid "My Maps (%(count)s)"
563
+ msgid "%(current_team)s has no public maps."
487
564
  msgstr ""
488
565
 
489
- #: templates/umap/user_dashboard.html:13
490
- msgid "My profile"
491
- msgstr "Mi perfil"
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:21 templates/umap/user_dashboard.html:23
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:32
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:42
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
- #: views.py:346
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:704
612
+ #: views.py:824
511
613
  msgid "See full screen"
512
614
  msgstr ""
513
615
 
514
- #: views.py:803
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:841
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:844
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:850
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:861
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:889
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:894
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:1130
659
+ #: views.py:1282
549
660
  msgid "Layer successfully deleted."
550
661
  msgstr "Se eliminó la capa con éxito."
551
662
 
552
- #: views.py:1152
663
+ #: views.py:1304
553
664
  msgid "Permissions updated with success!"
554
665
  msgstr "¡Permisos actualizados con éxito!"