umap-project 2.5.1__py3-none-any.whl → 2.6.0b0__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 (193) 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 +346 -234
  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 +3 -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 +3 -3
  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 +994 -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/permissions.js +280 -0
  68. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  69. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  70. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  71. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  72. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  73. umap/static/umap/js/modules/rendering/popup.js +99 -0
  74. umap/static/umap/js/modules/rendering/template.js +217 -0
  75. umap/static/umap/js/modules/rendering/ui.js +573 -0
  76. umap/static/umap/js/modules/schema.js +24 -0
  77. umap/static/umap/js/modules/share.js +66 -45
  78. umap/static/umap/js/modules/sync/updaters.js +9 -10
  79. umap/static/umap/js/modules/tableeditor.js +7 -7
  80. umap/static/umap/js/modules/ui/dialog.js +8 -4
  81. umap/static/umap/js/modules/utils.js +22 -13
  82. umap/static/umap/js/umap.controls.js +79 -146
  83. umap/static/umap/js/umap.core.js +9 -9
  84. umap/static/umap/js/umap.forms.js +32 -12
  85. umap/static/umap/js/umap.js +65 -63
  86. umap/static/umap/locale/br.js +35 -35
  87. umap/static/umap/locale/br.json +35 -35
  88. umap/static/umap/locale/ca.js +50 -50
  89. umap/static/umap/locale/ca.json +50 -50
  90. umap/static/umap/locale/de.js +136 -136
  91. umap/static/umap/locale/de.json +136 -136
  92. umap/static/umap/locale/el.js +47 -47
  93. umap/static/umap/locale/el.json +47 -47
  94. umap/static/umap/locale/en.js +7 -1
  95. umap/static/umap/locale/en.json +7 -1
  96. umap/static/umap/locale/fa_IR.js +44 -44
  97. umap/static/umap/locale/fa_IR.json +44 -44
  98. umap/static/umap/locale/fr.js +8 -2
  99. umap/static/umap/locale/fr.json +8 -2
  100. umap/static/umap/locale/pt.js +17 -17
  101. umap/static/umap/locale/pt.json +17 -17
  102. umap/static/umap/locale/pt_PT.js +207 -207
  103. umap/static/umap/locale/pt_PT.json +207 -207
  104. umap/static/umap/locale/th_TH.js +25 -25
  105. umap/static/umap/locale/th_TH.json +25 -25
  106. umap/static/umap/map.css +107 -104
  107. umap/static/umap/nav.css +19 -10
  108. umap/static/umap/unittests/utils.js +230 -107
  109. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  110. umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
  111. umap/storage.py +1 -0
  112. umap/templates/404.html +5 -1
  113. umap/templates/500.html +3 -1
  114. umap/templates/auth/user_detail.html +8 -2
  115. umap/templates/auth/user_form.html +19 -10
  116. umap/templates/auth/user_stars.html +8 -2
  117. umap/templates/base.html +1 -0
  118. umap/templates/registration/login.html +18 -3
  119. umap/templates/umap/about.html +1 -0
  120. umap/templates/umap/about_summary.html +22 -7
  121. umap/templates/umap/components/alerts/alert.html +42 -21
  122. umap/templates/umap/content.html +2 -0
  123. umap/templates/umap/content_footer.html +6 -2
  124. umap/templates/umap/css.html +1 -0
  125. umap/templates/umap/dashboard_menu.html +15 -0
  126. umap/templates/umap/home.html +14 -4
  127. umap/templates/umap/js.html +4 -9
  128. umap/templates/umap/login_popup_end.html +10 -4
  129. umap/templates/umap/map_detail.html +8 -2
  130. umap/templates/umap/map_fragment.html +3 -1
  131. umap/templates/umap/map_init.html +2 -1
  132. umap/templates/umap/map_list.html +4 -3
  133. umap/templates/umap/map_table.html +36 -12
  134. umap/templates/umap/messages.html +0 -1
  135. umap/templates/umap/navigation.html +2 -1
  136. umap/templates/umap/password_change.html +5 -1
  137. umap/templates/umap/password_change_done.html +8 -2
  138. umap/templates/umap/search.html +8 -2
  139. umap/templates/umap/search_bar.html +1 -0
  140. umap/templates/umap/team_confirm_delete.html +19 -0
  141. umap/templates/umap/team_detail.html +27 -0
  142. umap/templates/umap/team_form.html +60 -0
  143. umap/templates/umap/user_dashboard.html +7 -9
  144. umap/templates/umap/user_teams.html +51 -0
  145. umap/tests/base.py +8 -1
  146. umap/tests/conftest.py +6 -0
  147. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  148. umap/tests/fixtures/test_upload_georss.xml +20 -0
  149. umap/tests/integration/conftest.py +18 -4
  150. umap/tests/integration/helpers.py +12 -0
  151. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  152. umap/tests/integration/test_basics.py +29 -0
  153. umap/tests/integration/test_caption.py +20 -0
  154. umap/tests/integration/test_circles_layer.py +69 -0
  155. umap/tests/integration/test_draw_polygon.py +110 -13
  156. umap/tests/integration/test_draw_polyline.py +8 -18
  157. umap/tests/integration/test_edit_datalayer.py +1 -1
  158. umap/tests/integration/test_import.py +64 -5
  159. umap/tests/integration/test_owned_map.py +21 -13
  160. umap/tests/integration/test_team.py +47 -0
  161. umap/tests/integration/test_tilelayer.py +19 -2
  162. umap/tests/integration/test_view_marker.py +28 -1
  163. umap/tests/integration/test_websocket_sync.py +5 -5
  164. umap/tests/test_datalayer.py +32 -7
  165. umap/tests/test_datalayer_views.py +1 -1
  166. umap/tests/test_map.py +30 -4
  167. umap/tests/test_map_views.py +2 -2
  168. umap/tests/test_statics.py +40 -0
  169. umap/tests/test_team_views.py +131 -0
  170. umap/tests/test_views.py +15 -1
  171. umap/urls.py +23 -13
  172. umap/views.py +116 -10
  173. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/METADATA +9 -9
  174. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
  175. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  176. umap/static/umap/js/umap.features.js +0 -1290
  177. umap/static/umap/js/umap.layer.js +0 -1837
  178. umap/static/umap/js/umap.permissions.js +0 -208
  179. umap/static/umap/js/umap.popup.js +0 -341
  180. umap/static/umap/test/TableEditor.js +0 -104
  181. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  182. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  183. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  184. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  185. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  186. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  187. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  188. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  189. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  190. umap/tests/integration/test_statics.py +0 -47
  191. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/WHEEL +0 -0
  192. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
  193. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -21,7 +21,7 @@ msgid ""
