umap-project 2.0.4__py3-none-any.whl → 2.1.1__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.
Files changed (106) hide show
  1. umap/__init__.py +1 -1
  2. umap/fields.py +3 -1
  3. umap/locale/br/LC_MESSAGES/django.po +76 -71
  4. umap/locale/en/LC_MESSAGES/django.po +41 -41
  5. umap/locale/hu/LC_MESSAGES/django.po +42 -42
  6. umap/locale/it/LC_MESSAGES/django.po +64 -58
  7. umap/locale/ms/LC_MESSAGES/django.po +62 -57
  8. umap/migrations/0018_datalayer_uuid.py +62 -0
  9. umap/migrations/0019_migrate_internal_remote_datalayers.py +52 -0
  10. umap/models.py +20 -3
  11. umap/settings/base.py +1 -0
  12. umap/settings/dev.py +1 -0
  13. umap/static/umap/js/modules/browser.js +2 -2
  14. umap/static/umap/js/modules/global.js +14 -4
  15. umap/static/umap/js/modules/i18n.js +35 -0
  16. umap/static/umap/js/modules/leaflet-configure.js +7 -0
  17. umap/static/umap/js/modules/schema.js +388 -0
  18. umap/static/umap/js/modules/urls.js +17 -2
  19. umap/static/umap/js/modules/utils.js +24 -0
  20. umap/static/umap/js/umap.controls.js +9 -10
  21. umap/static/umap/js/umap.core.js +5 -5
  22. umap/static/umap/js/umap.features.js +23 -9
  23. umap/static/umap/js/umap.forms.js +49 -299
  24. umap/static/umap/js/umap.icon.js +2 -2
  25. umap/static/umap/js/umap.js +26 -129
  26. umap/static/umap/js/umap.layer.js +9 -9
  27. umap/static/umap/js/umap.popup.js +3 -0
  28. umap/static/umap/js/umap.share.js +1 -1
  29. umap/static/umap/locale/am_ET.json +229 -225
  30. umap/static/umap/locale/ar.json +229 -225
  31. umap/static/umap/locale/ast.json +229 -225
  32. umap/static/umap/locale/bg.json +229 -225
  33. umap/static/umap/locale/br.json +237 -233
  34. umap/static/umap/locale/ca.json +229 -225
  35. umap/static/umap/locale/cs_CZ.json +229 -225
  36. umap/static/umap/locale/da.json +229 -225
  37. umap/static/umap/locale/de.json +229 -225
  38. umap/static/umap/locale/el.json +229 -225
  39. umap/static/umap/locale/en.json +230 -233
  40. umap/static/umap/locale/en_US.json +229 -225
  41. umap/static/umap/locale/es.json +229 -225
  42. umap/static/umap/locale/et.json +229 -225
  43. umap/static/umap/locale/eu.json +226 -198
  44. umap/static/umap/locale/fa_IR.json +229 -225
  45. umap/static/umap/locale/fi.json +229 -225
  46. umap/static/umap/locale/fr.json +229 -232
  47. umap/static/umap/locale/gl.json +229 -225
  48. umap/static/umap/locale/he.json +229 -225
  49. umap/static/umap/locale/hr.json +229 -225
  50. umap/static/umap/locale/hu.json +229 -232
  51. umap/static/umap/locale/id.json +229 -225
  52. umap/static/umap/locale/is.json +229 -225
  53. umap/static/umap/locale/it.json +229 -232
  54. umap/static/umap/locale/ja.json +229 -225
  55. umap/static/umap/locale/ko.json +229 -225
  56. umap/static/umap/locale/lt.json +229 -225
  57. umap/static/umap/locale/ms.json +229 -232
  58. umap/static/umap/locale/nl.json +232 -228
  59. umap/static/umap/locale/no.json +229 -225
  60. umap/static/umap/locale/pl.json +229 -225
  61. umap/static/umap/locale/pl_PL.json +229 -225
  62. umap/static/umap/locale/pt.json +229 -225
  63. umap/static/umap/locale/pt_BR.json +229 -225
  64. umap/static/umap/locale/pt_PT.json +229 -225
  65. umap/static/umap/locale/ro.json +229 -225
  66. umap/static/umap/locale/ru.json +229 -225
  67. umap/static/umap/locale/sk_SK.json +229 -225
  68. umap/static/umap/locale/sl.json +229 -225
  69. umap/static/umap/locale/sr.json +229 -225
  70. umap/static/umap/locale/sv.json +229 -225
  71. umap/static/umap/locale/th_TH.json +229 -225
  72. umap/static/umap/locale/tr.json +229 -225
  73. umap/static/umap/locale/uk_UA.json +229 -225
  74. umap/static/umap/locale/vi.json +229 -225
  75. umap/static/umap/locale/vi_VN.json +229 -225
  76. umap/static/umap/locale/zh.json +229 -225
  77. umap/static/umap/locale/zh_CN.json +229 -225
  78. umap/static/umap/locale/zh_TW.Big5.json +229 -225
  79. umap/static/umap/locale/zh_TW.json +229 -232
  80. umap/static/umap/test/index.html +0 -2
  81. umap/static/umap/{test → unittests}/URLs.js +5 -0
  82. umap/static/umap/vendors/leaflet/leaflet-src.esm.js +7064 -7064
  83. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  84. umap/templates/umap/js.html +8 -6
  85. umap/templatetags/umap_tags.py +3 -2
  86. umap/tests/integration/test_browser.py +40 -0
  87. umap/tests/integration/test_collaborative_editing.py +72 -3
  88. umap/tests/integration/test_export_map.py +226 -9
  89. umap/tests/integration/test_features_id_generation.py +51 -0
  90. umap/tests/integration/test_owned_map.py +14 -1
  91. umap/tests/integration/test_statics.py +3 -3
  92. umap/tests/integration/test_tilelayer.py +3 -3
  93. umap/tests/settings.py +3 -3
  94. umap/tests/test_datalayer_views.py +77 -20
  95. umap/tests/test_map_views.py +20 -0
  96. umap/tests/test_merge_features.py +25 -5
  97. umap/urls.py +12 -12
  98. umap/utils.py +7 -0
  99. umap/views.py +58 -49
  100. umap/wsgi.py +1 -0
  101. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/METADATA +9 -9
  102. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/RECORD +105 -99
  103. umap/static/umap/test/Map.Export.js +0 -106
  104. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/WHEEL +0 -0
  105. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/entry_points.txt +0 -0
  106. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/licenses/LICENSE +0 -0
