umap-project 2.6.3__py3-none-any.whl → 2.7.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 (137) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +64 -1
  3. umap/asgi.py +15 -0
  4. umap/context_processors.py +1 -0
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +19 -18
  9. umap/locale/en/LC_MESSAGES/django.po +47 -43
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +134 -128
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +51 -47
  14. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/pt/LC_MESSAGES/django.po +64 -60
  16. umap/management/commands/clean_tilelayer.py +152 -0
  17. umap/management/commands/purge_purgatory.py +28 -0
  18. umap/models.py +27 -2
  19. umap/settings/base.py +3 -1
  20. umap/static/umap/base.css +4 -4
  21. umap/static/umap/css/contextmenu.css +6 -1
  22. umap/static/umap/css/icon.css +7 -2
  23. umap/static/umap/css/importers.css +4 -0
  24. umap/static/umap/img/16-white.svg +9 -2
  25. umap/static/umap/img/16.svg +1 -181
  26. umap/static/umap/img/24-white.svg +1 -0
  27. umap/static/umap/img/24.svg +1 -0
  28. umap/static/umap/img/importers/cadastrefr.svg +23 -0
  29. umap/static/umap/img/source/16-white.svg +10 -3
  30. umap/static/umap/img/source/16.svg +753 -197
  31. umap/static/umap/img/source/24-white.svg +3 -2
  32. umap/static/umap/img/source/24.svg +3 -2
  33. umap/static/umap/js/modules/autocomplete.js +7 -3
  34. umap/static/umap/js/modules/browser.js +54 -1
  35. umap/static/umap/js/modules/caption.js +16 -5
  36. umap/static/umap/js/modules/data/features.js +176 -2
  37. umap/static/umap/js/modules/data/layer.js +57 -40
  38. umap/static/umap/js/modules/formatter.js +3 -2
  39. umap/static/umap/js/modules/global.js +2 -0
  40. umap/static/umap/js/modules/importer.js +3 -0
  41. umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
  42. umap/static/umap/js/modules/importers/communesfr.js +15 -3
  43. umap/static/umap/js/modules/permissions.js +123 -93
  44. umap/static/umap/js/modules/rendering/layers/classified.js +2 -0
  45. umap/static/umap/js/modules/rendering/ui.js +60 -213
  46. umap/static/umap/js/modules/share.js +1 -3
  47. umap/static/umap/js/modules/slideshow.js +1 -1
  48. umap/static/umap/js/modules/sync/engine.js +371 -14
  49. umap/static/umap/js/modules/sync/hlc.js +106 -0
  50. umap/static/umap/js/modules/sync/updaters.js +18 -6
  51. umap/static/umap/js/modules/sync/websocket.js +1 -1
  52. umap/static/umap/js/modules/tableeditor.js +1 -1
  53. umap/static/umap/js/modules/ui/base.js +2 -2
  54. umap/static/umap/js/modules/ui/contextmenu.js +51 -18
  55. umap/static/umap/js/modules/urls.js +5 -1
  56. umap/static/umap/js/modules/utils.js +28 -4
  57. umap/static/umap/js/umap.controls.js +73 -52
  58. umap/static/umap/js/umap.core.js +3 -3
  59. umap/static/umap/js/umap.forms.js +3 -1
  60. umap/static/umap/js/umap.js +115 -124
  61. umap/static/umap/locale/br.js +13 -4
  62. umap/static/umap/locale/br.json +13 -4
  63. umap/static/umap/locale/ca.js +28 -15
  64. umap/static/umap/locale/ca.json +28 -15
  65. umap/static/umap/locale/cs_CZ.js +87 -78
  66. umap/static/umap/locale/cs_CZ.json +87 -78
  67. umap/static/umap/locale/de.js +17 -8
  68. umap/static/umap/locale/de.json +17 -8
  69. umap/static/umap/locale/en.js +13 -2
  70. umap/static/umap/locale/en.json +13 -2
  71. umap/static/umap/locale/es.js +330 -319
  72. umap/static/umap/locale/es.json +330 -319
  73. umap/static/umap/locale/eu.js +10 -3
  74. umap/static/umap/locale/eu.json +10 -3
  75. umap/static/umap/locale/fa_IR.js +11 -4
  76. umap/static/umap/locale/fa_IR.json +11 -4
  77. umap/static/umap/locale/fr.js +15 -4
  78. umap/static/umap/locale/fr.json +15 -4
  79. umap/static/umap/locale/hu.js +10 -3
  80. umap/static/umap/locale/hu.json +10 -3
  81. umap/static/umap/locale/pt.js +17 -8
  82. umap/static/umap/locale/pt.json +17 -8
  83. umap/static/umap/locale/pt_PT.js +13 -4
  84. umap/static/umap/locale/pt_PT.json +13 -4
  85. umap/static/umap/locale/zh_TW.js +13 -4
  86. umap/static/umap/locale/zh_TW.json +13 -4
  87. umap/static/umap/map.css +44 -29
  88. umap/static/umap/unittests/hlc.js +165 -0
  89. umap/static/umap/unittests/sync.js +321 -15
  90. umap/static/umap/unittests/utils.js +47 -0
  91. umap/static/umap/vars.css +2 -1
  92. umap/static/umap/vendors/colorbrewer/colorbrewer.js +309 -317
  93. umap/static/umap/vendors/dompurify/purify.es.js +15 -16
  94. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  95. umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
  96. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
  97. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
  98. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +1 -1
  99. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -1
  100. umap/templates/umap/css.html +0 -2
  101. umap/templates/umap/dashboard_menu.html +4 -2
  102. umap/templates/umap/js.html +0 -5
  103. umap/templates/umap/map_detail.html +2 -2
  104. umap/tests/fixtures/test_upload_data.csv +2 -2
  105. umap/tests/integration/test_anonymous_owned_map.py +1 -0
  106. umap/tests/integration/test_basics.py +1 -1
  107. umap/tests/integration/test_browser.py +69 -7
  108. umap/tests/integration/test_caption.py +3 -3
  109. umap/tests/integration/test_circles_layer.py +12 -0
  110. umap/tests/integration/test_datalayer.py +2 -1
  111. umap/tests/integration/test_draw_polygon.py +17 -9
  112. umap/tests/integration/test_draw_polyline.py +12 -8
  113. umap/tests/integration/test_edit_datalayer.py +5 -8
  114. umap/tests/integration/test_edit_map.py +2 -2
  115. umap/tests/integration/test_edit_marker.py +1 -1
  116. umap/tests/integration/test_facets_browser.py +3 -3
  117. umap/tests/integration/test_import.py +1 -0
  118. umap/tests/integration/test_map.py +1 -0
  119. umap/tests/integration/test_owned_map.py +1 -1
  120. umap/tests/integration/test_view_marker.py +63 -0
  121. umap/tests/integration/test_view_polygon.py +12 -12
  122. umap/tests/integration/test_websocket_sync.py +65 -3
  123. umap/tests/test_clean_tilelayer.py +83 -0
  124. umap/tests/test_datalayer.py +24 -0
  125. umap/tests/test_map_views.py +20 -0
  126. umap/tests/test_purge_purgatory.py +25 -0
  127. umap/tests/test_websocket_server.py +22 -0
  128. umap/urls.py +5 -1
  129. umap/views.py +6 -3
  130. umap/websocket_server.py +130 -27
  131. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/METADATA +18 -14
  132. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/RECORD +135 -127
  133. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
  134. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
  135. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/WHEEL +0 -0
  136. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/entry_points.txt +0 -0
  137. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/licenses/LICENSE +0 -0
