umap-project 2.5.1__py3-none-any.whl → 2.6.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 (276) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +9 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +8 -12
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +993 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/importers/overpass.js +22 -8
  68. umap/static/umap/js/modules/permissions.js +280 -0
  69. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  70. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  71. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  72. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  73. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  74. umap/static/umap/js/modules/rendering/popup.js +99 -0
  75. umap/static/umap/js/modules/rendering/template.js +217 -0
  76. umap/static/umap/js/modules/rendering/ui.js +610 -0
  77. umap/static/umap/js/modules/rules.js +16 -3
  78. umap/static/umap/js/modules/schema.js +25 -1
  79. umap/static/umap/js/modules/share.js +66 -45
  80. umap/static/umap/js/modules/sync/updaters.js +9 -10
  81. umap/static/umap/js/modules/tableeditor.js +7 -7
  82. umap/static/umap/js/modules/ui/dialog.js +8 -4
  83. umap/static/umap/js/modules/utils.js +22 -13
  84. umap/static/umap/js/umap.controls.js +80 -146
  85. umap/static/umap/js/umap.core.js +9 -9
  86. umap/static/umap/js/umap.forms.js +41 -17
  87. umap/static/umap/js/umap.js +72 -65
  88. umap/static/umap/locale/am_ET.js +8 -2
  89. umap/static/umap/locale/am_ET.json +8 -2
  90. umap/static/umap/locale/ar.js +8 -2
  91. umap/static/umap/locale/ar.json +8 -2
  92. umap/static/umap/locale/ast.js +8 -2
  93. umap/static/umap/locale/ast.json +8 -2
  94. umap/static/umap/locale/bg.js +8 -2
  95. umap/static/umap/locale/bg.json +8 -2
  96. umap/static/umap/locale/br.js +42 -36
  97. umap/static/umap/locale/br.json +42 -36
  98. umap/static/umap/locale/ca.js +67 -61
  99. umap/static/umap/locale/ca.json +67 -61
  100. umap/static/umap/locale/cs_CZ.js +8 -2
  101. umap/static/umap/locale/cs_CZ.json +8 -2
  102. umap/static/umap/locale/da.js +8 -2
  103. umap/static/umap/locale/da.json +8 -2
  104. umap/static/umap/locale/de.js +143 -137
  105. umap/static/umap/locale/de.json +143 -137
  106. umap/static/umap/locale/el.js +54 -48
  107. umap/static/umap/locale/el.json +54 -48
  108. umap/static/umap/locale/en.js +10 -2
  109. umap/static/umap/locale/en.json +10 -2
  110. umap/static/umap/locale/en_US.json +8 -2
  111. umap/static/umap/locale/es.js +8 -2
  112. umap/static/umap/locale/es.json +8 -2
  113. umap/static/umap/locale/et.js +8 -2
  114. umap/static/umap/locale/et.json +8 -2
  115. umap/static/umap/locale/eu.js +346 -338
  116. umap/static/umap/locale/eu.json +346 -338
  117. umap/static/umap/locale/fa_IR.js +415 -407
  118. umap/static/umap/locale/fa_IR.json +415 -407
  119. umap/static/umap/locale/fi.js +8 -2
  120. umap/static/umap/locale/fi.json +8 -2
  121. umap/static/umap/locale/fr.js +11 -3
  122. umap/static/umap/locale/fr.json +11 -3
  123. umap/static/umap/locale/gl.js +8 -2
  124. umap/static/umap/locale/gl.json +8 -2
  125. umap/static/umap/locale/he.js +8 -2
  126. umap/static/umap/locale/he.json +8 -2
  127. umap/static/umap/locale/hr.js +8 -2
  128. umap/static/umap/locale/hr.json +8 -2
  129. umap/static/umap/locale/hu.js +31 -23
  130. umap/static/umap/locale/hu.json +31 -23
  131. umap/static/umap/locale/id.js +8 -2
  132. umap/static/umap/locale/id.json +8 -2
  133. umap/static/umap/locale/is.js +8 -2
  134. umap/static/umap/locale/is.json +8 -2
  135. umap/static/umap/locale/it.js +8 -2
  136. umap/static/umap/locale/it.json +8 -2
  137. umap/static/umap/locale/ja.js +8 -2
  138. umap/static/umap/locale/ja.json +8 -2
  139. umap/static/umap/locale/ko.js +8 -2
  140. umap/static/umap/locale/ko.json +8 -2
  141. umap/static/umap/locale/lt.js +8 -2
  142. umap/static/umap/locale/lt.json +8 -2
  143. umap/static/umap/locale/ms.js +8 -2
  144. umap/static/umap/locale/ms.json +8 -2
  145. umap/static/umap/locale/nl.js +8 -2
  146. umap/static/umap/locale/nl.json +8 -2
  147. umap/static/umap/locale/no.js +8 -2
  148. umap/static/umap/locale/no.json +8 -2
  149. umap/static/umap/locale/pl.js +54 -48
  150. umap/static/umap/locale/pl.json +54 -48
  151. umap/static/umap/locale/pl_PL.json +8 -2
  152. umap/static/umap/locale/pt.js +24 -18
  153. umap/static/umap/locale/pt.json +24 -18
  154. umap/static/umap/locale/pt_BR.js +8 -2
  155. umap/static/umap/locale/pt_BR.json +8 -2
  156. umap/static/umap/locale/pt_PT.js +214 -208
  157. umap/static/umap/locale/pt_PT.json +214 -208
  158. umap/static/umap/locale/ro.js +8 -2
  159. umap/static/umap/locale/ro.json +8 -2
  160. umap/static/umap/locale/ru.js +8 -2
  161. umap/static/umap/locale/ru.json +8 -2
  162. umap/static/umap/locale/sk_SK.js +8 -2
  163. umap/static/umap/locale/sk_SK.json +8 -2
  164. umap/static/umap/locale/sl.js +8 -2
  165. umap/static/umap/locale/sl.json +8 -2
  166. umap/static/umap/locale/sr.js +8 -2
  167. umap/static/umap/locale/sr.json +8 -2
  168. umap/static/umap/locale/sv.js +8 -2
  169. umap/static/umap/locale/sv.json +8 -2
  170. umap/static/umap/locale/th_TH.js +33 -27
  171. umap/static/umap/locale/th_TH.json +33 -27
  172. umap/static/umap/locale/tr.js +8 -2
  173. umap/static/umap/locale/tr.json +8 -2
  174. umap/static/umap/locale/uk_UA.js +8 -2
  175. umap/static/umap/locale/uk_UA.json +8 -2
  176. umap/static/umap/locale/vi.js +8 -2
  177. umap/static/umap/locale/vi.json +8 -2
  178. umap/static/umap/locale/vi_VN.json +8 -2
  179. umap/static/umap/locale/zh.js +8 -2
  180. umap/static/umap/locale/zh.json +8 -2
  181. umap/static/umap/locale/zh_CN.json +8 -2
  182. umap/static/umap/locale/zh_TW.Big5.json +8 -2
  183. umap/static/umap/locale/zh_TW.js +102 -96
  184. umap/static/umap/locale/zh_TW.json +102 -96
  185. umap/static/umap/map.css +111 -108
  186. umap/static/umap/nav.css +19 -10
  187. umap/static/umap/unittests/utils.js +230 -107
  188. umap/static/umap/vars.css +1 -0
  189. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  190. umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
  191. umap/storage.py +1 -0
  192. umap/templates/404.html +5 -1
  193. umap/templates/500.html +3 -1
  194. umap/templates/auth/user_detail.html +8 -2
  195. umap/templates/auth/user_form.html +19 -10
  196. umap/templates/auth/user_stars.html +8 -2
  197. umap/templates/base.html +1 -0
  198. umap/templates/registration/login.html +18 -3
  199. umap/templates/umap/about.html +1 -0
  200. umap/templates/umap/about_summary.html +22 -7
  201. umap/templates/umap/components/alerts/alert.html +42 -21
  202. umap/templates/umap/content.html +2 -0
  203. umap/templates/umap/content_footer.html +7 -3
  204. umap/templates/umap/css.html +1 -0
  205. umap/templates/umap/dashboard_menu.html +15 -0
  206. umap/templates/umap/home.html +14 -4
  207. umap/templates/umap/js.html +4 -9
  208. umap/templates/umap/login_popup_end.html +10 -4
  209. umap/templates/umap/map_detail.html +8 -2
  210. umap/templates/umap/map_fragment.html +3 -1
  211. umap/templates/umap/map_init.html +2 -1
  212. umap/templates/umap/map_list.html +6 -3
  213. umap/templates/umap/map_table.html +36 -12
  214. umap/templates/umap/messages.html +0 -1
  215. umap/templates/umap/navigation.html +2 -1
  216. umap/templates/umap/password_change.html +5 -1
  217. umap/templates/umap/password_change_done.html +8 -2
  218. umap/templates/umap/search.html +8 -2
  219. umap/templates/umap/search_bar.html +1 -0
  220. umap/templates/umap/team_confirm_delete.html +19 -0
  221. umap/templates/umap/team_detail.html +27 -0
  222. umap/templates/umap/team_form.html +60 -0
  223. umap/templates/umap/user_dashboard.html +7 -9
  224. umap/templates/umap/user_teams.html +51 -0
  225. umap/tests/base.py +8 -1
  226. umap/tests/conftest.py +6 -0
  227. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  228. umap/tests/fixtures/test_upload_georss.xml +20 -0
  229. umap/tests/integration/conftest.py +18 -4
  230. umap/tests/integration/helpers.py +12 -0
  231. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  232. umap/tests/integration/test_basics.py +29 -0
  233. umap/tests/integration/test_browser.py +20 -0
  234. umap/tests/integration/test_caption.py +20 -0
  235. umap/tests/integration/test_circles_layer.py +69 -0
  236. umap/tests/integration/test_conditional_rules.py +102 -17
  237. umap/tests/integration/test_draw_polygon.py +138 -13
  238. umap/tests/integration/test_draw_polyline.py +8 -18
  239. umap/tests/integration/test_edit_datalayer.py +3 -3
  240. umap/tests/integration/test_import.py +124 -5
  241. umap/tests/integration/test_owned_map.py +21 -13
  242. umap/tests/integration/test_querystring.py +7 -0
  243. umap/tests/integration/test_team.py +47 -0
  244. umap/tests/integration/test_tilelayer.py +19 -2
  245. umap/tests/integration/test_view_marker.py +28 -1
  246. umap/tests/integration/test_websocket_sync.py +5 -5
  247. umap/tests/test_datalayer.py +32 -7
  248. umap/tests/test_datalayer_views.py +1 -1
  249. umap/tests/test_map.py +30 -4
  250. umap/tests/test_map_views.py +2 -2
  251. umap/tests/test_statics.py +40 -0
  252. umap/tests/test_team_views.py +131 -0
  253. umap/tests/test_views.py +15 -1
  254. umap/urls.py +23 -13
  255. umap/views.py +116 -10
  256. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
  257. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
  258. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  259. umap/static/umap/js/umap.features.js +0 -1290
  260. umap/static/umap/js/umap.layer.js +0 -1837
  261. umap/static/umap/js/umap.permissions.js +0 -208
  262. umap/static/umap/js/umap.popup.js +0 -341
  263. umap/static/umap/test/TableEditor.js +0 -104
  264. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  265. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  266. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  267. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  268. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  269. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  270. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  271. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  272. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  273. umap/tests/integration/test_statics.py +0 -47
  274. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
  275. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
  276. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -10,7 +10,7 @@ msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: uMap\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2024-06-21 19:58+0000\n"
