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
Binary file
@@ -8,10 +8,10 @@
8
8
  # Marco <marcxosm@gmail.com>, 2017
9
9
  # lucacorsato <lucors@gmail.com>, 2014
10
10
  # lucacorsato <lucors@gmail.com>, 2014
11
- # Marco <marcxosm@gmail.com>, 2017-2019,2024
11
+ # Marco <marcxosm@gmail.com>, 2017-2019,2024-2025
12
12
  # Marco <marcxosm@gmail.com>, 2018
13
13
  # Maurizio Napolitano <maurizio.napolitano@okfn.org>, 2013,2017,2023
14
- # Maurizio Napolitano <napo@fbk.eu>, 2024
14
+ # Maurizio Napolitano <napo@fbk.eu>, 2024-2025
15
15
  # Mirco Zorzo <mircozorzo@gmail.com>, 2020
16
16
  # Mirco Zorzo <mircozorzo@gmail.com>, 2020
17
17
  # claudiamocci <moccicm@gmail.com>, 2013
@@ -21,9 +21,9 @@ msgid ""
21
21
  msgstr ""
22
22
  "Project-Id-Version: uMap\n"
23
23
  "Report-Msgid-Bugs-To: \n"
24
- "POT-Creation-Date: 2024-12-24 08:39+0000\n"
24
+ "POT-Creation-Date: 2025-01-31 17:29+0000\n"
25
25
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
26
- "Last-Translator: Maurizio Napolitano <napo@fbk.eu>, 2024\n"
26
+ "Last-Translator: Marco <marcxosm@gmail.com>, 2017-2019,2024-2025\n"
27
27
  "Language-Team: Italian (http://app.transifex.com/openstreetmap/umap/language/it/)\n"
28
28
  "MIME-Version: 1.0\n"
29
29
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -33,11 +33,11 @@ msgstr ""
33
33
 
34
34
  #: admin.py:16
35
35
  msgid "CSV Export"
36
- msgstr ""
36
+ msgstr "Esporta CSV"
37
37
 
38
38
  #: decorators.py:60
39
39
  msgid "This map is not publicly available"
40
- msgstr ""
40
+ msgstr "La mappa non è disponibile pubblicamente"
41
41
 
42
42
  #: middleware.py:13
43
43
  msgid "Site is readonly for maintenance"
@@ -47,7 +47,7 @@ msgstr "Il sito in sola lettura per manutenzione"
47
47
  msgid "name"
48
48
  msgstr "nome"
49
49
 
50
- #: models.py:62 models.py:475
50
+ #: models.py:62 models.py:485
51
51
  msgid "description"
52
52
  msgstr "descrizione"
53
53
 
@@ -67,29 +67,29 @@ msgstr "Modello dell'URL usando il formato delle tile OSM"
67
67
  msgid "Order of the tilelayers in the edit box"
68
68
  msgstr "Ordine degli sfondi (tilelayers) nel box di modifica"
69
69
 
70
- #: models.py:175 models.py:469
70
+ #: models.py:175 models.py:479
71
71
  msgid "Only editable with secret edit link"
72
72
  msgstr "Modificabile solo con il link segreto"
73
73
 
74
- #: models.py:176 models.py:470
74
+ #: models.py:176 models.py:480
75
75
  msgid "Everyone can edit"
76
76
  msgstr "Chiunque può modificare"
77
77
 
78
- #: models.py:179 models.py:463
78
+ #: models.py:179 models.py:473
79
79
  msgid "Everyone"
80
80
  msgstr "Chiunque"
81
81
 
82
- #: models.py:180 models.py:189 models.py:464
82
+ #: models.py:180 models.py:189 models.py:474
83
83
  msgid "Editors and team only"
84
- msgstr ""
84
+ msgstr "Soltanto editor e team"
85
85
 
86
- #: models.py:181 models.py:465
86
+ #: models.py:181 models.py:475
87
87
  msgid "Owner only"
88
88
  msgstr "Solo chi ha la proprietà"
89
89
 
90
90
  #: models.py:184
91
91
  msgid "Draft (private)"
92
- msgstr ""
92
+ msgstr "Bozza (privata)"
93
93
 
94
94
  #: models.py:185