21
21
  msgstr ""
22
22
  "Project-Id-Version: uMap\n"
23
23
  "Report-Msgid-Bugs-To: \n"
24
- "POT-Creation-Date: 2024-03-25 12:41+0000\n"
24
+ "POT-Creation-Date: 2024-08-30 18:23+0000\n"
25
25
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
26
26
  "Last-Translator: Maurizio Napolitano <napo@fbk.eu>, 2024\n"
27
27
  "Language-Team: Italian (http://app.transifex.com/openstreetmap/umap/language/it/)\n"
@@ -39,7 +39,7 @@ msgstr "Modificabile solo con il link segreto"
39
39
  msgid "Everyone can edit"
40
40
  msgstr "Chiunque può modificare"
41
41
 
42
- #: forms.py:69 models.py:381
42
+ #: forms.py:69 models.py:423
43
43
  msgid "Inherit"
44
44
  msgstr "Inherit"
45
45
 
@@ -47,242 +47,284 @@ msgstr "Inherit"
47
47
  msgid "Site is readonly for maintenance"
48
48
  msgstr "Il sito in sola lettura per manutenzione"
49
49
 
50
- #: models.py:52
50
+ #: models.py:54 models.py:73
51
51
  msgid "name"
52
52
  msgstr "nome"
53
53
 
54
- #: models.py:83
54
+ #: models.py:56 models.py:433
55
+ msgid "description"
56
+ msgstr "descrizione"
57
+
58
+ #: models.py:104
55
59
  msgid "details"
56
60
  msgstr "dettagli"
57
61
 
58
- #: models.py:84
62
+ #: models.py:105
59
63
  msgid "Link to a page where the licence is detailed."
60
64
  msgstr "Link alla pagina con i dettagli della licenza"
61
65
 
62
- #: models.py:94
66
+ #: models.py:115
63
67
  msgid "URL template using OSM tile format"
64
68
  msgstr "Modello dell'URL usando il formato delle tile OSM"
65
69
 
66
- #: models.py:100
70
+ #: models.py:121
67
71
  msgid "Order of the tilelayers in the edit box"
68
72
  msgstr "Ordine degli sfondi (tilelayers) nel box di modifica"
69
73
 
70
- #: models.py:146 models.py:382
74
+ #: models.py:167 models.py:424
71
75
  msgid "Everyone"
72
76
  msgstr "Chiunque"
73
77
 
74
- #: models.py:147 models.py:153 models.py:383
75
- msgid "Editors only"
76
- msgstr "Solamente chi contribuisce"
78
+ #: models.py:168 models.py:174 models.py:425
79
+ msgid "Editors and team only"
80
+ msgstr ""
77
81
 