13
+ "POT-Creation-Date: 2024-08-30 18:23+0000\n"
14
14
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
15
15
  "Last-Translator: lecalam, 2024\n"
16
16
  "Language-Team: Portuguese (http://app.transifex.com/openstreetmap/umap/language/pt/)\n"
@@ -28,7 +28,7 @@ msgstr "Unicamente editável através de hiperligação secreta"
28
28
  msgid "Everyone can edit"
29
29
  msgstr "Todos podem editar"
30
30
 
31
- #: forms.py:69 models.py:389
31
+ #: forms.py:69 models.py:423
32
32
  msgid "Inherit"
33
33
  msgstr "Herdado"
34
34
 
@@ -36,242 +36,238 @@ msgstr "Herdado"
36
36
  msgid "Site is readonly for maintenance"
37
37
  msgstr "O site está em modo de leitura para manutenção"
38
38
 
39
- #: models.py:53
39
+ #: models.py:54 models.py:73
40
40
  msgid "name"
41
41
  msgstr "nome"
42
42
 
43
- #: models.py:84
43
+ #: models.py:56 models.py:433
44
+ msgid "description"
45
+ msgstr "descrição"
46
+
47
+ #: models.py:104
44
48
  msgid "details"
45
49
  msgstr "detalhes"
46
50
 