95
95
  msgid "Everyone (public)"
@@ -103,9 +103,9 @@ msgstr "Chiunque abbia il link"
103
103
  msgid "Blocked"
104
104
  msgstr "Bloccata"
105
105
 
106
- #: models.py:191
106
+ #: models.py:191 models.py:469
107
107
  msgid "Deleted"
108
- msgstr ""
108
+ msgstr "Eliminato"
109
109
 
110
110
  #: models.py:194
111
111
  msgid "center"
@@ -141,33 +141,33 @@ msgstr "contributore"
141
141
 
142
142
  #: models.py:223
143
143
  msgid "team"
144
- msgstr ""
144
+ msgstr "team"
145
145
 
146
- #: models.py:229 models.py:491
146
+ #: models.py:229 models.py:501
147
147
  msgid "edit status"
148
148
  msgstr "stato della modifica"
149
149
 
150
- #: models.py:234
150
+ #: models.py:234 models.py:506
151
151
  msgid "share status"
152
152
  msgstr "stato condivisione"
153
153
 
154
- #: models.py:237 models.py:486
154
+ #: models.py:237 models.py:496
155
155
  msgid "settings"
156
156
  msgstr "impostazioni"
157
157
 
158
- #: models.py:402
158
+ #: models.py:407
159
159
  msgid "Clone of"
160
160
  msgstr "Duplicata da "
161
161
 
162
- #: models.py:462 models.py:468
162
+ #: models.py:468 models.py:472 models.py:478
163
163
  msgid "Inherit"
164
164
  msgstr "Inherit"
165
165
 
166
- #: models.py:481
166
+ #: models.py:491
167
167
  msgid "display on load"
168
168
  msgstr "mostra al caricamento"
169
169
 
170
- #: models.py:482
170
+ #: models.py:492
171
171
  msgid "Display this layer on load."
172
172
  msgstr "Visualizza questo layer al caricamento."
173
173
 
@@ -176,50 +176,64 @@ msgid ""
176
176
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
177
177
  "target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
178
178
  " permissions."
179
- msgstr ""
179
+ msgstr "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" target=\"_blank\">Qui si trova la documentazione</a>su come gestire i permessi delle mappe."
180
180
 
181
181
  #: templates/403.html:10 templates/404.html:8
182
182
  msgid "← Go to the homepage"
183
- msgstr ""
183
+ msgstr "← Torna alla pagina principale"
184
184
 
185
185
  #: templates/404.html:7
186
186
  msgid "404 Page Not Found"
187
- msgstr ""
187
+ msgstr "404 Pagina Non Trovata"
188
+
189
+ #: templates/auth/user_detail.html:6
190
+ #, python-format
191
+ msgid "%(current_user)s’s maps"
192
+ msgstr "Mappe di %(current_user)s"
188
193
 
189
- #: templates/auth/user_detail.html:8
194
+ #: templates/auth/user_detail.html:12
190
195
  #, python-format
191
196
  msgid "Browse %(current_user)s's maps"
192
197
  msgstr "Vedi le mappe di %(current_user)s"
193
198
 
194
- #: templates/auth/user_detail.html:17
199
+ #: templates/auth/user_detail.html:21
195
200
  #, python-format
196
201
  msgid "%(current_user)s has no maps."
197
202
  msgstr "%(current_user)s non ha mappe."
198
203
 
199
- #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
204
+ #: templates/auth/user_form.html:6
205
+ msgid "My Profile"
206
+ msgstr "Il mio profilo"
207
+
208
+ #: templates/auth/user_form.html:24 templates/umap/team_form.html:25
200
209
  msgid "Save"
201
210
  msgstr "Salva"
202
211
 
203
- #: templates/auth/user_form.html:27
212
+ #: templates/auth/user_form.html:30
204
213
  msgid "Your current providers"
205
214
  msgstr "I tuoi fornitori attuali"
206
215
 
207
- #: templates/auth/user_form.html:39
216
+ #: templates/auth/user_form.html:44
208
217
  msgid "Connect to another provider"
209
218
  msgstr "Collegati ad un altro fornitore"
210
219
 
211
- #: templates/auth/user_form.html:42
220
+ #: templates/auth/user_form.html:47
212
221
  msgid ""