@@ -9,7 +9,7 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: uMap\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2024-03-01 16:51+0000\n"
12
+ "POT-Creation-Date: 2024-03-25 12:41+0000\n"
13
13
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
14
14
  "Last-Translator: Gábor Babos <gabor.babos@gmail.com>, 2017-2019,2023-2024\n"
15
15
  "Language-Team: Hungarian (http://app.transifex.com/openstreetmap/umap/language/hu/)\n"
@@ -27,7 +27,7 @@ msgstr "Kizárólag titkos szerkesztési linkkel szerkeszthető"
27
27
  msgid "Everyone can edit"
28
28
  msgstr "Bárki szerkesztheti"
29
29
 
30
- #: forms.py:69 models.py:371
30
+ #: forms.py:69 models.py:381
31
31
  msgid "Inherit"
32
32
  msgstr "Öröklés"
33
33
 
@@ -35,107 +35,107 @@ msgstr "Öröklés"
35
35
  msgid "Site is readonly for maintenance"
36
36
  msgstr "Karbantartás miatt a webhely csak olvasható"
37
37
 
38
- #: models.py:50
38
+ #: models.py:52
39
39
  msgid "name"
40
40
  msgstr "név"
41
41
 
42
- #: models.py:81
42
+ #: models.py:83
43
43
  msgid "details"
44
44
  msgstr "részletek"
45
45
 
46
- #: models.py:82
46
+ #: models.py:84
47
47
  msgid "Link to a page where the licence is detailed."
48
48
  msgstr "Link egy részletes licencinformációkat tartalmazó lapra."
49
49
 
50
- #: models.py:92
50
+ #: models.py:94
51
51
  msgid "URL template using OSM tile format"
52
52
  msgstr "OSM-csempeformátumot használó URL-sablon"
