umap-project 2.8.1__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 (262) 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/hu/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/hu/LC_MESSAGES/django.po +10 -10
  20. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/it/LC_MESSAGES/django.po +142 -98
  22. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/nl/LC_MESSAGES/django.po +196 -151
  24. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/pt/LC_MESSAGES/django.po +115 -71
  26. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  27. umap/locale/zh_TW/LC_MESSAGES/django.po +109 -65
  28. umap/management/commands/empty_trash.py +12 -1
  29. umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
  30. umap/models.py +43 -13
  31. umap/settings/base.py +5 -2
  32. umap/static/umap/base.css +5 -2
  33. umap/static/umap/content.css +2 -22
  34. umap/static/umap/css/bar.css +39 -10
  35. umap/static/umap/css/contextmenu.css +14 -2
  36. umap/static/umap/css/form.css +33 -39
  37. umap/static/umap/css/icon.css +47 -5
  38. umap/static/umap/css/panel.css +20 -2
  39. umap/static/umap/css/popup.css +0 -1
  40. umap/static/umap/css/tooltip.css +33 -31
  41. umap/static/umap/img/16-white.svg +5 -3
  42. umap/static/umap/img/16.svg +1 -1
  43. umap/static/umap/img/24-white.svg +17 -16
  44. umap/static/umap/img/24.svg +29 -18
  45. umap/static/umap/img/providers/bitbucket.png +0 -0
  46. umap/static/umap/img/providers/github.png +0 -0
  47. umap/static/umap/img/providers/keycloak.png +0 -0
  48. umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
  49. umap/static/umap/img/providers/twitter-oauth2.png +0 -0
  50. umap/static/umap/img/source/16-white.svg +6 -4
  51. umap/static/umap/img/source/16.svg +1 -1
  52. umap/static/umap/img/source/24-white.svg +20 -18
  53. umap/static/umap/img/source/24.svg +30 -19
  54. umap/static/umap/js/components/alerts/alert.js +4 -1
  55. umap/static/umap/js/modules/browser.js +8 -8
  56. umap/static/umap/js/modules/caption.js +30 -7
  57. umap/static/umap/js/modules/data/features.js +101 -56
  58. umap/static/umap/js/modules/data/layer.js +108 -83
  59. umap/static/umap/js/modules/form/builder.js +242 -0
  60. umap/static/umap/js/modules/form/fields.js +1346 -0
  61. umap/static/umap/js/modules/formatter.js +9 -8
  62. umap/static/umap/js/modules/help.js +20 -24
  63. umap/static/umap/js/modules/importer.js +6 -3
  64. umap/static/umap/js/modules/permissions.js +11 -6
  65. umap/static/umap/js/modules/rendering/icon.js +5 -1
  66. umap/static/umap/js/modules/rendering/layers/classified.js +12 -8
  67. umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
  68. umap/static/umap/js/modules/rendering/map.js +1 -23
  69. umap/static/umap/js/modules/rendering/ui.js +20 -38
  70. umap/static/umap/js/modules/rules.js +3 -2
  71. umap/static/umap/js/modules/saving.js +5 -0
  72. umap/static/umap/js/modules/schema.js +8 -6
  73. umap/static/umap/js/modules/share.js +3 -3
  74. umap/static/umap/js/modules/sync/engine.js +56 -26
  75. umap/static/umap/js/modules/sync/updaters.js +15 -6
  76. umap/static/umap/js/modules/sync/websocket.js +50 -37
  77. umap/static/umap/js/modules/tableeditor.js +3 -2
  78. umap/static/umap/js/modules/ui/bar.js +101 -9
  79. umap/static/umap/js/modules/ui/base.js +7 -24
  80. umap/static/umap/js/modules/ui/contextmenu.js +9 -2
  81. umap/static/umap/js/modules/ui/panel.js +5 -1
  82. umap/static/umap/js/modules/ui/tooltip.js +19 -11
  83. umap/static/umap/js/modules/umap.js +124 -71
  84. umap/static/umap/js/modules/utils.js +196 -12
  85. umap/static/umap/js/umap.controls.js +12 -354
  86. umap/static/umap/locale/am_ET.js +17 -5
  87. umap/static/umap/locale/am_ET.json +17 -5
  88. umap/static/umap/locale/ar.js +17 -5
  89. umap/static/umap/locale/ar.json +17 -5
  90. umap/static/umap/locale/ast.js +17 -5
  91. umap/static/umap/locale/ast.json +17 -5
  92. umap/static/umap/locale/bg.js +17 -5
  93. umap/static/umap/locale/bg.json +17 -5
  94. umap/static/umap/locale/br.js +33 -20
  95. umap/static/umap/locale/br.json +33 -20
  96. umap/static/umap/locale/ca.js +17 -5
  97. umap/static/umap/locale/ca.json +17 -5
  98. umap/static/umap/locale/cs_CZ.js +15 -5
  99. umap/static/umap/locale/cs_CZ.json +15 -5
  100. umap/static/umap/locale/da.js +17 -5
  101. umap/static/umap/locale/da.json +17 -5
  102. umap/static/umap/locale/de.js +17 -5
  103. umap/static/umap/locale/de.json +17 -5
  104. umap/static/umap/locale/el.js +63 -51
  105. umap/static/umap/locale/el.json +63 -51
  106. umap/static/umap/locale/en.js +15 -5
  107. umap/static/umap/locale/en.json +15 -5
  108. umap/static/umap/locale/en_US.json +17 -5
  109. umap/static/umap/locale/es.js +25 -13
  110. umap/static/umap/locale/es.json +25 -13
  111. umap/static/umap/locale/et.js +17 -5
  112. umap/static/umap/locale/et.json +17 -5
  113. umap/static/umap/locale/eu.js +17 -5
  114. umap/static/umap/locale/eu.json +17 -5
  115. umap/static/umap/locale/fa_IR.js +17 -5
  116. umap/static/umap/locale/fa_IR.json +17 -5
  117. umap/static/umap/locale/fi.js +17 -5
  118. umap/static/umap/locale/fi.json +17 -5
  119. umap/static/umap/locale/fr.js +16 -6
  120. umap/static/umap/locale/fr.json +16 -6
  121. umap/static/umap/locale/gl.js +357 -345
  122. umap/static/umap/locale/gl.json +357 -345
  123. umap/static/umap/locale/he.js +17 -5
  124. umap/static/umap/locale/he.json +17 -5
  125. umap/static/umap/locale/hr.js +17 -5
  126. umap/static/umap/locale/hr.json +17 -5
  127. umap/static/umap/locale/hu.js +39 -27
  128. umap/static/umap/locale/hu.json +39 -27
  129. umap/static/umap/locale/id.js +17 -5
  130. umap/static/umap/locale/id.json +17 -5
  131. umap/static/umap/locale/is.js +17 -5
  132. umap/static/umap/locale/is.json +17 -5
  133. umap/static/umap/locale/it.js +125 -113
  134. umap/static/umap/locale/it.json +125 -113
  135. umap/static/umap/locale/ja.js +17 -5
  136. umap/static/umap/locale/ja.json +17 -5
  137. umap/static/umap/locale/ko.js +17 -5
  138. umap/static/umap/locale/ko.json +17 -5
  139. umap/static/umap/locale/lt.js +17 -5
  140. umap/static/umap/locale/lt.json +17 -5
  141. umap/static/umap/locale/ms.js +17 -5
  142. umap/static/umap/locale/ms.json +17 -5
  143. umap/static/umap/locale/nl.js +132 -119
  144. umap/static/umap/locale/nl.json +132 -119
  145. umap/static/umap/locale/no.js +17 -5
  146. umap/static/umap/locale/no.json +17 -5
  147. umap/static/umap/locale/pl.js +17 -5
  148. umap/static/umap/locale/pl.json +17 -5
  149. umap/static/umap/locale/pl_PL.json +17 -5
  150. umap/static/umap/locale/pt.js +38 -25
  151. umap/static/umap/locale/pt.json +38 -25
  152. umap/static/umap/locale/pt_BR.js +17 -5
  153. umap/static/umap/locale/pt_BR.json +17 -5
  154. umap/static/umap/locale/pt_PT.js +17 -5
  155. umap/static/umap/locale/pt_PT.json +17 -5
  156. umap/static/umap/locale/ro.js +17 -5
  157. umap/static/umap/locale/ro.json +17 -5
  158. umap/static/umap/locale/ru.js +17 -5
  159. umap/static/umap/locale/ru.json +17 -5
  160. umap/static/umap/locale/sk_SK.js +17 -5
  161. umap/static/umap/locale/sk_SK.json +17 -5
  162. umap/static/umap/locale/sl.js +17 -5
  163. umap/static/umap/locale/sl.json +17 -5
  164. umap/static/umap/locale/sr.js +17 -5
  165. umap/static/umap/locale/sr.json +17 -5
  166. umap/static/umap/locale/sv.js +17 -5
  167. umap/static/umap/locale/sv.json +17 -5
  168. umap/static/umap/locale/th_TH.js +17 -5
  169. umap/static/umap/locale/th_TH.json +17 -5
  170. umap/static/umap/locale/tr.js +17 -5
  171. umap/static/umap/locale/tr.json +17 -5
  172. umap/static/umap/locale/uk_UA.js +17 -5
  173. umap/static/umap/locale/uk_UA.json +17 -5
  174. umap/static/umap/locale/vi.js +17 -5
  175. umap/static/umap/locale/vi.json +17 -5
  176. umap/static/umap/locale/vi_VN.json +17 -5
  177. umap/static/umap/locale/zh.js +17 -5
  178. umap/static/umap/locale/zh.json +17 -5
  179. umap/static/umap/locale/zh_CN.json +17 -5
  180. umap/static/umap/locale/zh_TW.Big5.json +17 -5
  181. umap/static/umap/locale/zh_TW.js +15 -5
  182. umap/static/umap/locale/zh_TW.json +15 -5
  183. umap/static/umap/map.css +29 -76
  184. umap/static/umap/nav.css +6 -3
  185. umap/static/umap/unittests/utils.js +14 -0
  186. umap/static/umap/vars.css +3 -0
  187. umap/static/umap/vendors/dompurify/purify.es.js +138 -354
  188. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  189. umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
  190. umap/sync/__init__.py +0 -0
  191. umap/sync/app.py +187 -0
  192. umap/sync/payloads.py +56 -0
  193. umap/templates/auth/user_detail.html +4 -0
  194. umap/templates/auth/user_form.html +9 -6
  195. umap/templates/auth/user_stars.html +4 -0
  196. umap/templates/base.html +1 -1
  197. umap/templates/registration/login.html +2 -5
  198. umap/templates/umap/about.html +5 -0
  199. umap/templates/umap/about_summary.html +2 -2
  200. umap/templates/umap/components/provider.html +8 -0
  201. umap/templates/umap/content_footer.html +1 -1
  202. umap/templates/umap/css.html +0 -2
  203. umap/templates/umap/js.html +0 -4
  204. umap/templates/umap/map_detail.html +1 -1
  205. umap/templates/umap/password_change.html +4 -0
  206. umap/templates/umap/password_change_done.html +4 -0
  207. umap/templates/umap/search.html +4 -0
  208. umap/templates/umap/search_bar.html +1 -0
  209. umap/templates/umap/team_confirm_delete.html +4 -0
  210. umap/templates/umap/team_detail.html +4 -0
  211. umap/templates/umap/team_form.html +4 -0
  212. umap/templates/umap/user_dashboard.html +1 -1
  213. umap/templates/umap/user_teams.html +4 -0
  214. umap/tests/base.py +3 -1
  215. umap/tests/integration/conftest.py +16 -23
  216. umap/tests/integration/test_anonymous_owned_map.py +2 -2
  217. umap/tests/integration/test_basics.py +4 -7
  218. umap/tests/integration/test_caption.py +1 -0
  219. umap/tests/integration/test_categorized_layer.py +4 -8
  220. umap/tests/integration/test_choropleth.py +1 -1
  221. umap/tests/integration/test_conditional_rules.py +3 -3
  222. umap/tests/integration/test_draw_polygon.py +14 -22
  223. umap/tests/integration/test_draw_polyline.py +6 -14
  224. umap/tests/integration/test_edit_datalayer.py +11 -11
  225. umap/tests/integration/test_edit_map.py +30 -4
  226. umap/tests/integration/test_edit_marker.py +5 -5
  227. umap/tests/integration/test_edit_polygon.py +6 -6
  228. umap/tests/integration/test_features_id_generation.py +2 -6
  229. umap/tests/integration/test_import.py +115 -29
  230. umap/tests/integration/test_optimistic_merge.py +1 -0
  231. umap/tests/integration/test_owned_map.py +1 -1
  232. umap/tests/integration/test_picto.py +8 -8
  233. umap/tests/integration/test_save.py +3 -2
  234. umap/tests/integration/test_star.py +13 -9
  235. umap/tests/integration/test_tableeditor.py +8 -7
  236. umap/tests/integration/test_view_marker.py +10 -0
  237. umap/tests/integration/test_websocket_sync.py +239 -64
  238. umap/tests/settings.py +2 -0
  239. umap/tests/test_datalayer.py +2 -3
  240. umap/tests/test_datalayer_views.py +20 -1
  241. umap/tests/test_empty_trash.py +10 -3
  242. umap/tests/test_map_views.py +11 -0
  243. umap/utils.py +27 -11
  244. umap/views.py +37 -6
  245. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/METADATA +22 -22
  246. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/RECORD +249 -250
  247. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/WHEEL +1 -1
  248. umap/management/commands/run_websocket_server.py +0 -23
  249. umap/settings/local_s3.py +0 -45
  250. umap/static/umap/bitbucket.png +0 -0
  251. umap/static/umap/github.png +0 -0
  252. umap/static/umap/js/umap.forms.js +0 -1242
  253. umap/static/umap/keycloak.png +0 -0
  254. umap/static/umap/openstreetmap.png +0 -0
  255. umap/static/umap/twitter.png +0 -0
  256. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
  257. umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
  258. umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
  259. umap/tests/test_websocket_server.py +0 -22
  260. umap/websocket_server.py +0 -202
  261. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/entry_points.txt +0 -0
  262. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/licenses/LICENSE +0 -0