@@ -5,7 +5,9 @@
5
5
  # Translators:
6
6
  # 3c4f354c26c2c190ba28f9c2666d7fdb_003e9d1 <b28923423b98dace80389ae64c99bf93_129697>, 2014
7
7
  # Eric Armijo, 2023
8
+ # Eric Armijo, 2023
8
9
  # Gonzalo Gabriel Perez <zalitoar@gmail.com>, 2019
10
+ # Ignacio L'Episcopo, 2024
9
11
  # Igor Támara <igor@tamarapatino.org>, 2013
10
12
  # 3c4f354c26c2c190ba28f9c2666d7fdb_003e9d1 <b28923423b98dace80389ae64c99bf93_129697>, 2014
11
13
  # 3c4f354c26c2c190ba28f9c2666d7fdb_003e9d1 <b28923423b98dace80389ae64c99bf93_129697>, 2014,2016-2017,2020
@@ -14,9 +16,9 @@ msgid ""
14
16
  msgstr ""
15
17
  "Project-Id-Version: uMap\n"
16
18
  "Report-Msgid-Bugs-To: \n"
17
- "POT-Creation-Date: 2024-08-30 18:23+0000\n"
19
+ "POT-Creation-Date: 2024-10-04 16:35+0000\n"
18
20
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
19
- "Last-Translator: Eric Armijo, 2023\n"
21
+ "Last-Translator: Ignacio L'Episcopo, 2024\n"
20
22
  "Language-Team: Spanish (http://app.transifex.com/openstreetmap/umap/language/es/)\n"