53
53
 
54
- #: models.py:98
54
+ #: models.py:100
55
55
  msgid "Order of the tilelayers in the edit box"
56
56
  msgstr "Csemperétegek sorrendje a szerkesztődobozban"
57
57
 
58
- #: models.py:144 models.py:372
58
+ #: models.py:146 models.py:382
59
59
  msgid "Everyone"
60
60
  msgstr "Mindenki"
61
61
 
62
- #: models.py:145 models.py:151 models.py:373
62
+ #: models.py:147 models.py:153 models.py:383
63
63
  msgid "Editors only"
64
64
  msgstr "Csak a szerkesztők"
65
65
 
66
- #: models.py:146 models.py:374
66
+ #: models.py:148 models.py:384
67
67
  msgid "Owner only"
68
68
  msgstr "Csak a tulajdonos"
69
69
 
70
- #: models.py:149
70
+ #: models.py:151
71
71
  msgid "Everyone (public)"
72
72
  msgstr "Mindenki (nyilvános)"
73
73
 
74
- #: models.py:150
74
+ #: models.py:152
75
75
  msgid "Anyone with link"
76
76
  msgstr "A link birtokában bárki"
77
77
 
78
- #: models.py:152
78
+ #: models.py:154
79
79
  msgid "Blocked"
80
80
  msgstr "Blokkolva"
81
81
 
82
- #: models.py:155 models.py:378
82
+ #: models.py:157 models.py:391
83
83
  msgid "description"
84
84
  msgstr "leírás"
85
85
 
86
- #: models.py:156
86
+ #: models.py:158
87
87
  msgid "center"
88
88
  msgstr "középpont"
89
89
 
90
- #: models.py:157
90
+ #: models.py:159
91
91
  msgid "zoom"
92
92
  msgstr "nagyítás"
93
93
 
94
- #: models.py:159
94
+ #: models.py:161
95
95
  msgid "locate"
96
96
  msgstr "helymeghatározás"
97
97
 
98
- #: models.py:159
98
+ #: models.py:161
99
99
  msgid "Locate user on load?"
100
100
  msgstr "Bekérje a felhasználó pozícióját betöltéskor?"
101
101
 
102
- #: models.py:163
102
+ #: models.py:165
103
103
  msgid "Choose the map licence."
104
104
  msgstr "Térképlicenc kiválasztása"
105
105
 
106
- #: models.py:164
106
+ #: models.py:166
107
107
  msgid "licence"
108
108
  msgstr "licenc"
109
109
 
110
- #: models.py:175
110
+ #: models.py:177
111
111
  msgid "owner"
112
112
  msgstr "tulajdonos"
113
113
 
114
- #: models.py:179
114
+ #: models.py:181
115
115
  msgid "editors"
116
116
  msgstr "szerkesztők"
117
117
 
118
- #: models.py:184 models.py:392
118
+ #: models.py:186 models.py:405
119
119
  msgid "edit status"
120
120
  msgstr "szerkeszthetőség"
121
121
 
122
- #: models.py:189
122
+ #: models.py:191
123
123
  msgid "share status"
124
124
  msgstr "megoszthatóság"
125
125
 
126
- #: models.py:192 models.py:387
126
+ #: models.py:194 models.py:400
127
127
  msgid "settings"
128
128
  msgstr "beállítások"
129
129
 
130
- #: models.py:320
130
+ #: models.py:322
131
131
  msgid "Clone of"
132
132
  msgstr "Másolat erről: "
133
133
 
134
- #: models.py:382
134
+ #: models.py:395
135
135
  msgid "display on load"
136
136
  msgstr "megjelenítés betöltéskor"
137
137
 
138
- #: models.py:383
138
+ #: models.py:396
139
139
  msgid "Display this layer on load."
140
140
  msgstr "Réteg megjelenítése betöltéskor"
141
141
 
@@ -291,7 +291,7 @@ msgstr "Szerezzen ihletet, böngésszen a térképek között!"
291
291
  msgid "You are logged in. Continuing..."
292
292
  msgstr "Be van jelentkezve. Továbblépés…"
293
293
 