213
222
  "It's a good habit to connect your account to more than one provider, in case"
214
223
  " one provider becomes unavailable, temporarily or even permanently."
215
224
  msgstr "È una buona abitudine connettere il tuo account a più di un fornitore, nel caso in cui un fornitore diventi non disponibile, temporaneamente o addirittura permanentemente."
216
225
 
217
- #: templates/auth/user_stars.html:8
226
+ #: templates/auth/user_stars.html:6
227
+ #, python-format
228
+ msgid "%(current_user)s’s starred maps"
229
+ msgstr ""
230
+
231
+ #: templates/auth/user_stars.html:12
218
232
  #, python-format
219
233
  msgid "Browse %(current_user)s's starred maps"
220
234
  msgstr "Sfoglia le mappe selezionate da %(current_user)s"
221
235
 
222
- #: templates/auth/user_stars.html:17
236
+ #: templates/auth/user_stars.html:21
223
237
  #, python-format
224
238
  msgid "%(current_user)s has no starred maps yet."
225
239
  msgstr "%(current_user)snon ha ancora selezionato mappe"
@@ -236,11 +250,11 @@ msgstr "Login"
236
250
 
237
251
  #: templates/registration/login.html:22
238
252
  msgid "To save and easily find your maps, identify yourself."
239
- msgstr ""
253
+ msgstr "Identificati per salva re e trovare facilmente le tue mappe"
240
254
 
241
255
  #: templates/registration/login.html:25
242
256
  msgid "Please log in with your account:"
243
- msgstr ""
257
+ msgstr "Accedi al sito con il tuo account:"
244
258
 
245
259
  #: templates/registration/login.html:42
246
260
  msgid "Username"
@@ -252,7 +266,11 @@ msgstr "Password"
252
266
 
253
267
  #: templates/registration/login.html:52
254
268
  msgid "Please choose a provider:"
255
- msgstr ""
269
+ msgstr "Scegli un fornitore"
270
+
271
+ #: templates/umap/about.html:5 templates/umap/navigation.html:22
272
+ msgid "About"
273
+ msgstr "Informazioni"
256
274
 
257
275
  #: templates/umap/about_summary.html:12
258
276
  #, python-format
@@ -307,7 +325,7 @@ msgstr "Gioca con la demo"
307
325
  #: templates/umap/components/alerts/alert.html:66
308
326
  #: templates/umap/components/alerts/alert.html:94
309
327
  msgid "Close"
310
- msgstr ""
328
+ msgstr "Chiudi"
311
329
 
312
330
  #: templates/umap/components/alerts/alert.html:32
313
331
  #, python-format
@@ -315,39 +333,39 @@ msgid ""
315
333
  "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
316
334
  "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
317
335
  "target=\"_blank\">log in</a>."
318
- msgstr ""
336
+ msgstr "Pro-tip: per trovare facilmente le tue mappe, <a href=\"%(login_url)s\" target=\"_blank\">crea un account</a> o <a href=\"%(login_url)s\" target=\"_blank\">effettua il log in</a>."
319
337
 
320
338
  #: templates/umap/components/alerts/alert.html:37
321
339
  msgid "Here is your secret link to edit the map, please keep it safe:"
322
- msgstr ""
340
+ msgstr "Ecco il tuo link segreto per modificare la mappa, fa attenzione a tenerlo al sicuro:"
323
341
 
324
342
  #: templates/umap/components/alerts/alert.html:41
325
343
  msgid "Copy link"
326
- msgstr ""
344
+ msgstr "Copia link"
327
345
 
328
346
  #: templates/umap/components/alerts/alert.html:48
329
347
  msgid "Enter your email address to receive the secret link:"
330
- msgstr ""
348
+ msgstr "Fornisci la tua email per ricevere il link segreto:"
331
349
 
332
350
  #: templates/umap/components/alerts/alert.html:54
333
351
  msgid "Email"
334
- msgstr ""
352
+ msgstr "Email"
335
353
 
336
354
  #: templates/umap/components/alerts/alert.html:57
337
355
  msgid "Send me the link"
338
- msgstr ""
356
+ msgstr "Inviami il link"
339
357
 
340
358
  #: templates/umap/components/alerts/alert.html:81