21
23
  "MIME-Version: 1.0\n"
22
24
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,138 +26,142 @@ msgstr ""
24
26
  "Language: es\n"
25
27
  "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
26
28
 
29
+ #: admin.py:16
30
+ msgid "CSV Export"
31
+ msgstr "Exportar CSV"
32
+
27
33
  #: forms.py:44 forms.py:70
28
34
  msgid "Only editable with secret edit link"
29
- msgstr "Sólo puede editarse con el enlace secreto de edición"
35
+ msgstr "Solo editable con enlace secreto de edición"
30
36
 
31
37
  #: forms.py:45 forms.py:71
32
38
  msgid "Everyone can edit"
33
39
  msgstr "Todos pueden editar"
34
40
 
35
- #: forms.py:69 models.py:423
41
+ #: forms.py:69 models.py:441
36
42
  msgid "Inherit"
37
43
  msgstr "Heredar"
38
44
 
39
45
  #: middleware.py:13
40
46
  msgid "Site is readonly for maintenance"
41
- msgstr "El sitio está en sólo lectura por mantenimiento"
47
+ msgstr "Sitio en modo solo lectura por mantenimiento"
42
48
 
43
- #: models.py:54 models.py:73
49
+ #: models.py:55 models.py:74
44
50
  msgid "name"
45
51
  msgstr "nombre"
46
52
 
47
- #: models.py:56 models.py:433
53
+ #: models.py:57 models.py:451
48
54
  msgid "description"
49
55
  msgstr "descripción"
50
56
 
51
- #: models.py:104
57
+ #: models.py:105
52
58
  msgid "details"
53
59
  msgstr "detalles"
54
60
 
55
- #: models.py:105
61
+ #: models.py:106
56
62
  msgid "Link to a page where the licence is detailed."
57
63
  msgstr "Enlace a una página donde se detalla la licencia."
58
64
 
59
- #: models.py:115
65
+ #: models.py:116
60
66
  msgid "URL template using OSM tile format"
61
- msgstr "Plantilla URL usando el formato de teselas OSM"
67
+ msgstr "Plantilla de URL usando el formato de teselas OSM"
62
68
 
63
- #: models.py:121
69
+ #: models.py:122
64
70
  msgid "Order of the tilelayers in the edit box"
65
- msgstr "Orden de las capas de teselas en la caja de edición"
71
+ msgstr "Orden de las capas de teselas en el cuadro de edición"
66
72
 
67
- #: models.py:167 models.py:424
73
+ #: models.py:168 models.py:442
68
74
  msgid "Everyone"
69
75
  msgstr "Todos"
70
76
 
71
- #: models.py:168 models.py:174 models.py:425
77
+ #: models.py:169 models.py:175 models.py:443
72
78
  msgid "Editors and team only"
73
- msgstr ""
79
+ msgstr "Solo editores y equipo"
74
80
 
75
- #: models.py:169 models.py:426
81
+ #: models.py:170 models.py:444
76
82
  msgid "Owner only"
77
- msgstr "Sólo propietario"
83
+ msgstr "Solo el propietario"
78
84
 
79
- #: models.py:172
85
+ #: models.py:173
80
86
  msgid "Everyone (public)"
81
87
  msgstr "Todos (público)"
82
88
 
83
- #: models.py:173
89
+ #: models.py:174
84
90
  msgid "Anyone with link"
85
- msgstr "Cualquiera con enlace"
91
+ msgstr "Cualquiera con el enlace"
86
92
 
87
- #: models.py:175
93
+ #: models.py:176
88
94
  msgid "Blocked"
89
95
  msgstr "Bloqueado"
90
96
 
91
- #: models.py:178
97
+ #: models.py:179
92
98
  msgid "center"
93
- msgstr "centrar"
99
+ msgstr "centro"
94
100
 
95
- #: models.py:179
101
+ #: models.py:180
96
102
  msgid "zoom"
97
- msgstr "acercar/alejar"
103
+ msgstr "zoom"
98
104
 
99
- #: models.py:181
105
+ #: models.py:182
100
106
  msgid "locate"
101
- msgstr "ubicar"
107
+ msgstr "localizar"
102
108
 
103
- #: models.py:181
109
+ #: models.py:182
104
110
  msgid "Locate user on load?"
105
- msgstr "¿Al cargar ubicar al usuario?"
111
+ msgstr "¿Localizar al usuario al cargar?"
106
112
 