294
- #: templates/umap/map_list.html:9 views.py:342
294
+ #: templates/umap/map_list.html:9 views.py:349
295
295
  msgid "by"
296
296
  msgstr "– készítette:"
297
297
 
@@ -497,57 +497,57 @@ msgstr "%(count)s térkép letöltése"
497
497
  msgid "You have no map yet."
498
498
  msgstr "Önnek még nincs térképe."
499
499
 
500
- #: views.py:347
500
+ #: views.py:354
501
501
  msgid "View the map"
502
502
  msgstr "Térkép megtekintése"
503
503
 
504
- #: views.py:705
504
+ #: views.py:716
505
505
  msgid "See full screen"
506
506
  msgstr "Teljes képernyős nézet megtekintése"
507
507
 
508
- #: views.py:804
508
+ #: views.py:817
509
509
  msgid "Map editors updated with success!"
510
510
  msgstr "A térképszerkesztők sikeresen frissültek."
511
511
 
512
- #: views.py:841
512
+ #: views.py:854
513
513
  #, python-format
514
514
  msgid "The uMap edit link for your map: %(map_name)s"
515
515
  msgstr "A térképéhez tartozó uMap szerkesztési link: %(map_name)s"
516
516
 
517
- #: views.py:844
517
+ #: views.py:857
518
518
  #, python-format
519
519
  msgid "Here is your secret edit link: %(link)s"
520
520
  msgstr "Az Ön titkos szerkesztési linkje: %(link)s"
521
521
 
522
- #: views.py:851
522
+ #: views.py:864
523
523
  #, python-format
524
524
  msgid "Can't send email to %(email)s"
525
- msgstr ""
525
+ msgstr "Nem sikerül e-mailt küldeni ide: %(email)s"
526
526
 
527
- #: views.py:854
527
+ #: views.py:867
528
528
  #, python-format
529
529
  msgid "Email sent to %(email)s"
530
530
  msgstr "E-mail elküldve ide: %(email)s"
531
531
 
532
- #: views.py:865
532
+ #: views.py:878
533
533
  msgid "Only its owner can delete the map."
534
534
  msgstr "A térképet csak a tulajdonosa törölheti."
535
535
 
536
- #: views.py:893
536
+ #: views.py:906
537
537
  #, python-format
538
538
  msgid ""
539
539
  "Your map has been cloned! If you want to edit this map from another "
540
540
  "computer, please use this link: %(anonymous_url)s"
541
541
  msgstr "Elkészült a térképe másolata. Ha egy másik számítógépről szeretné szerkeszteni, ezt a linket használja: %(anonymous_url)s"
542
542
 
543
- #: views.py:898
543
+ #: views.py:911
544
544
  msgid "Congratulations, your map has been cloned!"
545
545
  msgstr "Gratulálunk, elkészült a térképe másolata!"
546
546
 
547
- #: views.py:1136
547
+ #: views.py:1145
548
548
  msgid "Layer successfully deleted."
549
549
  msgstr "A réteg sikeresen törlődött."
550
550
 
551
- #: views.py:1158
551
+ #: views.py:1167
552
552
  msgid "Permissions updated with success!"
553
553
  msgstr "Az engedélyek sikeresen frissültek!"
@@ -11,6 +11,7 @@
11
11
  # Marco <marcxosm@gmail.com>, 2017-2019,2024
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
15
  # Mirco Zorzo <mircozorzo@gmail.com>, 2020
15
16
  # Mirco Zorzo <mircozorzo@gmail.com>, 2020
16
17
  # claudiamocci <moccicm@gmail.com>, 2013
@@ -20,9 +21,9 @@ msgid ""
20
21
  msgstr ""
21
22
  "Project-Id-Version: uMap\n"
22
23
  "Report-Msgid-Bugs-To: \n"
23
- "POT-Creation-Date: 2024-02-15 13:53+0000\n"
24
+ "POT-Creation-Date: 2024-03-25 12:41+0000\n"
24
25
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
25
- "Last-Translator: Marco <marcxosm@gmail.com>, 2017-2019,2024\n"
26
+ "Last-Translator: Maurizio Napolitano <napo@fbk.eu>, 2024\n"
26
27
  "Language-Team: Italian (http://app.transifex.com/openstreetmap/umap/language/it/)\n"
