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

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

Potentially problematic release.


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

Files changed (260) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +15 -2
  3. umap/asgi.py +12 -7
  4. umap/context_processors.py +1 -0
  5. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/br/LC_MESSAGES/django.po +111 -67
  7. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/cs_CZ/LC_MESSAGES/django.po +110 -66
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +129 -85
  11. umap/locale/en/LC_MESSAGES/django.po +103 -60
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +114 -69
  14. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/fr/LC_MESSAGES/django.po +105 -61
  16. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/gl/LC_MESSAGES/django.po +216 -171
  18. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/it/LC_MESSAGES/django.po +142 -98
  20. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/nl/LC_MESSAGES/django.po +196 -151
  22. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/pt/LC_MESSAGES/django.po +115 -71
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +109 -65
  26. umap/management/commands/empty_trash.py +12 -1
  27. umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
  28. umap/models.py +43 -13
  29. umap/settings/base.py +5 -2
  30. umap/static/umap/base.css +5 -2
  31. umap/static/umap/content.css +2 -22
  32. umap/static/umap/css/bar.css +39 -10
  33. umap/static/umap/css/contextmenu.css +14 -2
  34. umap/static/umap/css/form.css +33 -39
  35. umap/static/umap/css/icon.css +47 -5
  36. umap/static/umap/css/panel.css +20 -2
  37. umap/static/umap/css/popup.css +0 -1
  38. umap/static/umap/css/tooltip.css +33 -31
  39. umap/static/umap/img/16-white.svg +5 -3
  40. umap/static/umap/img/16.svg +1 -1
  41. umap/static/umap/img/24-white.svg +17 -16
  42. umap/static/umap/img/24.svg +29 -18
  43. umap/static/umap/img/providers/bitbucket.png +0 -0
  44. umap/static/umap/img/providers/github.png +0 -0
  45. umap/static/umap/img/providers/keycloak.png +0 -0
  46. umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
  47. umap/static/umap/img/providers/twitter-oauth2.png +0 -0
  48. umap/static/umap/img/source/16-white.svg +6 -4
  49. umap/static/umap/img/source/16.svg +1 -1
  50. umap/static/umap/img/source/24-white.svg +20 -18
  51. umap/static/umap/img/source/24.svg +30 -19
  52. umap/static/umap/js/components/alerts/alert.js +4 -1
  53. umap/static/umap/js/modules/browser.js +8 -8
  54. umap/static/umap/js/modules/caption.js +30 -7
  55. umap/static/umap/js/modules/data/features.js +101 -56
  56. umap/static/umap/js/modules/data/layer.js +108 -83
  57. umap/static/umap/js/modules/form/builder.js +242 -0
  58. umap/static/umap/js/modules/form/fields.js +1346 -0
  59. umap/static/umap/js/modules/formatter.js +9 -8
  60. umap/static/umap/js/modules/help.js +20 -24
  61. umap/static/umap/js/modules/importer.js +6 -3
  62. umap/static/umap/js/modules/permissions.js +11 -6
  63. umap/static/umap/js/modules/rendering/icon.js +5 -1
  64. umap/static/umap/js/modules/rendering/layers/classified.js +12 -8
  65. umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
  66. umap/static/umap/js/modules/rendering/map.js +1 -23
  67. umap/static/umap/js/modules/rendering/ui.js +20 -38
  68. umap/static/umap/js/modules/rules.js +3 -2
  69. umap/static/umap/js/modules/saving.js +5 -0
  70. umap/static/umap/js/modules/schema.js +8 -6
  71. umap/static/umap/js/modules/share.js +3 -3
  72. umap/static/umap/js/modules/sync/engine.js +56 -26
  73. umap/static/umap/js/modules/sync/updaters.js +15 -6
  74. umap/static/umap/js/modules/sync/websocket.js +50 -37
  75. umap/static/umap/js/modules/tableeditor.js +3 -2
  76. umap/static/umap/js/modules/ui/bar.js +101 -9
  77. umap/static/umap/js/modules/ui/base.js +7 -24
  78. umap/static/umap/js/modules/ui/contextmenu.js +9 -2
  79. umap/static/umap/js/modules/ui/panel.js +5 -1
  80. umap/static/umap/js/modules/ui/tooltip.js +19 -11
  81. umap/static/umap/js/modules/umap.js +121 -68
  82. umap/static/umap/js/modules/utils.js +196 -12
  83. umap/static/umap/js/umap.controls.js +11 -353
  84. umap/static/umap/locale/am_ET.js +17 -5
  85. umap/static/umap/locale/am_ET.json +17 -5
  86. umap/static/umap/locale/ar.js +17 -5
  87. umap/static/umap/locale/ar.json +17 -5
  88. umap/static/umap/locale/ast.js +17 -5
  89. umap/static/umap/locale/ast.json +17 -5
  90. umap/static/umap/locale/bg.js +17 -5
  91. umap/static/umap/locale/bg.json +17 -5
  92. umap/static/umap/locale/br.js +33 -20
  93. umap/static/umap/locale/br.json +33 -20
  94. umap/static/umap/locale/ca.js +17 -5
  95. umap/static/umap/locale/ca.json +17 -5
  96. umap/static/umap/locale/cs_CZ.js +15 -5
  97. umap/static/umap/locale/cs_CZ.json +15 -5
  98. umap/static/umap/locale/da.js +17 -5
  99. umap/static/umap/locale/da.json +17 -5
  100. umap/static/umap/locale/de.js +17 -5
  101. umap/static/umap/locale/de.json +17 -5
  102. umap/static/umap/locale/el.js +63 -51
  103. umap/static/umap/locale/el.json +63 -51
  104. umap/static/umap/locale/en.js +15 -5
  105. umap/static/umap/locale/en.json +15 -5
  106. umap/static/umap/locale/en_US.json +17 -5
  107. umap/static/umap/locale/es.js +25 -13
  108. umap/static/umap/locale/es.json +25 -13
  109. umap/static/umap/locale/et.js +17 -5
  110. umap/static/umap/locale/et.json +17 -5
  111. umap/static/umap/locale/eu.js +17 -5
  112. umap/static/umap/locale/eu.json +17 -5
  113. umap/static/umap/locale/fa_IR.js +17 -5
  114. umap/static/umap/locale/fa_IR.json +17 -5
  115. umap/static/umap/locale/fi.js +17 -5
  116. umap/static/umap/locale/fi.json +17 -5
  117. umap/static/umap/locale/fr.js +16 -6
  118. umap/static/umap/locale/fr.json +16 -6
  119. umap/static/umap/locale/gl.js +357 -345
  120. umap/static/umap/locale/gl.json +357 -345
  121. umap/static/umap/locale/he.js +17 -5
  122. umap/static/umap/locale/he.json +17 -5
  123. umap/static/umap/locale/hr.js +17 -5
  124. umap/static/umap/locale/hr.json +17 -5
  125. umap/static/umap/locale/hu.js +14 -5
  126. umap/static/umap/locale/hu.json +14 -5
  127. umap/static/umap/locale/id.js +17 -5
  128. umap/static/umap/locale/id.json +17 -5
  129. umap/static/umap/locale/is.js +17 -5
  130. umap/static/umap/locale/is.json +17 -5
  131. umap/static/umap/locale/it.js +125 -113
  132. umap/static/umap/locale/it.json +125 -113
  133. umap/static/umap/locale/ja.js +17 -5
  134. umap/static/umap/locale/ja.json +17 -5
  135. umap/static/umap/locale/ko.js +17 -5
  136. umap/static/umap/locale/ko.json +17 -5
  137. umap/static/umap/locale/lt.js +17 -5
  138. umap/static/umap/locale/lt.json +17 -5
  139. umap/static/umap/locale/ms.js +17 -5
  140. umap/static/umap/locale/ms.json +17 -5
  141. umap/static/umap/locale/nl.js +132 -119
  142. umap/static/umap/locale/nl.json +132 -119
  143. umap/static/umap/locale/no.js +17 -5
  144. umap/static/umap/locale/no.json +17 -5
  145. umap/static/umap/locale/pl.js +17 -5
  146. umap/static/umap/locale/pl.json +17 -5
  147. umap/static/umap/locale/pl_PL.json +17 -5
  148. umap/static/umap/locale/pt.js +38 -25
  149. umap/static/umap/locale/pt.json +38 -25
  150. umap/static/umap/locale/pt_BR.js +17 -5
  151. umap/static/umap/locale/pt_BR.json +17 -5
  152. umap/static/umap/locale/pt_PT.js +17 -5
  153. umap/static/umap/locale/pt_PT.json +17 -5
  154. umap/static/umap/locale/ro.js +17 -5
  155. umap/static/umap/locale/ro.json +17 -5
  156. umap/static/umap/locale/ru.js +17 -5
  157. umap/static/umap/locale/ru.json +17 -5
  158. umap/static/umap/locale/sk_SK.js +17 -5
  159. umap/static/umap/locale/sk_SK.json +17 -5
  160. umap/static/umap/locale/sl.js +17 -5
  161. umap/static/umap/locale/sl.json +17 -5
  162. umap/static/umap/locale/sr.js +17 -5
  163. umap/static/umap/locale/sr.json +17 -5
  164. umap/static/umap/locale/sv.js +17 -5
  165. umap/static/umap/locale/sv.json +17 -5
  166. umap/static/umap/locale/th_TH.js +17 -5
  167. umap/static/umap/locale/th_TH.json +17 -5
  168. umap/static/umap/locale/tr.js +17 -5
  169. umap/static/umap/locale/tr.json +17 -5
  170. umap/static/umap/locale/uk_UA.js +17 -5
  171. umap/static/umap/locale/uk_UA.json +17 -5
  172. umap/static/umap/locale/vi.js +17 -5
  173. umap/static/umap/locale/vi.json +17 -5
  174. umap/static/umap/locale/vi_VN.json +17 -5
  175. umap/static/umap/locale/zh.js +17 -5
  176. umap/static/umap/locale/zh.json +17 -5
  177. umap/static/umap/locale/zh_CN.json +17 -5
  178. umap/static/umap/locale/zh_TW.Big5.json +17 -5
  179. umap/static/umap/locale/zh_TW.js +15 -5
  180. umap/static/umap/locale/zh_TW.json +15 -5
  181. umap/static/umap/map.css +29 -76
  182. umap/static/umap/nav.css +6 -3
  183. umap/static/umap/unittests/utils.js +14 -0
  184. umap/static/umap/vars.css +3 -0
  185. umap/static/umap/vendors/dompurify/purify.es.js +138 -354
  186. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  187. umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
  188. umap/sync/__init__.py +0 -0
  189. umap/sync/app.py +187 -0
  190. umap/sync/payloads.py +56 -0
  191. umap/templates/auth/user_detail.html +4 -0
  192. umap/templates/auth/user_form.html +9 -6
  193. umap/templates/auth/user_stars.html +4 -0
  194. umap/templates/base.html +1 -1
  195. umap/templates/registration/login.html +2 -5
  196. umap/templates/umap/about.html +5 -0
  197. umap/templates/umap/about_summary.html +2 -2
  198. umap/templates/umap/components/provider.html +8 -0
  199. umap/templates/umap/content_footer.html +1 -1
  200. umap/templates/umap/css.html +0 -2
  201. umap/templates/umap/js.html +0 -4
  202. umap/templates/umap/map_detail.html +1 -1
  203. umap/templates/umap/password_change.html +4 -0
  204. umap/templates/umap/password_change_done.html +4 -0
  205. umap/templates/umap/search.html +4 -0
  206. umap/templates/umap/search_bar.html +1 -0
  207. umap/templates/umap/team_confirm_delete.html +4 -0
  208. umap/templates/umap/team_detail.html +4 -0
  209. umap/templates/umap/team_form.html +4 -0
  210. umap/templates/umap/user_dashboard.html +1 -1
  211. umap/templates/umap/user_teams.html +4 -0
  212. umap/tests/base.py +3 -1
  213. umap/tests/integration/conftest.py +16 -23
  214. umap/tests/integration/test_anonymous_owned_map.py +2 -2
  215. umap/tests/integration/test_basics.py +4 -7
  216. umap/tests/integration/test_caption.py +1 -0
  217. umap/tests/integration/test_categorized_layer.py +4 -8
  218. umap/tests/integration/test_choropleth.py +1 -1
  219. umap/tests/integration/test_conditional_rules.py +3 -3
  220. umap/tests/integration/test_draw_polygon.py +14 -22
  221. umap/tests/integration/test_draw_polyline.py +6 -14
  222. umap/tests/integration/test_edit_datalayer.py +11 -11
  223. umap/tests/integration/test_edit_map.py +30 -4
  224. umap/tests/integration/test_edit_marker.py +5 -5
  225. umap/tests/integration/test_edit_polygon.py +6 -6
  226. umap/tests/integration/test_features_id_generation.py +2 -6
  227. umap/tests/integration/test_import.py +115 -29
  228. umap/tests/integration/test_optimistic_merge.py +1 -0
  229. umap/tests/integration/test_owned_map.py +1 -1
  230. umap/tests/integration/test_picto.py +8 -8
  231. umap/tests/integration/test_save.py +3 -2
  232. umap/tests/integration/test_star.py +13 -9
  233. umap/tests/integration/test_tableeditor.py +8 -7
  234. umap/tests/integration/test_view_marker.py +10 -0
  235. umap/tests/integration/test_websocket_sync.py +239 -64
  236. umap/tests/settings.py +2 -0
  237. umap/tests/test_datalayer.py +2 -3
  238. umap/tests/test_datalayer_views.py +20 -1
  239. umap/tests/test_empty_trash.py +10 -3
  240. umap/tests/test_map_views.py +11 -0
  241. umap/utils.py +27 -11
  242. umap/views.py +37 -6
  243. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/METADATA +22 -22
  244. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/RECORD +247 -248
  245. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/WHEEL +1 -1
  246. umap/management/commands/run_websocket_server.py +0 -23
  247. umap/settings/local_s3.py +0 -45
  248. umap/static/umap/bitbucket.png +0 -0
  249. umap/static/umap/github.png +0 -0
  250. umap/static/umap/js/umap.forms.js +0 -1242
  251. umap/static/umap/keycloak.png +0 -0
  252. umap/static/umap/openstreetmap.png +0 -0
  253. umap/static/umap/twitter.png +0 -0
  254. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
  255. umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
  256. umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
  257. umap/tests/test_websocket_server.py +0 -22
  258. umap/websocket_server.py +0 -202
  259. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/entry_points.txt +0 -0
  260. {umap_project-2.8.2.dist-info → umap_project-2.9.0.dist-info}/licenses/LICENSE +0 -0