107
- #: models.py:185
113
+ #: models.py:186
108
114
  msgid "Choose the map licence."
109
- msgstr "Elija la licencia del mapa."
115
+ msgstr "Elige la licencia del mapa."
110
116
 
111
- #: models.py:186
117
+ #: models.py:187
112
118
  msgid "licence"
113
119
  msgstr "licencia"
114
120
 
115
- #: models.py:197
121
+ #: models.py:198
116
122
  msgid "owner"
117
123
  msgstr "propietario"
118
124
 
119
- #: models.py:201
125
+ #: models.py:202
120
126
  msgid "editors"
121
127
  msgstr "editores"
122
128
 
123
- #: models.py:207
129
+ #: models.py:208
124
130
  msgid "team"
125
- msgstr ""
131
+ msgstr "equipo"
126
132
 
127
- #: models.py:213 models.py:447
133
+ #: models.py:214 models.py:465
128
134
  msgid "edit status"
129
- msgstr "estado de la edición"
135
+ msgstr "estado de edición"
130
136
 
131
- #: models.py:218
137
+ #: models.py:219
132
138
  msgid "share status"
133
- msgstr "compartir estado"
139
+ msgstr "estado de compartir"
134
140
 
135
- #: models.py:221 models.py:442
141
+ #: models.py:222 models.py:460
136
142
  msgid "settings"
137
143
  msgstr "ajustes"
138
144
 
139
- #: models.py:364
145
+ #: models.py:382
140
146
  msgid "Clone of"
141
147
  msgstr "Clon de"
142
148
 
143
- #: models.py:437
149
+ #: models.py:455
144
150
  msgid "display on load"
145
151
  msgstr "mostrar al cargar"
146
152
 
147
- #: models.py:438
153
+ #: models.py:456
148
154
  msgid "Display this layer on load."
149
155
  msgstr "Mostrar esta capa al cargar."
150
156
 
151
157
  #: templates/404.html:8
152
158
  msgid "Take me to the home page"
153
- msgstr "Lléveme a la página principal"
159
+ msgstr "Llévame a la página de inicio"
154
160
 
155
161
  #: templates/auth/user_detail.html:8
156
162
  #, python-format
157
163
  msgid "Browse %(current_user)s's maps"
158
- msgstr "Navegar los mapas de %(current_user)s"
164
+ msgstr "Explorar los mapas de %(current_user)s"
159
165
 
160
166
  #: templates/auth/user_detail.html:17
161
167
  #, python-format
@@ -168,41 +174,41 @@ msgstr "Guardar"
168
174
 
169
175
  #: templates/auth/user_form.html:27
170
176
  msgid "Your current providers"
171
- msgstr "Sus proveedores actuales"
177
+ msgstr "Tus proveedores actuales"
172
178
 
173
179
  #: templates/auth/user_form.html:39
174
180
  msgid "Connect to another provider"
175
- msgstr "Conectarse a otro proveedor"
181
+ msgstr "Conectar con otro proveedor"
176
182
 
177
183
  #: templates/auth/user_form.html:42
178
184
  msgid ""
179
185
  "It's a good habit to connect your account to more than one provider, in case"
180
186
  " one provider becomes unavailable, temporarily or even permanently."
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."
187
+ 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."
182
188
 
183
189
  #: templates/auth/user_stars.html:8
184
190
  #, python-format
185
191
  msgid "Browse %(current_user)s's starred maps"
186
- msgstr "Examinar los mapas con estrellas de %(current_user)s"
192
+ msgstr "Explorar los mapas destacados de %(current_user)s"
187
193
 
188
194
  #: templates/auth/user_stars.html:17
189
195
  #, python-format
190
196
  msgid "%(current_user)s has no starred maps yet."
191
- msgstr "%(current_user)s aún no tiene mapas con estrellas."
197
+ msgstr "%(current_user)s no tiene mapas destacados todavía."
192
198
 
193
199
  #: templates/base.html:13
194
200
  msgid ""
195
201
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
196
202
  "them in your site."
197
- msgstr "uMap le permite crear mapas con capas de OpenStreetMap en un minuto e incrustarlos en su sitio web."
203
+ msgstr "uMap te permite crear mapas con capas de OpenStreetMap en un minuto e integrarlos en tu sitio."
198
204
 
199
205
  #: templates/registration/login.html:6 templates/registration/login.html:45
200
206
  msgid "Login"
201
- msgstr "Usuario"
207
+ msgstr "Iniciar sesión"
202
208
 