341
359
  msgid "See their edits in another tab"
342
- msgstr ""
360
+ msgstr "Vedi le loro modifiche in un'altra scheda"
343
361
 
344
362
  #: templates/umap/components/alerts/alert.html:84
345
363
  msgid "Keep your changes and loose theirs"
346
- msgstr ""
364
+ msgstr "Mantieni i tuoi cambiamenti e perdi i precedenti"
347
365
 
348
366
  #: templates/umap/components/alerts/alert.html:87
349
367
  msgid "Keep their changes and loose yours"
350
- msgstr ""
368
+ msgstr "Mantieni i loro cambiamenti e perdi i tuoi"
351
369
 
352
370
  #: templates/umap/content.html:26
353
371
  msgid ""
@@ -366,19 +384,19 @@ msgstr "Questa è una demo da utilizzare solo per test e prototipi. Qualora sia
366
384
 
367
385
  #: templates/umap/content_footer.html:5
368
386
  msgid "An OpenStreetMap project"
369
- msgstr ""
387
+ msgstr "Un progetto OpenStreetMap"
370
388
 
371
389
  #: templates/umap/content_footer.html:6
372
390
  msgid "version"
373
- msgstr ""
391
+ msgstr "versione"
374
392
 
375
393
  #: templates/umap/content_footer.html:7
376
394
  msgid "Hosted by"
377
- msgstr ""
395
+ msgstr "Ospitato da"
378
396
 
379
397
  #: templates/umap/content_footer.html:8
380
398
  msgid "Contact"
381
- msgstr ""
399
+ msgstr "Contatto"
382
400
 
383
401
  #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
384
402
  msgid "Help"
@@ -399,7 +417,7 @@ msgstr "Mio profilo"
399
417
 
400
418
  #: templates/umap/dashboard_menu.html:15
401
419
  msgid "My teams"
402
- msgstr ""
420
+ msgstr "I miei team"
403
421
 
404
422
  #: templates/umap/home.html:14
405
423
  msgid "Map of the uMaps"
@@ -421,7 +439,7 @@ msgstr "di"
421
439
  msgid "More"
422
440
  msgstr "Altre mappe"
423
441
 
424
- #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
442
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
425
443
  msgid "Name"
426
444
  msgstr "Nome"
427
445
 
@@ -445,7 +463,7 @@ msgstr "Ultimo salvataggio"
445
463
  msgid "Owner"
446
464
  msgstr "Proprietario"
447
465
 
448
- #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
466
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
449
467
  msgid "Actions"
450
468
  msgstr "Azioni"
451
469
 
@@ -458,7 +476,7 @@ msgid "Share"
458
476
  msgstr "Condividi"
459
477
 
460
478
  #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
461
- #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
479
+ #: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
462
480
  msgid "Edit"
463
481
  msgstr "Modifica"
464
482
 
@@ -521,10 +539,6 @@ msgstr "Accedi"
521
539
  msgid "Sign in"
522
540
  msgstr "Registrati"
523
541
 
524
- #: templates/umap/navigation.html:22
525
- msgid "About"
526
- msgstr "Informazioni"
527
-
528
542
  #: templates/umap/navigation.html:30
529
543
  msgid "Change password"
530
544
  msgstr "Cambia password"
@@ -533,41 +547,47 @@ msgstr "Cambia password"
533
547
  msgid "Log out"
534
548
  msgstr "Esci"
535
549
 
536
- #: templates/umap/password_change.html:7
550
+ #: templates/umap/password_change.html:6
551
+ #: templates/umap/password_change.html:11
537
552
  msgid "Password change"
538
553
  msgstr "Cambia password"
539
554
 
540
- #: templates/umap/password_change.html:10
555
+ #: templates/umap/password_change.html:14
541
556
  msgid ""
542
557
  "Please enter your old password, for security's sake, and then enter your new"
543
558
  " password twice so we can verify you typed it in correctly."
544
559
  msgstr "Per motivi di sicurezza inserire la vecchia password, poi inserire quella nuova due volte così da verificare che sia stata scritta correttamente"
545
560
 
546
- #: templates/umap/password_change.html:17
561
+ #: templates/umap/password_change.html:21
547
562
  msgid "Old password"