47
- #: models.py:85
51
+ #: models.py:105
48
52
  msgid "Link to a page where the licence is detailed."
49
53
  msgstr "Hiperligação para uma página detalhando a licença."
50
54
 
51
- #: models.py:95
55
+ #: models.py:115
52
56
  msgid "URL template using OSM tile format"
53
57
  msgstr "Modelo de URL no formato de mosaicos OSM"
54
58
 
55
- #: models.py:101
59
+ #: models.py:121
56
60
  msgid "Order of the tilelayers in the edit box"
57
61
  msgstr "Ordem das camadas de mosaicos na caixa de edição"
58
62
 
59
- #: models.py:147 models.py:390
63
+ #: models.py:167 models.py:424
60
64
  msgid "Everyone"
61
65
  msgstr "Todos"
62
66
 
63
- #: models.py:148 models.py:154 models.py:391
64
- msgid "Editors only"
65
- msgstr "Apenas editores"
67
+ #: models.py:168 models.py:174 models.py:425
68
+ msgid "Editors and team only"
69
+ msgstr ""
66
70
 
67
- #: models.py:149 models.py:392
71
+ #: models.py:169 models.py:426
68
72
  msgid "Owner only"
69
73
  msgstr "Apenas o proprietário"
70
74
 
71
- #: models.py:152
75
+ #: models.py:172
72
76
  msgid "Everyone (public)"
73
77
  msgstr "Todos (público)"
74
78
 
75
- #: models.py:153
79
+ #: models.py:173
76
80
  msgid "Anyone with link"
77
81
  msgstr "Quem tiver a hiperligação"
78
82
 
79
- #: models.py:155
83
+ #: models.py:175
80
84
  msgid "Blocked"
81
85
  msgstr "Bloqueado"
82
86
 
83
- #: models.py:158
87
+ #: models.py:178
84
88
  msgid "center"
85
89
  msgstr "centro"
86
90
 
87
- #: models.py:159
91
+ #: models.py:179
88
92
  msgid "zoom"
89
93
  msgstr "zoom"
90
94
 
91
- #: models.py:161
95
+ #: models.py:181
92
96
  msgid "locate"
93
97
  msgstr "localizar"
94
98
 
95
- #: models.py:161
99
+ #: models.py:181
96
100
  msgid "Locate user on load?"
97
101
  msgstr "Localizar utilizador no início?"
98
102
 
99
- #: models.py:165
103
+ #: models.py:185
100
104
  msgid "Choose the map licence."
101
105
  msgstr "Escolha uma licença para o mapa."
102
106
 
103
- #: models.py:166
107
+ #: models.py:186
104
108
  msgid "licence"
105
109
  msgstr "licença"
106
110
 
107
- #: models.py:177
111
+ #: models.py:197
108
112
  msgid "owner"
109
113
  msgstr "proprietário"
110
114
 
111
- #: models.py:181
115
+ #: models.py:201
112
116
  msgid "editors"
113
117
  msgstr "editores"
114
118
 
115
- #: models.py:186 models.py:413
119
+ #: models.py:207
120
+ msgid "team"
121
+ msgstr ""
122
+
123
+ #: models.py:213 models.py:447
116
124
  msgid "edit status"
117
125
  msgstr "editar estado"