Binary file
@@ -4,15 +4,15 @@
4
4
  #
5
5
  # Translators:
6
6
  # Joao Ponce de Leao Paulouro <joao.ponceleao@gmail.com>, 2014
7
- # lecalam, 2024
7
+ # lecalam, 2024-2025
8
8
  # Rui <xymarior@yandex.com>, 2016,2018-2019
9
9
  msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: uMap\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2024-12-24 08:39+0000\n"
13
+ "POT-Creation-Date: 2025-01-31 17:29+0000\n"
14
14
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
15
- "Last-Translator: lecalam, 2024\n"
15
+ "Last-Translator: lecalam, 2024-2025\n"
16
16
  "Language-Team: Portuguese (http://app.transifex.com/openstreetmap/umap/language/pt/)\n"
17
17
  "MIME-Version: 1.0\n"
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,11 +22,11 @@ msgstr ""
22
22
 
23
23
  #: admin.py:16
24
24
  msgid "CSV Export"
25
- msgstr ""
25
+ msgstr "Exportação CSV"
26
26
 
27
27
  #: decorators.py:60
28
28
  msgid "This map is not publicly available"
29
- msgstr ""
29
+ msgstr "Este mapa não está disponível ao público"
30
30
 
31
31
  #: middleware.py:13
32
32
  msgid "Site is readonly for maintenance"