27
28
  "MIME-Version: 1.0\n"
28
29
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -38,7 +39,7 @@ msgstr "Modificabile solo con il link segreto"
38
39
  msgid "Everyone can edit"
39
40
  msgstr "Chiunque può modificare"
40
41
 
41
- #: forms.py:69 models.py:371
42
+ #: forms.py:69 models.py:381
42
43
  msgid "Inherit"
43
44
  msgstr "Inherit"
44
45
 
@@ -46,107 +47,107 @@ msgstr "Inherit"
46
47
  msgid "Site is readonly for maintenance"
47
48
  msgstr "Il sito in sola lettura per manutenzione"
48
49
 
49
- #: models.py:50
50
+ #: models.py:52
50
51
  msgid "name"
51
52
  msgstr "nome"
52
53
 
53
- #: models.py:81
54
+ #: models.py:83
54
55
  msgid "details"
55
56
  msgstr "dettagli"
56
57
 
57
- #: models.py:82
58
+ #: models.py:84
58
59
  msgid "Link to a page where the licence is detailed."
59
60
  msgstr "Link alla pagina con i dettagli della licenza"
60
61
 
61
- #: models.py:92
62
+ #: models.py:94
62
63
  msgid "URL template using OSM tile format"
63
64
  msgstr "Modello dell'URL usando il formato delle tile OSM"
64
65
 
65
- #: models.py:98
66
+ #: models.py:100
66
67
  msgid "Order of the tilelayers in the edit box"
67
68
  msgstr "Ordine degli sfondi (tilelayers) nel box di modifica"
68
69
 
69
- #: models.py:144 models.py:372
70
+ #: models.py:146 models.py:382
70
71
  msgid "Everyone"
71
72
  msgstr "Chiunque"
72
73
 
73
- #: models.py:145 models.py:151 models.py:373
74
+ #: models.py:147 models.py:153 models.py:383
74
75
  msgid "Editors only"
75
76
  msgstr "Solamente chi contribuisce"
76
77
 
77
- #: models.py:146 models.py:374
78
+ #: models.py:148 models.py:384
78
79
  msgid "Owner only"
79
80
  msgstr "Solo chi ha la proprietà"
80
81
 
81
- #: models.py:149
82
+ #: models.py:151
82
83
  msgid "Everyone (public)"
83
84
  msgstr "Chiunque (pubblico)"
84
85
 
85
- #: models.py:150
86
+ #: models.py:152
86
87
  msgid "Anyone with link"
87
88
  msgstr "Chiunque abbia il link"
88
89
 
89
- #: models.py:152
90
+ #: models.py:154
90
91
  msgid "Blocked"
91
92
  msgstr "Bloccata"
92
93
 
93
- #: models.py:155 models.py:378
94
+ #: models.py:157 models.py:391
94
95
  msgid "description"
95
96
  msgstr "descrizione"
96
97
 
97
- #: models.py:156
98
+ #: models.py:158
98
99
  msgid "center"
99
100
  msgstr "centra"
100
101
 
101
- #: models.py:157
102
+ #: models.py:159
102
103
  msgid "zoom"
103
104
  msgstr "zoom"
104
105
 
105
- #: models.py:159
106
+ #: models.py:161
106
107
  msgid "locate"
107
108
  msgstr "localizza"
108
109
 
109
- #: models.py:159
110
+ #: models.py:161
110
111
  msgid "Locate user on load?"
111
112
  msgstr "Geolocalizzare l'utente al caricamento?"
112
113
 
113
- #: models.py:163
114
+ #: models.py:165
114
115
  msgid "Choose the map licence."
115
116
  msgstr "Scegliere una licenza per la mappa."
116
117
 
117
- #: models.py:164
118
+ #: models.py:166
118
119
  msgid "licence"
119
120
  msgstr "licenza"
120
121
 
121
- #: models.py:175
122
+ #: models.py:177
122
123
  msgid "owner"
123
124
  msgstr "proprietario"
124
125
 
125
- #: models.py:179
126
+ #: models.py:181
126
127
  msgid "editors"