78
- #: models.py:148 models.py:384
82
+ #: models.py:169 models.py:426
79
83
  msgid "Owner only"
80
84
  msgstr "Solo chi ha la proprietà"
81
85
 
82
- #: models.py:151
86
+ #: models.py:172
83
87
  msgid "Everyone (public)"
84
88
  msgstr "Chiunque (pubblico)"
85
89
 
86
- #: models.py:152
90
+ #: models.py:173
87
91
  msgid "Anyone with link"
88
92
  msgstr "Chiunque abbia il link"
89
93
 
90
- #: models.py:154
94
+ #: models.py:175
91
95
  msgid "Blocked"
92
96
  msgstr "Bloccata"
93
97
 
94
- #: models.py:157 models.py:391
95
- msgid "description"
96
- msgstr "descrizione"
97
-
98
- #: models.py:158
98
+ #: models.py:178
99
99
  msgid "center"
100
100
  msgstr "centra"
101
101
 
102
- #: models.py:159
102
+ #: models.py:179
103
103
  msgid "zoom"
104
104
  msgstr "zoom"
105
105
 
106
- #: models.py:161
106
+ #: models.py:181
107
107
  msgid "locate"
108
108
  msgstr "localizza"
109
109
 
110
- #: models.py:161
110
+ #: models.py:181
111
111
  msgid "Locate user on load?"
112
112
  msgstr "Geolocalizzare l'utente al caricamento?"
113
113
 
114
- #: models.py:165
114
+ #: models.py:185
115
115
  msgid "Choose the map licence."
116
116
  msgstr "Scegliere una licenza per la mappa."
117
117
 
118
- #: models.py:166
118
+ #: models.py:186
119
119
  msgid "licence"
120
120
  msgstr "licenza"
121
121
 
122
- #: models.py:177
122
+ #: models.py:197
123
123
  msgid "owner"
124
124
  msgstr "proprietario"
125
125
 
126
- #: models.py:181
126
+ #: models.py:201
127
127
  msgid "editors"
128
128
  msgstr "contributore"
129
129
 
130
- #: models.py:186 models.py:405
130
+ #: models.py:207
131
+ msgid "team"
132
+ msgstr ""
133
+
134
+ #: models.py:213 models.py:447
131
135
  msgid "edit status"
132
136
  msgstr "stato della modifica"
133
137
 
134
- #: models.py:191
138
+ #: models.py:218
135
139
  msgid "share status"
136
140
  msgstr "stato condivisione"
137
141
 
138
- #: models.py:194 models.py:400
142
+ #: models.py:221 models.py:442
139
143
  msgid "settings"
140
144
  msgstr "impostazioni"
141
145
 
142
- #: models.py:322
146
+ #: models.py:364
143
147
  msgid "Clone of"
144
148
  msgstr "Duplicata da "
145
149
 
146
- #: models.py:395
150
+ #: models.py:437
147
151
  msgid "display on load"
148
152
  msgstr "mostra al caricamento"
149
153
 
150
- #: models.py:396
154
+ #: models.py:438
151
155
  msgid "Display this layer on load."
152
156
  msgstr "Visualizza questo layer al caricamento."
153
157
 
154
- #: templates/404.html:6
158
+ #: templates/404.html:8
155
159
  msgid "Take me to the home page"
156
160
  msgstr "Vai alla pagina principale"
157
161
 
158
- #: templates/auth/user_detail.html:5
162
+ #: templates/auth/user_detail.html:8
159
163
  #, python-format
160
164
  msgid "Browse %(current_user)s's maps"
161
165
  msgstr "Vedi le mappe di %(current_user)s"
162
166
 
163
- #: templates/auth/user_detail.html:12
167
+ #: templates/auth/user_detail.html:17
164
168
  #, python-format
165
169
  msgid "%(current_user)s has no maps."
166
170
  msgstr "%(current_user)s non ha mappe."
167
171
 
168
- #: templates/auth/user_form.html:6
169
- msgid "My Maps"
170
- msgstr "Le mie mappe"
171
-
172
- #: templates/auth/user_form.html:7
173
- msgid "My Profile"
174
- msgstr "Mio Profilo"
175
-
176
- #: templates/auth/user_form.html:20
172
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
177
173
  msgid "Save"
178
174
  msgstr "Salva"
179
175
 
180
- #: templates/auth/user_form.html:25
176
+ #: templates/auth/user_form.html:27
181
177
  msgid "Your current providers"
182
178
  msgstr "I tuoi fornitori attuali"
183
179
 
184
- #: templates/auth/user_form.html:31
180
+ #: templates/auth/user_form.html:39
185
181
  msgid "Connect to another provider"