@@ -36,7 +36,7 @@ msgstr "O site está em modo de leitura para manutenção"
36
36
  msgid "name"
37
37
  msgstr "nome"
38
38
 
39
- #: models.py:62 models.py:475
39
+ #: models.py:62 models.py:485
40
40
  msgid "description"
41
41
  msgstr "descrição"
42
42
 
@@ -56,29 +56,29 @@ msgstr "Modelo de URL no formato de mosaicos OSM"
56
56
  msgid "Order of the tilelayers in the edit box"
57
57
  msgstr "Ordem das camadas de mosaicos na caixa de edição"
58
58
 
59
- #: models.py:175 models.py:469
59
+ #: models.py:175 models.py:479
60
60
  msgid "Only editable with secret edit link"
61
61
  msgstr "Unicamente editável através de hiperligação secreta"
62
62
 
63
- #: models.py:176 models.py:470
63
+ #: models.py:176 models.py:480
64
64
  msgid "Everyone can edit"
65
65
  msgstr "Todos podem editar"
66
66
 
67
- #: models.py:179 models.py:463
67
+ #: models.py:179 models.py:473
68
68
  msgid "Everyone"
69
69
  msgstr "Todos"
70
70
 
71
- #: models.py:180 models.py:189 models.py:464
71
+ #: models.py:180 models.py:189 models.py:474
72
72
  msgid "Editors and team only"