118
126
 
119
- #: models.py:191
127
+ #: models.py:218
120
128
  msgid "share status"
121
129
  msgstr "partilhar estado"
122
130
 
123
- #: models.py:194 models.py:408
131
+ #: models.py:221 models.py:442
124
132
  msgid "settings"
125
133
  msgstr "parâmetros"
126
134
 
127
- #: models.py:330
135
+ #: models.py:364
128
136
  msgid "Clone of"
129
137
  msgstr "Clone de"
130
138
 
131
- #: models.py:399
132
- msgid "description"
133
- msgstr "descrição"
134
-
135
- #: models.py:403
139
+ #: models.py:437
136
140
  msgid "display on load"
137
141
  msgstr "mostrar no início"
138
142
 
139
- #: models.py:404
143
+ #: models.py:438
140
144
  msgid "Display this layer on load."
141
145
  msgstr "Mostrar esta camada ao carregar."
142
146
 
143
- #: templates/404.html:6
147
+ #: templates/404.html:8
144
148
  msgid "Take me to the home page"
145
149
  msgstr "Ir para a página principal"
146
150
 
147
- #: templates/auth/user_detail.html:5
151
+ #: templates/auth/user_detail.html:8
148
152
  #, python-format
149
153
  msgid "Browse %(current_user)s's maps"
150
154
  msgstr "Ver mapas de %(current_user)s"
151
155
 
152
- #: templates/auth/user_detail.html:12
156
+ #: templates/auth/user_detail.html:17
153
157
  #, python-format
154
158
  msgid "%(current_user)s has no maps."
155
159
  msgstr "%(current_user)s não tem mapas."
156
160
 
157
- #: templates/auth/user_form.html:6
158
- msgid "My Maps"
159
- msgstr "Meus mapas"
160
-
161
- #: templates/auth/user_form.html:7
162
- msgid "My Profile"
163
- msgstr "Meu perfil"
164
-
165
- #: templates/auth/user_form.html:20
161
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
166
162
  msgid "Save"
167
163
  msgstr "Guardar"
168
164
 
169
- #: templates/auth/user_form.html:25
165
+ #: templates/auth/user_form.html:27
170
166
  msgid "Your current providers"
171
167
  msgstr "Os seus fornecedores atuais"
172
168
 
173
- #: templates/auth/user_form.html:31
169
+ #: templates/auth/user_form.html:39
174
170
  msgid "Connect to another provider"
175
171
  msgstr "Conectar a outro fornecedor"
176
172
 
177
- #: templates/auth/user_form.html:33
173
+ #: templates/auth/user_form.html:42
178
174
  msgid ""
179
175
  "It's a good habit to connect your account to more than one provider, in case"
180
176
  " one provider becomes unavailable, temporarily or even permanently."
181
177
  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."
182
178
 
183
- #: templates/auth/user_stars.html:5
179
+ #: templates/auth/user_stars.html:8
184
180
  #, python-format
185
181
  msgid "Browse %(current_user)s's starred maps"
186
182
  msgstr "Ver mapas com estrela de %(current_user)s's"
187
183
 
188
- #: templates/auth/user_stars.html:12
184
+ #: templates/auth/user_stars.html:17
189
185
  #, python-format
190
186
  msgid "%(current_user)s has no starred maps yet."
191
187
  msgstr "%(current_user)s não tem mapas com estrela."
192
188
 
193
- #: templates/base.html:12
189
+ #: templates/base.html:13
194
190
  msgid ""
195
191
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
196
192
  "them in your site."
197
193
  msgstr "uMap permite-lhe criar mapas com camadas do OpenStreetMap num minuto e incorporá-los no seu site."
198
194
 
199
- #: templates/registration/login.html:16
195
+ #: templates/registration/login.html:6 templates/registration/login.html:45
196
+ msgid "Login"
197
+ msgstr "Entrar"
198
+
199
+ #: templates/registration/login.html:24
200
200
  msgid "Please log in with your account"
201
201
  msgstr "Por favor entre na sua conta"
202
202
 
203
- #: templates/registration/login.html:28
203
+ #: templates/registration/login.html:41
204
204
  msgid "Username"
205
205
  msgstr "Nome de utilizador"
206
206
 
207
- #: templates/registration/login.html:31
207
+ #: templates/registration/login.html:44
208
208
  msgid "Password"
209
209
  msgstr "Palavra-passe"
210
210
 
211
- #: templates/registration/login.html:32
212
- msgid "Login"
213
- msgstr "Entrar"
214
-
215
- #: templates/registration/login.html:37
211
+ #: templates/registration/login.html:51
216
212
  msgid "Please choose a provider"
217
213
  msgstr "Por favor escolha um fornecedor"
218
214
 
219
- #: templates/umap/about_summary.html:11
215
+ #: templates/umap/about_summary.html:12
220
216
  #, python-format
221
217
  msgid ""
222
218
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
223
219
  "layers in a minute and embed them in your site."
224
220
  msgstr "O uMap permite criar mapas através de camadas do <a href=\"%(osm_url)s\" />OpenStreetMap</a> num minuto e mostrá-los no seu site."
225
221
 
226
- #: templates/umap/about_summary.html:21
222
+ #: templates/umap/about_summary.html:23
227
223
  msgid "Choose the layers of your map"
228
224
  msgstr "Escolha as camadas do mapa"
229
225
 