548
563
  msgstr "Password vecchia"
549
564
 
550
- #: templates/umap/password_change.html:22
565
+ #: templates/umap/password_change.html:26
551
566
  msgid "New password"
552
567
  msgstr "Nuova password"
553
568
 
554
- #: templates/umap/password_change.html:26
569
+ #: templates/umap/password_change.html:30
555
570
  msgid "New password confirmation"
556
571
  msgstr "Conferma della nuova password"
557
572
 
558
- #: templates/umap/password_change.html:27
573
+ #: templates/umap/password_change.html:31
559
574
  msgid "Change my password"
560
575
  msgstr "Cambia la mia password"
561
576
 
562
- #: templates/umap/password_change_done.html:7
577
+ #: templates/umap/password_change_done.html:6
578
+ #: templates/umap/password_change_done.html:11
563
579
  msgid "Password change successful"
564
580
  msgstr "Cambio della password effettuato con successo!"
565
581
 
566
- #: templates/umap/password_change_done.html:10
582
+ #: templates/umap/password_change_done.html:14
567
583
  msgid "Your password was changed."
568
584
  msgstr "La tua password è stata cambiata."
569
585
 
570
- #: templates/umap/search.html:15
586
+ #: templates/umap/search.html:6
587
+ msgid "Explore maps"
588
+ msgstr "Esplora mappe"
589
+
590
+ #: templates/umap/search.html:19
571
591
  #, python-format
572
592
  msgid "%(count)s map found:"
573
593
  msgid_plural "%(count)s maps found:"
@@ -575,11 +595,11 @@ msgstr[0] "%(count)s mappa trovata"
575
595
  msgstr[1] "%(count)s mappe trovate"
576
596
  msgstr[2] "%(count)s mappe trovate:"
577
597
 
578
- #: templates/umap/search.html:24
598
+ #: templates/umap/search.html:28
579
599
  msgid "No map found."
580
600
  msgstr "Nessuna mappa trovata."
581
601
 
582
- #: templates/umap/search.html:29
602
+ #: templates/umap/search.html:33
583
603
  msgid "Latest created maps"
584
604
  msgstr "Ultime mappe create"
585
605
 
@@ -591,23 +611,36 @@ msgstr "Cerca mappe"
591
611
  msgid "Search"
592
612
  msgstr "Cerca"
593
613
 
594
- #: templates/umap/team_detail.html:10
614
+ #: templates/umap/team_confirm_delete.html:6
615
+ msgid "Team deletion"
616
+ msgstr ""
617
+
618
+ #: templates/umap/team_detail.html:6
595
619
  #, python-format
596
- msgid "Browse %(current_team)s's maps"
620
+ msgid "%(current_team)ss maps"
597
621
  msgstr ""
598
622
 
599
- #: templates/umap/team_detail.html:22
623
+ #: templates/umap/team_detail.html:14
624
+ #, python-format
625
+ msgid "Browse %(current_team)s's maps"
626
+ msgstr "Sfoglia mappe team %(current_team)s"
627
+
628
+ #: templates/umap/team_detail.html:26
600
629
  #, python-format
601
630
  msgid "%(current_team)s has no public maps."
602
- msgstr ""
631
+ msgstr "%(current_team)snon ha mappe pubbliche"
632
+
633
+ #: templates/umap/team_form.html:6
634
+ msgid "Create or edit a team"
635
+ msgstr "Crea o modifica un team"
603
636
 
604
- #: templates/umap/team_form.html:24
637
+ #: templates/umap/team_form.html:28
605
638
  msgid "Delete this team"
606
- msgstr ""
639
+ msgstr "Elimina questo team"
607
640
 
608
- #: templates/umap/team_form.html:47
641
+ #: templates/umap/team_form.html:51
609
642
  msgid "Add user"
610
- msgstr ""
643
+ msgstr "Aggiungi utente"
611
644
 
612
645
  #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
613
646
  msgid "Search my maps"
@@ -626,78 +659,89 @@ msgstr "Scarica %(count)s mappe"
626
659
  msgid "You have no map yet."
627
660
  msgstr "Non hai ancora alcuna mappa."
628
661
 