127
128
  msgstr "contributore"
128
129
 
129
- #: models.py:184 models.py:392
130
+ #: models.py:186 models.py:405
130
131
  msgid "edit status"
131
132
  msgstr "stato della modifica"
132
133
 
133
- #: models.py:189
134
+ #: models.py:191
134
135
  msgid "share status"
135
136
  msgstr "stato condivisione"
136
137
 
137
- #: models.py:192 models.py:387
138
+ #: models.py:194 models.py:400
138
139
  msgid "settings"
139
140
  msgstr "impostazioni"
140
141
 
141
- #: models.py:320
142
+ #: models.py:322
142
143
  msgid "Clone of"
143
144
  msgstr "Duplicata da "
144
145
 
145
- #: models.py:382
146
+ #: models.py:395
146
147
  msgid "display on load"
147
148
  msgstr "mostra al caricamento"
148
149
 
149
- #: models.py:383
150
+ #: models.py:396
150
151
  msgid "Display this layer on load."
151
152
  msgstr "Visualizza questo layer al caricamento."
152
153
 
@@ -302,7 +303,7 @@ msgstr "Prendi ispirazione, visualizza mappe"
302
303
  msgid "You are logged in. Continuing..."
303
304
  msgstr "Utente loggato. Continuare..."
304
305
 
305
- #: templates/umap/map_list.html:9 views.py:341
306
+ #: templates/umap/map_list.html:9 views.py:349
306
307
  msgid "by"
307
308
  msgstr "di"
308
309
 
@@ -338,57 +339,57 @@ msgstr "Proprietario"
338
339
  msgid "Actions"
339
340
  msgstr "Azioni"
340
341
 
341
- #: templates/umap/map_table.html:25 templates/umap/map_table.html:27
342
+ #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
342
343
  msgid "Open preview"
343
344
  msgstr "Apri anteprima"
344
345
 
345
- #: templates/umap/map_table.html:46 templates/umap/map_table.html:48
346
+ #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
346
347
  msgid "Share"
347
348
  msgstr "Condividi"
348
349
 
349
- #: templates/umap/map_table.html:51 templates/umap/map_table.html:53
350
+ #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
350
351
  msgid "Edit"
351
352
  msgstr "Modifica"
352
353
 
353
- #: templates/umap/map_table.html:56 templates/umap/map_table.html:58
354
+ #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
354
355
  msgid "Download"
355
356
  msgstr "Download"
356
357
 
357
- #: templates/umap/map_table.html:63 templates/umap/map_table.html:65
358
+ #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
358
359
  msgid "Clone"
359
360
  msgstr "Clona"
360
361
 
361
- #: templates/umap/map_table.html:73 templates/umap/map_table.html:75
362
+ #: templates/umap/map_table.html:76 templates/umap/map_table.html:78
362
363
  msgid "Delete"
363
364
  msgstr "Elimina"
364
365
 
365
- #: templates/umap/map_table.html:88
366
+ #: templates/umap/map_table.html:91
366
367
  msgid "first"
367
368
  msgstr "primo"
368
369
 
369
- #: templates/umap/map_table.html:89
370
+ #: templates/umap/map_table.html:92
370
371
  msgid "previous"
371
372
  msgstr "precedente"
372
373
 
373
- #: templates/umap/map_table.html:98
374
+ #: templates/umap/map_table.html:100
374
375
  #, python-format
375
376
  msgid "Page %(maps_number)s of %(num_pages)s"
376
377
  msgstr "Pagina %(maps_number)s di %(num_pages)s"
377
378
 
378
- #: templates/umap/map_table.html:104
379
+ #: templates/umap/map_table.html:105
379
380
  msgid "next"
380
381
  msgstr "prossimo"
381
382
 
382
- #: templates/umap/map_table.html:105
383
+ #: templates/umap/map_table.html:106
383
384
  msgid "last"
384
385
  msgstr "ultimo"
385
386
 
386
- #: templates/umap/map_table.html:113
387
+ #: templates/umap/map_table.html:114
387
388
  #, python-format
388
389
  msgid "Lines per page: %(per_page)s"
389
390
  msgstr "Linee per pagina: %(per_page)s"