73
73
  msgstr "Apenas editores e equipa"
74
74
 
75
- #: models.py:181 models.py:465
75
+ #: models.py:181 models.py:475
76
76
  msgid "Owner only"
77
77
  msgstr "Apenas o proprietário"
78
78
 
79
79
  #: models.py:184
80
80
  msgid "Draft (private)"
81
- msgstr ""
81
+ msgstr "Rascunho (privado)"
82
82
 
83
83
  #: models.py:185
84
84
  msgid "Everyone (public)"
@@ -92,9 +92,9 @@ msgstr "Quem tiver a hiperligação"
92
92
  msgid "Blocked"
93
93
  msgstr "Bloqueado"
94
94
 
95
- #: models.py:191
95
+ #: models.py:191 models.py:469
96
96
  msgid "Deleted"
97
- msgstr ""
97
+ msgstr "Eliminado"
98
98
 
99
99
  #: models.py:194
100
100
  msgid "center"
@@ -132,31 +132,31 @@ msgstr "editores"
132
132
  msgid "team"
133
133
  msgstr "equipa"
134
134
 
135
- #: models.py:229 models.py:491
135
+ #: models.py:229 models.py:501
136
136
  msgid "edit status"
137
137
  msgstr "editar estado"
138
138
 
139
- #: models.py:234
139
+ #: models.py:234 models.py:506
140
140
  msgid "share status"