629
- #: templates/umap/user_teams.html:17
662
+ #: templates/umap/user_teams.html:6
663
+ msgid "My Teams"
664
+ msgstr "I miei team"
665
+
666
+ #: templates/umap/user_teams.html:21
630
667
  msgid "Users"
631
- msgstr ""
668
+ msgstr "Utenti"
632
669
 
633
- #: templates/umap/user_teams.html:48
670
+ #: templates/umap/user_teams.html:52
634
671
  msgid "New team"
635
- msgstr ""
672
+ msgstr "Nuovo team"
636
673
 
637
674
  #: views.py:234
638
675
  msgid "Cannot delete a team with more than one member"
639
- msgstr ""
676
+ msgstr "Non si può eliminare un team con più di un membro"
640
677
 
641
678
  #: views.py:238
642
679
  #, python-format
643
680
  msgid "Team “%(name)s” has been deleted"
644
- msgstr ""
681
+ msgstr "il team \"%(name)s\" è stato cancellato"
645
682
 
646
683
  #: views.py:442
647
684
  msgid "View the map"
648
685
  msgstr "Visualizza la mappa"
649
686
 
650
- #: views.py:825
687
+ #: views.py:838
651
688
  msgid "See full screen"
652
689
  msgstr "Vedi a schermo interno"
653
690
 
654
- #: views.py:968
691
+ #: views.py:981
655
692
  msgid "Map editors updated with success!"
656
693
  msgstr "Aggiornato l'elenco degli editor abilitati alla modifica della mappa!"
657
694
 
658
- #: views.py:1004
695
+ #: views.py:1017
659
696
  #, python-format
660
697
  msgid "The uMap edit link for your map: %(map_name)s"
661
698
  msgstr "Link uMap per la modifica della tua mappa: %(map_name)s"
662
699
 
663
- #: views.py:1007
700
+ #: views.py:1020
664
701
  #, python-format
665
702
  msgid "Here is your secret edit link: %(link)s"
666
703
  msgstr "Qui il tuo link segreto: %(link)s"
667
704
 
668
- #: views.py:1014
705
+ #: views.py:1027
669
706
  #, python-format
670
707
  msgid "Can't send email to %(email)s"
671
708
  msgstr "Non riesco ad inviare email a 1%(email)s"
672
709
 
673
- #: views.py:1017
710
+ #: views.py:1030
674
711
  #, python-format
675
712
  msgid "Email sent to %(email)s"
676
713
  msgstr "Email inviata a %(email)s"
677
714
 
678
- #: views.py:1028
715
+ #: views.py:1041
679
716
  msgid "Only its owner can delete the map."
680
717
  msgstr "Solo il proprietario può eliminare la mappa."
681
718
 
682
- #: views.py:1031
719
+ #: views.py:1044
683
720
  msgid "Map successfully deleted."
684
- msgstr ""
721
+ msgstr "La mappa è stata eliminata definitivamente."
685
722
 
686
- #: views.py:1057
723
+ #: views.py:1070
687
724
  #, python-format
688
725
  msgid ""
689
726
  "Your map has been cloned! If you want to edit this map from another "
690
727
  "computer, please use this link: %(anonymous_url)s"
691
728
  msgstr "La mappa è stata clonata! Per modificarla usando un altro computer, si deve utilizzare questo link: %(anonymous_url)s"
692
729
 
693
- #: views.py:1062
730
+ #: views.py:1075
694
731
  msgid "Congratulations, your map has been cloned!"
695
732
  msgstr "Perfetto, la tua mappa è stata clonata!"
696
733
 
697
- #: views.py:1313
734
+ #: views.py:1329
698
735
  msgid "Layer successfully deleted."
699
736
  msgstr "Layer eliminato correttamente"
700
737
 
701
- #: views.py:1335
738
+ #: views.py:1351
702
739
  msgid "Permissions updated with success!"
703
740
  msgstr "Autorizzazioni aggiornate con successo!"
741
+
742
+ #: views.py:1430
743
+ #, python-format
744
+ msgid ""
745
+ "Using “%(name)s” to authenticate is deprecated. Please configure another "
746
+ "provider in your profile page."
747
+ msgstr "L’uso di “%(name)s” per autenticarsi è scoraggiato. Configura un altro fornitore nella pagina del tuo profilo."
Binary file