186
182
  msgstr "Collegati ad un altro fornitore"
187
183
 
188
- #: templates/auth/user_form.html:33
184
+ #: templates/auth/user_form.html:42
189
185
  msgid ""
190
186
  "It's a good habit to connect your account to more than one provider, in case"
191
187
  " one provider becomes unavailable, temporarily or even permanently."
192
188
  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."
193
189
 
194
- #: templates/auth/user_stars.html:5
190
+ #: templates/auth/user_stars.html:8
195
191
  #, python-format
196
192
  msgid "Browse %(current_user)s's starred maps"
197
193
  msgstr "Sfoglia le mappe selezionate da %(current_user)s"
198
194
 
199
- #: templates/auth/user_stars.html:12
195
+ #: templates/auth/user_stars.html:17
200
196
  #, python-format
201
197
  msgid "%(current_user)s has no starred maps yet."
202
198
  msgstr "%(current_user)snon ha ancora selezionato mappe"
203
199
 
204
- #: templates/base.html:12
200
+ #: templates/base.html:13
205
201
  msgid ""
206
202
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
207
203
  "them in your site."
208
204
  msgstr "uMap ti permette di creare mappe con OpenStreetMap come sfondo in un minuto e di integrarle nel tuo sito."
209
205
 
210
- #: templates/registration/login.html:16
206
+ #: templates/registration/login.html:6 templates/registration/login.html:45
207
+ msgid "Login"
208
+ msgstr "Login"
209
+
210
+ #: templates/registration/login.html:24
211
211
  msgid "Please log in with your account"
212
212
  msgstr "Accedi con il tuo account"
213
213
 
214
- #: templates/registration/login.html:28
214
+ #: templates/registration/login.html:41
215
215
  msgid "Username"
216
216
  msgstr "Nome utente"
217
217
 
218
- #: templates/registration/login.html:31
218
+ #: templates/registration/login.html:44
219
219
  msgid "Password"
220
220
  msgstr "Password"
221
221
 
222
- #: templates/registration/login.html:32
223
- msgid "Login"
224
- msgstr "Login"
225
-
226
- #: templates/registration/login.html:37
222
+ #: templates/registration/login.html:51
227
223
  msgid "Please choose a provider"
228
224
  msgstr "Scegli un fornitore"
229
225
 
230
- #: templates/umap/about_summary.html:11
226
+ #: templates/umap/about_summary.html:12
231
227
  #, python-format
232
228
  msgid ""
233
229
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
234
230
  "layers in a minute and embed them in your site."
235
231
  msgstr "uMap ti permette di creare mappe con layer <a href=\"%(osm_url)s\" />OpenStreetMap</a> in un minuto e inserirle nel tuo sito."
236
232
 
237
- #: templates/umap/about_summary.html:21
233
+ #: templates/umap/about_summary.html:23
238
234
  msgid "Choose the layers of your map"
239
235
  msgstr "Seleziona un layer per la propria mappa"
240
236
 
241
- #: templates/umap/about_summary.html:22
237
+ #: templates/umap/about_summary.html:26
242
238
  msgid "Add POIs: markers, lines, polygons..."
243
239
  msgstr "Aggiungi POI: marcatori, linee, poligoni..."
244
240
 
245
- #: templates/umap/about_summary.html:23
241
+ #: templates/umap/about_summary.html:29
246
242
  msgid "Manage POIs colours and icons"
247
243
  msgstr "Scegli colori ed icone dei POI"
248
244
 
249
- #: templates/umap/about_summary.html:24
245
+ #: templates/umap/about_summary.html:32
250
246
  msgid "Manage map options: display a minimap, locate user on load…"
251
247
  msgstr "Aggiungi opzioni alla mappa: mappa panoramica, geolocalizzazione di un utente al caricamento ..."
252
248
 
253
- #: templates/umap/about_summary.html:25
249
+ #: templates/umap/about_summary.html:35
254
250
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
255
251
  msgstr "importa in automatico dati geostrutturati (geojson, gpx, kml, osm ...)"
256
252
 
257
- #: templates/umap/about_summary.html:26
253
+ #: templates/umap/about_summary.html:38
258
254
  msgid "Choose the license for your data"
259
255
  msgstr "Scegli la licenza per i tuoi dati"
260
256
 
261
- #: templates/umap/about_summary.html:27
257
+ #: templates/umap/about_summary.html:41
262
258
  msgid "Embed and share your map"
263
259
  msgstr "Includi nel suo sito e condividi la mappa creata"
264
260
 
265
- #: templates/umap/about_summary.html:37
261
+ #: templates/umap/about_summary.html:52
266
262
  #, python-format