203
209
  #: templates/registration/login.html:24
204
210
  msgid "Please log in with your account"
205
- msgstr "Inicie sesión con su cuenta"
211
+ msgstr "Por favor, inicia sesión con tu cuenta"
206
212
 
207
213
  #: templates/registration/login.html:41
208
214
  msgid "Username"
@@ -214,62 +220,62 @@ msgstr "Contraseña"
214
220
 
215
221
  #: templates/registration/login.html:51
216
222
  msgid "Please choose a provider"
217
- msgstr "Elige un proveedor"
223
+ msgstr "Por favor, elige un proveedor"
218
224
 
219
225
  #: templates/umap/about_summary.html:12
220
226
  #, python-format
221
227
  msgid ""
222
228
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
223
229
  "layers in a minute and embed them in your site."
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."
230
+ msgstr "uMap te permite crear mapas con capas de <a href=\"%(osm_url)s\">OpenStreetMap</a> en un minuto e incrustarlos en tu sitio."
225
231
 
226
232
  #: templates/umap/about_summary.html:23
227
233
  msgid "Choose the layers of your map"
228
- msgstr "Elija las capas de su mapa"
234
+ msgstr "Elige las capas de tu mapa"
229
235
 
230
236
  #: templates/umap/about_summary.html:26
231
237
  msgid "Add POIs: markers, lines, polygons..."
232
- msgstr "Añade PDIs: marcadores, líneas, polígonos..."
238
+ msgstr "Agrega PDI: marcadores, líneas, polígonos..."
233
239
 
234
240
  #: templates/umap/about_summary.html:29
235
241
  msgid "Manage POIs colours and icons"
236
- msgstr "Elija los colores y los iconos de los PDIs"
242
+ msgstr "Administra los colores e iconos de los PDI"
237
243
 
238
244
  #: templates/umap/about_summary.html:32
239
245
  msgid "Manage map options: display a minimap, locate user on load…"
240
- msgstr "Gestiona opciones del mapa: mostrar un minimapa, localizar al usuario al cargar..."
246
+ msgstr "Administra las opciones del mapa: mostrar un minimapa, ubicar al usuario al cargar"
241
247
 
242
248
  #: templates/umap/about_summary.html:35
243
249
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
244
- msgstr "Importa por lotes datos geoestructurados (geojson, gpx, kml, osm...)"
250
+ msgstr "Importación por lotes de datos geoestructurados (geojson, gpx, kml, osm...)"
245
251
 
246
252
  #: templates/umap/about_summary.html:38
247
253
  msgid "Choose the license for your data"
248
- msgstr "Elige la licencia de tus datos"
254
+ msgstr "Elige la licencia para tus datos"
249
255
 
250
256
  #: templates/umap/about_summary.html:41
251
257
  msgid "Embed and share your map"
252
- msgstr "Embebe y comparte tu mapa"
258
+ msgstr "Inserta y comparte tu mapa"
253
259
 
254
260
  #: templates/umap/about_summary.html:52
255
261
  #, python-format
256
262
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
257
- msgstr "Y es de <a href=\"%(repo_url)s\">código abierto</a>!"
263
+ msgstr "¡Y es de <a href=\"%(repo_url)s\">código abierto</a>!"
258
264
 
259
265
  #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
260
266
  #: templates/umap/user_dashboard.html:40
261
267
  msgid "Create a map"
262
- msgstr "Crea un mapa"
268
+ msgstr "Crear un mapa"
263
269
 
264
270
  #: templates/umap/about_summary.html:66
265
271
  msgid "Play with the demo"
266
- msgstr "Juega con el demo"
272
+ msgstr "Juega con la demo"
267
273
 
268
274
  #: templates/umap/components/alerts/alert.html:15
269
275
  #: templates/umap/components/alerts/alert.html:64
270
276
  #: templates/umap/components/alerts/alert.html:92
271
277
  msgid "Close"
272
- msgstr ""
278
+ msgstr "Cerrar"
273
279
 
274
280
  #: templates/umap/components/alerts/alert.html:30
275
281
  #, python-format
@@ -277,45 +283,45 @@ msgid ""
277
283
  "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
278
284
  "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
279
285
  "target=\"_blank\">log in</a>."
280
- msgstr ""
286
+ msgstr "Consejo pro: para encontrar fácilmente tus mapas, <a href=\"%(login_url)s\" target=\"_blank\">crea una cuenta</a> o <a href=\"%(login_url)s\" target=\"_blank\">inicia sesión</a>."
281
287
 