@@ -5,6 +5,7 @@
5
5
  # Translators:
6
6
  # Navhy, 2019
7
7
  # Navhy, 2019
8
+ # Miguel Anxo Bouzada <mbouzada@gmail.com>, 2025
8
9
  # Navhy, 2019
9
10
  # Nemigo Galiza <lescamposines@gmail.com>, 2017
10
11
  # Rafael Ávila Coya <ravilacoya@gmail.com>, 2014
@@ -12,9 +13,9 @@ msgid ""
12
13
  msgstr ""
13
14
  "Project-Id-Version: uMap\n"
14
15
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2024-12-24 08:39+0000\n"
16
+ "POT-Creation-Date: 2025-01-31 17:29+0000\n"
16
17
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
17
- "Last-Translator: Rafael Ávila Coya <ravilacoya@gmail.com>, 2014\n"
18
+ "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2025\n"
18
19
  "Language-Team: Galician (http://app.transifex.com/openstreetmap/umap/language/gl/)\n"
19
20
  "MIME-Version: 1.0\n"
20
21
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,21 +25,21 @@ msgstr ""
24
25
 
25
26
  #: admin.py:16
26
27
  msgid "CSV Export"
27
- msgstr ""
28
+ msgstr "Exportar CSV"
28
29
 
29
30
  #: decorators.py:60
