umap-project 3.0.6__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.
- umap/__init__.py +1 -1
- umap/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +125 -59
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +11 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +33 -1
- umap/static/umap/locale/en.json +33 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +64 -18
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/METADATA +14 -14
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/RECORD +142 -129
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.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-
|
|
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"
|
|
@@ -55,7 +55,7 @@ msgstr "L’uso di “%(name)s” per autenticarsi è scoraggiato e verrà prest
|
|
|
55
55
|
msgid "name"
|
|
56
56
|
msgstr "nome"
|
|
57
57
|
|
|
58
|
-
#: models.py:63 models.py:
|
|
58
|
+
#: models.py:63 models.py:503
|
|
59
59
|
msgid "description"
|
|
60
60
|
msgstr "descrizione"
|
|
61
61
|
|
|
@@ -75,23 +75,23 @@ msgstr "Modello dell'URL usando il formato delle tile OSM"
|
|
|
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:176 models.py:
|
|
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:177 models.py:
|
|
82
|
+
#: models.py:177 models.py:498
|
|
83
83
|
msgid "Everyone can edit"
|
|
84
84
|
msgstr "Chiunque può modificare"
|
|
85
85
|
|
|
86
|
-
#: models.py:180 models.py:
|
|
86
|
+
#: models.py:180 models.py:491
|
|
87
87
|
msgid "Everyone"
|
|
88
88
|
msgstr "Chiunque"
|
|
89
89
|
|
|
90
|
-
#: models.py:181 models.py:190 models.py:
|
|
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:182 models.py:
|
|
94
|
+
#: models.py:182 models.py:493
|
|
95
95
|
msgid "Owner only"
|
|
96
96
|
msgstr "Solo chi ha la proprietà"
|
|
97
97
|
|
|
@@ -111,7 +111,7 @@ msgstr "Chiunque abbia il link"
|
|
|
111
111
|
msgid "Blocked"
|
|
112
112
|
msgstr "Bloccata"
|
|
113
113
|
|
|
114
|
-
#: models.py:192 models.py:
|
|
114
|
+
#: models.py:192 models.py:487
|
|
115
115
|
msgid "Deleted"
|
|
116
116
|
msgstr "Eliminato"
|
|
117
117
|
|
|
@@ -151,99 +151,123 @@ msgstr "contributore"
|
|
|
151
151
|
msgid "team"
|
|
152
152
|
msgstr "team"
|
|
153
153
|
|
|
154
|
-
#: models.py:230 models.py:
|
|
154
|
+
#: models.py:230 models.py:519
|
|
155
155
|
msgid "edit status"
|
|
156
156
|
msgstr "stato della modifica"
|
|
157
157
|
|
|
158
|
-
#: models.py:235 models.py:
|
|
158
|
+
#: models.py:235 models.py:524
|
|
159
159
|
msgid "share status"
|
|
160
160
|
msgstr "stato condivisione"
|
|
161
161
|
|
|
162
|
-
#: models.py:238 models.py:
|
|
162
|
+
#: models.py:238 models.py:514
|
|
163
163
|
msgid "settings"
|
|
164
164
|
msgstr "impostazioni"
|
|
165
165
|
|
|
166
|
-
#: models.py:
|
|
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:
|
|
178
|
+
#: models.py:486 models.py:490 models.py:496
|
|
171
179
|
msgid "Inherit"
|
|
172
180
|
msgstr "Inherit"
|
|
173
181
|
|
|
174
|
-
#: models.py:
|
|
182
|
+
#: models.py:509
|
|
175
183
|
msgid "display on load"
|
|
176
184
|
msgstr "mostra al caricamento"
|
|
177
185
|
|
|
178
|
-
#: models.py:
|
|
186
|
+
#: models.py:510
|
|
179
187
|
msgid "Display this layer on load."
|
|
180
188
|
msgstr "Visualizza questo layer al caricamento."
|
|
181
189
|
|
|
182
|
-
#: settings/base.py:
|
|
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
|
|
183
207
|
msgid "Art and Culture"
|
|
184
208
|
msgstr "Arte e cultura"
|
|
185
209
|
|
|
186
|
-
#: settings/base.py:
|
|
210
|
+
#: settings/base.py:319
|
|
187
211
|
msgid "Cycling"
|
|
188
212
|
msgstr "Ciclismo"
|
|
189
213
|
|
|
190
|
-
#: settings/base.py:
|
|
214
|
+
#: settings/base.py:320
|
|
191
215
|
msgid "Business"
|
|
192
216
|
msgstr "Economia"
|
|
193
217
|
|
|
194
|
-
#: settings/base.py:
|
|
218
|
+
#: settings/base.py:321
|
|
195
219
|
msgid "Environment"
|
|
196
220
|
msgstr "Ambiente"
|
|
197
221
|
|
|
198
|
-
#: settings/base.py:
|
|
222
|
+
#: settings/base.py:322
|
|
199
223
|
msgid "Education"
|
|
200
224
|
msgstr "Educazione"
|
|
201
225
|
|
|
202
|
-
#: settings/base.py:
|
|
226
|
+
#: settings/base.py:323
|
|
203
227
|
msgid "Food and Agriculture"
|
|
204
228
|
msgstr "Alimentazione e agricoltura"
|
|
205
229
|
|
|
206
|
-
#: settings/base.py:
|
|
230
|
+
#: settings/base.py:324
|
|
207
231
|
msgid "Geopolitics"
|
|
208
232
|
msgstr "Geo-politica"
|
|
209
233
|
|
|
210
|
-
#: settings/base.py:
|
|
234
|
+
#: settings/base.py:325
|
|
211
235
|
msgid "Health"
|
|
212
236
|
msgstr "Salute"
|
|
213
237
|
|
|
214
|
-
#: settings/base.py:
|
|
238
|
+
#: settings/base.py:326
|
|
215
239
|
msgid "Hiking"
|
|
216
240
|
msgstr "Escursionismo"
|
|
217
241
|
|
|
218
|
-
#: settings/base.py:
|
|
242
|
+
#: settings/base.py:327
|
|
219
243
|
msgid "History"
|
|
220
244
|
msgstr "Storia"
|
|
221
245
|
|
|
222
|
-
#: settings/base.py:
|
|
246
|
+
#: settings/base.py:328
|
|
223
247
|
msgid "Public sector"
|
|
224
248
|
msgstr "Settore pubblico"
|
|
225
249
|
|
|
226
|
-
#: settings/base.py:
|
|
250
|
+
#: settings/base.py:329
|
|
227
251
|
msgid "Science"
|
|
228
252
|
msgstr "Scienza"
|
|
229
253
|
|
|
230
|
-
#: settings/base.py:
|
|
254
|
+
#: settings/base.py:330
|
|
231
255
|
msgid "Shopping"
|
|
232
256
|
msgstr "Acquisti"
|
|
233
257
|
|
|
234
|
-
#: settings/base.py:
|
|
258
|
+
#: settings/base.py:331
|
|
235
259
|
msgid "Sport and Leisure"
|
|
236
260
|
msgstr "Sport e tempo libero"
|
|
237
261
|
|
|
238
|
-
#: settings/base.py:
|
|
262
|
+
#: settings/base.py:332
|
|
239
263
|
msgid "Travel"
|
|
240
264
|
msgstr "Viaggi"
|
|
241
265
|
|
|
242
|
-
#: settings/base.py:
|
|
266
|
+
#: settings/base.py:333
|
|
243
267
|
msgid "Transports"
|
|
244
268
|
msgstr "Trasporti"
|
|
245
269
|
|
|
246
|
-
#: settings/base.py:
|
|
270
|
+
#: settings/base.py:334
|
|
247
271
|
msgid "Tourism"
|
|
248
272
|
msgstr "Turismo"
|
|
249
273
|
|
|
@@ -389,7 +413,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
389
413
|
msgstr "Ed è <a href=\"%(repo_url)s\">software libero</a>!"
|
|
390
414
|
|
|
391
415
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
392
|
-
#: templates/umap/user_dashboard.html:
|
|
416
|
+
#: templates/umap/user_dashboard.html:16
|
|
393
417
|
msgid "Create a map"
|
|
394
418
|
msgstr "Crea una mappa"
|
|
395
419
|
|
|
@@ -487,11 +511,20 @@ msgstr "Le mie mappe (%(count)s)"
|
|
|
487
511
|
msgid "My Maps"
|
|
488
512
|
msgstr "Le mie mappe"
|
|
489
513
|
|
|
490
|
-
#: templates/umap/dashboard_menu.html:
|
|
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
|
|
491
524
|
msgid "My profile"
|
|
492
525
|
msgstr "Mio profilo"
|
|
493
526
|
|
|
494
|
-
#: templates/umap/dashboard_menu.html:
|
|
527
|
+
#: templates/umap/dashboard_menu.html:20
|
|
495
528
|
msgid "My teams"
|
|
496
529
|
msgstr "I miei team"
|
|
497
530
|
|
|
@@ -507,10 +540,18 @@ msgstr "Prendi ispirazione, visualizza mappe"
|
|
|
507
540
|
msgid "You are logged in. Continuing..."
|
|
508
541
|
msgstr "Utente loggato. Continuare..."
|
|
509
542
|
|
|
510
|
-
#: templates/umap/map_list.html:
|
|
543
|
+
#: templates/umap/map_list.html:15
|
|
544
|
+
msgid "template"
|
|
545
|
+
msgstr ""
|
|
546
|
+
|
|
547
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
511
548
|
msgid "by"
|
|
512
549
|
msgstr "di"
|
|
513
550
|
|
|
551
|
+
#: templates/umap/map_list.html:22
|
|
552
|
+
msgid "See the template"
|
|
553
|
+
msgstr ""
|
|
554
|
+
|
|
514
555
|
#: templates/umap/map_list.html:22
|
|
515
556
|
msgid "See the map"
|
|
516
557
|
msgstr "Vedi la mappa"
|
|
@@ -547,7 +588,7 @@ msgstr "Proprietario"
|
|
|
547
588
|
msgid "Actions"
|
|
548
589
|
msgstr "Azioni"
|
|
549
590
|
|
|
550
|
-
#: templates/umap/map_table.html:
|
|
591
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
551
592
|
msgid "Open preview"
|
|
552
593
|
msgstr "Apri anteprima"
|
|
553
594
|
|
|
@@ -675,7 +716,7 @@ msgstr[0] "%(count)s mappa trovata"
|
|
|
675
716
|
msgstr[1] "%(count)s mappe trovate"
|
|
676
717
|
msgstr[2] "%(count)s mappe trovate:"
|
|
677
718
|
|
|
678
|
-
#: templates/umap/search.html:30
|
|
719
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
679
720
|
msgid "No map found."
|
|
680
721
|
msgstr "Nessuna mappa trovata."
|
|
681
722
|
|
|
@@ -730,20 +771,20 @@ msgstr "Elimina questo team"
|
|
|
730
771
|
msgid "Add user"
|
|
731
772
|
msgstr "Aggiungi utente"
|
|
732
773
|
|
|
733
|
-
#: templates/umap/user_dashboard.html:
|
|
774
|
+
#: templates/umap/user_dashboard.html:10
|
|
734
775
|
msgid "Search my maps"
|
|
735
776
|
msgstr "Cerca nelle mie mappe"
|
|
736
777
|
|
|
737
|
-
#: templates/umap/user_dashboard.html:
|
|
738
|
-
msgid "Map’s
|
|
739
|
-
msgstr "
|
|
778
|
+
#: templates/umap/user_dashboard.html:11
|
|
779
|
+
msgid "Map’s name"
|
|
780
|
+
msgstr ""
|
|
740
781
|
|
|
741
|
-
#: templates/umap/user_dashboard.html:
|
|
782
|
+
#: templates/umap/user_dashboard.html:12
|
|
742
783
|
#, python-format
|
|
743
784
|
msgid "Download %(count)s maps"
|
|
744
785
|
msgstr "Scarica %(count)s mappe"
|
|
745
786
|
|
|
746
|
-
#: templates/umap/user_dashboard.html:
|
|
787
|
+
#: templates/umap/user_dashboard.html:15
|
|
747
788
|
msgid "You have no map yet."
|
|
748
789
|
msgstr "Non hai ancora alcuna mappa."
|
|
749
790
|
|
|
@@ -759,70 +800,95 @@ msgstr "Utenti"
|
|
|
759
800
|
msgid "New team"
|
|
760
801
|
msgstr "Nuovo team"
|
|
761
802
|
|
|
762
|
-
#:
|
|
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
|
|
763
829
|
msgid "Cannot delete a team with more than one member"
|
|
764
830
|
msgstr "Non si può eliminare un team con più di un membro"
|
|
765
831
|
|
|
766
|
-
#: views.py:
|
|
832
|
+
#: views.py:237
|
|
767
833
|
#, python-format
|
|
768
834
|
msgid "Team “%(name)s” has been deleted"
|
|
769
835
|
msgstr "Il team “%(name)s” è stato cancellato"
|
|
770
836
|
|
|
771
|
-
#: views.py:
|
|
837
|
+
#: views.py:463
|
|
772
838
|
msgid "View the map"
|
|
773
839
|
msgstr "Visualizza la mappa"
|
|
774
840
|
|
|
775
|
-
#: views.py:
|
|
841
|
+
#: views.py:864
|
|
776
842
|
msgid "See full screen"
|
|
777
843
|
msgstr "Vedi a schermo interno"
|
|
778
844
|
|
|
779
|
-
#: views.py:
|
|
845
|
+
#: views.py:1007
|
|
780
846
|
msgid "Map editors updated with success!"
|
|
781
847
|
msgstr "Aggiornato l'elenco degli editor abilitati alla modifica della mappa!"
|
|
782
848
|
|
|
783
|
-
#: views.py:
|
|
849
|
+
#: views.py:1043
|
|
784
850
|
#, python-format
|
|
785
851
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
786
852
|
msgstr "Link uMap per la modifica della tua mappa: %(map_name)s"
|
|
787
853
|
|
|
788
|
-
#: views.py:
|
|
854
|
+
#: views.py:1046
|
|
789
855
|
#, python-format
|
|
790
856
|
msgid "Here is your secret edit link: %(link)s"
|
|
791
857
|
msgstr "Qui il tuo link segreto: %(link)s"
|
|
792
858
|
|
|
793
|
-
#: views.py:
|
|
859
|
+
#: views.py:1053
|
|
794
860
|
#, python-format
|
|
795
861
|
msgid "Can't send email to %(email)s"
|
|
796
862
|
msgstr "Non riesco ad inviare email a 1%(email)s"
|
|
797
863
|
|
|
798
|
-
#: views.py:
|
|
864
|
+
#: views.py:1056
|
|
799
865
|
#, python-format
|
|
800
866
|
msgid "Email sent to %(email)s"
|
|
801
867
|
msgstr "Email inviata a %(email)s"
|
|
802
868
|
|
|
803
|
-
#: views.py:
|
|
869
|
+
#: views.py:1067
|
|
804
870
|
msgid "Only its owner can delete the map."
|
|
805
871
|
msgstr "Solo il proprietario può eliminare la mappa."
|
|
806
872
|
|
|
807
|
-
#: views.py:
|
|
873
|
+
#: views.py:1073
|
|
808
874
|
msgid "Map successfully deleted."
|
|
809
875
|
msgstr "La mappa è stata eliminata definitivamente."
|
|
810
876
|
|
|
811
|
-
#: views.py:
|
|
877
|
+
#: views.py:1099
|
|
812
878
|
#, python-format
|
|
813
879
|
msgid ""
|
|
814
880
|
"Your map has been cloned! If you want to edit this map from another "
|
|
815
881
|
"computer, please use this link: %(anonymous_url)s"
|
|
816
882
|
msgstr "La mappa è stata clonata! Per modificarla usando un altro computer, si deve utilizzare questo link: %(anonymous_url)s"
|
|
817
883
|
|
|
818
|
-
#: views.py:
|
|
884
|
+
#: views.py:1104
|
|
819
885
|
msgid "Congratulations, your map has been cloned!"
|
|
820
886
|
msgstr "Perfetto, la tua mappa è stata clonata!"
|
|
821
887
|
|
|
822
|
-
#: views.py:
|
|
888
|
+
#: views.py:1358
|
|
823
889
|
msgid "Layer successfully deleted."
|
|
824
890
|
msgstr "Layer eliminato correttamente"
|
|
825
891
|
|
|
826
|
-
#: views.py:
|
|
892
|
+
#: views.py:1380
|
|
827
893
|
msgid "Permissions updated with success!"
|
|
828
894
|
msgstr "Autorizzazioni aggiornate con successo!"
|
|
Binary file
|