282
288
  #: templates/umap/components/alerts/alert.html:35
283
289
  msgid "Here is your secret link to edit the map, please keep it safe:"
284
- msgstr ""
290
+ msgstr "Aquí está tu enlace secreto para editar el mapa, guárdalo bien:"
285
291
 
286
292
  #: templates/umap/components/alerts/alert.html:39
287
293
  msgid "Copy link"
288
- msgstr ""
294
+ msgstr "Copiar enlace"
289
295
 
290
296
  #: templates/umap/components/alerts/alert.html:46
291
297
  msgid "Enter your email address to receive the secret link:"
292
- msgstr ""
298
+ msgstr "Introduce tu dirección de correo electrónico para recibir el enlace secreto:"
293
299
 
294
300
  #: templates/umap/components/alerts/alert.html:52
295
301
  msgid "Email"
296
- msgstr ""
302
+ msgstr "Correo electrónico"
297
303
 
298
304
  #: templates/umap/components/alerts/alert.html:55
299
305
  msgid "Send me the link"
300
- msgstr ""
306
+ msgstr "Enviarme el enlace"
301
307
 
302
308
  #: templates/umap/components/alerts/alert.html:79
303
309
  msgid "See their edits in another tab"
304
- msgstr ""
310
+ msgstr "Ver sus ediciones en otra pestaña"
305
311
 
306
312
  #: templates/umap/components/alerts/alert.html:82
307
313
  msgid "Keep your changes and loose theirs"
308
- msgstr ""
314
+ msgstr "Mantén tus cambios y descarta los suyos"
309
315
 
310
316
  #: templates/umap/components/alerts/alert.html:85
311
317
  msgid "Keep their changes and loose yours"
312
- msgstr ""
318
+ msgstr "Mantén sus cambios y descarta los tuyos"
313
319
 
314
320
  #: templates/umap/content.html:26
315
321
  msgid ""
316
322
  "This instance of uMap is currently in read only mode, no creation/edit is "
317
323
  "allowed."
318
- msgstr "Esta instancia de uMap está actualmente en modo de sólo lectura, no se permite la creación/edición."
324
+ msgstr "Esta instancia de uMap se encuentra actualmente en modo de solo lectura, no se permite crear/editar."
319
325
 
320
326
  #: templates/umap/content.html:34
321
327
  #, python-format
@@ -324,23 +330,23 @@ msgid ""
324
330
  "need a stable instance, please use <a "
325
331
  "href=\"%(stable_url)s\">%(stable_url)s</a>. You can also host your own "
326
332
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
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>!"
333
+ msgstr "Esta es una instancia de demostración, utilizada para pruebas y versiones preliminares. Si necesitas una instancia estable, utiliza <a href=\"%(stable_url)s\">%(stable_url)s</a>. También puedes alojar tu propia instancia, ¡es de <a href=\"%(repo_url)s\">código abierto</a>!"
328
334
 
329
335
  #: templates/umap/content_footer.html:5
330
336
  msgid "An OpenStreetMap project"
331
- msgstr ""
337
+ msgstr "Un proyecto de OpenStreetMap"
332
338
 
333
339
  #: templates/umap/content_footer.html:6
334
340
  msgid "version"
335
- msgstr ""
341
+ msgstr "versión"
336
342
 
337
343
  #: templates/umap/content_footer.html:7
338
344
  msgid "Hosted by"
339
- msgstr ""
345
+ msgstr "Alojado por"
340
346
 
341
347
  #: templates/umap/content_footer.html:8
342
348
  msgid "Contact"
343
- msgstr ""
349
+ msgstr "Contacto"
344
350
 
345
351
  #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
346
352
  msgid "Help"
@@ -349,19 +355,19 @@ msgstr "Ayuda"
349
355
  #: templates/umap/dashboard_menu.html:6
350
356
  #, python-format
351
357
  msgid "My Maps (%(count)s)"
352
- msgstr ""
358
+ msgstr "Mis mapas (%(count)s)"
353
359
 
354
360
  #: templates/umap/dashboard_menu.html:8
355
361
  msgid "My Maps"
356
- msgstr ""
362
+ msgstr "Mis mapas"
357
363
 
358
- #: templates/umap/dashboard_menu.html:11
364
+ #: templates/umap/dashboard_menu.html:12
359
365
  msgid "My profile"
360
366
  msgstr "Mi perfil"
361
367
 
362
- #: templates/umap/dashboard_menu.html:13
368
+ #: templates/umap/dashboard_menu.html:15
363
369
  msgid "My teams"