30
31
  msgid "This map is not publicly available"
31
- msgstr ""
32
+ msgstr "Este mapa non está dispoñíbel publicamente"
32
33
 
33
34
  #: middleware.py:13
34
35
  msgid "Site is readonly for maintenance"
35
- msgstr "O sitio estápara o mantemento"
36
+ msgstr "O sitio éde lectura por mantemento"
36
37
 
37
38
  #: models.py:60 models.py:79
38
39
  msgid "name"
39
40
  msgstr "nome"
40
41
 
41
- #: models.py:62 models.py:475
42
+ #: models.py:62 models.py:485
42
43
  msgid "description"
43
44
  msgstr "descrición"
44
45
 
@@ -58,45 +59,45 @@ msgstr "Modelo de URL que usa o formato de teselas de OSM"
58
59
  msgid "Order of the tilelayers in the edit box"
59
60
  msgstr "Orde das capas base na caixa de edición"
60
61
 
61
- #: models.py:175 models.py:469
62
+ #: models.py:175 models.py:479
62
63
  msgid "Only editable with secret edit link"
63
- msgstr "Só pode editarse ca ligazón secreta de edición"
64
+ msgstr "Só é posíbel editalo coa ligazón secreta de edición"
64
65
 
65
- #: models.py:176 models.py:470
66
+ #: models.py:176 models.py:480
66
67
  msgid "Everyone can edit"
67
- msgstr "Calquera pode editar"
68
+ msgstr "Calquera pode editalo"
68
69
 
69
- #: models.py:179 models.py:463
70
+ #: models.py:179 models.py:473
70
71
  msgid "Everyone"
71
- msgstr ""
72
+ msgstr "Calquera"
72
73
 
73
- #: models.py:180 models.py:189 models.py:464
74
+ #: models.py:180 models.py:189 models.py:474
74
75
  msgid "Editors and team only"
75
- msgstr ""
76
+ msgstr "Só editores e equipo"
76
77
 