141
141
  msgstr "partilhar estado"
142
142
 
143
- #: models.py:237 models.py:486
143
+ #: models.py:237 models.py:496
144
144
  msgid "settings"
145
145
  msgstr "parâmetros"
146
146
 
147
- #: models.py:402
147
+ #: models.py:407
148
148
  msgid "Clone of"
149
149
  msgstr "Clone de"
150
150
 
151
- #: models.py:462 models.py:468
151
+ #: models.py:468 models.py:472 models.py:478
152
152
  msgid "Inherit"
153
153
  msgstr "Herdado"
154
154
 
155
- #: models.py:481
155
+ #: models.py:491
156
156
  msgid "display on load"
157
157
  msgstr "mostrar no início"
158
158
 
159
- #: models.py:482
159
+ #: models.py:492
160
160
  msgid "Display this layer on load."
161
161
  msgstr "Mostrar esta camada ao carregar."
162
162
 
@@ -165,50 +165,64 @@ msgid ""
165
165
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
166
166
  "target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
167
167
  " permissions."
168
- msgstr ""
168
+ msgstr "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" target=\"_blank\">Descubra aqui a documentação</a> sobre como gerir as permissões do mapa."
169
169
 
170
170
  #: templates/403.html:10 templates/404.html:8
171
171
  msgid "← Go to the homepage"
172
- msgstr ""
172
+ msgstr "← Ir para a página inicial"
173
173
 
174
174
  #: templates/404.html:7
175
175
  msgid "404 Page Not Found"
176
- msgstr ""
176
+ msgstr "Página 404 não encontrada"
177
+
178
+ #: templates/auth/user_detail.html:6
179
+ #, python-format
180
+ msgid "%(current_user)s’s maps"
181
+ msgstr "Mapas de %(current_user)s"
177
182
 
178
- #: templates/auth/user_detail.html:8
183
+ #: templates/auth/user_detail.html:12
179
184
  #, python-format
180
185
  msgid "Browse %(current_user)s's maps"
181
186
  msgstr "Ver mapas de %(current_user)s"
182
187
 
183
- #: templates/auth/user_detail.html:17
188
+ #: templates/auth/user_detail.html:21
184
189
  #, python-format
185
190
  msgid "%(current_user)s has no maps."
186
191
  msgstr "%(current_user)s não tem mapas."
187
192
 
188
- #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
193
+ #: templates/auth/user_form.html:6
194
+ msgid "My Profile"
195
+ msgstr "Meu perfil"
196
+
197
+ #: templates/auth/user_form.html:24 templates/umap/team_form.html:25
189
198
  msgid "Save"
190
199
  msgstr "Guardar"
191
200
 
192
- #: templates/auth/user_form.html:27
201
+ #: templates/auth/user_form.html:30
193
202
  msgid "Your current providers"