364
- msgstr ""
370
+ msgstr "Mis equipos"
365
371
 
366
372
  #: templates/umap/home.html:14
367
373
  msgid "Map of the uMaps"
@@ -375,11 +381,11 @@ msgstr "Inspírate, navega por los mapas"
375
381
  msgid "You are logged in. Continuing..."
376
382
  msgstr "Has iniciado sesión. Continuando..."
377
383
 
378
- #: templates/umap/map_list.html:10 views.py:433
384
+ #: templates/umap/map_list.html:11 views.py:433
379
385
  msgid "by"
380
386
  msgstr "por"
381
387
 
382
- #: templates/umap/map_list.html:18
388
+ #: templates/umap/map_list.html:20
383
389
  msgid "More"
384
390
  msgstr "Más"
385
391
 
@@ -389,15 +395,15 @@ msgstr "Nombre"
389
395
 
390
396
  #: templates/umap/map_table.html:11
391
397
  msgid "Preview"
392
- msgstr ""
398
+ msgstr "Vista previa"
393
399
 
394
400
  #: templates/umap/map_table.html:14
395
401
  msgid "Who can see"
396
- msgstr ""
402
+ msgstr "Quién puede ver"
397
403
 
398
404
  #: templates/umap/map_table.html:17
399
405
  msgid "Who can edit"
400
- msgstr ""
406
+ msgstr "Quién puede editar"
401
407
 
402
408
  #: templates/umap/map_table.html:20
403
409
  msgid "Last save"
@@ -413,7 +419,7 @@ msgstr "Acciones"
413
419
 
414
420
  #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
415
421
  msgid "Open preview"
416
- msgstr ""
422
+ msgstr "Abrir vista previa"
417
423
 
418
424
  #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
419
425
  msgid "Share"
@@ -430,42 +436,42 @@ msgstr "Descargar"
430
436
 
431
437
  #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
432
438
  msgid "Clone"
433
- msgstr ""
439
+ msgstr "Clonar"
434
440
 
435
441
  #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
436
442
  msgid "Delete"
437
- msgstr ""
443
+ msgstr "Eliminar"
438
444
 
439
445
  #: templates/umap/map_table.html:117
440
446
  msgid "first"
441
- msgstr ""
447
+ msgstr "primero"
442
448
 
443
449
  #: templates/umap/map_table.html:118
444
450
  msgid "previous"
445
- msgstr ""
451
+ msgstr "anterior"
446
452
 
447
453
  #: templates/umap/map_table.html:126
448
454
  #, python-format
449
455
  msgid "Page %(maps_number)s of %(num_pages)s"
450
- msgstr ""
456
+ msgstr "Página %(maps_number)s de %(num_pages)s"
451
457
 
452
458
  #: templates/umap/map_table.html:131
453
459
  msgid "next"
454
- msgstr ""
460
+ msgstr "siguiente"
455
461
 
456
462
  #: templates/umap/map_table.html:132
457
463
  msgid "last"
458
- msgstr ""
464
+ msgstr "último"
459
465
 
460
466
  #: templates/umap/map_table.html:140
461
467
  #, python-format
462
468
  msgid "Lines per page: %(per_page)s"
463
- msgstr ""
469
+ msgstr "Líneas por página: %(per_page)s"
464
470
 
465
471
  #: templates/umap/map_table.html:145
466
472
  #, python-format
467
473
  msgid "%(count)s maps"
468
- msgstr ""
474
+ msgstr "%(count)s mapas"
469
475
 
470
476
  #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
471
477
  msgid "My Dashboard"
@@ -556,20 +562,20 @@ msgstr "Buscar"
556
562
  #: templates/umap/team_detail.html:10
557
563
  #, python-format
558
564
  msgid "Browse %(current_team)s's maps"
559
- msgstr ""
565
+ msgstr "Explorar los mapas de %(current_team)s"
560
566
 
561
567
  #: templates/umap/team_detail.html:22
562
568
  #, python-format
563
569
  msgid "%(current_team)s has no public maps."
564
- msgstr ""
570
+ msgstr "%(current_team)s no tiene mapas públicos."
565
571
 
566
572
  #: templates/umap/team_form.html:24
567
573
  msgid "Delete this team"
568
- msgstr ""
574
+ msgstr "Eliminar este equipo"
569
575
 
570
576
  #: templates/umap/team_form.html:47
571
577
  msgid "Add user"
572
- msgstr ""
578
+ msgstr "Añadir usuario"
573
579
 
574
580
  #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
