umap-project 3.0.5__py3-none-any.whl → 3.1.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 (145) hide show
  1. umap/__init__.py +1 -1
  2. umap/forms.py +1 -1
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +219 -72
  5. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/ca/LC_MESSAGES/django.po +286 -95
  7. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
  9. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/da/LC_MESSAGES/django.po +394 -202
  11. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/de/LC_MESSAGES/django.po +146 -75
  13. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/el/LC_MESSAGES/django.po +125 -59
  15. umap/locale/en/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/en/LC_MESSAGES/django.po +124 -58
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +125 -59
  19. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/et/LC_MESSAGES/django.po +210 -64
  21. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/eu/LC_MESSAGES/django.po +212 -65
  23. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
  25. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/fr/LC_MESSAGES/django.po +125 -59
  27. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/gl/LC_MESSAGES/django.po +212 -66
  29. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/hu/LC_MESSAGES/django.po +148 -78
  31. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/is/LC_MESSAGES/django.po +130 -60
  33. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/it/LC_MESSAGES/django.po +219 -73
  35. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/ms/LC_MESSAGES/django.po +289 -98
  37. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/nl/LC_MESSAGES/django.po +128 -61
  39. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/pl/LC_MESSAGES/django.po +287 -96
  41. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  42. umap/locale/pt/LC_MESSAGES/django.po +211 -65
  43. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  44. umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
  45. umap/management/commands/migrate_to_S3.py +42 -20
  46. umap/management/commands/purge_old_versions.py +63 -0
  47. umap/management/commands/switch_user.py +52 -0
  48. umap/managers.py +29 -2
  49. umap/middleware.py +1 -1
  50. umap/migrations/0028_map_is_template.py +21 -0
  51. umap/models.py +14 -4
  52. umap/settings/base.py +22 -0
  53. umap/static/umap/base.css +4 -2
  54. umap/static/umap/content.css +1 -1
  55. umap/static/umap/css/dialog.css +5 -2
  56. umap/static/umap/css/form.css +19 -12
  57. umap/static/umap/css/icon.css +6 -0
  58. umap/static/umap/css/importers.css +4 -0
  59. umap/static/umap/css/panel.css +2 -0
  60. umap/static/umap/img/16-white.svg +5 -1
  61. umap/static/umap/img/16.svg +1 -1
  62. umap/static/umap/img/24-white.svg +3 -2
  63. umap/static/umap/img/24.svg +3 -4
  64. umap/static/umap/img/importers/opendata.svg +1 -0
  65. umap/static/umap/img/source/16-white.svg +8 -4
  66. umap/static/umap/img/source/16.svg +1 -1
  67. umap/static/umap/img/source/24-white.svg +5 -4
  68. umap/static/umap/img/source/24.svg +5 -6
  69. umap/static/umap/js/components/modal.js +27 -0
  70. umap/static/umap/js/modules/caption.js +4 -4
  71. umap/static/umap/js/modules/data/features.js +40 -4
  72. umap/static/umap/js/modules/data/layer.js +208 -138
  73. umap/static/umap/js/modules/form/builder.js +6 -14
  74. umap/static/umap/js/modules/form/fields.js +2 -2
  75. umap/static/umap/js/modules/help.js +15 -3
  76. umap/static/umap/js/modules/importer.js +7 -4
  77. umap/static/umap/js/modules/importers/opendata.js +142 -0
  78. umap/static/umap/js/modules/permissions.js +3 -3
  79. umap/static/umap/js/modules/rendering/controls.js +34 -2
  80. umap/static/umap/js/modules/rendering/icon.js +2 -2
  81. umap/static/umap/js/modules/rendering/layers/base.js +1 -1
  82. umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
  83. umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
  84. umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
  85. umap/static/umap/js/modules/rendering/map.js +5 -0
  86. umap/static/umap/js/modules/rendering/ui.js +23 -0
  87. umap/static/umap/js/modules/rules.js +24 -23
  88. umap/static/umap/js/modules/schema.js +60 -4
  89. umap/static/umap/js/modules/sync/updaters.js +7 -3
  90. umap/static/umap/js/modules/tableeditor.js +7 -30
  91. umap/static/umap/js/modules/templates.js +122 -0
  92. umap/static/umap/js/modules/ui/bar.js +13 -3
  93. umap/static/umap/js/modules/ui/panel.js +1 -1
  94. umap/static/umap/js/modules/umap.js +28 -13
  95. umap/static/umap/js/umap.controls.js +11 -4
  96. umap/static/umap/locale/br.js +51 -18
  97. umap/static/umap/locale/br.json +51 -18
  98. umap/static/umap/locale/da.js +343 -310
  99. umap/static/umap/locale/da.json +343 -310
  100. umap/static/umap/locale/de.js +40 -7
  101. umap/static/umap/locale/de.json +40 -7
  102. umap/static/umap/locale/el.js +31 -4
  103. umap/static/umap/locale/el.json +31 -4
  104. umap/static/umap/locale/en.js +34 -1
  105. umap/static/umap/locale/en.json +34 -1
  106. umap/static/umap/locale/es.js +37 -4
  107. umap/static/umap/locale/es.json +37 -4
  108. umap/static/umap/locale/fr.js +34 -1
  109. umap/static/umap/locale/fr.json +34 -1
  110. umap/static/umap/locale/hu.js +44 -17
  111. umap/static/umap/locale/hu.json +44 -17
  112. umap/static/umap/locale/it.js +74 -41
  113. umap/static/umap/locale/it.json +74 -41
  114. umap/static/umap/locale/nl.js +42 -9
  115. umap/static/umap/locale/nl.json +42 -9
  116. umap/static/umap/map.css +3 -23
  117. umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
  118. umap/storage/fs.py +19 -9
  119. umap/templates/umap/dashboard_menu.html +5 -0
  120. umap/templates/umap/design_system.html +9 -0
  121. umap/templates/umap/js.html +3 -0
  122. umap/templates/umap/map_init.html +3 -1
  123. umap/templates/umap/map_list.html +2 -2
  124. umap/templates/umap/map_table.html +18 -18
  125. umap/templates/umap/user_dashboard.html +9 -58
  126. umap/templates/umap/user_map_table.html +36 -0
  127. umap/templates/umap/user_templates.html +19 -0
  128. umap/templatetags/umap_tags.py +5 -0
  129. umap/tests/integration/test_basics.py +9 -1
  130. umap/tests/integration/test_conditional_rules.py +57 -0
  131. umap/tests/integration/test_datalayer.py +16 -9
  132. umap/tests/integration/test_edit_marker.py +11 -0
  133. umap/tests/integration/test_tableeditor.py +42 -7
  134. umap/tests/integration/test_templates.py +44 -0
  135. umap/tests/test_dashboard.py +19 -0
  136. umap/tests/test_purge_old_versions.py +91 -0
  137. umap/tests/test_switch_user.py +31 -0
  138. umap/tests/test_views.py +67 -0
  139. umap/urls.py +7 -1
  140. umap/views.py +65 -19
  141. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/METADATA +15 -15
  142. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/RECORD +145 -132
  143. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
  144. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
  145. {umap_project-3.0.5.dist-info → umap_project-3.1.0.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: 2025-03-03 17:36+0000\n"
24
+ "POT-Creation-Date: 2025-06-10 09:19+0000\n"
25
25
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
26
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"
@@ -48,137 +48,229 @@ msgstr "Il sito in sola lettura per manutenzione"
48
48
  msgid ""
49
49
  "Using “%(name)s” to authenticate is deprecated and will be removed soon. "
50
50
  "Please configure another provider below before losing access to your account"
51
- " and maps."
52
- msgstr ""
51
+ " and maps. Then, please logout and login again with the new provider."
52
+ msgstr "L’uso di “%(name)s” per autenticarsi è scoraggiato e verrà presto rimosso. Configura un altro fornitore qua sotto prima di perdere l’accesso alla tua utenza e alle tue mappe. Dopo di ciò, esci e rientra con il nuovo fornitore."
53
53
 
54
- #: models.py:60 models.py:79
54
+ #: models.py:61 models.py:80
55
55
  msgid "name"
56
56
  msgstr "nome"
57
57
 
58
- #: models.py:62 models.py:485
58
+ #: models.py:63 models.py:503
59
59
  msgid "description"
60
60
  msgstr "descrizione"
61
61
 
62
- #: models.py:110
62
+ #: models.py:111
63
63
  msgid "details"
64
64
  msgstr "dettagli"
65
65
 
66
- #: models.py:111
66
+ #: models.py:112
67
67
  msgid "Link to a page where the licence is detailed."
68
68
  msgstr "Link alla pagina con i dettagli della licenza"
69
69
 
70
- #: models.py:121
70
+ #: models.py:122
71
71
  msgid "URL template using OSM tile format"
72
72
  msgstr "Modello dell'URL usando il formato delle tile OSM"
73
73
 
74
- #: models.py:127
74
+ #: models.py:128
75
75
  msgid "Order of the tilelayers in the edit box"
76
76
  msgstr "Ordine degli sfondi (tilelayers) nel box di modifica"
77
77
 
78
- #: models.py:175 models.py:479
78
+ #: models.py:176 models.py:497
79
79
  msgid "Only editable with secret edit link"
80
80
  msgstr "Modificabile solo con il link segreto"
81
81
 
82
- #: models.py:176 models.py:480
82
+ #: models.py:177 models.py:498
83
83
  msgid "Everyone can edit"
84
84
  msgstr "Chiunque può modificare"
85
85
 
86
- #: models.py:179 models.py:473
86
+ #: models.py:180 models.py:491
87
87
  msgid "Everyone"
88
88
  msgstr "Chiunque"
89
89
 
90
- #: models.py:180 models.py:189 models.py:474
90
+ #: models.py:181 models.py:190 models.py:492
91
91
  msgid "Editors and team only"
92
92
  msgstr "Soltanto editor e team"
93
93
 
94
- #: models.py:181 models.py:475
94
+ #: models.py:182 models.py:493
95
95
  msgid "Owner only"
96
96
  msgstr "Solo chi ha la proprietà"
97
97
 
98
- #: models.py:184
98
+ #: models.py:185
99
99
  msgid "Draft (private)"
100
100
  msgstr "Bozza (privata)"
101
101
 
102
- #: models.py:185
102
+ #: models.py:186
103
103
  msgid "Everyone (public)"
104
104
  msgstr "Chiunque (pubblico)"
105
105
 
106
- #: models.py:188
106
+ #: models.py:189
107
107
  msgid "Anyone with link"
108
108
  msgstr "Chiunque abbia il link"
109
109
 
110
- #: models.py:190
110
+ #: models.py:191
111
111
  msgid "Blocked"
112
112
  msgstr "Bloccata"
113
113
 
114
- #: models.py:191 models.py:469
114
+ #: models.py:192 models.py:487
115
115
  msgid "Deleted"
116
116
  msgstr "Eliminato"
117
117
 
118
- #: models.py:194
118
+ #: models.py:195
119
119
  msgid "center"
120
120
  msgstr "centra"
121
121
 
122
- #: models.py:195
122
+ #: models.py:196
123
123
  msgid "zoom"
124
124
  msgstr "zoom"
125
125
 
126
- #: models.py:197
126
+ #: models.py:198
127
127
  msgid "locate"
128
128
  msgstr "localizza"
129
129
 
130
- #: models.py:197
130
+ #: models.py:198
131
131
  msgid "Locate user on load?"
132
132
  msgstr "Geolocalizzare l'utente al caricamento?"
133
133
 
134
- #: models.py:201
134
+ #: models.py:202
135
135
  msgid "Choose the map licence."
136
136
  msgstr "Scegliere una licenza per la mappa."
137
137
 
138
- #: models.py:202
138
+ #: models.py:203
139
139
  msgid "licence"
140
140
  msgstr "licenza"
141
141
 
142
- #: models.py:213
142
+ #: models.py:214
143
143
  msgid "owner"
144
144
  msgstr "proprietario"
145
145
 
146
- #: models.py:217
146
+ #: models.py:218
147
147
  msgid "editors"
148
148
  msgstr "contributore"
149
149
 
150
- #: models.py:223
150
+ #: models.py:224
151
151
  msgid "team"
152
152
  msgstr "team"
153
153
 
154
- #: models.py:229 models.py:501
154
+ #: models.py:230 models.py:519
155
155
  msgid "edit status"
156
156
  msgstr "stato della modifica"
157
157
 
158
- #: models.py:234 models.py:506
158
+ #: models.py:235 models.py:524
159
159
  msgid "share status"
160
160
  msgstr "stato condivisione"
161
161
 
162
- #: models.py:237 models.py:496
162
+ #: models.py:238 models.py:514
163
163
  msgid "settings"
164
164
  msgstr "impostazioni"
165
165
 
166
- #: models.py:407
166
+ #: models.py:243
167
+ msgid "save as template"
168
+ msgstr ""
169
+
170
+ #: models.py:244
171
+ msgid "This map is a template map."
172
+ msgstr ""
173
+
174
+ #: models.py:420
167
175
  msgid "Clone of"
168
176
  msgstr "Duplicata da "
169
177
 
170
- #: models.py:468 models.py:472 models.py:478
178
+ #: models.py:486 models.py:490 models.py:496
171
179
  msgid "Inherit"
172
180
  msgstr "Inherit"
173
181
 
174
- #: models.py:491
182
+ #: models.py:509
175
183
  msgid "display on load"
176
184
  msgstr "mostra al caricamento"
177
185
 
178
- #: models.py:492
186
+ #: models.py:510
179
187
  msgid "Display this layer on load."
180
188
  msgstr "Visualizza questo layer al caricamento."
181
189
 
190
+ #: settings/base.py:283
191
+ msgid "uMap user documentation"
192
+ msgstr ""
193
+
194
+ #: settings/base.py:288
195
+ msgid "Video tutorials"
196
+ msgstr ""
197
+
198
+ #: settings/base.py:293
199
+ msgid "OpenStreetMap.org forum"
200
+ msgstr ""
201
+
202
+ #: settings/base.py:298
203
+ msgid "OpenStreetMap France forum"
204
+ msgstr ""
205
+
206
+ #: settings/base.py:318
207
+ msgid "Art and Culture"
208
+ msgstr "Arte e cultura"
209
+
210
+ #: settings/base.py:319
211
+ msgid "Cycling"
212
+ msgstr "Ciclismo"
213
+
214
+ #: settings/base.py:320
215
+ msgid "Business"
216
+ msgstr "Economia"
217
+
218
+ #: settings/base.py:321
219
+ msgid "Environment"
220
+ msgstr "Ambiente"
221
+
222
+ #: settings/base.py:322
223
+ msgid "Education"
224
+ msgstr "Educazione"
225
+
226
+ #: settings/base.py:323
227
+ msgid "Food and Agriculture"
228
+ msgstr "Alimentazione e agricoltura"
229
+
230
+ #: settings/base.py:324
231
+ msgid "Geopolitics"
232
+ msgstr "Geo-politica"
233
+
234
+ #: settings/base.py:325
235
+ msgid "Health"
236
+ msgstr "Salute"
237
+
238
+ #: settings/base.py:326
239
+ msgid "Hiking"
240
+ msgstr "Escursionismo"
241
+
242
+ #: settings/base.py:327
243
+ msgid "History"
244
+ msgstr "Storia"
245
+
246
+ #: settings/base.py:328
247
+ msgid "Public sector"
248
+ msgstr "Settore pubblico"
249
+
250
+ #: settings/base.py:329
251
+ msgid "Science"
252
+ msgstr "Scienza"
253
+
254
+ #: settings/base.py:330
255
+ msgid "Shopping"
256
+ msgstr "Acquisti"
257
+
258
+ #: settings/base.py:331
259
+ msgid "Sport and Leisure"
260
+ msgstr "Sport e tempo libero"
261
+
262
+ #: settings/base.py:332
263
+ msgid "Travel"
264
+ msgstr "Viaggi"
265
+
266
+ #: settings/base.py:333
267
+ msgid "Transports"
268
+ msgstr "Trasporti"
269
+
270
+ #: settings/base.py:334
271
+ msgid "Tourism"
272
+ msgstr "Turismo"
273
+
182
274
  #: templates/403.html:8
183
275
  msgid ""
184
276
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
@@ -234,7 +326,7 @@ msgstr "È una buona abitudine connettere il tuo account a più di un fornitore,
234
326
  #: templates/auth/user_stars.html:6
235
327
  #, python-format
236
328
  msgid "%(current_user)s’s starred maps"
237
- msgstr ""
329
+ msgstr "Le mappe speciali di %(current_user)s"
238
330
 
239
331
  #: templates/auth/user_stars.html:12
240
332
  #, python-format
@@ -258,7 +350,7 @@ msgstr "Login"
258
350
 
259
351
  #: templates/registration/login.html:22
260
352
  msgid "To save and easily find your maps, identify yourself."
261
- msgstr "Identificati per salva re e trovare facilmente le tue mappe"
353
+ msgstr "Identificati per salvare e trovare facilmente le tue mappe."
262
354
 
263
355
  #: templates/registration/login.html:25
264
356
  msgid "Please log in with your account:"
@@ -274,7 +366,7 @@ msgstr "Password"
274
366
 
275
367
  #: templates/registration/login.html:52
276
368
  msgid "Please choose a provider:"
277
- msgstr "Scegli un fornitore"
369
+ msgstr "Scegli un fornitore:"
278
370
 
279
371
  #: templates/umap/about.html:5 templates/umap/navigation.html:22
280
372
  msgid "About"
@@ -321,7 +413,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
321
413
  msgstr "Ed è <a href=\"%(repo_url)s\">software libero</a>!"
322
414
 
323
415
  #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
324
- #: templates/umap/user_dashboard.html:40
416
+ #: templates/umap/user_dashboard.html:16
325
417
  msgid "Create a map"
326
418
  msgstr "Crea una mappa"
327
419
 
@@ -419,11 +511,20 @@ msgstr "Le mie mappe (%(count)s)"
419
511
  msgid "My Maps"
420
512
  msgstr "Le mie mappe"
421
513
 
422
- #: templates/umap/dashboard_menu.html:12
514
+ #: templates/umap/dashboard_menu.html:11
515
+ #, python-format
516
+ msgid "My Templates (%(count)s)"
517
+ msgstr ""
518
+
519
+ #: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
520
+ msgid "My Templates"
521
+ msgstr ""
522
+
523
+ #: templates/umap/dashboard_menu.html:17
423
524
  msgid "My profile"
424
525
  msgstr "Mio profilo"
425
526
 
426
- #: templates/umap/dashboard_menu.html:15
527
+ #: templates/umap/dashboard_menu.html:20
427
528
  msgid "My teams"
428
529
  msgstr "I miei team"
429
530
 
@@ -431,7 +532,7 @@ msgstr "I miei team"
431
532
  msgid "Map of the uMaps"
432
533
  msgstr "Mappe create con uMap"
433
534
 
434
- #: templates/umap/home.html:24
535
+ #: templates/umap/home.html:25
435
536
  msgid "Get inspired, browse maps"
436
537
  msgstr "Prendi ispirazione, visualizza mappe"
437
538
 
@@ -439,11 +540,23 @@ msgstr "Prendi ispirazione, visualizza mappe"
439
540
  msgid "You are logged in. Continuing..."
440
541
  msgstr "Utente loggato. Continuare..."
441
542
 
442
- #: templates/umap/map_list.html:11 views.py:437
543
+ #: templates/umap/map_list.html:15
544
+ msgid "template"
545
+ msgstr ""
546
+
547
+ #: templates/umap/map_list.html:18 views.py:458
443
548
  msgid "by"
444
549
  msgstr "di"
445
550
 
446
- #: templates/umap/map_list.html:20
551
+ #: templates/umap/map_list.html:22
552
+ msgid "See the template"
553
+ msgstr ""
554
+
555
+ #: templates/umap/map_list.html:22
556
+ msgid "See the map"
557
+ msgstr "Vedi la mappa"
558
+
559
+ #: templates/umap/map_list.html:28
447
560
  msgid "More"
448
561
  msgstr "Altre mappe"
449
562
 
@@ -475,7 +588,7 @@ msgstr "Proprietario"
475
588
  msgid "Actions"
476
589
  msgstr "Azioni"
477
590
 
478
- #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
591
+ #: templates/umap/map_table.html:40 templates/umap/map_table.html:42
479
592
  msgid "Open preview"
480
593
  msgstr "Apri anteprima"
481
594
 
@@ -603,11 +716,15 @@ msgstr[0] "%(count)s mappa trovata"
603
716
  msgstr[1] "%(count)s mappe trovate"
604
717
  msgstr[2] "%(count)s mappe trovate:"
605
718
 
606
- #: templates/umap/search.html:28
719
+ #: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
607
720
  msgid "No map found."
608
721
  msgstr "Nessuna mappa trovata."
609
722
 
610
- #: templates/umap/search.html:33
723
+ #: templates/umap/search.html:36
724
+ msgid "Latest created maps in category"
725
+ msgstr "Le ultime mappe create della categoria"
726
+
727
+ #: templates/umap/search.html:43
611
728
  msgid "Latest created maps"
612
729
  msgstr "Ultime mappe create"
613
730
 
@@ -615,18 +732,22 @@ msgstr "Ultime mappe create"
615
732
  msgid "Search maps"
616
733
  msgstr "Cerca mappe"
617
734
 
618
- #: templates/umap/search_bar.html:16
735
+ #: templates/umap/search_bar.html:14
736
+ msgid "Any category"
737
+ msgstr "Qualsiasi categoria"
738
+
739
+ #: templates/umap/search_bar.html:19
619
740
  msgid "Search"
620
741
  msgstr "Cerca"
621
742
 
622
743
  #: templates/umap/team_confirm_delete.html:6
623
744
  msgid "Team deletion"
624
- msgstr ""
745
+ msgstr "Cancellazione del team"
625
746
 
626
747
  #: templates/umap/team_detail.html:6
627
748
  #, python-format
628
749
  msgid "%(current_team)s’s maps"
629
- msgstr ""
750
+ msgstr "Le mappe di %(current_team)s"
630
751
 
631
752
  #: templates/umap/team_detail.html:14
632
753
  #, python-format
@@ -636,7 +757,7 @@ msgstr "Sfoglia mappe team %(current_team)s"
636
757
  #: templates/umap/team_detail.html:26
637
758
  #, python-format
638
759
  msgid "%(current_team)s has no public maps."
639
- msgstr "%(current_team)snon ha mappe pubbliche"
760
+ msgstr "%(current_team)s non ha mappe pubbliche."
640
761
 
641
762
  #: templates/umap/team_form.html:6
642
763
  msgid "Create or edit a team"
@@ -650,20 +771,20 @@ msgstr "Elimina questo team"
650
771
  msgid "Add user"
651
772
  msgstr "Aggiungi utente"
652
773
 
653
- #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
774
+ #: templates/umap/user_dashboard.html:10
654
775
  msgid "Search my maps"
655
776
  msgstr "Cerca nelle mie mappe"
656
777
 
657
- #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
658
- msgid "Map’s title"
659
- msgstr "Titolo della mappa"
778
+ #: templates/umap/user_dashboard.html:11
779
+ msgid "Map’s name"
780
+ msgstr ""
660
781
 
661
- #: templates/umap/user_dashboard.html:30
782
+ #: templates/umap/user_dashboard.html:12
662
783
  #, python-format
663
784
  msgid "Download %(count)s maps"
664
785
  msgstr "Scarica %(count)s mappe"
665
786
 
666
- #: templates/umap/user_dashboard.html:40
787
+ #: templates/umap/user_dashboard.html:15
667
788
  msgid "You have no map yet."
668
789
  msgstr "Non hai ancora alcuna mappa."
669
790
 
@@ -679,70 +800,95 @@ msgstr "Utenti"
679
800
  msgid "New team"
680
801
  msgstr "Nuovo team"
681
802
 
682
- #: views.py:234
803
+ #: templates/umap/user_templates.html:10
804
+ msgid "Search my templates"
805
+ msgstr ""
806
+
807
+ #: templates/umap/user_templates.html:11
808
+ msgid "Template’s name"
809
+ msgstr ""
810
+
811
+ #: templates/umap/user_templates.html:12
812
+ #, python-format
813
+ msgid "Download %(count)s templates"
814
+ msgstr ""
815
+
816
+ #: templates/umap/user_templates.html:15
817
+ msgid "You have no template yet."
818
+ msgstr ""
819
+
820
+ #: templates/umap/user_templates.html:16
821
+ msgid "Create a template"
822
+ msgstr ""
823
+
824
+ #: templates/umap/user_templates.html:17
825
+ msgid "No template found."
826
+ msgstr ""
827
+
828
+ #: views.py:233
683
829
  msgid "Cannot delete a team with more than one member"
684
830
  msgstr "Non si può eliminare un team con più di un membro"
685
831
 
686
- #: views.py:238
832
+ #: views.py:237
687
833
  #, python-format
688
834
  msgid "Team “%(name)s” has been deleted"
689
- msgstr "il team \"%(name)s\" è stato cancellato"
835
+ msgstr "Il team “%(name)s è stato cancellato"
690
836
 
691
- #: views.py:442
837
+ #: views.py:463
692
838
  msgid "View the map"
693
839
  msgstr "Visualizza la mappa"
694
840
 
695
- #: views.py:838
841
+ #: views.py:864
696
842
  msgid "See full screen"
697
843
  msgstr "Vedi a schermo interno"
698
844
 
699
- #: views.py:981
845
+ #: views.py:1007
700
846
  msgid "Map editors updated with success!"
701
847
  msgstr "Aggiornato l'elenco degli editor abilitati alla modifica della mappa!"
702
848
 
703
- #: views.py:1017
849
+ #: views.py:1043
704
850
  #, python-format
705
851
  msgid "The uMap edit link for your map: %(map_name)s"
706
852
  msgstr "Link uMap per la modifica della tua mappa: %(map_name)s"
707
853
 
708
- #: views.py:1020
854
+ #: views.py:1046
709
855
  #, python-format
710
856
  msgid "Here is your secret edit link: %(link)s"
711
857
  msgstr "Qui il tuo link segreto: %(link)s"
712
858
 
713
- #: views.py:1027
859
+ #: views.py:1053
714
860
  #, python-format
715
861
  msgid "Can't send email to %(email)s"
716
862
  msgstr "Non riesco ad inviare email a 1%(email)s"
717
863
 
718
- #: views.py:1030
864
+ #: views.py:1056
719
865
  #, python-format
720
866
  msgid "Email sent to %(email)s"
721
867
  msgstr "Email inviata a %(email)s"
722
868
 
723
- #: views.py:1041
869
+ #: views.py:1067
724
870
  msgid "Only its owner can delete the map."
725
871
  msgstr "Solo il proprietario può eliminare la mappa."
726
872
 
727
- #: views.py:1044
873
+ #: views.py:1073
728
874
  msgid "Map successfully deleted."
729
875
  msgstr "La mappa è stata eliminata definitivamente."
730
876
 
731
- #: views.py:1070
877
+ #: views.py:1099
732
878
  #, python-format
733
879
  msgid ""
734
880
  "Your map has been cloned! If you want to edit this map from another "
735
881
  "computer, please use this link: %(anonymous_url)s"
736
882
  msgstr "La mappa è stata clonata! Per modificarla usando un altro computer, si deve utilizzare questo link: %(anonymous_url)s"
737
883
 
738
- #: views.py:1075
884
+ #: views.py:1104
739
885
  msgid "Congratulations, your map has been cloned!"
740
886
  msgstr "Perfetto, la tua mappa è stata clonata!"
741
887
 
742
- #: views.py:1329
888
+ #: views.py:1358
743
889
  msgid "Layer successfully deleted."
744
890
  msgstr "Layer eliminato correttamente"
745
891
 
746
- #: views.py:1351
892
+ #: views.py:1380
747
893
  msgid "Permissions updated with success!"
748
894
  msgstr "Autorizzazioni aggiornate con successo!"
Binary file