194
203
  msgstr "Os seus fornecedores atuais"
195
204
 
196
- #: templates/auth/user_form.html:39
205
+ #: templates/auth/user_form.html:44
197
206
  msgid "Connect to another provider"
198
207
  msgstr "Conectar a outro fornecedor"
199
208
 
200
- #: templates/auth/user_form.html:42
209
+ #: templates/auth/user_form.html:47
201
210
  msgid ""
202
211
  "It's a good habit to connect your account to more than one provider, in case"
203
212
  " one provider becomes unavailable, temporarily or even permanently."
204
213
  msgstr "É um bom hábito conectar a sua conta a mais do que um fornecedor, no caso de um fornecedor ficar indisponível, temporariamente ou mesmo permanentemente."
205
214
 
206
- #: templates/auth/user_stars.html:8
215
+ #: templates/auth/user_stars.html:6
216
+ #, python-format
217
+ msgid "%(current_user)s’s starred maps"
218
+ msgstr "Mapas com estrela de %(current_user)s"
219
+
220
+ #: templates/auth/user_stars.html:12
207
221
  #, python-format
208
222
  msgid "Browse %(current_user)s's starred maps"
209
223
  msgstr "Ver mapas com estrela de %(current_user)s's"
210
224
 
211
- #: templates/auth/user_stars.html:17
225
+ #: templates/auth/user_stars.html:21
212
226
  #, python-format
213
227
  msgid "%(current_user)s has no starred maps yet."
214
228
  msgstr "%(current_user)s não tem mapas com estrela."
@@ -225,11 +239,11 @@ msgstr "Entrar"
225
239
 
226
240
  #: templates/registration/login.html:22
227
241
  msgid "To save and easily find your maps, identify yourself."
228
- msgstr ""
242
+ msgstr "Para guardar e encontrar facilmente os seus mapas, identifique-se."
229
243
 
230
244
  #: templates/registration/login.html:25
231
245
  msgid "Please log in with your account:"
232
- msgstr ""
246
+ msgstr "Inicie sessão com a sua conta:"
233
247
 
234
248
  #: templates/registration/login.html:42
235
249
  msgid "Username"
@@ -241,7 +255,11 @@ msgstr "Palavra-passe"
241
255
 
242
256
  #: templates/registration/login.html:52
243
257
  msgid "Please choose a provider:"
244
- msgstr ""
258
+ msgstr "Escolha um fornecedor:"
259
+
260
+ #: templates/umap/about.html:5 templates/umap/navigation.html:22
261
+ msgid "About"
262
+ msgstr "Sobre"
245
263
 
246
264
  #: templates/umap/about_summary.html:12
247
265
  #, python-format
@@ -410,7 +428,7 @@ msgstr "por"
410
428
  msgid "More"
411
429
  msgstr "Mais"
412
430
 
413
- #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
431
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
414
432
  msgid "Name"
415
433
  msgstr "Nome"
416
434
 
@@ -434,7 +452,7 @@ msgstr "Último guardar"
434
452
  msgid "Owner"
435
453
  msgstr "Proprietário"
436
454
 
437
- #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
455
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
438
456
  msgid "Actions"
439
457
  msgstr "Ações"
440
458
 
@@ -447,7 +465,7 @@ msgid "Share"
447
465
  msgstr "Partilhar"
448
466
 
449
467
  #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
450
- #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
468
+ #: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
451
469
  msgid "Edit"
452
470
  msgstr "Editar"
453
471
 
@@ -510,10 +528,6 @@ msgstr "Entrar"
510
528
  msgid "Sign in"
511
529
  msgstr "Criar conta"
512
530
 
513
- #: templates/umap/navigation.html:22
514
- msgid "About"
515
- msgstr "Sobre"
516
-
517
531
  #: templates/umap/navigation.html:30
518
532
  msgid "Change password"
519
533
  msgstr "Alterar palavra-passe"
@@ -522,41 +536,47 @@ msgstr "Alterar palavra-passe"
522
536
  msgid "Log out"
523
537
  msgstr "Sair"
524
538
 
525
- #: templates/umap/password_change.html:7
539
+ #: templates/umap/password_change.html:6
540
+ #: templates/umap/password_change.html:11
526
541
  msgid "Password change"
527
542
  msgstr "Alterar palavra-passe"