230
- #: templates/umap/about_summary.html:22
226
+ #: templates/umap/about_summary.html:26
231
227
  msgid "Add POIs: markers, lines, polygons..."
232
228
  msgstr "Adicione POIs: marcadores, linhas, polígonos..."
233
229
 
234
- #: templates/umap/about_summary.html:23
230
+ #: templates/umap/about_summary.html:29
235
231
  msgid "Manage POIs colours and icons"
236
232
  msgstr "Altere as cores dos POI e ícones"
237
233
 
238
- #: templates/umap/about_summary.html:24
234
+ #: templates/umap/about_summary.html:32
239
235
  msgid "Manage map options: display a minimap, locate user on load…"
240
236
  msgstr "Configure diversas opções: mostrar um minimapa, localizar o utilizador ao carregar..."
241
237
 
242
- #: templates/umap/about_summary.html:25
238
+ #: templates/umap/about_summary.html:35
243
239
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
244
240
  msgstr "Importe dados geo-estruturados em lote (geojson, gpx, kml, osm...)"
245
241
 
246
- #: templates/umap/about_summary.html:26
242
+ #: templates/umap/about_summary.html:38
247
243
  msgid "Choose the license for your data"
248
244
  msgstr "Escolha uma licença para os seus dados"
249
245
 
250
- #: templates/umap/about_summary.html:27
246
+ #: templates/umap/about_summary.html:41
251
247
  msgid "Embed and share your map"
252
248
  msgstr "Exporte e partilhe o seu mapa"
253
249
 
254
- #: templates/umap/about_summary.html:37
250
+ #: templates/umap/about_summary.html:52
255
251
  #, python-format
256
252
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
257
253
  msgstr "E está disponível em <a href=\"%(repo_url)s\">código aberto</a>!"
258
254
 
259
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
260
- #: templates/umap/user_dashboard.html:42
255
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
256
+ #: templates/umap/user_dashboard.html:40
261
257
  msgid "Create a map"
262
258
  msgstr "Criar um mapa"
263
259
 
264
- #: templates/umap/about_summary.html:51
260
+ #: templates/umap/about_summary.html:66
265
261
  msgid "Play with the demo"
266
262
  msgstr "Testar a demo"
267
263
 
268
- #: templates/umap/components/alerts/alert.html:14
269
- #: templates/umap/components/alerts/alert.html:49
270
- #: templates/umap/components/alerts/alert.html:71
264
+ #: templates/umap/components/alerts/alert.html:15
265
+ #: templates/umap/components/alerts/alert.html:64
266
+ #: templates/umap/components/alerts/alert.html:92
271
267
  msgid "Close"
272
268
  msgstr "Fechar"
273
269
 
274
- #: templates/umap/components/alerts/alert.html:27
270
+ #: templates/umap/components/alerts/alert.html:30
275
271
  #, python-format
276
272
  msgid ""
277
273
  "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
@@ -279,45 +275,45 @@ msgid ""
279
275
  "target=\"_blank\">log in</a>."
280
276
  msgstr "Sugestão: para voltar a encontrar facilmente os seus mapas, <a href=\"%(login_url)s\" target=\"_blank\">crie uma conta</a> ou <a href=\"%(login_url)s\" target=\"_blank\">inicie a sessão</a>."
281
277
 
282
- #: templates/umap/components/alerts/alert.html:30
278
+ #: templates/umap/components/alerts/alert.html:35
283
279
  msgid "Here is your secret link to edit the map, please keep it safe:"
284
280
  msgstr "Aqui está a sua hiperligação secreta para editar o mapa, por favor mantenha-a segura:"
285
281
 
286
- #: templates/umap/components/alerts/alert.html:33
282
+ #: templates/umap/components/alerts/alert.html:39
287
283
  msgid "Copy link"
288
284
  msgstr "Copiar hiperligação"
289
285
 
290
- #: templates/umap/components/alerts/alert.html:39
286
+ #: templates/umap/components/alerts/alert.html:46
291
287
  msgid "Enter your email address to receive the secret link:"
292
288
  msgstr "Introduza o seu endereço de e-mail para receber a hiperligação secreta:"
293
289
 
294
- #: templates/umap/components/alerts/alert.html:41
290
+ #: templates/umap/components/alerts/alert.html:52
295
291
  msgid "Email"
296
292
  msgstr "E-mail"
297
293
 
298
- #: templates/umap/components/alerts/alert.html:42
294
+ #: templates/umap/components/alerts/alert.html:55
299
295
  msgid "Send me the link"
300
296
  msgstr "Envie-me a hiperligação"
301
297
 
302
- #: templates/umap/components/alerts/alert.html:63
298
+ #: templates/umap/components/alerts/alert.html:79
303
299
  msgid "See their edits in another tab"
304
300
  msgstr "Ver as edições deles noutro separador"
305
301
 
306
- #: templates/umap/components/alerts/alert.html:64
302
+ #: templates/umap/components/alerts/alert.html:82
307
303
  msgid "Keep your changes and loose theirs"
308
304
  msgstr "Manter as minhas mudanças e perder as deles"
309
305
 
310
- #: templates/umap/components/alerts/alert.html:65
306
+ #: templates/umap/components/alerts/alert.html:85
311
307
  msgid "Keep their changes and loose yours"
312
308
  msgstr "Manter as mudanças deles e perder as minhas"
313
309
 
314
- #: templates/umap/content.html:24
310
+ #: templates/umap/content.html:26
315
311
  msgid ""