77
- #: models.py:181 models.py:465
78
+ #: models.py:181 models.py:475
78
79
  msgid "Owner only"
79
- msgstr ""
80
+ msgstr "Só o propietario"
80
81
 
81
82
  #: models.py:184
82
83
  msgid "Draft (private)"
83
- msgstr ""
84
+ msgstr "Borrador (privado)"
84
85
 
85
86
  #: models.py:185
86
87
  msgid "Everyone (public)"
87
- msgstr ""
88
+ msgstr "Calquera (público)"
88
89
 
89
90
  #: models.py:188
90
91
  msgid "Anyone with link"
91
- msgstr ""
92
+ msgstr "Calquera con ligazón"
92
93
 
93
94
  #: models.py:190
94
95
  msgid "Blocked"
95
- msgstr ""
96
+ msgstr "Bloqueado"
96
97
 
97
- #: models.py:191
98
+ #: models.py:191 models.py:469
98
99
  msgid "Deleted"
99
- msgstr ""
100
+ msgstr "Eliminado"
100
101
 
101
102
  #: models.py:194
102
103
  msgid "center"
@@ -104,7 +105,7 @@ msgstr "centrar"
104
105
 
105
106
  #: models.py:195
106
107
  msgid "zoom"
107
- msgstr "achegar/afastar"
108
+ msgstr "zoom"
108
109
 
109
110
  #: models.py:197
110
111
  msgid "locate"
@@ -124,7 +125,7 @@ msgstr "licenza"
124
125
 
125
126
  #: models.py:213
126
127
  msgid "owner"
127
- msgstr "dono"
128
+ msgstr "propietario"
128
129
 
129
130
  #: models.py:217
130
131
  msgid "editors"
@@ -132,33 +133,33 @@ msgstr "editores"
132
133
 
133
134
  #: models.py:223
134
135
  msgid "team"
135
- msgstr ""
136
+ msgstr "equipo"
136
137
 
137
- #: models.py:229 models.py:491
138
+ #: models.py:229 models.py:501
138
139
  msgid "edit status"
139
140
  msgstr "estado da edición"
140
141
 
141
- #: models.py:234
142
+ #: models.py:234 models.py:506
142
143
  msgid "share status"
143
144
  msgstr "compartir o estado"
144
145
 
145
- #: models.py:237 models.py:486
146
+ #: models.py:237 models.py:496
146
147
  msgid "settings"
147
148
  msgstr "axustes"
148
149
 
149
- #: models.py:402
150
+ #: models.py:407
150
151
  msgid "Clone of"
151
152
  msgstr "Clon de"
152
153
 
153
- #: models.py:462 models.py:468
154
+ #: models.py:468 models.py:472 models.py:478
154
155
  msgid "Inherit"
155
- msgstr ""
156
+ msgstr "Herdar"
156
157
 
157
- #: models.py:481
158
+ #: models.py:491
158
159
  msgid "display on load"
159
160
  msgstr "amosar na carga"
160
161
 
161
- #: models.py:482
162
+ #: models.py:492
162
163
  msgid "Display this layer on load."
163
164
  msgstr "Amosar esta capa na carga."
164
165
 
@@ -167,71 +168,85 @@ msgid ""
167
168
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
168
169
  "target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
169
170
  " permissions."
170
- msgstr ""
171
+ msgstr "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" target=\"_blank\">Consulta aquí a documentación</a> sobre como xestionar os permisos dos mapas."
171
172
 
172
173
  #: templates/403.html:10 templates/404.html:8
173
174
  msgid "← Go to the homepage"
174
- msgstr ""
175
+ msgstr "← Ir á páxina de inicio"
175
176
 
176
177
  #: templates/404.html:7
177
178
  msgid "404 Page Not Found"
178
- msgstr ""
179
+ msgstr "404 Páxina non atopada"
180
+
181
+ #: templates/auth/user_detail.html:6
182
+ #, python-format
183
+ msgid "%(current_user)s’s maps"
184
+ msgstr "Mapas de %(current_user)s"
179
185
 
180
- #: templates/auth/user_detail.html:8
186
+ #: templates/auth/user_detail.html:12
181
187
  #, python-format
182
188
  msgid "Browse %(current_user)s's maps"
183
189
  msgstr "Navegador %(current_user)s dos mapas"
184
190
 
185
- #: templates/auth/user_detail.html:17
191
+ #: templates/auth/user_detail.html:21
186
192
  #, python-format
187
193
  msgid "%(current_user)s has no maps."
188
194
  msgstr "%(current_user)s non ten mapas."
189
195
 
190
- #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
196
+ #: templates/auth/user_form.html:6
197
+ msgid "My Profile"
198
+ msgstr "O meu perfil"
199
+
200
+ #: templates/auth/user_form.html:24 templates/umap/team_form.html:25
191
201
  msgid "Save"
192
- msgstr ""
202
+ msgstr "Gardar"
193
203
 
194
- #: templates/auth/user_form.html:27
204
+ #: templates/auth/user_form.html:30
195
205
  msgid "Your current providers"
196
- msgstr ""
206
+ msgstr "Os teus provedores actuais"
197
207
 
198
- #: templates/auth/user_form.html:39
208
+ #: templates/auth/user_form.html:44
199
209
  msgid "Connect to another provider"
200
- msgstr ""
210
+ msgstr "Conecta con outro provedor"
201
211
 
202
- #: templates/auth/user_form.html:42
212
+ #: templates/auth/user_form.html:47
203
213
  msgid ""
204
214
  "It's a good habit to connect your account to more than one provider, in case"
205
215
  " one provider becomes unavailable, temporarily or even permanently."
206
- msgstr ""
216
+ msgstr "É un bo hábito conectar a túa conta a máis dun provedor, no caso de que un provedor non estea dispoñíbel, de xeito temporal ou incluso permanente."
217
+
218
+ #: templates/auth/user_stars.html:6
219
+ #, python-format
220
+ msgid "%(current_user)s’s starred maps"
221
+ msgstr "Mapas destacados de %(current_user)s"
207
222
 
