umap-project 2.6.2__py3-none-any.whl → 2.7.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 (211) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +64 -1
  3. umap/asgi.py +15 -0
  4. umap/context_processors.py +1 -0
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +19 -18
  9. umap/locale/en/LC_MESSAGES/django.po +47 -43
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +134 -128
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +51 -47
  14. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/pt/LC_MESSAGES/django.po +64 -60
  16. umap/management/commands/clean_tilelayer.py +152 -0
  17. umap/management/commands/purge_purgatory.py +28 -0
  18. umap/models.py +27 -2
  19. umap/settings/base.py +3 -1
  20. umap/static/umap/base.css +4 -4
  21. umap/static/umap/css/contextmenu.css +6 -1
  22. umap/static/umap/css/icon.css +7 -2
  23. umap/static/umap/css/importers.css +4 -0
  24. umap/static/umap/img/16-white.svg +9 -2
  25. umap/static/umap/img/16.svg +1 -181
  26. umap/static/umap/img/24-white.svg +1 -0
  27. umap/static/umap/img/24.svg +1 -0
  28. umap/static/umap/img/importers/cadastrefr.svg +23 -0
  29. umap/static/umap/img/source/16-white.svg +10 -3
  30. umap/static/umap/img/source/16.svg +753 -197
  31. umap/static/umap/img/source/24-white.svg +3 -2
  32. umap/static/umap/img/source/24.svg +3 -2
  33. umap/static/umap/js/modules/autocomplete.js +7 -3
  34. umap/static/umap/js/modules/browser.js +55 -2
  35. umap/static/umap/js/modules/caption.js +16 -5
  36. umap/static/umap/js/modules/data/features.js +183 -8
  37. umap/static/umap/js/modules/data/layer.js +57 -40
  38. umap/static/umap/js/modules/formatter.js +3 -2
  39. umap/static/umap/js/modules/global.js +2 -0
  40. umap/static/umap/js/modules/importer.js +3 -0
  41. umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
  42. umap/static/umap/js/modules/importers/communesfr.js +15 -3
  43. umap/static/umap/js/modules/permissions.js +123 -93
  44. umap/static/umap/js/modules/rendering/layers/classified.js +2 -0
  45. umap/static/umap/js/modules/rendering/ui.js +60 -213
  46. umap/static/umap/js/modules/share.js +1 -3
  47. umap/static/umap/js/modules/slideshow.js +1 -1
  48. umap/static/umap/js/modules/sync/engine.js +371 -14
  49. umap/static/umap/js/modules/sync/hlc.js +106 -0
  50. umap/static/umap/js/modules/sync/updaters.js +18 -6
  51. umap/static/umap/js/modules/sync/websocket.js +1 -1
  52. umap/static/umap/js/modules/tableeditor.js +1 -1
  53. umap/static/umap/js/modules/ui/base.js +2 -2
  54. umap/static/umap/js/modules/ui/contextmenu.js +51 -18
  55. umap/static/umap/js/modules/urls.js +5 -1
  56. umap/static/umap/js/modules/utils.js +28 -4
  57. umap/static/umap/js/umap.controls.js +76 -55
  58. umap/static/umap/js/umap.core.js +3 -3
  59. umap/static/umap/js/umap.forms.js +3 -1
  60. umap/static/umap/js/umap.js +115 -124
  61. umap/static/umap/locale/am_ET.js +2 -2
  62. umap/static/umap/locale/am_ET.json +2 -2
  63. umap/static/umap/locale/ar.js +2 -2
  64. umap/static/umap/locale/ar.json +2 -2
  65. umap/static/umap/locale/ast.js +2 -2
  66. umap/static/umap/locale/ast.json +2 -2
  67. umap/static/umap/locale/bg.js +2 -2
  68. umap/static/umap/locale/bg.json +2 -2
  69. umap/static/umap/locale/br.js +13 -4
  70. umap/static/umap/locale/br.json +13 -4
  71. umap/static/umap/locale/ca.js +30 -17
  72. umap/static/umap/locale/ca.json +30 -17
  73. umap/static/umap/locale/cs_CZ.js +89 -80
  74. umap/static/umap/locale/cs_CZ.json +89 -80
  75. umap/static/umap/locale/da.js +2 -2
  76. umap/static/umap/locale/da.json +2 -2
  77. umap/static/umap/locale/de.js +17 -8
  78. umap/static/umap/locale/de.json +17 -8
  79. umap/static/umap/locale/el.js +2 -2
  80. umap/static/umap/locale/el.json +2 -2
  81. umap/static/umap/locale/en.js +15 -4
  82. umap/static/umap/locale/en.json +15 -4
  83. umap/static/umap/locale/en_US.json +2 -2
  84. umap/static/umap/locale/es.js +338 -325
  85. umap/static/umap/locale/es.json +338 -325
  86. umap/static/umap/locale/et.js +2 -2
  87. umap/static/umap/locale/et.json +2 -2
  88. umap/static/umap/locale/eu.js +11 -4
  89. umap/static/umap/locale/eu.json +11 -4
  90. umap/static/umap/locale/fa_IR.js +11 -4
  91. umap/static/umap/locale/fa_IR.json +11 -4
  92. umap/static/umap/locale/fi.js +2 -2
  93. umap/static/umap/locale/fi.json +2 -2
  94. umap/static/umap/locale/fr.js +15 -4
  95. umap/static/umap/locale/fr.json +15 -4
  96. umap/static/umap/locale/gl.js +2 -2
  97. umap/static/umap/locale/gl.json +2 -2
  98. umap/static/umap/locale/he.js +2 -2
  99. umap/static/umap/locale/he.json +2 -2
  100. umap/static/umap/locale/hr.js +2 -2
  101. umap/static/umap/locale/hr.json +2 -2
  102. umap/static/umap/locale/hu.js +12 -5
  103. umap/static/umap/locale/hu.json +12 -5
  104. umap/static/umap/locale/id.js +2 -2
  105. umap/static/umap/locale/id.json +2 -2
  106. umap/static/umap/locale/is.js +2 -2
  107. umap/static/umap/locale/is.json +2 -2
  108. umap/static/umap/locale/it.js +2 -2
  109. umap/static/umap/locale/it.json +2 -2
  110. umap/static/umap/locale/ja.js +2 -2
  111. umap/static/umap/locale/ja.json +2 -2
  112. umap/static/umap/locale/ko.js +2 -2
  113. umap/static/umap/locale/ko.json +2 -2
  114. umap/static/umap/locale/lt.js +2 -2
  115. umap/static/umap/locale/lt.json +2 -2
  116. umap/static/umap/locale/ms.js +2 -2
  117. umap/static/umap/locale/ms.json +2 -2
  118. umap/static/umap/locale/nl.js +2 -2
  119. umap/static/umap/locale/nl.json +2 -2
  120. umap/static/umap/locale/no.js +2 -2
  121. umap/static/umap/locale/no.json +2 -2
  122. umap/static/umap/locale/pl.js +2 -2
  123. umap/static/umap/locale/pl.json +2 -2
  124. umap/static/umap/locale/pl_PL.json +2 -2
  125. umap/static/umap/locale/pt.js +19 -10
  126. umap/static/umap/locale/pt.json +19 -10
  127. umap/static/umap/locale/pt_BR.js +2 -2
  128. umap/static/umap/locale/pt_BR.json +2 -2
  129. umap/static/umap/locale/pt_PT.js +13 -4
  130. umap/static/umap/locale/pt_PT.json +13 -4
  131. umap/static/umap/locale/ro.js +2 -2
  132. umap/static/umap/locale/ro.json +2 -2
  133. umap/static/umap/locale/ru.js +2 -2
  134. umap/static/umap/locale/ru.json +2 -2
  135. umap/static/umap/locale/si.js +2 -2
  136. umap/static/umap/locale/si.json +2 -2
  137. umap/static/umap/locale/sk_SK.js +2 -2
  138. umap/static/umap/locale/sk_SK.json +2 -2
  139. umap/static/umap/locale/sl.js +2 -2
  140. umap/static/umap/locale/sl.json +2 -2
  141. umap/static/umap/locale/sr.js +2 -2
  142. umap/static/umap/locale/sr.json +2 -2
  143. umap/static/umap/locale/sv.js +2 -2
  144. umap/static/umap/locale/sv.json +2 -2
  145. umap/static/umap/locale/th_TH.js +2 -2
  146. umap/static/umap/locale/th_TH.json +2 -2
  147. umap/static/umap/locale/tr.js +2 -2
  148. umap/static/umap/locale/tr.json +2 -2
  149. umap/static/umap/locale/uk_UA.js +2 -2
  150. umap/static/umap/locale/uk_UA.json +2 -2
  151. umap/static/umap/locale/vi.js +2 -2
  152. umap/static/umap/locale/vi.json +2 -2
  153. umap/static/umap/locale/vi_VN.json +2 -2
  154. umap/static/umap/locale/zh.js +2 -2
  155. umap/static/umap/locale/zh.json +2 -2
  156. umap/static/umap/locale/zh_CN.json +2 -2
  157. umap/static/umap/locale/zh_TW.Big5.json +2 -2
  158. umap/static/umap/locale/zh_TW.js +13 -4
  159. umap/static/umap/locale/zh_TW.json +13 -4
  160. umap/static/umap/map.css +44 -29
  161. umap/static/umap/unittests/hlc.js +165 -0
  162. umap/static/umap/unittests/sync.js +321 -15
  163. umap/static/umap/unittests/utils.js +47 -0
  164. umap/static/umap/vars.css +2 -1
  165. umap/static/umap/vendors/colorbrewer/colorbrewer.js +309 -317
  166. umap/static/umap/vendors/dompurify/purify.es.js +15 -16
  167. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  168. umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
  169. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
  170. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
  171. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +1 -1
  172. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -1
  173. umap/templates/umap/css.html +0 -2
  174. umap/templates/umap/dashboard_menu.html +4 -2
  175. umap/templates/umap/js.html +0 -5
  176. umap/templates/umap/map_detail.html +2 -2
  177. umap/tests/fixtures/test_upload_data.csv +2 -2
  178. umap/tests/integration/test_anonymous_owned_map.py +1 -0
  179. umap/tests/integration/test_basics.py +1 -1
  180. umap/tests/integration/test_browser.py +69 -7
  181. umap/tests/integration/test_caption.py +3 -3
  182. umap/tests/integration/test_circles_layer.py +12 -0
  183. umap/tests/integration/test_cluster.py +53 -0
  184. umap/tests/integration/test_datalayer.py +2 -1
  185. umap/tests/integration/test_draw_polygon.py +17 -9
  186. umap/tests/integration/test_draw_polyline.py +84 -7
  187. umap/tests/integration/test_edit_datalayer.py +5 -8
  188. umap/tests/integration/test_edit_map.py +2 -2
  189. umap/tests/integration/test_edit_marker.py +1 -1
  190. umap/tests/integration/test_facets_browser.py +3 -3
  191. umap/tests/integration/test_import.py +1 -0
  192. umap/tests/integration/test_map.py +1 -0
  193. umap/tests/integration/test_owned_map.py +1 -1
  194. umap/tests/integration/test_view_marker.py +63 -0
  195. umap/tests/integration/test_view_polygon.py +12 -12
  196. umap/tests/integration/test_websocket_sync.py +65 -3
  197. umap/tests/test_clean_tilelayer.py +83 -0
  198. umap/tests/test_datalayer.py +24 -0
  199. umap/tests/test_map_views.py +20 -0
  200. umap/tests/test_purge_purgatory.py +25 -0
  201. umap/tests/test_websocket_server.py +22 -0
  202. umap/urls.py +5 -1
  203. umap/views.py +6 -3
  204. umap/websocket_server.py +130 -27
  205. {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/METADATA +18 -14
  206. {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/RECORD +209 -200
  207. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
  208. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
  209. {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/WHEEL +0 -0
  210. {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/entry_points.txt +0 -0
  211. {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/licenses/LICENSE +0 -0
@@ -7,6 +7,7 @@
7
7
  # Christopher <github@1011.link>, 2020
8
8
  # Claus Ruedinger <clausruedinger@gmail.com>, 2020
9
9
  # Ettore Atalan <atalanttore@googlemail.com>, 2016
10
+ # jakl, 2024
10
11
  # hno2 <hno2@gmx.net>, 2013-2014
11
12
  # Jannis Leidel <jannis@leidel.info>, 2016
12
13
  # gislars, 2024
@@ -19,7 +20,7 @@ msgstr ""
19
20
  "Report-Msgid-Bugs-To: \n"
20
21
  "POT-Creation-Date: 2024-09-04 14:02+0000\n"
21
22
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
22
- "Last-Translator: gislars, 2024\n"
23
+ "Last-Translator: jakl, 2024\n"
23
24
  "Language-Team: German (http://app.transifex.com/openstreetmap/umap/language/de/)\n"
24
25
  "MIME-Version: 1.0\n"
25
26
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -73,7 +74,7 @@ msgstr "Jeder"
73
74
 
74
75
  #: models.py:168 models.py:174 models.py:425
75
76
  msgid "Editors and team only"
76
- msgstr ""
77
+ msgstr "Nur Bearbeiter und Team"
77
78
 
78
79
  #: models.py:169 models.py:426
79
80
  msgid "Owner only"
@@ -125,7 +126,7 @@ msgstr "Bearbeiter"
125
126
 
126
127
  #: models.py:207
127
128
  msgid "team"
128
- msgstr ""
129
+ msgstr "Team"
129
130
 
130
131
  #: models.py:213 models.py:447
131
132
  msgid "edit status"
@@ -331,19 +332,19 @@ msgstr "Dies ist eine Demo-Instanz, die für Tests und Vorveröffentlichungen ve
331
332
 
332
333
  #: templates/umap/content_footer.html:5
333
334
  msgid "An OpenStreetMap project"
334
- msgstr ""
335
+ msgstr "Ein OpenStreetMap Projekt"
335
336
 
336
337
  #: templates/umap/content_footer.html:6
337
338
  msgid "version"
338
- msgstr ""
339
+ msgstr "Version"
339
340
 
340
341
  #: templates/umap/content_footer.html:7
341
342
  msgid "Hosted by"
342
- msgstr ""
343
+ msgstr "Gehostet von"
343
344
 
344
345
  #: templates/umap/content_footer.html:8
345
346
  msgid "Contact"
346
- msgstr ""
347
+ msgstr "Kontakt"
347
348
 
348
349
  #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
349
350
  msgid "Help"
@@ -364,7 +365,7 @@ msgstr "Mein Profil"
364
365
 
365
366
  #: templates/umap/dashboard_menu.html:13
366
367
  msgid "My teams"
367
- msgstr ""
368
+ msgstr "Meine Teams"
368
369
 
369
370
  #: templates/umap/home.html:14
370
371
  msgid "Map of the uMaps"
@@ -536,8 +537,8 @@ msgstr "Ihr Passwort wurde geändert."
536
537
  #, python-format
537
538
  msgid "%(count)s map found:"
538
539
  msgid_plural "%(count)s maps found:"
539
- msgstr[0] ""
540
- msgstr[1] ""
540
+ msgstr[0] "%(count)s Karte gefunden:"
541
+ msgstr[1] "%(count)s Karten gefunden:"
541
542
 
542
543
  #: templates/umap/search.html:24
543
544
  msgid "No map found."
@@ -558,20 +559,20 @@ msgstr "Suchen"
558
559
  #: templates/umap/team_detail.html:10
559
560
  #, python-format
560
561
  msgid "Browse %(current_team)s's maps"
561
- msgstr ""
562
+ msgstr "Schaue dir %(current_team)s's Karten an"
562
563
 
563
564
  #: templates/umap/team_detail.html:22
564
565
  #, python-format
565
566
  msgid "%(current_team)s has no public maps."
566
- msgstr ""
567
+ msgstr "%(current_team)s hat keine öffentlichen Karten.."
567
568
 
568
569
  #: templates/umap/team_form.html:24
569
570
  msgid "Delete this team"
570
- msgstr ""
571
+ msgstr "Dieses Team löschen"
571
572
 
572
573
  #: templates/umap/team_form.html:47
573
574
  msgid "Add user"
574
- msgstr ""
575
+ msgstr "Benutzer hinzufügen"
575
576
 
576
577
  #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
577
578
  msgid "Search my maps"
@@ -592,20 +593,20 @@ msgstr "Du hast noch keine Karte."
592
593
 
593
594
  #: templates/umap/user_teams.html:17
594
595
  msgid "Users"
595
- msgstr ""
596
+ msgstr "Benutzer"
596
597
 
597
598
  #: templates/umap/user_teams.html:48
598
599
  msgid "New team"
599
- msgstr ""
600
+ msgstr "Neues Team"
600
601
 
601
602
  #: views.py:235
602
603
  msgid "Cannot delete a team with more than one member"
603
- msgstr ""
604
+ msgstr "Teams mit mehr als einem Mitglied können nicht gelöscht werden"
604
605
 
605
606
  #: views.py:239
606
607
  #, python-format
607
608
  msgid "Team “%(name)s” has been deleted"
608
- msgstr ""
609
+ msgstr "Team “%(name)s” wurde gelöscht"
609
610
 
610
611
  #: views.py:438
611
612
  msgid "View the map"
@@ -8,7 +8,7 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2024-09-04 14:02+0000\n"
11
+ "POT-Creation-Date: 2024-10-04 16:35+0000\n"
12
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,6 +17,10 @@ msgstr ""
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
 
20
+ #: admin.py:16
21
+ msgid "CSV Export"
22
+ msgstr ""
23
+
20
24
  #: forms.py:44 forms.py:70
21
25
  msgid "Only editable with secret edit link"
22
26
  msgstr ""
@@ -25,7 +29,7 @@ msgstr ""
25
29
  msgid "Everyone can edit"
26
30
  msgstr ""
27
31
 
28
- #: forms.py:69 models.py:423
32
+ #: forms.py:69 models.py:441
29
33
  msgid "Inherit"
30
34
  msgstr ""
31
35
 
@@ -33,111 +37,111 @@ msgstr ""
33
37
  msgid "Site is readonly for maintenance"
34
38
  msgstr ""
35
39
 
36
- #: models.py:54 models.py:73
40
+ #: models.py:55 models.py:74
37
41
  msgid "name"
38
42
  msgstr ""
39
43
 
40
- #: models.py:56 models.py:433
44
+ #: models.py:57 models.py:451
41
45
  msgid "description"
42
46
  msgstr ""
43
47
 
44
- #: models.py:104
48
+ #: models.py:105
45
49
  msgid "details"
46
50
  msgstr ""
47
51
 
48
- #: models.py:105
52
+ #: models.py:106
49
53
  msgid "Link to a page where the licence is detailed."
50
54
  msgstr ""
51
55
 
52
- #: models.py:115
56
+ #: models.py:116
53
57
  msgid "URL template using OSM tile format"
54
58
  msgstr ""
55
59
 
56
- #: models.py:121
60
+ #: models.py:122
57
61
  msgid "Order of the tilelayers in the edit box"
58
62
  msgstr ""
59
63
 
60
- #: models.py:167 models.py:424
64
+ #: models.py:168 models.py:442
61
65
  msgid "Everyone"
62
66
  msgstr ""
63
67
 
64
- #: models.py:168 models.py:174 models.py:425
68
+ #: models.py:169 models.py:175 models.py:443
65
69
  msgid "Editors and team only"
66
70
  msgstr ""
67
71
 
68
- #: models.py:169 models.py:426
72
+ #: models.py:170 models.py:444
69
73
  msgid "Owner only"
70
74
  msgstr ""
71
75
 
72
- #: models.py:172
76
+ #: models.py:173
73
77
  msgid "Everyone (public)"
74
78
  msgstr ""
75
79
 
76
- #: models.py:173
80
+ #: models.py:174
77
81
  msgid "Anyone with link"
78
82
  msgstr ""
79
83
 
80
- #: models.py:175
84
+ #: models.py:176
81
85
  msgid "Blocked"
82
86
  msgstr ""
83
87
 
84
- #: models.py:178
88
+ #: models.py:179
85
89
  msgid "center"
86
90
  msgstr ""
87
91
 
88
- #: models.py:179
92
+ #: models.py:180
89
93
  msgid "zoom"
90
94
  msgstr ""
91
95
 
92
- #: models.py:181
96
+ #: models.py:182
93
97
  msgid "locate"
94
98
  msgstr ""
95
99
 
96
- #: models.py:181
100
+ #: models.py:182
97
101
  msgid "Locate user on load?"
98
102
  msgstr ""
99
103
 
100
- #: models.py:185
104
+ #: models.py:186
101
105
  msgid "Choose the map licence."
102
106
  msgstr ""
103
107
 
104
- #: models.py:186
108
+ #: models.py:187
105
109
  msgid "licence"
106
110
  msgstr ""
107
111
 
108
- #: models.py:197
112
+ #: models.py:198
109
113
  msgid "owner"
110
114
  msgstr ""
111
115
 
112
- #: models.py:201
116
+ #: models.py:202
113
117
  msgid "editors"
114
118
  msgstr ""
115
119
 
116
- #: models.py:207
120
+ #: models.py:208
117
121
  msgid "team"
118
122
  msgstr ""
119
123
 
120
- #: models.py:213 models.py:447
124
+ #: models.py:214 models.py:465
121
125
  msgid "edit status"
122
126
  msgstr ""
123
127
 
124
- #: models.py:218
128
+ #: models.py:219
125
129
  msgid "share status"
126
130
  msgstr ""
127
131
 
128
- #: models.py:221 models.py:442
132
+ #: models.py:222 models.py:460
129
133
  msgid "settings"
130
134
  msgstr ""
131
135
 
132
- #: models.py:364
136
+ #: models.py:382
133
137
  msgid "Clone of"
134
138
  msgstr ""
135
139
 
136
- #: models.py:437
140
+ #: models.py:455
137
141
  msgid "display on load"
138
142
  msgstr ""
139
143
 
140
- #: models.py:438
144
+ #: models.py:456
141
145
  msgid "Display this layer on load."
142
146
  msgstr ""
143
147
 
@@ -348,11 +352,11 @@ msgstr ""
348
352
  msgid "My Maps"
349
353
  msgstr ""
350
354
 
351
- #: templates/umap/dashboard_menu.html:11
355
+ #: templates/umap/dashboard_menu.html:12
352
356
  msgid "My profile"
353
357
  msgstr ""
354
358
 
355
- #: templates/umap/dashboard_menu.html:13
359
+ #: templates/umap/dashboard_menu.html:15
356
360
  msgid "My teams"
357
361
  msgstr ""
358
362
 
@@ -601,57 +605,57 @@ msgstr ""
601
605
  msgid "View the map"
602
606
  msgstr ""
603
607
 
604
- #: views.py:824
608
+ #: views.py:818
605
609
  msgid "See full screen"
606
610
  msgstr ""
607
611
 
608
- #: views.py:953
612
+ #: views.py:950
609
613
  msgid "Map editors updated with success!"
610
614
  msgstr ""
611
615
 
612
- #: views.py:989
616
+ #: views.py:986
613
617
  #, python-format
614
618
  msgid "The uMap edit link for your map: %(map_name)s"
615
619
  msgstr ""
616
620
 
617
- #: views.py:992
621
+ #: views.py:989
618
622
  #, python-format
619
623
  msgid "Here is your secret edit link: %(link)s"
620
624
  msgstr ""
621
625
 
622
- #: views.py:999
626
+ #: views.py:996
623
627
  #, python-format
624
628
  msgid "Can't send email to %(email)s"
625
629
  msgstr ""
626
630
 
627
- #: views.py:1002
631
+ #: views.py:999
628
632
  #, python-format
629
633
  msgid "Email sent to %(email)s"
630
634
  msgstr ""
631
635
 
632
- #: views.py:1013
636
+ #: views.py:1010
633
637
  msgid "Only its owner can delete the map."
634
638
  msgstr ""
635
639
 
636
- #: views.py:1016
640
+ #: views.py:1013
637
641
  msgid "Map successfully deleted."
638
642
  msgstr ""
639
643
 
640
- #: views.py:1042
644
+ #: views.py:1039
641
645
  #, python-format
642
646
  msgid ""
643
647
  "Your map has been cloned! If you want to edit this map from another "
644
648
  "computer, please use this link: %(anonymous_url)s"
645
649
  msgstr ""
646
650
 
647
- #: views.py:1047
651
+ #: views.py:1044
648
652
  msgid "Congratulations, your map has been cloned!"
649
653
  msgstr ""
650
654
 
651
- #: views.py:1282
655
+ #: views.py:1277
652
656
  msgid "Layer successfully deleted."
653
657
  msgstr ""
654
658
 
655
- #: views.py:1304
659
+ #: views.py:1299
656
660
  msgid "Permissions updated with success!"
657
661
  msgstr ""
Binary file