316
312
  "This instance of uMap is currently in read only mode, no creation/edit is "
317
313
  "allowed."
318
314
  msgstr "Esta instância do uMap está atualmente em modo só de leitura, não sendo permitida a criação/edição."
319
315
 
320
- #: templates/umap/content.html:32
316
+ #: templates/umap/content.html:34
321
317
  #, python-format
322
318
  msgid ""
323
319
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -326,176 +322,210 @@ msgid ""
326
322
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
327
323
  msgstr "Esta é uma versão de demonstração, utilizada para testes e pré-lançamentos. Se precisar de uma versão estável, por favor utilize <a href=\"%(stable_url)s\">%(stable_url)s</a>. Pode também alojar a sua própria instância, e é em <a href=\"%(repo_url)s\">código aberto</a>!"
328
324
 
329
- #: templates/umap/home.html:11
325
+ #: templates/umap/content_footer.html:5
326
+ msgid "An OpenStreetMap project"
327
+ msgstr ""
328
+
329
+ #: templates/umap/content_footer.html:6
330
+ msgid "version"
331
+ msgstr ""
332
+
333
+ #: templates/umap/content_footer.html:7
334
+ msgid "Hosted by"
335
+ msgstr ""
336
+
337
+ #: templates/umap/content_footer.html:8
338
+ msgid "Contact"
339
+ msgstr ""
340
+
341
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
342
+ msgid "Help"
343
+ msgstr "Ajuda"
344
+
345
+ #: templates/umap/dashboard_menu.html:6
346
+ #, python-format
347
+ msgid "My Maps (%(count)s)"
348
+ msgstr "Meus mapas (%(count)s)"
349
+
350
+ #: templates/umap/dashboard_menu.html:8
351
+ msgid "My Maps"
352
+ msgstr "Meus mapas"
353
+
354
+ #: templates/umap/dashboard_menu.html:11
355
+ msgid "My profile"
356
+ msgstr "Meu perfil"
357
+
358
+ #: templates/umap/dashboard_menu.html:13
359
+ msgid "My teams"
360
+ msgstr ""
361
+
362
+ #: templates/umap/home.html:14
330
363
  msgid "Map of the uMaps"
331
364
  msgstr "Mapa dos uMaps"
332
365
 
333
- #: templates/umap/home.html:17
366
+ #: templates/umap/home.html:24
334
367
  msgid "Get inspired, browse maps"
335
368
  msgstr "Inspire-se, explore os mapas"
336
369
 
337
- #: templates/umap/login_popup_end.html:2
370
+ #: templates/umap/login_popup_end.html:4
338
371
  msgid "You are logged in. Continuing..."
339
372
  msgstr "Sucesso na identificação. Continuando..."
340
373
 
341
- #: templates/umap/map_list.html:9 views.py:348
374
+ #: templates/umap/map_list.html:10 views.py:433
342
375
  msgid "by"
343
376
  msgstr "por"
344
377
 
345
- #: templates/umap/map_list.html:17
378
+ #: templates/umap/map_list.html:18
346
379
  msgid "More"
347
380
  msgstr "Mais"
348
381
 
349
- #: templates/umap/map_table.html:6
382
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
350
383
  msgid "Name"
351
384
  msgstr "Nome"
352
385
 
353
- #: templates/umap/map_table.html:7
386
+ #: templates/umap/map_table.html:11
354
387
  msgid "Preview"
355
388
  msgstr "Pré-visualizar"
356
389
 
357
- #: templates/umap/map_table.html:8
390
+ #: templates/umap/map_table.html:14
358
391
  msgid "Who can see"
359
392
  msgstr "Quem pode ver"
360
393
 
361
- #: templates/umap/map_table.html:9
394
+ #: templates/umap/map_table.html:17
362
395
  msgid "Who can edit"
363
396
  msgstr "Quem pode editar"
364
397
 
365
- #: templates/umap/map_table.html:10
398
+ #: templates/umap/map_table.html:20
366
399
  msgid "Last save"
367
400
  msgstr "Último guardar"
368
401
 
369
- #: templates/umap/map_table.html:11
402
+ #: templates/umap/map_table.html:23
370
403
  msgid "Owner"
371
404
  msgstr "Proprietário"
372
405
 
373
- #: templates/umap/map_table.html:12
406
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
374
407
  msgid "Actions"
375
408
  msgstr "Ações"
376
409
 
377
- #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
410
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
378
411
  msgid "Open preview"
379
412
  msgstr "Abrir pré-visualização"
380
413
 
381
- #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
414
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
382
415
  msgid "Share"
383
416
  msgstr "Partilhar"
384
417
 
385
- #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
418
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
419
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
386
420
  msgid "Edit"
387
421
  msgstr "Editar"
388
422
 
389
- #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
423
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
390
424
  msgid "Download"
391
425
  msgstr "Descarregar"
392
426
 
393
- #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
427
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
394
428
  msgid "Clone"
395
429
  msgstr "Clonar"
396
430
 
397
- #: templates/umap/map_table.html:77 templates/umap/map_table.html:79
431
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
398
432
  msgid "Delete"
399
433
  msgstr "Eliminar"
400
434
 
401
- #: templates/umap/map_table.html:93
435
+ #: templates/umap/map_table.html:117
402
436
  msgid "first"
403
437
  msgstr "primeiro"
404
438
 
405
- #: templates/umap/map_table.html:94
439
+ #: templates/umap/map_table.html:118
406
440
  msgid "previous"