208
- #: templates/auth/user_stars.html:8
223
+ #: templates/auth/user_stars.html:12
209
224
  #, python-format
210
225
  msgid "Browse %(current_user)s's starred maps"
211
- msgstr ""
226
+ msgstr "Consultar os mapas favoritos de %(current_user)s"
212
227
 
213
- #: templates/auth/user_stars.html:17
228
+ #: templates/auth/user_stars.html:21
214
229
  #, python-format
215
230
  msgid "%(current_user)s has no starred maps yet."
216
- msgstr ""
231
+ msgstr "%(current_user)s aínda non ten mapas destacados con estrela."
217
232
 
218
233
  #: templates/base.html:13
219
234
  msgid ""
220
235
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
221
236
  "them in your site."
222
- msgstr ""
237
+ msgstr "uMap permíteche crear mapas con capas de OpenStreetMap nun minuto e incrustalos no teu sitio web."
223
238
 
224
239
  #: templates/registration/login.html:6 templates/registration/login.html:46
225
240
  msgid "Login"
226
- msgstr "Sesión iniciada"
241
+ msgstr "Acceder"
227
242
 
228
243
  #: templates/registration/login.html:22
229
244
  msgid "To save and easily find your maps, identify yourself."
230
- msgstr ""
245
+ msgstr "Para gardar e atopar doadamente os seus mapas, identifíquese."
231
246
 
232
247
  #: templates/registration/login.html:25
233
248
  msgid "Please log in with your account:"
234
- msgstr ""
249
+ msgstr "Accede coa túa conta"
235
250
 
236
251
  #: templates/registration/login.html:42
237
252
  msgid "Username"
@@ -243,14 +258,18 @@ msgstr "Contrasinal"
243
258
 
244
259
  #: templates/registration/login.html:52
245
260
  msgid "Please choose a provider:"
246
- msgstr ""
261
+ msgstr "Escolle un provedor"
262
+
263
+ #: templates/umap/about.html:5 templates/umap/navigation.html:22
264
+ msgid "About"
265
+ msgstr "Sobre"
247
266
 
248
267
  #: templates/umap/about_summary.html:12
249
268
  #, python-format
250
269
  msgid ""
251
270
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
252
271
  "layers in a minute and embed them in your site."
253
- msgstr "O uMap permíteche crear mapas con capas do <a href=\"%(osm_url)s\" />OpenStreetMap</a> nun minuto e poñelos na túa páxina web."
272
+ msgstr "uMap permíteche crear mapas con capas de <a href=\"%(osm_url)s\" />OpenStreetMap</a> nun minuto e incrustalos no teu sitio web."
254
273
 
255
274
  #: templates/umap/about_summary.html:23
256
275
  msgid "Choose the layers of your map"
@@ -298,7 +317,7 @@ msgstr "Xogar ca versión de proba"
298
317
  #: templates/umap/components/alerts/alert.html:66
299
318
  #: templates/umap/components/alerts/alert.html:94
300
319
  msgid "Close"
301
- msgstr ""
320
+ msgstr "Pechar"
302
321
 
303
322
  #: templates/umap/components/alerts/alert.html:32
304
323
  #, python-format
@@ -306,45 +325,45 @@ msgid ""
306
325
  "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
307
326
  "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
308
327
  "target=\"_blank\">log in</a>."
309
- msgstr ""
328
+ msgstr "Consello pro: para atopar doadamente os teus mapas, <a href=\"%(login_url)s\" target=\"_blank\">crea unha conta</a> ou <a href=\"%(login_url)s\" target=\"_blank\">accede</a>."
310
329
 
311
330
  #: templates/umap/components/alerts/alert.html:37
312
331
  msgid "Here is your secret link to edit the map, please keep it safe:"
313
- msgstr ""
332
+ msgstr "Aquí tes a túa ligazón secreta para editar o mapa, gárdeo a seguro:"
314
333
 
315
334
  #: templates/umap/components/alerts/alert.html:41
316
335
  msgid "Copy link"
317
- msgstr ""
336
+ msgstr "Copiar a ligazón"
318
337
 
319
338
  #: templates/umap/components/alerts/alert.html:48
320
339
  msgid "Enter your email address to receive the secret link:"
321
- msgstr ""
340
+ msgstr "Introduce o teu enderezo de correo para recibir a ligazón secreta:"
322
341
 
323
342
  #: templates/umap/components/alerts/alert.html:54
324
343
  msgid "Email"
325
- msgstr ""
344
+ msgstr "Correo"
326
345
 
327
346
  #: templates/umap/components/alerts/alert.html:57
328
347
  msgid "Send me the link"
329
- msgstr ""
348
+ msgstr "Enviádeme a ligazón"
330
349
 
331
350
  #: templates/umap/components/alerts/alert.html:81
332
351
  msgid "See their edits in another tab"
333
- msgstr ""
352
+ msgstr "Consulta as súas edicións noutra lapela"
334
353
 
335
354
  #: templates/umap/components/alerts/alert.html:84
336
355
  msgid "Keep your changes and loose theirs"
337
- msgstr ""
356
+ msgstr "Conserva os teus cambios e deixa os seus"
338
357
 
339
358
  #: templates/umap/components/alerts/alert.html:87
340
359
  msgid "Keep their changes and loose yours"
341
- msgstr ""
360
+ msgstr "Conserva os seus cambios e deixa os teus"
342
361
 
343
362
  #: templates/umap/content.html:26
344
363
  msgid ""
345
364
  "This instance of uMap is currently in read only mode, no creation/edit is "
346
365
  "allowed."
347
- msgstr ""
366
+ msgstr "Esta instancia de uMap está actualmente en modo de só lectura, non se permite a creación ou edición."
348
367
 
349
368
  #: templates/umap/content.html:34
350
369
  #, python-format
@@ -353,44 +372,44 @@ msgid ""
353
372
  "need a stable instance, please use <a "
354
373
  "href=\"%(stable_url)s\">%(stable_url)s</a>. You can also host your own "