575
581
  msgid "Search my maps"
@@ -577,12 +583,12 @@ msgstr "Buscar en mis mapas"
577
583
 
578
584
  #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
579
585
  msgid "Map’s title"
580
- msgstr ""
586
+ msgstr "Título del mapa"
581
587
 
582
588
  #: templates/umap/user_dashboard.html:30
583
589
  #, python-format
584
590
  msgid "Download %(count)s maps"
585
- msgstr ""
591
+ msgstr "Descargar %(count)s mapas"
586
592
 
587
593
  #: templates/umap/user_dashboard.html:40
588
594
  msgid "You have no map yet."
@@ -590,76 +596,76 @@ msgstr "Aún no tiene mapa."
590
596
 
591
597
  #: templates/umap/user_teams.html:17
592
598
  msgid "Users"
593
- msgstr ""
599
+ msgstr "Usuarios"
594
600
 
595
601
  #: templates/umap/user_teams.html:48
596
602
  msgid "New team"
597
- msgstr ""
603
+ msgstr "Nuevo equipo"
598
604
 
599
605
  #: views.py:235
600
606
  msgid "Cannot delete a team with more than one member"
601
- msgstr ""
607
+ msgstr "No se puede eliminar un equipo con más de un miembro"
602
608
 
603
609
  #: views.py:239
604
610
  #, python-format
605
611
  msgid "Team “%(name)s” has been deleted"
606
- msgstr ""
612
+ msgstr "El equipo “%(name)s” ha sido eliminado"
607
613
 
608
614
  #: views.py:438
609
615
  msgid "View the map"
610
616
  msgstr "Ver el mapa"
611
617
 
612
- #: views.py:824
618
+ #: views.py:818
613
619
  msgid "See full screen"
614
- msgstr ""
620
+ msgstr "Ver en pantalla completa"
615
621
 
616
- #: views.py:953
622
+ #: views.py:950
617
623
  msgid "Map editors updated with success!"
618
624
  msgstr "¡Los editores del mapas han sido actualizados con éxito!"
619
625
 
620
- #: views.py:989
626
+ #: views.py:986
621
627
  #, python-format
622
628
  msgid "The uMap edit link for your map: %(map_name)s"
623
629
  msgstr "El enlace de edición de uMap para tu mapa: %(map_name)s"
624
630
 
625
- #: views.py:992
631
+ #: views.py:989
626
632
  #, python-format
627
633
  msgid "Here is your secret edit link: %(link)s"
628
634
  msgstr "Aquí está tu enlace secreto de edición: %(link)s"
629
635
 
630
- #: views.py:999
636
+ #: views.py:996
631
637
  #, python-format
632
638
  msgid "Can't send email to %(email)s"
633
- msgstr ""
639
+ msgstr "No se puede enviar correo electrónico a %(email)s"
634
640
 
635
- #: views.py:1002
641
+ #: views.py:999
636
642
  #, python-format
637
643
  msgid "Email sent to %(email)s"
638
644
  msgstr "Correo electrónico enviado a %(email)s"
639
645
 
640
- #: views.py:1013
646
+ #: views.py:1010
641
647
  msgid "Only its owner can delete the map."
642
648
  msgstr "Sólo el propietario puede borrar el mapa."
643
649
 
644
- #: views.py:1016
650
+ #: views.py:1013
645
651
  msgid "Map successfully deleted."
646
- msgstr ""
652
+ msgstr "Mapa eliminado correctamente."
647
653
 
648
- #: views.py:1042
654
+ #: views.py:1039
649
655
  #, python-format
650
656
  msgid ""
651
657
  "Your map has been cloned! If you want to edit this map from another "
652
658
  "computer, please use this link: %(anonymous_url)s"
653
659
  msgstr "¡Tu mapa ha sido clonado! Si quieres editar este mapa desde otro ordenador, usa este enlace: %(anonymous_url)s"
654
660
 
655
- #: views.py:1047
661
+ #: views.py:1044
656
662
  msgid "Congratulations, your map has been cloned!"
657
663
  msgstr "¡Enhorabuena! ¡Tu mapa ha sido clonado!"
658
664
 
659
- #: views.py:1282
665
+ #: views.py:1277
660
666
  msgid "Layer successfully deleted."
661
667
  msgstr "Se eliminó la capa con éxito."
662
668
 
663
- #: views.py:1304
669
+ #: views.py:1299
664
670
  msgid "Permissions updated with success!"
665
671
  msgstr "¡Permisos actualizados con éxito!"
Binary file