267
263
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
268
264
  msgstr "Ed è <a href=\"%(repo_url)s\">software libero</a>!"
269
265
 
270
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
271
- #: templates/umap/user_dashboard.html:42
266
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
267
+ #: templates/umap/user_dashboard.html:40
272
268
  msgid "Create a map"
273
269
  msgstr "Crea una mappa"
274
270
 
275
- #: templates/umap/about_summary.html:51
271
+ #: templates/umap/about_summary.html:66
276
272
  msgid "Play with the demo"
277
273
  msgstr "Gioca con la demo"
278
274
 
279
- #: templates/umap/content.html:22
275
+ #: templates/umap/components/alerts/alert.html:15
276
+ #: templates/umap/components/alerts/alert.html:64
277
+ #: templates/umap/components/alerts/alert.html:92
278
+ msgid "Close"
279
+ msgstr ""
280
+
281
+ #: templates/umap/components/alerts/alert.html:30
282
+ #, python-format
283
+ msgid ""
284
+ "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
285
+ "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
286
+ "target=\"_blank\">log in</a>."
287
+ msgstr ""
288
+
289
+ #: templates/umap/components/alerts/alert.html:35
290
+ msgid "Here is your secret link to edit the map, please keep it safe:"
291
+ msgstr ""
292
+
293
+ #: templates/umap/components/alerts/alert.html:39
294
+ msgid "Copy link"
295
+ msgstr ""
296
+
297
+ #: templates/umap/components/alerts/alert.html:46
298
+ msgid "Enter your email address to receive the secret link:"
299
+ msgstr ""
300
+
301
+ #: templates/umap/components/alerts/alert.html:52
302
+ msgid "Email"
303
+ msgstr ""
304
+
305
+ #: templates/umap/components/alerts/alert.html:55
306
+ msgid "Send me the link"
307
+ msgstr ""
308
+
309
+ #: templates/umap/components/alerts/alert.html:79
310
+ msgid "See their edits in another tab"
311
+ msgstr ""
312
+
313
+ #: templates/umap/components/alerts/alert.html:82
314
+ msgid "Keep your changes and loose theirs"
315
+ msgstr ""
316
+
317
+ #: templates/umap/components/alerts/alert.html:85
318
+ msgid "Keep their changes and loose yours"
319
+ msgstr ""
320
+
321
+ #: templates/umap/content.html:26
280
322
  msgid ""
281
323
  "This instance of uMap is currently in read only mode, no creation/edit is "
282
324
  "allowed."
283
325
  msgstr "Questa istanza di uMap è attualmente in modalità di sola lettura, non è consentita alcuna creazione/modifica."
284
326
 
285
- #: templates/umap/content.html:30
327
+ #: templates/umap/content.html:34
286
328
  #, python-format
287
329
  msgid ""
288
330
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -291,176 +333,210 @@ msgid ""
291
333
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
292
334
  msgstr "Questa è una demo da utilizzare solo per test e prototipi. Qualora sia necessaria una versione stabile si deve utilizzare l'indirizzo <a href=\"%(stable_url)s\">%(stable_url)s</a>. Chiunque inoltre può crearsi una propria istanza, uMap è <a href=\"%(repo_url)s\">software libero</a>!"
293
335
 
294
- #: templates/umap/home.html:8
336
+ #: templates/umap/content_footer.html:5
337
+ msgid "An OpenStreetMap project"
338
+ msgstr ""
339
+
340
+ #: templates/umap/content_footer.html:6
341
+ msgid "version"
342
+ msgstr ""
343
+
344
+ #: templates/umap/content_footer.html:7
345
+ msgid "Hosted by"
346
+ msgstr ""
347
+
348
+ #: templates/umap/content_footer.html:8
349
+ msgid "Contact"
350
+ msgstr ""
351
+
352
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
353
+ msgid "Help"
354
+ msgstr "Aiuto"
355
+
356
+ #: templates/umap/dashboard_menu.html:6
357
+ #, python-format
358
+ msgid "My Maps (%(count)s)"
359
+ msgstr "Le mie mappe (%(count)s)"
360
+
361
+ #: templates/umap/dashboard_menu.html:8
362
+ msgid "My Maps"
363
+ msgstr "Le mie mappe"
364
+
365
+ #: templates/umap/dashboard_menu.html:11
366
+ msgid "My profile"
367
+ msgstr "Mio profilo"
368
+
369
+ #: templates/umap/dashboard_menu.html:13
370
+ msgid "My teams"
371
+ msgstr ""
372
+
373
+ #: templates/umap/home.html:14
295
374
  msgid "Map of the uMaps"
296
375
  msgstr "Mappe create con uMap"
297
376
 