355
374
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
356
- msgstr "Esta é unha instancia de proba, empregada para probas e lanzamentos previos. Se precisas unha instancia estábel, emprega <a href=\"%(stable_url)s\">%(stable_url)s</a>. Tamén podes ter a túa propia instancia, é de <a href=\"%(repo_url)s\">código aberto</a>!"
375
+ msgstr "Esta é unha instancia de demostración, empregada para probas e publicacións previas. Se precisas unha instancia estábel, emprega <a href=\"%(stable_url)s\">%(stable_url)s</a>. Tamén podes aloxar a túa propia instancia, é de <a href=\"%(repo_url)s\">código aberto</a>!"
357
376
 
358
377
  #: templates/umap/content_footer.html:5
359
378
  msgid "An OpenStreetMap project"
360
- msgstr ""
379
+ msgstr "Un proxecto de OpenStreetMap"
361
380
 
362
381
  #: templates/umap/content_footer.html:6
363
382
  msgid "version"
364
- msgstr ""
383
+ msgstr "versión"
365
384
 
366
385
  #: templates/umap/content_footer.html:7
367
386
  msgid "Hosted by"
368
- msgstr ""
387
+ msgstr "Aloxado por"
369
388
 
370
389
  #: templates/umap/content_footer.html:8
371
390
  msgid "Contact"
372
- msgstr ""
391
+ msgstr "Contacto"
373
392
 
374
393
  #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
375
394
  msgid "Help"
376
- msgstr ""
395
+ msgstr "Axuda"
377
396
 
378
397
  #: templates/umap/dashboard_menu.html:6
379
398
  #, python-format
380
399
  msgid "My Maps (%(count)s)"
381
- msgstr ""
400
+ msgstr "Os meus mapas (%(count)s)"
382
401
 
383
402
  #: templates/umap/dashboard_menu.html:8
384
403
  msgid "My Maps"
385
- msgstr ""
404
+ msgstr "Os meus mapas"
386
405
 
387
406
  #: templates/umap/dashboard_menu.html:12
388
407
  msgid "My profile"
389
- msgstr ""
408
+ msgstr "O meu perfil"
390
409
 
391
410
  #: templates/umap/dashboard_menu.html:15
392
411
  msgid "My teams"
393
- msgstr ""
412
+ msgstr "Os meus equipos"
394
413
 
395
414
  #: templates/umap/home.html:14
396
415
  msgid "Map of the uMaps"
@@ -398,7 +417,7 @@ msgstr "Mapa do uMaps"
398
417
 
399
418
  #: templates/umap/home.html:24
400
419
  msgid "Get inspired, browse maps"
401
- msgstr "Inspírate e procura mapas"
420
+ msgstr "Inspírate, consulta mapas"
402
421
 
403
422
  #: templates/umap/login_popup_end.html:4
404
423
  msgid "You are logged in. Continuing..."
@@ -412,97 +431,97 @@ msgstr "por"
412
431
  msgid "More"
413
432
  msgstr "Máis"
414
433
 
415
- #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
434
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
416
435
  msgid "Name"
417
- msgstr ""
436
+ msgstr "Nome"
418
437
 
419
438
  #: templates/umap/map_table.html:11
420
439
  msgid "Preview"
421
- msgstr ""
440
+ msgstr "Vista previa"
422
441
 
423
442
  #: templates/umap/map_table.html:14
424
443
  msgid "Who can see"
425
- msgstr ""
444
+ msgstr "Quen pode ver"
426
445
 
427
446
  #: templates/umap/map_table.html:17
428
447
  msgid "Who can edit"
429
- msgstr ""
448
+ msgstr "Quen pode editar"
430
449
 
431
450
  #: templates/umap/map_table.html:20
432
451
  msgid "Last save"
433
- msgstr ""
452
+ msgstr "Última modificación"
434
453
 
435
454
  #: templates/umap/map_table.html:23
436
455
  msgid "Owner"
437
- msgstr ""
456
+ msgstr "Propietario"
438
457
 
439
- #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
458
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
440
459
  msgid "Actions"
441
- msgstr ""
460
+ msgstr "Accións"
442
461
 
443
462
  #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
444
463
  msgid "Open preview"
445
- msgstr ""
464
+ msgstr "Abrir a vista previa"
446
465
 
447
466
  #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
448
467
  msgid "Share"
449
- msgstr ""
468
+ msgstr "Compartir"
450
469
 
451
470
  #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
452
- #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
471
+ #: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
453
472
  msgid "Edit"
454
- msgstr ""
473
+ msgstr "Editar"
455
474
 
456
475
  #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
457
476
  msgid "Download"
458
- msgstr ""
477
+ msgstr "Descargar"
459
478
 
460
479
  #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
461
480
  msgid "Clone"
462
- msgstr ""
481
+ msgstr "Clonar"
463
482
 
464
483
  #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
465
484
  msgid "Delete"
466
- msgstr ""
485
+ msgstr "Eliminar"
467
486
 
468
487
  #: templates/umap/map_table.html:117
469
488
  msgid "first"
470
- msgstr ""
489
+ msgstr "primeira"
471
490
 
472
491
  #: templates/umap/map_table.html:118
473
492
  msgid "previous"
474
- msgstr ""
493
+ msgstr "anterior"
475
494
 
476
495
  #: templates/umap/map_table.html:126
477
496
  #, python-format
478
497
  msgid "Page %(maps_number)s of %(num_pages)s"
479
- msgstr ""
498
+ msgstr "Páxina %(maps_number)s de %(num_pages)s"
480
499
 
481
500
  #: templates/umap/map_table.html:131
482
501
  msgid "next"
483
- msgstr ""
502
+ msgstr "seguinte"
484
503
 
485
504
  #: templates/umap/map_table.html:132
486
505
  msgid "last"
487
- msgstr ""
506
+ msgstr "última"
488
507
 
489
508
  #: templates/umap/map_table.html:140
490
509
  #, python-format
491
510
  msgid "Lines per page: %(per_page)s"
492
- msgstr ""
511
+ msgstr "Liñas por páxina: %(per_page)s"
493
512
 
494
513
  #: templates/umap/map_table.html:145