407
441
  msgstr "anterior"
408
442
 
409
- #: templates/umap/map_table.html:102
443
+ #: templates/umap/map_table.html:126
410
444
  #, python-format
411
445
  msgid "Page %(maps_number)s of %(num_pages)s"
412
446
  msgstr "Página %(maps_number)s de %(num_pages)s"
413
447
 
414
- #: templates/umap/map_table.html:107
448
+ #: templates/umap/map_table.html:131
415
449
  msgid "next"
416
450
  msgstr "seguinte"
417
451
 
418
- #: templates/umap/map_table.html:108
452
+ #: templates/umap/map_table.html:132
419
453
  msgid "last"
420
454
  msgstr "+ultimo"
421
455
 
422
- #: templates/umap/map_table.html:116
456
+ #: templates/umap/map_table.html:140
423
457
  #, python-format
424
458
  msgid "Lines per page: %(per_page)s"
425
459
  msgstr "Linhas por página: %(per_page)s"
426
460
 
427
- #: templates/umap/map_table.html:121
461
+ #: templates/umap/map_table.html:145
428
462
  #, python-format
429
463
  msgid "%(count)s maps"
430
464
  msgstr "%(count)s mapas"
431
465
 
432
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
466
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
433
467
  msgid "My Dashboard"
434
468
  msgstr "O meu painel de controlo"
435
469
 
436
- #: templates/umap/navigation.html:13
470
+ #: templates/umap/navigation.html:14
437
471
  msgid "Starred maps"
438
472
  msgstr "Mapas com estrela"
439
473
 
440
- #: templates/umap/navigation.html:17
474
+ #: templates/umap/navigation.html:18
441
475
  msgid "Log in"
442
476
  msgstr "Entrar"
443
477
 
444
- #: templates/umap/navigation.html:17
478
+ #: templates/umap/navigation.html:18
445
479
  msgid "Sign in"
446
480
  msgstr "Criar conta"
447
481
 
448
- #: templates/umap/navigation.html:21
482
+ #: templates/umap/navigation.html:22
449
483
  msgid "About"
450
484
  msgstr "Sobre"
451
485
 
452
- #: templates/umap/navigation.html:24
453
- msgid "Help"
454
- msgstr "Ajuda"
455
-
456
- #: templates/umap/navigation.html:29
486
+ #: templates/umap/navigation.html:30
457
487
  msgid "Change password"
458
488
  msgstr "Alterar palavra-passe"
459
489
 
460
- #: templates/umap/navigation.html:33
490
+ #: templates/umap/navigation.html:34
461
491
  msgid "Log out"
462
492
  msgstr "Sair"
463
493
 
464
- #: templates/umap/password_change.html:4
494
+ #: templates/umap/password_change.html:7
465
495
  msgid "Password change"
466
496
  msgstr "Alterar palavra-passe"
467
497
 
468
- #: templates/umap/password_change.html:6
498
+ #: templates/umap/password_change.html:10
469
499
  msgid ""
470
500
  "Please enter your old password, for security's sake, and then enter your new"
471
501
  " password twice so we can verify you typed it in correctly."
472
502
  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."
473
503
 
474
- #: templates/umap/password_change.html:13
504
+ #: templates/umap/password_change.html:17
475
505
  msgid "Old password"
476
506
  msgstr "Palavra-passe antiga"
477
507
 
478
- #: templates/umap/password_change.html:18
508
+ #: templates/umap/password_change.html:22
479
509
  msgid "New password"
480
510
  msgstr "Nova palavra-passe"
481
511
 
482
- #: templates/umap/password_change.html:22
512
+ #: templates/umap/password_change.html:26
483
513
  msgid "New password confirmation"
484
514
  msgstr "Confirmação da palavra-passe"
485
515
 
486
- #: templates/umap/password_change.html:23
516
+ #: templates/umap/password_change.html:27
487
517
  msgid "Change my password"
488
518
  msgstr "Alterar a minha palavra-passe"
489
519
 
490
- #: templates/umap/password_change_done.html:4
520
+ #: templates/umap/password_change_done.html:7
491
521
  msgid "Password change successful"
492
522
  msgstr "Alteração da palavra-passe bem sucedida"
493
523
 
494
- #: templates/umap/password_change_done.html:5
524
+ #: templates/umap/password_change_done.html:10
495
525
  msgid "Your password was changed."
496
526
  msgstr "A sua palavra-passe foi alterada"
497
527
 
498
- #: templates/umap/search.html:13
528
+ #: templates/umap/search.html:15
499
529
  #, python-format
500
530
  msgid "%(count)s map found:"
501
531
  msgid_plural "%(count)s maps found:"
@@ -503,103 +533,129 @@ msgstr[0] "%(count)s mapa encontrado:"
503
533
  msgstr[1] "%(count)s mapas encontrados:"
504
534
  msgstr[2] "%(count)s mapas encontrados:"
505
535
 
506
- #: templates/umap/search.html:21
536
+ #: templates/umap/search.html:24
507
537
  msgid "No map found."
508
538
  msgstr "Não foi encontrado nenhum mapa."
509
539
 
510
- #: templates/umap/search.html:24
540
+ #: templates/umap/search.html:29
511
541
  msgid "Latest created maps"
512
542
  msgstr "Últimos mapas criados"
513
543
 
514
- #: templates/umap/search_bar.html:3
544
+ #: templates/umap/search_bar.html:4
515
545
  msgid "Search maps"