298
- #: templates/umap/home.html:14
377
+ #: templates/umap/home.html:24
299
378
  msgid "Get inspired, browse maps"
300
379
  msgstr "Prendi ispirazione, visualizza mappe"
301
380
 
302
- #: templates/umap/login_popup_end.html:2
381
+ #: templates/umap/login_popup_end.html:4
303
382
  msgid "You are logged in. Continuing..."
304
383
  msgstr "Utente loggato. Continuare..."
305
384
 
306
- #: templates/umap/map_list.html:9 views.py:349
385
+ #: templates/umap/map_list.html:10 views.py:433
307
386
  msgid "by"
308
387
  msgstr "di"
309
388
 
310
- #: templates/umap/map_list.html:17
389
+ #: templates/umap/map_list.html:18
311
390
  msgid "More"
312
391
  msgstr "Altre mappe"
313
392
 
314
- #: templates/umap/map_table.html:6
393
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
315
394
  msgid "Name"
316
395
  msgstr "Nome"
317
396
 
318
- #: templates/umap/map_table.html:7
397
+ #: templates/umap/map_table.html:11
319
398
  msgid "Preview"
320
399
  msgstr "Anteprima"
321
400
 
322
- #: templates/umap/map_table.html:8
401
+ #: templates/umap/map_table.html:14
323
402
  msgid "Who can see"
324
403
  msgstr "Chi può vedere"
325
404
 
326
- #: templates/umap/map_table.html:9
405
+ #: templates/umap/map_table.html:17
327
406
  msgid "Who can edit"
328
407
  msgstr "Chi può modificare"
329
408
 
330
- #: templates/umap/map_table.html:10
409
+ #: templates/umap/map_table.html:20
331
410
  msgid "Last save"
332
411
  msgstr "Ultimo salvataggio"
333
412
 
334
- #: templates/umap/map_table.html:11
413
+ #: templates/umap/map_table.html:23
335
414
  msgid "Owner"
336
415
  msgstr "Proprietario"
337
416
 
338
- #: templates/umap/map_table.html:12
417
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
339
418
  msgid "Actions"
340
419
  msgstr "Azioni"
341
420
 
342
- #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
421
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
343
422
  msgid "Open preview"
344
423
  msgstr "Apri anteprima"
345
424
 
346
- #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
425
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
347
426
  msgid "Share"
348
427
  msgstr "Condividi"
349
428
 
350
- #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
429
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
430
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
351
431
  msgid "Edit"
352
432
  msgstr "Modifica"
353
433
 
354
- #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
434
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
355
435
  msgid "Download"
356
436
  msgstr "Download"
357
437
 
358
- #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
438
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
359
439
  msgid "Clone"
360
440
  msgstr "Clona"
361
441
 
362
- #: templates/umap/map_table.html:76 templates/umap/map_table.html:78
442
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
363
443
  msgid "Delete"
364
444
  msgstr "Elimina"
365
445
 
366
- #: templates/umap/map_table.html:91
446
+ #: templates/umap/map_table.html:117
367
447
  msgid "first"
368
448
  msgstr "primo"
369
449
 
370
- #: templates/umap/map_table.html:92
450
+ #: templates/umap/map_table.html:118
371
451
  msgid "previous"
372
452
  msgstr "precedente"
373
453
 
374
- #: templates/umap/map_table.html:100
454
+ #: templates/umap/map_table.html:126
375
455
  #, python-format
376
456
  msgid "Page %(maps_number)s of %(num_pages)s"
377
457
  msgstr "Pagina %(maps_number)s di %(num_pages)s"
378
458
 
379
- #: templates/umap/map_table.html:105
459
+ #: templates/umap/map_table.html:131
380
460
  msgid "next"
381
461
  msgstr "prossimo"
382
462
 
383
- #: templates/umap/map_table.html:106
463
+ #: templates/umap/map_table.html:132
384
464
  msgid "last"
385
465
  msgstr "ultimo"
386
466
 
387
- #: templates/umap/map_table.html:114
467
+ #: templates/umap/map_table.html:140
388
468
  #, python-format
389
469
  msgid "Lines per page: %(per_page)s"
390
470
  msgstr "Linee per pagina: %(per_page)s"
391
471
 
392
- #: templates/umap/map_table.html:119
472
+ #: templates/umap/map_table.html:145
393
473
  #, python-format
394
474
  msgid "%(count)s maps"
395
475
  msgstr "%(count)s mappe"
396
476
 
397
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
477
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
398
478
  msgid "My Dashboard"
399
479
  msgstr "Mia Dashboard"
400
480
 
401
- #: templates/umap/navigation.html:13
481
+ #: templates/umap/navigation.html:14
402
482
  msgid "Starred maps"