528
543
 
529
- #: templates/umap/password_change.html:10
544
+ #: templates/umap/password_change.html:14
530
545
  msgid ""
531
546
  "Please enter your old password, for security's sake, and then enter your new"
532
547
  " password twice so we can verify you typed it in correctly."
533
548
  msgstr "Por favor introduza a sua palavra-passe antiga, por motivos de segurança, e então introduza a sua nova palavra-passe 2 vezes para que possamos verificar se a digitou corretamente."
534
549
 
535
- #: templates/umap/password_change.html:17
550
+ #: templates/umap/password_change.html:21
536
551
  msgid "Old password"
537
552
  msgstr "Palavra-passe antiga"
538
553
 
539
- #: templates/umap/password_change.html:22
554
+ #: templates/umap/password_change.html:26
540
555
  msgid "New password"
541
556
  msgstr "Nova palavra-passe"
542
557
 
543
- #: templates/umap/password_change.html:26
558
+ #: templates/umap/password_change.html:30
544
559
  msgid "New password confirmation"
545
560
  msgstr "Confirmação da palavra-passe"
546
561
 
547
- #: templates/umap/password_change.html:27
562
+ #: templates/umap/password_change.html:31
548
563
  msgid "Change my password"
549
564
  msgstr "Alterar a minha palavra-passe"
550
565
 
551
- #: templates/umap/password_change_done.html:7
566
+ #: templates/umap/password_change_done.html:6
567
+ #: templates/umap/password_change_done.html:11
552
568
  msgid "Password change successful"
553
569
  msgstr "Alteração da palavra-passe bem sucedida"
554
570
 
555
- #: templates/umap/password_change_done.html:10
571
+ #: templates/umap/password_change_done.html:14
556
572
  msgid "Your password was changed."
557
573
  msgstr "A sua palavra-passe foi alterada"
558
574
 
559
- #: templates/umap/search.html:15
575
+ #: templates/umap/search.html:6
576
+ msgid "Explore maps"
577
+ msgstr "Explorar mapas"
578
+
579
+ #: templates/umap/search.html:19
560
580
  #, python-format
561
581
  msgid "%(count)s map found:"
562
582
  msgid_plural "%(count)s maps found:"
@@ -564,11 +584,11 @@ msgstr[0] "%(count)s mapa encontrado:"
564
584
  msgstr[1] "%(count)s mapas encontrados:"
565
585
  msgstr[2] "%(count)s mapas encontrados:"
566
586
 
567
- #: templates/umap/search.html:24
587
+ #: templates/umap/search.html:28
568
588
  msgid "No map found."
569
589
  msgstr "Não foi encontrado nenhum mapa."
570
590
 
571
- #: templates/umap/search.html:29
591
+ #: templates/umap/search.html:33
572
592
  msgid "Latest created maps"
573
593
  msgstr "Últimos mapas criados"
574
594
 
@@ -580,21 +600,34 @@ msgstr "Procurar mapas"
580
600
  msgid "Search"
581
601
  msgstr "Procurar"
582
602
 
583
- #: templates/umap/team_detail.html:10
603
+ #: templates/umap/team_confirm_delete.html:6
604
+ msgid "Team deletion"
605
+ msgstr "Eliminação de equipa"
606
+
607
+ #: templates/umap/team_detail.html:6
608
+ #, python-format
609
+ msgid "%(current_team)s’s maps"
610
+ msgstr "Mapas de %(current_team)s"
611
+
612
+ #: templates/umap/team_detail.html:14
584
613
  #, python-format
585
614
  msgid "Browse %(current_team)s's maps"
586
615
  msgstr "Ver mapas de %(current_team)s"
587
616
 
588
- #: templates/umap/team_detail.html:22
617
+ #: templates/umap/team_detail.html:26
589
618
  #, python-format
590
619
  msgid "%(current_team)s has no public maps."
591
620
  msgstr "%(current_team)s não tem mapas públicos."
592
621
 
593
- #: templates/umap/team_form.html:24
622
+ #: templates/umap/team_form.html:6
623
+ msgid "Create or edit a team"
624
+ msgstr "Criar ou editar uma equipa"
625
+
626
+ #: templates/umap/team_form.html:28
594
627
  msgid "Delete this team"
595
628
  msgstr "Eliminar esta equipa"