390
391
 
391
- #: templates/umap/map_table.html:118
392
+ #: templates/umap/map_table.html:119
392
393
  #, python-format
393
394
  msgid "%(count)s maps"
394
395
  msgstr "%(count)s mappe"
@@ -483,20 +484,20 @@ msgstr "Cerca mappe"
483
484
  msgid "Search"
484
485
  msgstr "Cerca"
485
486
 
486
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:26
487
+ #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
487
488
  msgid "Search my maps"
488
489
  msgstr "Cerca nelle mie mappe"
489
490
 
490
- #: templates/umap/user_dashboard.html:11
491
+ #: templates/umap/user_dashboard.html:10
491
492
  #, python-format
492
493
  msgid "My Maps (%(count)s)"
493
494
  msgstr "Le mie mappe (%(count)s)"
494
495
 
495
- #: templates/umap/user_dashboard.html:13
496
+ #: templates/umap/user_dashboard.html:12
496
497
  msgid "My profile"
497
498
  msgstr "Mio profilo"
498
499
 
499
- #: templates/umap/user_dashboard.html:21 templates/umap/user_dashboard.html:23
500
+ #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
500
501
  msgid "Map’s title"
501
502
  msgstr "Titolo della mappa"
502
503
 
@@ -509,52 +510,57 @@ msgstr "Scarica %(count)s mappe"
509
510
  msgid "You have no map yet."
510
511
  msgstr "Non hai ancora alcuna mappa."
511
512
 
512
- #: views.py:346
513
+ #: views.py:354
513
514
  msgid "View the map"
514
515
  msgstr "Visualizza la mappa"
515
516
 
516
- #: views.py:704
517
+ #: views.py:716
517
518
  msgid "See full screen"
518
519
  msgstr "Vedi a schermo interno"
519
520
 
520
- #: views.py:803
521
+ #: views.py:817
521
522
  msgid "Map editors updated with success!"
522
523
  msgstr "Aggiornato l'elenco degli editor abilitati alla modifica della mappa!"
523
524
 
524
- #: views.py:841
525
+ #: views.py:854
525
526
  #, python-format
526
527
  msgid "The uMap edit link for your map: %(map_name)s"
527
528
  msgstr "Link uMap per la modifica della tua mappa: %(map_name)s"
528
529
 
529
- #: views.py:844
530
+ #: views.py:857
530
531
  #, python-format
531
532
  msgid "Here is your secret edit link: %(link)s"
532
533
  msgstr "Qui il tuo link segreto: %(link)s"
533
534
 
534
- #: views.py:850
535
+ #: views.py:864
536
+ #, python-format
537
+ msgid "Can't send email to %(email)s"
538
+ msgstr "Non riesco ad inviare email a 1%(email)s"
539
+
540
+ #: views.py:867
535
541
  #, python-format
536
542
  msgid "Email sent to %(email)s"
537
543
  msgstr "Email inviata a %(email)s"
538
544
 
539
- #: views.py:861
545
+ #: views.py:878
540
546
  msgid "Only its owner can delete the map."
541
547
  msgstr "Solo il proprietario può eliminare la mappa."
542
548
 
543
- #: views.py:889
549
+ #: views.py:906
544
550
  #, python-format
545
551
  msgid ""
546
552
  "Your map has been cloned! If you want to edit this map from another "
547
553
  "computer, please use this link: %(anonymous_url)s"
548
554
  msgstr "La mappa è stata clonata! Per modificarla usando un altro computer, si deve utilizzare questo link: %(anonymous_url)s"
549
555
 
550
- #: views.py:894
556
+ #: views.py:911
551
557
  msgid "Congratulations, your map has been cloned!"
552
558
  msgstr "Perfetto, la tua mappa è stata clonata!"
553
559
 
554
- #: views.py:1130
560
+ #: views.py:1145
555
561
  msgid "Layer successfully deleted."
556
562
  msgstr "Layer eliminato correttamente"
557
563
 
558
- #: views.py:1152
564
+ #: views.py:1167
559
565
  msgid "Permissions updated with success!"
560
566
  msgstr "Autorizzazioni aggiornate con successo!"