403
483
  msgstr "Mappe selezionate"
404
484
 
405
- #: templates/umap/navigation.html:17
485
+ #: templates/umap/navigation.html:18
406
486
  msgid "Log in"
407
487
  msgstr "Accedi"
408
488
 
409
- #: templates/umap/navigation.html:17
489
+ #: templates/umap/navigation.html:18
410
490
  msgid "Sign in"
411
491
  msgstr "Registrati"
412
492
 
413
- #: templates/umap/navigation.html:21
493
+ #: templates/umap/navigation.html:22
414
494
  msgid "About"
415
495
  msgstr "Informazioni"
416
496
 
417
- #: templates/umap/navigation.html:24
418
- msgid "Help"
419
- msgstr "Aiuto"
420
-
421
- #: templates/umap/navigation.html:29
497
+ #: templates/umap/navigation.html:30
422
498
  msgid "Change password"
423
499
  msgstr "Cambia password"
424
500
 
425
- #: templates/umap/navigation.html:33
501
+ #: templates/umap/navigation.html:34
426
502
  msgid "Log out"
427
503
  msgstr "Esci"
428
504
 
429
- #: templates/umap/password_change.html:4
505
+ #: templates/umap/password_change.html:7
430
506
  msgid "Password change"
431
507
  msgstr "Cambia password"
432
508
 
433
- #: templates/umap/password_change.html:6
509
+ #: templates/umap/password_change.html:10
434
510
  msgid ""
435
511
  "Please enter your old password, for security's sake, and then enter your new"
436
512
  " password twice so we can verify you typed it in correctly."
437
513
  msgstr "Per motivi di sicurezza inserire la vecchia password, poi inserire quella nuova due volte così da verificare che sia stata scritta correttamente"
438
514
 
439
- #: templates/umap/password_change.html:13
515
+ #: templates/umap/password_change.html:17
440
516
  msgid "Old password"
441
517
  msgstr "Password vecchia"
442
518
 
443
- #: templates/umap/password_change.html:18
519
+ #: templates/umap/password_change.html:22
444
520
  msgid "New password"
445
521
  msgstr "Nuova password"
446
522
 
447
- #: templates/umap/password_change.html:22
523
+ #: templates/umap/password_change.html:26
448
524
  msgid "New password confirmation"
449
525
  msgstr "Conferma della nuova password"
450
526
 
451
- #: templates/umap/password_change.html:23
527
+ #: templates/umap/password_change.html:27
452
528
  msgid "Change my password"
453
529
  msgstr "Cambia la mia password"
454
530
 
455
- #: templates/umap/password_change_done.html:4
531
+ #: templates/umap/password_change_done.html:7
456
532
  msgid "Password change successful"
457
533
  msgstr "Cambio della password effettuato con successo!"
458
534
 
459
- #: templates/umap/password_change_done.html:5
535
+ #: templates/umap/password_change_done.html:10
460
536
  msgid "Your password was changed."
461
537
  msgstr "La tua password è stata cambiata."
462
538
 
463
- #: templates/umap/search.html:10
539
+ #: templates/umap/search.html:15
464
540
  #, python-format
465
541
  msgid "%(count)s map found:"
466
542
  msgid_plural "%(count)s maps found:"
@@ -468,99 +544,129 @@ msgstr[0] "%(count)s mappa trovata"
468
544
  msgstr[1] "%(count)s mappe trovate"
469
545
  msgstr[2] "%(count)s mappe trovate:"
470
546
 
471
- #: templates/umap/search.html:18
547
+ #: templates/umap/search.html:24
472
548
  msgid "No map found."
473
549
  msgstr "Nessuna mappa trovata."
474
550
 
475
- #: templates/umap/search.html:21
551
+ #: templates/umap/search.html:29
476
552
  msgid "Latest created maps"
477
553
  msgstr "Ultime mappe create"
478
554
 
479
- #: templates/umap/search_bar.html:3
555
+ #: templates/umap/search_bar.html:4
480
556
  msgid "Search maps"
481
557
  msgstr "Cerca mappe"
482
558
 
483
- #: templates/umap/search_bar.html:14
559
+ #: templates/umap/search_bar.html:15
484
560
  msgid "Search"
485
561
  msgstr "Cerca"
486
562
 
487
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
488
- msgid "Search my maps"
489
- msgstr "Cerca nelle mie mappe"
563
+ #: templates/umap/team_detail.html:10
564
+ #, python-format
565
+ msgid "Browse %(current_team)s's maps"
566
+ msgstr ""
490
567
 
491
- #: templates/umap/user_dashboard.html:10
568
+ #: templates/umap/team_detail.html:22
492
569
  #, python-format