516
546
  msgstr "Procurar mapas"
517
547
 
518
- #: templates/umap/search_bar.html:14
548
+ #: templates/umap/search_bar.html:15
519
549
  msgid "Search"
520
550
  msgstr "Procurar"
521
551
 
522
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
523
- msgid "Search my maps"
524
- msgstr "Procurar os meus mapas"
552
+ #: templates/umap/team_detail.html:10
553
+ #, python-format
554
+ msgid "Browse %(current_team)s's maps"
555
+ msgstr ""
525
556
 
526
- #: templates/umap/user_dashboard.html:10
557
+ #: templates/umap/team_detail.html:22
527
558
  #, python-format
528
- msgid "My Maps (%(count)s)"
529
- msgstr "Meus mapas (%(count)s)"
559
+ msgid "%(current_team)s has no public maps."
560
+ msgstr ""
530
561
 
531
- #: templates/umap/user_dashboard.html:12
532
- msgid "My profile"
533
- msgstr "Meu perfil"
562
+ #: templates/umap/team_form.html:24
563
+ msgid "Delete this team"
564
+ msgstr ""
565
+
566
+ #: templates/umap/team_form.html:47
567
+ msgid "Add user"
568
+ msgstr ""
569
+
570
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
571
+ msgid "Search my maps"
572
+ msgstr "Procurar os meus mapas"
534
573
 
535
- #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
574
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
536
575
  msgid "Map’s title"
537
576
  msgstr "Título do mapa"
538
577
 
539
- #: templates/umap/user_dashboard.html:32
578
+ #: templates/umap/user_dashboard.html:30
540
579
  #, python-format
541
580
  msgid "Download %(count)s maps"
542
581
  msgstr "Descarregar %(count)s mapas"
543
582
 
544
- #: templates/umap/user_dashboard.html:42
583
+ #: templates/umap/user_dashboard.html:40
545
584
  msgid "You have no map yet."
546
585
  msgstr "Ainda não tem nenhum mapa."
547
586
 
548
- #: views.py:353
587
+ #: templates/umap/user_teams.html:17
588
+ msgid "Users"
589
+ msgstr ""
590
+
591
+ #: templates/umap/user_teams.html:48
592
+ msgid "New team"
593
+ msgstr ""
594
+
595
+ #: views.py:235
596
+ msgid "Cannot delete a team with more than one member"
597
+ msgstr ""
598
+
599
+ #: views.py:239
600
+ #, python-format
601
+ msgid "Team “%(name)s” has been deleted"
602
+ msgstr ""
603
+
604
+ #: views.py:438
549
605
  msgid "View the map"
550
606
  msgstr "Ver o mapa"
551
607
 
552
- #: views.py:718
608
+ #: views.py:824
553
609
  msgid "See full screen"
554
610
  msgstr "Ver em ecrã inteiro"
555
611
 
556
- #: views.py:846
612
+ #: views.py:953
557
613
  msgid "Map editors updated with success!"
558
614
  msgstr "Os editores do mapa foram atualizados com sucesso!"
559
615
 
560
- #: views.py:882
616
+ #: views.py:989
561
617
  #, python-format
562
618
  msgid "The uMap edit link for your map: %(map_name)s"
563
619
  msgstr "A hiperligação de edição do uMap para o seu mapa: %(map_name)s"
564
620
 
565
- #: views.py:885
621
+ #: views.py:992
566
622
  #, python-format
567
623
  msgid "Here is your secret edit link: %(link)s"
568
624
  msgstr "Aqui está a hiperligação de edição secreta: %(link)s"
569
625
 
570
- #: views.py:892
626
+ #: views.py:999
571
627
  #, python-format
572
628
  msgid "Can't send email to %(email)s"
573
629
  msgstr "Não é possível enviar o email para %(email)s"
574
630
 
575
- #: views.py:895
631
+ #: views.py:1002
576
632
  #, python-format
577
633
  msgid "Email sent to %(email)s"
578
634
  msgstr "Email enviado para %(email)s"
579
635
 
580
- #: views.py:906
636
+ #: views.py:1013
581
637
  msgid "Only its owner can delete the map."
582
638
  msgstr "Só o proprietário pode eliminar o mapa."
583
639
 
584
- #: views.py:909
640
+ #: views.py:1016
585
641
  msgid "Map successfully deleted."
586
642
  msgstr "Mapa eliminado com sucesso."
587
643
 
588
- #: views.py:935
644
+ #: views.py:1042
589
645
  #, python-format
590
646
  msgid ""
591
647
  "Your map has been cloned! If you want to edit this map from another "
592
648
  "computer, please use this link: %(anonymous_url)s"
593
649
  msgstr "O seu mapa foi clonado! Se quiser editar este mapa noutro computador, por favor utilize esta hiperligação: %(anonymous_url)s"
594
650
 
595
- #: views.py:940
651
+ #: views.py:1047
596
652
  msgid "Congratulations, your map has been cloned!"
597
653
  msgstr "Parabéns, o seu mapa foi clonado!"
598
654
 
599
- #: views.py:1175
655
+ #: views.py:1282
600
656
  msgid "Layer successfully deleted."
601
657
  msgstr "Camada eliminada com sucesso."
602
658
 
603
- #: views.py:1197
659
+ #: views.py:1304
604
660
  msgid "Permissions updated with success!"
605
661
  msgstr "Permissões atualizadas com sucesso!"