596
629
 
597
- #: templates/umap/team_form.html:47
630
+ #: templates/umap/team_form.html:51
598
631
  msgid "Add user"
599
632
  msgstr "Adicionar utilizador"
600
633
 
@@ -615,11 +648,15 @@ msgstr "Descarregar %(count)s mapas"
615
648
  msgid "You have no map yet."
616
649
  msgstr "Ainda não tem nenhum mapa."
617
650
 
618
- #: templates/umap/user_teams.html:17
651
+ #: templates/umap/user_teams.html:6
652
+ msgid "My Teams"
653
+ msgstr "As minhas equipas"
654
+
655
+ #: templates/umap/user_teams.html:21
619
656
  msgid "Users"
620
657
  msgstr "Utilizadores"
621
658
 
622
- #: templates/umap/user_teams.html:48
659
+ #: templates/umap/user_teams.html:52
623
660
  msgid "New team"
624
661
  msgstr "Nova equipa"
625
662
 
@@ -636,57 +673,64 @@ msgstr "A equipa “%(name)s” foi eliminada"
636
673
  msgid "View the map"
637
674
  msgstr "Ver o mapa"
638
675
 
639
- #: views.py:825
676
+ #: views.py:838
640
677
  msgid "See full screen"
641
678
  msgstr "Ver em ecrã inteiro"
642
679
 
643
- #: views.py:968
680
+ #: views.py:981
644
681
  msgid "Map editors updated with success!"
645
682
  msgstr "Os editores do mapa foram atualizados com sucesso!"
646
683
 
647
- #: views.py:1004
684
+ #: views.py:1017
648
685
  #, python-format
649
686
  msgid "The uMap edit link for your map: %(map_name)s"
650
687
  msgstr "A hiperligação de edição do uMap para o seu mapa: %(map_name)s"
651
688
 
652
- #: views.py:1007
689
+ #: views.py:1020
653
690
  #, python-format
654
691
  msgid "Here is your secret edit link: %(link)s"
655
692
  msgstr "Aqui está a hiperligação de edição secreta: %(link)s"
656
693
 
657
- #: views.py:1014
694
+ #: views.py:1027
658
695
  #, python-format
659
696
  msgid "Can't send email to %(email)s"
660
697
  msgstr "Não é possível enviar o email para %(email)s"
661
698
 
662
- #: views.py:1017
699
+ #: views.py:1030
663
700
  #, python-format
664
701
  msgid "Email sent to %(email)s"
665
702
  msgstr "Email enviado para %(email)s"
666
703
 
667
- #: views.py:1028
704
+ #: views.py:1041
668
705
  msgid "Only its owner can delete the map."
669
706
  msgstr "Só o proprietário pode eliminar o mapa."
670
707
 
671
- #: views.py:1031
708
+ #: views.py:1044
672
709
  msgid "Map successfully deleted."
673
710
  msgstr "Mapa eliminado com sucesso."
674
711
 
675
- #: views.py:1057
712
+ #: views.py:1070
676
713
  #, python-format
677
714
  msgid ""
678
715
  "Your map has been cloned! If you want to edit this map from another "
679
716
  "computer, please use this link: %(anonymous_url)s"
680
717
  msgstr "O seu mapa foi clonado! Se quiser editar este mapa noutro computador, por favor utilize esta hiperligação: %(anonymous_url)s"
681
718
 
682
- #: views.py:1062
719
+ #: views.py:1075
683
720
  msgid "Congratulations, your map has been cloned!"
684
721
  msgstr "Parabéns, o seu mapa foi clonado!"
685
722
 
686
- #: views.py:1313
723
+ #: views.py:1329
687
724
  msgid "Layer successfully deleted."
688
725
  msgstr "Camada eliminada com sucesso."
689
726
 
690
- #: views.py:1335
727
+ #: views.py:1351
691
728
  msgid "Permissions updated with success!"
692
729
  msgstr "Permissões atualizadas com sucesso!"
730
+
731
+ #: views.py:1430
732
+ #, python-format
733
+ msgid ""
734
+ "Using “%(name)s” to authenticate is deprecated. Please configure another "
735
+ "provider in your profile page."
736
+ msgstr "A utilização de “%(name)s” para autenticação está desatualizada. Configure outro fornecedor na sua página de perfil."
Binary file