493
- msgid "My Maps (%(count)s)"
494
- msgstr "Le mie mappe (%(count)s)"
570
+ msgid "%(current_team)s has no public maps."
571
+ msgstr ""
495
572
 
496
- #: templates/umap/user_dashboard.html:12
497
- msgid "My profile"
498
- msgstr "Mio profilo"
573
+ #: templates/umap/team_form.html:24
574
+ msgid "Delete this team"
575
+ msgstr ""
576
+
577
+ #: templates/umap/team_form.html:47
578
+ msgid "Add user"
579
+ msgstr ""
580
+
581
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
582
+ msgid "Search my maps"
583
+ msgstr "Cerca nelle mie mappe"
499
584
 
500
- #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
585
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
501
586
  msgid "Map’s title"
502
587
  msgstr "Titolo della mappa"
503
588
 
504
- #: templates/umap/user_dashboard.html:32
589
+ #: templates/umap/user_dashboard.html:30
505
590
  #, python-format
506
591
  msgid "Download %(count)s maps"
507
592
  msgstr "Scarica %(count)s mappe"
508
593
 
509
- #: templates/umap/user_dashboard.html:42
594
+ #: templates/umap/user_dashboard.html:40
510
595
  msgid "You have no map yet."
511
596
  msgstr "Non hai ancora alcuna mappa."
512
597
 
513
- #: views.py:354
598
+ #: templates/umap/user_teams.html:17
599
+ msgid "Users"
600
+ msgstr ""
601
+
602
+ #: templates/umap/user_teams.html:48
603
+ msgid "New team"
604
+ msgstr ""
605
+
606
+ #: views.py:235
607
+ msgid "Cannot delete a team with more than one member"
608
+ msgstr ""
609
+
610
+ #: views.py:239
611
+ #, python-format
612
+ msgid "Team “%(name)s” has been deleted"
613
+ msgstr ""
614
+
615
+ #: views.py:438
514
616
  msgid "View the map"
515
617
  msgstr "Visualizza la mappa"
516
618
 
517
- #: views.py:716
619
+ #: views.py:824
518
620
  msgid "See full screen"
519
621
  msgstr "Vedi a schermo interno"
520
622
 
521
- #: views.py:817
623
+ #: views.py:953
522
624
  msgid "Map editors updated with success!"
523
625
  msgstr "Aggiornato l'elenco degli editor abilitati alla modifica della mappa!"
524
626
 
525
- #: views.py:854
627
+ #: views.py:989
526
628
  #, python-format
527
629
  msgid "The uMap edit link for your map: %(map_name)s"
528
630
  msgstr "Link uMap per la modifica della tua mappa: %(map_name)s"
529
631
 
530
- #: views.py:857
632
+ #: views.py:992
531
633
  #, python-format
532
634
  msgid "Here is your secret edit link: %(link)s"
533
635
  msgstr "Qui il tuo link segreto: %(link)s"
534
636
 
535
- #: views.py:864
637
+ #: views.py:999
536
638
  #, python-format
537
639
  msgid "Can't send email to %(email)s"
538
640
  msgstr "Non riesco ad inviare email a 1%(email)s"
539
641
 
540
- #: views.py:867
642
+ #: views.py:1002
541
643
  #, python-format
542
644
  msgid "Email sent to %(email)s"
543
645
  msgstr "Email inviata a %(email)s"
544
646
 
545
- #: views.py:878
647
+ #: views.py:1013
546
648
  msgid "Only its owner can delete the map."
547
649
  msgstr "Solo il proprietario può eliminare la mappa."
548
650
 
549
- #: views.py:906
651
+ #: views.py:1016
652
+ msgid "Map successfully deleted."
653
+ msgstr ""
654
+
655
+ #: views.py:1042
550
656
  #, python-format
551
657
  msgid ""
552
658
  "Your map has been cloned! If you want to edit this map from another "
553
659
  "computer, please use this link: %(anonymous_url)s"
554
660
  msgstr "La mappa è stata clonata! Per modificarla usando un altro computer, si deve utilizzare questo link: %(anonymous_url)s"
555
661
 
556
- #: views.py:911
662
+ #: views.py:1047
557
663
  msgid "Congratulations, your map has been cloned!"
558
664
  msgstr "Perfetto, la tua mappa è stata clonata!"
559
665
 
560
- #: views.py:1145
666
+ #: views.py:1282
561
667
  msgid "Layer successfully deleted."
562
668
  msgstr "Layer eliminato correttamente"
563
669
 
564
- #: views.py:1167
670
+ #: views.py:1304
565
671
  msgid "Permissions updated with success!"
566
672
  msgstr "Autorizzazioni aggiornate con successo!"