495
514
  #, python-format
496
515
  msgid "%(count)s maps"
497
- msgstr ""
516
+ msgstr "%(count)s mapas"
498
517
 
499
518
  #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
500
519
  msgid "My Dashboard"
501
- msgstr ""
520
+ msgstr "O meu taboleiro"
502
521
 
503
522
  #: templates/umap/navigation.html:14
504
523
  msgid "Starred maps"
505
- msgstr ""
524
+ msgstr "Mapas destacados con estrelas"
506
525
 
507
526
  #: templates/umap/navigation.html:18
508
527
  msgid "Log in"
@@ -512,182 +531,208 @@ msgstr "Iniciar a sesión"
512
531
  msgid "Sign in"
513
532
  msgstr "Rexistrarse"
514
533
 
515
- #: templates/umap/navigation.html:22
516
- msgid "About"
517
- msgstr "Acerca de"
518
-
519
534
  #: templates/umap/navigation.html:30
520
535
  msgid "Change password"
521
- msgstr "Mudar contrasinal"
536
+ msgstr "Cambiar o contrasinal"
522
537
 
523
538
  #: templates/umap/navigation.html:34
524
539
  msgid "Log out"
525
540
  msgstr "Saír"
526
541
 
527
- #: templates/umap/password_change.html:7
542
+ #: templates/umap/password_change.html:6
543
+ #: templates/umap/password_change.html:11
528
544
  msgid "Password change"
529
- msgstr "Contrasinal mudada"
545
+ msgstr "Contrasinal cambiado"
530
546
 
531
- #: templates/umap/password_change.html:10
547
+ #: templates/umap/password_change.html:14
532
548
  msgid ""
533
549
  "Please enter your old password, for security's sake, and then enter your new"
534
550
  " password twice so we can verify you typed it in correctly."
535
- msgstr "Insire o teu contrasinal antigo, por seguranza, e despois insire o teu novo contrasinal dúas veces para que poidamos verificar se o escribiches de xeito correcto."
551
+ msgstr "Introduce o teu contrasinal antigo, por seguranza, e após introduce o teu novo contrasinal dúas veces para que poidamos verificar que o escribiches de xeito correcto."
536
552
 
537
- #: templates/umap/password_change.html:17
553
+ #: templates/umap/password_change.html:21
538
554
  msgid "Old password"
539
555
  msgstr "Contrasinal antigo"
540
556
 
541
- #: templates/umap/password_change.html:22
557
+ #: templates/umap/password_change.html:26
542
558
  msgid "New password"
543
559
  msgstr "Novo contrasinal"
544
560
 
545
- #: templates/umap/password_change.html:26
561
+ #: templates/umap/password_change.html:30
546
562
  msgid "New password confirmation"
547
563
  msgstr "Confirmar novo contrasinal"
548
564
 
549
- #: templates/umap/password_change.html:27
565
+ #: templates/umap/password_change.html:31
550
566
  msgid "Change my password"
551
- msgstr "Mudar o meu contrasinal"
567
+ msgstr "Cambiar o meu contrasinal"
552
568
 
553
- #: templates/umap/password_change_done.html:7
569
+ #: templates/umap/password_change_done.html:6
570
+ #: templates/umap/password_change_done.html:11
554
571
  msgid "Password change successful"
555
- msgstr "O contrasinal foi mudado de xeito correcto"
572
+ msgstr "O contrasinal foi cambiado correctamente"
556
573
 
557
- #: templates/umap/password_change_done.html:10
574
+ #: templates/umap/password_change_done.html:14
558
575
  msgid "Your password was changed."
559
- msgstr "O seu contrasinal foi mudado."
576
+ msgstr "O teu contrasinal foi cambiado."
560
577
 
561
- #: templates/umap/search.html:15
578
+ #: templates/umap/search.html:6
579
+ msgid "Explore maps"
580
+ msgstr "Examinar mapas"
581
+
582
+ #: templates/umap/search.html:19
562
583
  #, python-format
563
584
  msgid "%(count)s map found:"
564
585
  msgid_plural "%(count)s maps found:"
565
- msgstr[0] ""
566
- msgstr[1] ""
586
+ msgstr[0] "Atopouse %(count)s mapa:"
587
+ msgstr[1] "Atopáronse %(count)s mapas:"
567
588
 
568
- #: templates/umap/search.html:24
589
+ #: templates/umap/search.html:28
569
590
  msgid "No map found."
570
- msgstr ""
591
+ msgstr "Non se atopou ningún mapa."
571
592
 
572
- #: templates/umap/search.html:29
593
+ #: templates/umap/search.html:33
573
594
  msgid "Latest created maps"
574
- msgstr ""
595
+ msgstr "Últimos mapas creados"
575
596
 
576
597
  #: templates/umap/search_bar.html:4
577
598
  msgid "Search maps"
578
- msgstr "Procurar mapas"
599
+ msgstr "Buscar mapas"
579
600
 
580
601
  #: templates/umap/search_bar.html:15
581
602
  msgid "Search"
582
- msgstr "Procurar"
603
+ msgstr "Buscar"
604
+
605
+ #: templates/umap/team_confirm_delete.html:6
606
+ msgid "Team deletion"
607
+ msgstr "Eliminación do equipo"
583
608
 
584
- #: templates/umap/team_detail.html:10
609
+ #: templates/umap/team_detail.html:6
610
+ #, python-format
611
+ msgid "%(current_team)s’s maps"
612
+ msgstr "Mapas de %(current_team)s"
613
+
614
+ #: templates/umap/team_detail.html:14
585
615
  #, python-format
586
616
  msgid "Browse %(current_team)s's maps"
587
- msgstr ""
617
+ msgstr "Os mapas de %(current_team)s"
588
618
 
589
- #: templates/umap/team_detail.html:22
619
+ #: templates/umap/team_detail.html:26
590
620
  #, python-format
591
621
  msgid "%(current_team)s has no public maps."
592
- msgstr ""
622
+ msgstr "%(current_team)s non ten mapas públicos"
623
+
624
+ #: templates/umap/team_form.html:6
625
+ msgid "Create or edit a team"
626
+ msgstr "Crear ou editar un equipo"
593
627
 
594
- #: templates/umap/team_form.html:24
628
+ #: templates/umap/team_form.html:28
595
629
  msgid "Delete this team"
596
- msgstr ""
630
+ msgstr "Eliminar este equipo"
597
631
 
598
- #: templates/umap/team_form.html:47
632
+ #: templates/umap/team_form.html:51
599
633
  msgid "Add user"
600
- msgstr ""
634
+ msgstr "Engadir usuario"
601
635
 
602
636
  #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
603
637
  msgid "Search my maps"
604
- msgstr ""
638
+ msgstr "Buscar nos meus mapas"
605
639
 
606
640
  #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
607
641
  msgid "Map’s title"
608
- msgstr ""
642
+ msgstr "Título do mapa"
609
643
 
610
644
  #: templates/umap/user_dashboard.html:30
611
645
  #, python-format
612
646
  msgid "Download %(count)s maps"
613
- msgstr ""
647
+ msgstr "Descargar %(count)s mapas"
614
648
 
615
649
  #: templates/umap/user_dashboard.html:40
616
650
  msgid "You have no map yet."
617
- msgstr ""
651
+ msgstr "Aínda non tes ningún mapa."
652
+
653
+ #: templates/umap/user_teams.html:6
654
+ msgid "My Teams"
655
+ msgstr "Os meus equipos"
618
656
 
619
- #: templates/umap/user_teams.html:17
657
+ #: templates/umap/user_teams.html:21
620
658
  msgid "Users"
621
- msgstr ""
659
+ msgstr "Usuarios"
622
660
 
623
- #: templates/umap/user_teams.html:48
661
+ #: templates/umap/user_teams.html:52
624
662
  msgid "New team"
625
- msgstr ""
663
+ msgstr "Novo equipo"
626
664
 
627
665
  #: views.py:234
628
666
  msgid "Cannot delete a team with more than one member"
629
- msgstr ""
667
+ msgstr "Non é posíbel eliminar un equipo con máis dun membro"
630
668
 
631
669
  #: views.py:238
632
670
  #, python-format
633
671
  msgid "Team “%(name)s” has been deleted"
634
- msgstr ""
672
+ msgstr "Foi eliminado o equipo %(name)s"
635
673
 
636
674
  #: views.py:442
637
675
  msgid "View the map"
638
- msgstr "Ollar o mapa"
676
+ msgstr "Ver o mapa"
639
677
 
640
- #: views.py:825
678
+ #: views.py:838
641
679
  msgid "See full screen"
642
- msgstr ""
680
+ msgstr "Ver a pantalla completa"
643
681
 
644
- #: views.py:968
682
+ #: views.py:981
645
683
  msgid "Map editors updated with success!"
646
- msgstr "O editores do mapa foron actualizados de xeito exitoso!"
684
+ msgstr "O editores do mapa foron actualizados correctamente!"
647
685
 
648
- #: views.py:1004
686
+ #: views.py:1017
649
687
  #, python-format
650
688
  msgid "The uMap edit link for your map: %(map_name)s"
651
- msgstr ""
689
+ msgstr "A ligazón de edición de uMap para o teu mapa: %(map_name)s"
652
690
 
653
- #: views.py:1007
691
+ #: views.py:1020
654
692
  #, python-format
655
693
  msgid "Here is your secret edit link: %(link)s"
656
- msgstr ""
694
+ msgstr "Aquí tes a túa ligazón secret de edicióna: %(link)s"
657
695
 
658
- #: views.py:1014
696
+ #: views.py:1027
659
697
  #, python-format
660
698
  msgid "Can't send email to %(email)s"
661
- msgstr ""
699
+ msgstr "Non é posíbel enviar o correo a %(email)s"
662
700
 
663
- #: views.py:1017
701
+ #: views.py:1030
664
702
  #, python-format
665
703
  msgid "Email sent to %(email)s"
666
- msgstr ""
704
+ msgstr "Correo enviado a %(email)s"
667
705
 
668
- #: views.py:1028
706
+ #: views.py:1041
669
707
  msgid "Only its owner can delete the map."
670
708
  msgstr "Só o seu dono pode eliminar o mapa."
671
709
 
672
- #: views.py:1031
710
+ #: views.py:1044
673
711
  msgid "Map successfully deleted."
674
- msgstr ""
712
+ msgstr "O mapa foi eliminado correctamente."
675
713
 
676
- #: views.py:1057
714
+ #: views.py:1070
677
715
  #, python-format
678
716
  msgid ""
679
717
  "Your map has been cloned! If you want to edit this map from another "
680
718
  "computer, please use this link: %(anonymous_url)s"
681
- msgstr "O teu mapa foi clonado! Se desexas editar este mapa dende outra computadora, emprega esta ligazón: %(anonymous_url)s"
719
+ msgstr "O teu mapa foi clonado! Se queres editar este mapa desde outro computador, emprega esta ligazón: %(anonymous_url)s"
682
720
 
683
- #: views.py:1062
721
+ #: views.py:1075
684
722
  msgid "Congratulations, your map has been cloned!"
685
723
  msgstr "Parabéns! O teu mapa foi clonado!"
686
724
 
687
- #: views.py:1313
725
+ #: views.py:1329
688
726
  msgid "Layer successfully deleted."
689
- msgstr "A capa foi eliminada de xeito exitoso."
727
+ msgstr "A capa foi eliminada correctamente."
690
728
 
691
- #: views.py:1335
729
+ #: views.py:1351
692
730
  msgid "Permissions updated with success!"
693
- msgstr ""
731
+ msgstr "Os permisos foron actualizados correctamente!"
732
+
733
+ #: views.py:1430
734
+ #, python-format
735
+ msgid ""
736
+ "Using “%(name)s” to authenticate is deprecated. Please configure another "
737
+ "provider in your profile page."
738
+ msgstr "Usar «%(name)s» para autenticarse está obsoleto. Configura outro provedor na túa páxina de perfil."