umap-project 2.5.0__py3-none-any.whl → 2.6.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 (276) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +9 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +8 -12
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +993 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/importers/overpass.js +22 -8
  68. umap/static/umap/js/modules/permissions.js +280 -0
  69. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  70. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  71. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  72. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  73. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  74. umap/static/umap/js/modules/rendering/popup.js +99 -0
  75. umap/static/umap/js/modules/rendering/template.js +217 -0
  76. umap/static/umap/js/modules/rendering/ui.js +610 -0
  77. umap/static/umap/js/modules/rules.js +16 -3
  78. umap/static/umap/js/modules/schema.js +25 -1
  79. umap/static/umap/js/modules/share.js +66 -45
  80. umap/static/umap/js/modules/sync/updaters.js +9 -10
  81. umap/static/umap/js/modules/tableeditor.js +7 -7
  82. umap/static/umap/js/modules/ui/dialog.js +8 -4
  83. umap/static/umap/js/modules/utils.js +22 -13
  84. umap/static/umap/js/umap.controls.js +80 -146
  85. umap/static/umap/js/umap.core.js +9 -9
  86. umap/static/umap/js/umap.forms.js +41 -17
  87. umap/static/umap/js/umap.js +72 -65
  88. umap/static/umap/locale/am_ET.js +8 -2
  89. umap/static/umap/locale/am_ET.json +8 -2
  90. umap/static/umap/locale/ar.js +8 -2
  91. umap/static/umap/locale/ar.json +8 -2
  92. umap/static/umap/locale/ast.js +8 -2
  93. umap/static/umap/locale/ast.json +8 -2
  94. umap/static/umap/locale/bg.js +8 -2
  95. umap/static/umap/locale/bg.json +8 -2
  96. umap/static/umap/locale/br.js +42 -36
  97. umap/static/umap/locale/br.json +42 -36
  98. umap/static/umap/locale/ca.js +67 -61
  99. umap/static/umap/locale/ca.json +67 -61
  100. umap/static/umap/locale/cs_CZ.js +8 -2
  101. umap/static/umap/locale/cs_CZ.json +8 -2
  102. umap/static/umap/locale/da.js +8 -2
  103. umap/static/umap/locale/da.json +8 -2
  104. umap/static/umap/locale/de.js +143 -137
  105. umap/static/umap/locale/de.json +143 -137
  106. umap/static/umap/locale/el.js +54 -48
  107. umap/static/umap/locale/el.json +54 -48
  108. umap/static/umap/locale/en.js +10 -2
  109. umap/static/umap/locale/en.json +10 -2
  110. umap/static/umap/locale/en_US.json +8 -2
  111. umap/static/umap/locale/es.js +8 -2
  112. umap/static/umap/locale/es.json +8 -2
  113. umap/static/umap/locale/et.js +8 -2
  114. umap/static/umap/locale/et.json +8 -2
  115. umap/static/umap/locale/eu.js +346 -338
  116. umap/static/umap/locale/eu.json +346 -338
  117. umap/static/umap/locale/fa_IR.js +415 -407
  118. umap/static/umap/locale/fa_IR.json +415 -407
  119. umap/static/umap/locale/fi.js +8 -2
  120. umap/static/umap/locale/fi.json +8 -2
  121. umap/static/umap/locale/fr.js +11 -3
  122. umap/static/umap/locale/fr.json +11 -3
  123. umap/static/umap/locale/gl.js +8 -2
  124. umap/static/umap/locale/gl.json +8 -2
  125. umap/static/umap/locale/he.js +8 -2
  126. umap/static/umap/locale/he.json +8 -2
  127. umap/static/umap/locale/hr.js +8 -2
  128. umap/static/umap/locale/hr.json +8 -2
  129. umap/static/umap/locale/hu.js +31 -23
  130. umap/static/umap/locale/hu.json +31 -23
  131. umap/static/umap/locale/id.js +8 -2
  132. umap/static/umap/locale/id.json +8 -2
  133. umap/static/umap/locale/is.js +8 -2
  134. umap/static/umap/locale/is.json +8 -2
  135. umap/static/umap/locale/it.js +8 -2
  136. umap/static/umap/locale/it.json +8 -2
  137. umap/static/umap/locale/ja.js +8 -2
  138. umap/static/umap/locale/ja.json +8 -2
  139. umap/static/umap/locale/ko.js +8 -2
  140. umap/static/umap/locale/ko.json +8 -2
  141. umap/static/umap/locale/lt.js +8 -2
  142. umap/static/umap/locale/lt.json +8 -2
  143. umap/static/umap/locale/ms.js +8 -2
  144. umap/static/umap/locale/ms.json +8 -2
  145. umap/static/umap/locale/nl.js +8 -2
  146. umap/static/umap/locale/nl.json +8 -2
  147. umap/static/umap/locale/no.js +8 -2
  148. umap/static/umap/locale/no.json +8 -2
  149. umap/static/umap/locale/pl.js +54 -48
  150. umap/static/umap/locale/pl.json +54 -48
  151. umap/static/umap/locale/pl_PL.json +8 -2
  152. umap/static/umap/locale/pt.js +24 -18
  153. umap/static/umap/locale/pt.json +24 -18
  154. umap/static/umap/locale/pt_BR.js +8 -2
  155. umap/static/umap/locale/pt_BR.json +8 -2
  156. umap/static/umap/locale/pt_PT.js +214 -208
  157. umap/static/umap/locale/pt_PT.json +214 -208
  158. umap/static/umap/locale/ro.js +8 -2
  159. umap/static/umap/locale/ro.json +8 -2
  160. umap/static/umap/locale/ru.js +8 -2
  161. umap/static/umap/locale/ru.json +8 -2
  162. umap/static/umap/locale/sk_SK.js +8 -2
  163. umap/static/umap/locale/sk_SK.json +8 -2
  164. umap/static/umap/locale/sl.js +8 -2
  165. umap/static/umap/locale/sl.json +8 -2
  166. umap/static/umap/locale/sr.js +8 -2
  167. umap/static/umap/locale/sr.json +8 -2
  168. umap/static/umap/locale/sv.js +8 -2
  169. umap/static/umap/locale/sv.json +8 -2
  170. umap/static/umap/locale/th_TH.js +33 -27
  171. umap/static/umap/locale/th_TH.json +33 -27
  172. umap/static/umap/locale/tr.js +8 -2
  173. umap/static/umap/locale/tr.json +8 -2
  174. umap/static/umap/locale/uk_UA.js +8 -2
  175. umap/static/umap/locale/uk_UA.json +8 -2
  176. umap/static/umap/locale/vi.js +8 -2
  177. umap/static/umap/locale/vi.json +8 -2
  178. umap/static/umap/locale/vi_VN.json +8 -2
  179. umap/static/umap/locale/zh.js +8 -2
  180. umap/static/umap/locale/zh.json +8 -2
  181. umap/static/umap/locale/zh_CN.json +8 -2
  182. umap/static/umap/locale/zh_TW.Big5.json +8 -2
  183. umap/static/umap/locale/zh_TW.js +102 -96
  184. umap/static/umap/locale/zh_TW.json +102 -96
  185. umap/static/umap/map.css +111 -108
  186. umap/static/umap/nav.css +19 -10
  187. umap/static/umap/unittests/utils.js +230 -107
  188. umap/static/umap/vars.css +1 -0
  189. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  190. umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
  191. umap/storage.py +4 -3
  192. umap/templates/404.html +5 -1
  193. umap/templates/500.html +3 -1
  194. umap/templates/auth/user_detail.html +8 -2
  195. umap/templates/auth/user_form.html +19 -10
  196. umap/templates/auth/user_stars.html +8 -2
  197. umap/templates/base.html +1 -0
  198. umap/templates/registration/login.html +18 -3
  199. umap/templates/umap/about.html +1 -0
  200. umap/templates/umap/about_summary.html +22 -7
  201. umap/templates/umap/components/alerts/alert.html +42 -21
  202. umap/templates/umap/content.html +2 -0
  203. umap/templates/umap/content_footer.html +7 -3
  204. umap/templates/umap/css.html +1 -0
  205. umap/templates/umap/dashboard_menu.html +15 -0
  206. umap/templates/umap/home.html +14 -4
  207. umap/templates/umap/js.html +4 -9
  208. umap/templates/umap/login_popup_end.html +10 -4
  209. umap/templates/umap/map_detail.html +8 -2
  210. umap/templates/umap/map_fragment.html +3 -1
  211. umap/templates/umap/map_init.html +2 -1
  212. umap/templates/umap/map_list.html +6 -3
  213. umap/templates/umap/map_table.html +36 -12
  214. umap/templates/umap/messages.html +0 -1
  215. umap/templates/umap/navigation.html +2 -1
  216. umap/templates/umap/password_change.html +5 -1
  217. umap/templates/umap/password_change_done.html +8 -2
  218. umap/templates/umap/search.html +8 -2
  219. umap/templates/umap/search_bar.html +1 -0
  220. umap/templates/umap/team_confirm_delete.html +19 -0
  221. umap/templates/umap/team_detail.html +27 -0
  222. umap/templates/umap/team_form.html +60 -0
  223. umap/templates/umap/user_dashboard.html +7 -9
  224. umap/templates/umap/user_teams.html +51 -0
  225. umap/tests/base.py +8 -1
  226. umap/tests/conftest.py +6 -0
  227. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  228. umap/tests/fixtures/test_upload_georss.xml +20 -0
  229. umap/tests/integration/conftest.py +18 -4
  230. umap/tests/integration/helpers.py +12 -0
  231. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  232. umap/tests/integration/test_basics.py +29 -0
  233. umap/tests/integration/test_browser.py +20 -0
  234. umap/tests/integration/test_caption.py +20 -0
  235. umap/tests/integration/test_circles_layer.py +69 -0
  236. umap/tests/integration/test_conditional_rules.py +102 -17
  237. umap/tests/integration/test_draw_polygon.py +138 -13
  238. umap/tests/integration/test_draw_polyline.py +8 -18
  239. umap/tests/integration/test_edit_datalayer.py +3 -3
  240. umap/tests/integration/test_import.py +124 -5
  241. umap/tests/integration/test_owned_map.py +21 -13
  242. umap/tests/integration/test_querystring.py +7 -0
  243. umap/tests/integration/test_team.py +47 -0
  244. umap/tests/integration/test_tilelayer.py +19 -2
  245. umap/tests/integration/test_view_marker.py +28 -1
  246. umap/tests/integration/test_websocket_sync.py +5 -5
  247. umap/tests/test_datalayer.py +32 -7
  248. umap/tests/test_datalayer_views.py +1 -1
  249. umap/tests/test_map.py +30 -4
  250. umap/tests/test_map_views.py +2 -2
  251. umap/tests/test_statics.py +40 -0
  252. umap/tests/test_team_views.py +131 -0
  253. umap/tests/test_views.py +15 -1
  254. umap/urls.py +23 -13
  255. umap/views.py +116 -10
  256. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
  257. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
  258. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  259. umap/static/umap/js/umap.features.js +0 -1290
  260. umap/static/umap/js/umap.layer.js +0 -1837
  261. umap/static/umap/js/umap.permissions.js +0 -208
  262. umap/static/umap/js/umap.popup.js +0 -341
  263. umap/static/umap/test/TableEditor.js +0 -104
  264. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  265. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  266. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  267. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  268. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  269. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  270. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  271. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  272. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  273. umap/tests/integration/test_statics.py +0 -47
  274. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
  275. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
  276. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: uMap\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2024-02-15 13:53+0000\n"
14
+ "POT-Creation-Date: 2024-08-30 18:23+0000\n"
15
15
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
16
16
  "Last-Translator: carlbacker, 2020,2023\n"
17
17
  "Language-Team: Swedish (http://app.transifex.com/openstreetmap/umap/language/sv/)\n"
@@ -29,7 +29,7 @@ msgstr "Redigering är bara tillåten med privat redigeringslänk"
29
29
  msgid "Everyone can edit"
30
30
  msgstr "Alla kan redigera"
31
31
 
32
- #: forms.py:69 models.py:371
32
+ #: forms.py:69 models.py:423
33
33
  msgid "Inherit"
34
34
  msgstr ""
35
35
 
@@ -37,242 +37,284 @@ msgstr ""
37
37
  msgid "Site is readonly for maintenance"
38
38
  msgstr "Webbplatsen är skrivskyddad för underhållsarbete."
39
39
 
40
- #: models.py:50
40
+ #: models.py:54 models.py:73
41
41
  msgid "name"
42
42
  msgstr "namn"
43
43
 
44
- #: models.py:81
44
+ #: models.py:56 models.py:433
45
+ msgid "description"
46
+ msgstr "beskrivning"
47
+
48
+ #: models.py:104
45
49
  msgid "details"
46
50
  msgstr "detaljer"
47
51
 
48
- #: models.py:82
52
+ #: models.py:105
49
53
  msgid "Link to a page where the licence is detailed."
50
54
  msgstr "Länk till sida med detaljerad licens information."
51
55
 
52
- #: models.py:92
56
+ #: models.py:115
53
57
  msgid "URL template using OSM tile format"
54
58
  msgstr "URL-mall med OSM:s tile-format"
55
59
 
56
- #: models.py:98
60
+ #: models.py:121
57
61
  msgid "Order of the tilelayers in the edit box"
58
62
  msgstr "Ordningen för tile-lager i redigeringsrutan"
59
63
 
60
- #: models.py:144 models.py:372
64
+ #: models.py:167 models.py:424
61
65
  msgid "Everyone"
62
66
  msgstr "Alla"
63
67
 
64
- #: models.py:145 models.py:151 models.py:373
65
- msgid "Editors only"
66
- msgstr "Enbart redaktörer"
68
+ #: models.py:168 models.py:174 models.py:425
69
+ msgid "Editors and team only"
70
+ msgstr ""
67
71
 
68
- #: models.py:146 models.py:374
72
+ #: models.py:169 models.py:426
69
73
  msgid "Owner only"
70
74
  msgstr "Enbart ägaren "
71
75
 
72
- #: models.py:149
76
+ #: models.py:172
73
77
  msgid "Everyone (public)"
74
78
  msgstr "Alla (publik)"
75
79
 
76
- #: models.py:150
80
+ #: models.py:173
77
81
  msgid "Anyone with link"
78
82
  msgstr "Alla med en länk"
79
83
 
80
- #: models.py:152
84
+ #: models.py:175
81
85
  msgid "Blocked"
82
86
  msgstr "Låst"
83
87
 
84
- #: models.py:155 models.py:378
85
- msgid "description"
86
- msgstr "beskrivning"
87
-
88
- #: models.py:156
88
+ #: models.py:178
89
89
  msgid "center"
90
90
  msgstr "centrera"
91
91
 
92
- #: models.py:157
92
+ #: models.py:179
93
93
  msgid "zoom"
94
94
  msgstr "zooma"
95
95
 
96
- #: models.py:159
96
+ #: models.py:181
97
97
  msgid "locate"
98
98
  msgstr "lokalisera"
99
99
 
100
- #: models.py:159
100
+ #: models.py:181
101
101
  msgid "Locate user on load?"
102
102
  msgstr "Lokalisera användaren vid uppstart?"
103
103
 
104
- #: models.py:163
104
+ #: models.py:185
105
105
  msgid "Choose the map licence."
106
106
  msgstr "Välj licens för kartan."
107
107
 
108
- #: models.py:164
108
+ #: models.py:186
109
109
  msgid "licence"
110
110
  msgstr "licens"
111
111
 
112
- #: models.py:175
112
+ #: models.py:197
113
113
  msgid "owner"
114
114
  msgstr "ägare"
115
115
 
116
- #: models.py:179
116
+ #: models.py:201
117
117
  msgid "editors"
118
118
  msgstr "redaktörer"
119
119
 
120
- #: models.py:184 models.py:392
120
+ #: models.py:207
121
+ msgid "team"
122
+ msgstr ""
123
+
124
+ #: models.py:213 models.py:447
121
125
  msgid "edit status"
122
126
  msgstr "redigeringsstatus"
123
127
 
124
- #: models.py:189
128
+ #: models.py:218
125
129
  msgid "share status"
126
130
  msgstr "delningsstatus"
127
131
 
128
- #: models.py:192 models.py:387
132
+ #: models.py:221 models.py:442
129
133
  msgid "settings"
130
134
  msgstr "inställningar"
131
135
 
132
- #: models.py:320
136
+ #: models.py:364
133
137
  msgid "Clone of"
134
138
  msgstr "Kopia av"
135
139
 
136
- #: models.py:382
140
+ #: models.py:437
137
141
  msgid "display on load"
138
142
  msgstr "visa vid uppstart"
139
143
 
140
- #: models.py:383
144
+ #: models.py:438
141
145
  msgid "Display this layer on load."
142
146
  msgstr "Visa detta lager från start."
143
147
 
144
- #: templates/404.html:6
148
+ #: templates/404.html:8
145
149
  msgid "Take me to the home page"
146
150
  msgstr "Ta mig till startsidan"
147
151
 
148
- #: templates/auth/user_detail.html:5
152
+ #: templates/auth/user_detail.html:8
149
153
  #, python-format
150
154
  msgid "Browse %(current_user)s's maps"
151
155
  msgstr "Bläddra bland %(current_user)ss kartor"
152
156
 
153
- #: templates/auth/user_detail.html:12
157
+ #: templates/auth/user_detail.html:17
154
158
  #, python-format
155
159
  msgid "%(current_user)s has no maps."
156
160
  msgstr "%(current_user)s har inga kartor."
157
161
 
158
- #: templates/auth/user_form.html:6
159
- msgid "My Maps"
160
- msgstr ""
161
-
162
- #: templates/auth/user_form.html:7
163
- msgid "My Profile"
164
- msgstr ""
165
-
166
- #: templates/auth/user_form.html:20
162
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
167
163
  msgid "Save"
168
164
  msgstr ""
169
165
 
170
- #: templates/auth/user_form.html:25
166
+ #: templates/auth/user_form.html:27
171
167
  msgid "Your current providers"
172
168
  msgstr ""
173
169
 
174
- #: templates/auth/user_form.html:31
170
+ #: templates/auth/user_form.html:39
175
171
  msgid "Connect to another provider"
176
172
  msgstr ""
177
173
 
178
- #: templates/auth/user_form.html:33
174
+ #: templates/auth/user_form.html:42
179
175
  msgid ""
180
176
  "It's a good habit to connect your account to more than one provider, in case"
181
177
  " one provider becomes unavailable, temporarily or even permanently."
182
178
  msgstr ""
183
179
 
184
- #: templates/auth/user_stars.html:5
180
+ #: templates/auth/user_stars.html:8
185
181
  #, python-format
186
182
  msgid "Browse %(current_user)s's starred maps"
187
183
  msgstr ""
188
184
 
189
- #: templates/auth/user_stars.html:12
185
+ #: templates/auth/user_stars.html:17
190
186
  #, python-format
191
187
  msgid "%(current_user)s has no starred maps yet."
192
188
  msgstr ""
193
189
 
194
- #: templates/base.html:12
190
+ #: templates/base.html:13
195
191
  msgid ""
196
192
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
197
193
  "them in your site."
198
194
  msgstr "Med uMap kan du på minuter skapa egna kartor med OpenStreetMap-lager och bädda in dem på din webbsida."
199
195
 
200
- #: templates/registration/login.html:16
196
+ #: templates/registration/login.html:6 templates/registration/login.html:45
197
+ msgid "Login"
198
+ msgstr "Logga in"
199
+
200
+ #: templates/registration/login.html:24
201
201
  msgid "Please log in with your account"
202
202
  msgstr "Vänligen logga in med ditt konto"
203
203
 
204
- #: templates/registration/login.html:28
204
+ #: templates/registration/login.html:41
205
205
  msgid "Username"
206
206
  msgstr "Användarnamn"
207
207
 
208
- #: templates/registration/login.html:31
208
+ #: templates/registration/login.html:44
209
209
  msgid "Password"
210
210
  msgstr "Lösenord"
211
211
 
212
- #: templates/registration/login.html:32
213
- msgid "Login"
214
- msgstr "Logga in"
215
-
216
- #: templates/registration/login.html:37
212
+ #: templates/registration/login.html:51
217
213
  msgid "Please choose a provider"
218
214
  msgstr "Välj en leverantör"
219
215
 
220
- #: templates/umap/about_summary.html:11
216
+ #: templates/umap/about_summary.html:12
221
217
  #, python-format
222
218
  msgid ""
223
219
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
224
220
  "layers in a minute and embed them in your site."
225
221
  msgstr "Med uMap kan du på minuter skapa egna kartor med <a href=\"%(osm_url)s\" />OpenStreetMap</a> lager och sedan bädda in dem på din webbsida."
226
222
 
227
- #: templates/umap/about_summary.html:21
223
+ #: templates/umap/about_summary.html:23
228
224
  msgid "Choose the layers of your map"
229
225
  msgstr "Välj lager för din karta"
230
226
 
231
- #: templates/umap/about_summary.html:22
227
+ #: templates/umap/about_summary.html:26
232
228
  msgid "Add POIs: markers, lines, polygons..."
233
229
  msgstr "Lägg till POI:er, markörer, linjer, polygoner..."
234
230
 
235
- #: templates/umap/about_summary.html:23
231
+ #: templates/umap/about_summary.html:29
236
232
  msgid "Manage POIs colours and icons"
237
233
  msgstr "Ändra färger och ikoner för POI:er"
238
234
 
239
- #: templates/umap/about_summary.html:24
235
+ #: templates/umap/about_summary.html:32
240
236
  msgid "Manage map options: display a minimap, locate user on load…"
241
237
  msgstr "Hantera kartalternativ: visa en minikarta, lokalisera användaren..."
242
238
 
243
- #: templates/umap/about_summary.html:25
239
+ #: templates/umap/about_summary.html:35
244
240
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
245
241
  msgstr "Importera strukturerad geodata (geojson, gpx, kml, osm...)"
246
242
 
247
- #: templates/umap/about_summary.html:26
243
+ #: templates/umap/about_summary.html:38
248
244
  msgid "Choose the license for your data"
249
245
  msgstr "Välj licens för dina data"
250
246
 
251
- #: templates/umap/about_summary.html:27
247
+ #: templates/umap/about_summary.html:41
252
248
  msgid "Embed and share your map"
253
249
  msgstr "Bädda in och dela din karta"
254
250
 
255
- #: templates/umap/about_summary.html:37
251
+ #: templates/umap/about_summary.html:52
256
252
  #, python-format
257
253
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
258
254
  msgstr "Och det är <a href=\"%(repo_url)s\">öppen källkod</a>!"
259
255
 
260
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
261
- #: templates/umap/user_dashboard.html:42
256
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
257
+ #: templates/umap/user_dashboard.html:40
262
258
  msgid "Create a map"
263
259
  msgstr "Skapa en karta"
264
260
 
265
- #: templates/umap/about_summary.html:51
261
+ #: templates/umap/about_summary.html:66
266
262
  msgid "Play with the demo"
267
263
  msgstr "Lek med demotjänsten"
268
264
 
269
- #: templates/umap/content.html:22
265
+ #: templates/umap/components/alerts/alert.html:15
266
+ #: templates/umap/components/alerts/alert.html:64
267
+ #: templates/umap/components/alerts/alert.html:92
268
+ msgid "Close"
269
+ msgstr ""
270
+
271
+ #: templates/umap/components/alerts/alert.html:30
272
+ #, python-format
273
+ msgid ""
274
+ "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
275
+ "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
276
+ "target=\"_blank\">log in</a>."
277
+ msgstr ""
278
+
279
+ #: templates/umap/components/alerts/alert.html:35
280
+ msgid "Here is your secret link to edit the map, please keep it safe:"
281
+ msgstr ""
282
+
283
+ #: templates/umap/components/alerts/alert.html:39
284
+ msgid "Copy link"
285
+ msgstr ""
286
+
287
+ #: templates/umap/components/alerts/alert.html:46
288
+ msgid "Enter your email address to receive the secret link:"
289
+ msgstr ""
290
+
291
+ #: templates/umap/components/alerts/alert.html:52
292
+ msgid "Email"
293
+ msgstr ""
294
+
295
+ #: templates/umap/components/alerts/alert.html:55
296
+ msgid "Send me the link"
297
+ msgstr ""
298
+
299
+ #: templates/umap/components/alerts/alert.html:79
300
+ msgid "See their edits in another tab"
301
+ msgstr ""
302
+
303
+ #: templates/umap/components/alerts/alert.html:82
304
+ msgid "Keep your changes and loose theirs"
305
+ msgstr ""
306
+
307
+ #: templates/umap/components/alerts/alert.html:85
308
+ msgid "Keep their changes and loose yours"
309
+ msgstr ""
310
+
311
+ #: templates/umap/content.html:26
270
312
  msgid ""
271
313
  "This instance of uMap is currently in read only mode, no creation/edit is "
272
314
  "allowed."
273
315
  msgstr "Denna instans av uMap är för tillfället låst i visningsläge, ingen redigering är tillåten. "
274
316
 
275
- #: templates/umap/content.html:30
317
+ #: templates/umap/content.html:34
276
318
  #, python-format
277
319
  msgid ""
278
320
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -281,270 +323,339 @@ msgid ""
281
323
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
282
324
  msgstr "Det här är en demo-instans, som används för tester och förhandsversioner. Om du behöver en stabil instans, använd <a href=\"%(stable_url)s\">%(stable_url)s</a>. Du kan också vara värd för din egen instans med <a href=\"%(repo_url)s\">öppen källkod</a>!"
283
325
 
284
- #: templates/umap/home.html:8
326
+ #: templates/umap/content_footer.html:5
327
+ msgid "An OpenStreetMap project"
328
+ msgstr ""
329
+
330
+ #: templates/umap/content_footer.html:6
331
+ msgid "version"
332
+ msgstr ""
333
+
334
+ #: templates/umap/content_footer.html:7
335
+ msgid "Hosted by"
336
+ msgstr ""
337
+
338
+ #: templates/umap/content_footer.html:8
339
+ msgid "Contact"
340
+ msgstr ""
341
+
342
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
343
+ msgid "Help"
344
+ msgstr "Hjälp"
345
+
346
+ #: templates/umap/dashboard_menu.html:6
347
+ #, python-format
348
+ msgid "My Maps (%(count)s)"
349
+ msgstr ""
350
+
351
+ #: templates/umap/dashboard_menu.html:8
352
+ msgid "My Maps"
353
+ msgstr ""
354
+
355
+ #: templates/umap/dashboard_menu.html:11
356
+ msgid "My profile"
357
+ msgstr ""
358
+
359
+ #: templates/umap/dashboard_menu.html:13
360
+ msgid "My teams"
361
+ msgstr ""
362
+
363
+ #: templates/umap/home.html:14
285
364
  msgid "Map of the uMaps"
286
365
  msgstr "Karta över uMap-kartor."
287
366
 
288
- #: templates/umap/home.html:14
367
+ #: templates/umap/home.html:24
289
368
  msgid "Get inspired, browse maps"
290
369
  msgstr "Inspireras av andra kartor"
291
370
 
292
- #: templates/umap/login_popup_end.html:2
371
+ #: templates/umap/login_popup_end.html:4
293
372
  msgid "You are logged in. Continuing..."
294
373
  msgstr "Du är nu inloggad. Fortsätter..."
295
374
 
296
- #: templates/umap/map_list.html:9 views.py:341
375
+ #: templates/umap/map_list.html:10 views.py:433
297
376
  msgid "by"
298
377
  msgstr "av"
299
378
 
300
- #: templates/umap/map_list.html:17
379
+ #: templates/umap/map_list.html:18
301
380
  msgid "More"
302
381
  msgstr "Mer"
303
382
 
304
- #: templates/umap/map_table.html:6
383
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
305
384
  msgid "Name"
306
385
  msgstr "Namn"
307
386
 
308
- #: templates/umap/map_table.html:7
387
+ #: templates/umap/map_table.html:11
309
388
  msgid "Preview"
310
389
  msgstr ""
311
390
 
312
- #: templates/umap/map_table.html:8
391
+ #: templates/umap/map_table.html:14
313
392
  msgid "Who can see"
314
393
  msgstr ""
315
394
 
316
- #: templates/umap/map_table.html:9
395
+ #: templates/umap/map_table.html:17
317
396
  msgid "Who can edit"
318
397
  msgstr ""
319
398
 
320
- #: templates/umap/map_table.html:10
399
+ #: templates/umap/map_table.html:20
321
400
  msgid "Last save"
322
401
  msgstr "Senast sparad "
323
402
 
324
- #: templates/umap/map_table.html:11
403
+ #: templates/umap/map_table.html:23
325
404
  msgid "Owner"
326
405
  msgstr "Ägare"
327
406
 
328
- #: templates/umap/map_table.html:12
407
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
329
408
  msgid "Actions"
330
409
  msgstr "Åtgärder"
331
410
 
332
- #: templates/umap/map_table.html:25 templates/umap/map_table.html:27
411
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
333
412
  msgid "Open preview"
334
413
  msgstr ""
335
414
 
336
- #: templates/umap/map_table.html:46 templates/umap/map_table.html:48
415
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
337
416
  msgid "Share"
338
417
  msgstr "Dela"
339
418
 
340
- #: templates/umap/map_table.html:51 templates/umap/map_table.html:53
419
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
420
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
341
421
  msgid "Edit"
342
422
  msgstr "Redigera"
343
423
 
344
- #: templates/umap/map_table.html:56 templates/umap/map_table.html:58
424
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
345
425
  msgid "Download"
346
426
  msgstr "Ladda ned"
347
427
 
348
- #: templates/umap/map_table.html:63 templates/umap/map_table.html:65
428
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
349
429
  msgid "Clone"
350
430
  msgstr ""
351
431
 
352
- #: templates/umap/map_table.html:73 templates/umap/map_table.html:75
432
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
353
433
  msgid "Delete"
354
434
  msgstr ""
355
435
 
356
- #: templates/umap/map_table.html:88
436
+ #: templates/umap/map_table.html:117
357
437
  msgid "first"
358
438
  msgstr ""
359
439
 
360
- #: templates/umap/map_table.html:89
440
+ #: templates/umap/map_table.html:118
361
441
  msgid "previous"
362
442
  msgstr ""
363
443
 
364
- #: templates/umap/map_table.html:98
444
+ #: templates/umap/map_table.html:126
365
445
  #, python-format
366
446
  msgid "Page %(maps_number)s of %(num_pages)s"
367
447
  msgstr ""
368
448
 
369
- #: templates/umap/map_table.html:104
449
+ #: templates/umap/map_table.html:131
370
450
  msgid "next"
371
451
  msgstr ""
372
452
 
373
- #: templates/umap/map_table.html:105
453
+ #: templates/umap/map_table.html:132
374
454
  msgid "last"
375
455
  msgstr ""
376
456
 
377
- #: templates/umap/map_table.html:113
457
+ #: templates/umap/map_table.html:140
378
458
  #, python-format
379
459
  msgid "Lines per page: %(per_page)s"
380
460
  msgstr ""
381
461
 
382
- #: templates/umap/map_table.html:118
462
+ #: templates/umap/map_table.html:145
383
463
  #, python-format
384
464
  msgid "%(count)s maps"
385
465
  msgstr ""
386
466
 
387
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
467
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
388
468
  msgid "My Dashboard"
389
469
  msgstr ""
390
470
 
391
- #: templates/umap/navigation.html:13
471
+ #: templates/umap/navigation.html:14
392
472
  msgid "Starred maps"
393
473
  msgstr "Stjärnmärkta kartor "
394
474
 
395
- #: templates/umap/navigation.html:17
475
+ #: templates/umap/navigation.html:18
396
476
  msgid "Log in"
397
477
  msgstr "Logga in"
398
478
 
399
- #: templates/umap/navigation.html:17
479
+ #: templates/umap/navigation.html:18
400
480
  msgid "Sign in"
401
481
  msgstr "Logga in"
402
482
 
403
- #: templates/umap/navigation.html:21
483
+ #: templates/umap/navigation.html:22
404
484
  msgid "About"
405
485
  msgstr "Om"
406
486
 
407
- #: templates/umap/navigation.html:24
408
- msgid "Help"
409
- msgstr "Hjälp"
410
-
411
- #: templates/umap/navigation.html:29
487
+ #: templates/umap/navigation.html:30
412
488
  msgid "Change password"
413
489
  msgstr "Byt lösenord"
414
490
 
415
- #: templates/umap/navigation.html:33
491
+ #: templates/umap/navigation.html:34
416
492
  msgid "Log out"
417
493
  msgstr "Logga ut"
418
494
 
419
- #: templates/umap/password_change.html:4
495
+ #: templates/umap/password_change.html:7
420
496
  msgid "Password change"
421
497
  msgstr "Byte av lösenord"
422
498
 
423
- #: templates/umap/password_change.html:6
499
+ #: templates/umap/password_change.html:10
424
500
  msgid ""
425
501
  "Please enter your old password, for security's sake, and then enter your new"
426
502
  " password twice so we can verify you typed it in correctly."
427
503
  msgstr "Fyll i ditt nuvarande lösenord för säkerhets skull, och sedan ditt nya lösenord två gånger så vi kan undvika felskrivningar. "
428
504
 
429
- #: templates/umap/password_change.html:13
505
+ #: templates/umap/password_change.html:17
430
506
  msgid "Old password"
431
507
  msgstr "Nuvarande lösenord"
432
508
 
433
- #: templates/umap/password_change.html:18
509
+ #: templates/umap/password_change.html:22
434
510
  msgid "New password"
435
511
  msgstr "Nytt lösenord"
436
512
 
437
- #: templates/umap/password_change.html:22
513
+ #: templates/umap/password_change.html:26
438
514
  msgid "New password confirmation"
439
515
  msgstr "Bekräfta nytt lösenord"
440
516
 
441
- #: templates/umap/password_change.html:23
517
+ #: templates/umap/password_change.html:27
442
518
  msgid "Change my password"
443
519
  msgstr "Ändra mitt lösenord"
444
520
 
445
- #: templates/umap/password_change_done.html:4
521
+ #: templates/umap/password_change_done.html:7
446
522
  msgid "Password change successful"
447
523
  msgstr "Lösenordet har ändrats!"
448
524
 
449
- #: templates/umap/password_change_done.html:5
525
+ #: templates/umap/password_change_done.html:10
450
526
  msgid "Your password was changed."
451
527
  msgstr "Ditt lösenord har ändrats."
452
528
 
453
- #: templates/umap/search.html:10
529
+ #: templates/umap/search.html:15
454
530
  #, python-format
455
531
  msgid "%(count)s map found:"
456
532
  msgid_plural "%(count)s maps found:"
457
533
  msgstr[0] "%(count)s karta hittades:"
458
534
  msgstr[1] "%(count)s kartor hittades:"
459
535
 
460
- #: templates/umap/search.html:18
536
+ #: templates/umap/search.html:24
461
537
  msgid "No map found."
462
538
  msgstr "Ingen karta hittades. "
463
539
 
464
- #: templates/umap/search.html:21
540
+ #: templates/umap/search.html:29
465
541
  msgid "Latest created maps"
466
542
  msgstr "Senast skapade kartor "
467
543
 
468
- #: templates/umap/search_bar.html:3
544
+ #: templates/umap/search_bar.html:4
469
545
  msgid "Search maps"
470
546
  msgstr "Sök karta"
471
547
 
472
- #: templates/umap/search_bar.html:14
548
+ #: templates/umap/search_bar.html:15
473
549
  msgid "Search"
474
550
  msgstr "Sök"
475
551
 
476
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:26
477
- msgid "Search my maps"
478
- msgstr "Sök i mina kartor"
552
+ #: templates/umap/team_detail.html:10
553
+ #, python-format
554
+ msgid "Browse %(current_team)s's maps"
555
+ msgstr ""
479
556
 
480
- #: templates/umap/user_dashboard.html:11
557
+ #: templates/umap/team_detail.html:22
481
558
  #, python-format
482
- msgid "My Maps (%(count)s)"
559
+ msgid "%(current_team)s has no public maps."
483
560
  msgstr ""
484
561
 
485
- #: templates/umap/user_dashboard.html:13
486
- msgid "My profile"
562
+ #: templates/umap/team_form.html:24
563
+ msgid "Delete this team"
564
+ msgstr ""
565
+
566
+ #: templates/umap/team_form.html:47
567
+ msgid "Add user"
487
568
  msgstr ""
488
569
 
489
- #: templates/umap/user_dashboard.html:21 templates/umap/user_dashboard.html:23
570
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
571
+ msgid "Search my maps"
572
+ msgstr "Sök i mina kartor"
573
+
574
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
490
575
  msgid "Map’s title"
491
576
  msgstr ""
492
577
 
493
- #: templates/umap/user_dashboard.html:32
578
+ #: templates/umap/user_dashboard.html:30
494
579
  #, python-format
495
580
  msgid "Download %(count)s maps"
496
581
  msgstr ""
497
582
 
498
- #: templates/umap/user_dashboard.html:42
583
+ #: templates/umap/user_dashboard.html:40
499
584
  msgid "You have no map yet."
500
585
  msgstr "Du har ingen karta än. "
501
586
 
502
- #: views.py:346
587
+ #: templates/umap/user_teams.html:17
588
+ msgid "Users"
589
+ msgstr ""
590
+
591
+ #: templates/umap/user_teams.html:48
592
+ msgid "New team"
593
+ msgstr ""
594
+
595
+ #: views.py:235
596
+ msgid "Cannot delete a team with more than one member"
597
+ msgstr ""
598
+
599
+ #: views.py:239
600
+ #, python-format
601
+ msgid "Team “%(name)s” has been deleted"
602
+ msgstr ""
603
+
604
+ #: views.py:438
503
605
  msgid "View the map"
504
606
  msgstr "Se kartan"
505
607
 
506
- #: views.py:704
608
+ #: views.py:824
507
609
  msgid "See full screen"
508
610
  msgstr ""
509
611
 
510
- #: views.py:803
612
+ #: views.py:953
511
613
  msgid "Map editors updated with success!"
512
614
  msgstr "Kartans redaktörer har uppdaterats!"
513
615
 
514
- #: views.py:841
616
+ #: views.py:989
515
617
  #, python-format
516
618
  msgid "The uMap edit link for your map: %(map_name)s"
517
619
  msgstr "Redigeringslänken för din uMap-karta: %(map_name)s"
518
620
 
519
- #: views.py:844
621
+ #: views.py:992
520
622
  #, python-format
521
623
  msgid "Here is your secret edit link: %(link)s"
522
624
  msgstr "Här är din hemliga redigeringslänk: %(link)s"
523
625
 
524
- #: views.py:850
626
+ #: views.py:999
627
+ #, python-format
628
+ msgid "Can't send email to %(email)s"
629
+ msgstr ""
630
+
631
+ #: views.py:1002
525
632
  #, python-format
526
633
  msgid "Email sent to %(email)s"
527
634
  msgstr "Ett mejl har skickats till %(email)s"
528
635
 
529
- #: views.py:861
636
+ #: views.py:1013
530
637
  msgid "Only its owner can delete the map."
531
638
  msgstr "Bara ägaren kan radera kartan."
532
639
 
533
- #: views.py:889
640
+ #: views.py:1016
641
+ msgid "Map successfully deleted."
642
+ msgstr ""
643
+
644
+ #: views.py:1042
534
645
  #, python-format
535
646
  msgid ""
536
647
  "Your map has been cloned! If you want to edit this map from another "
537
648
  "computer, please use this link: %(anonymous_url)s"
538
649
  msgstr "Din karta har kopierats! Om du vill redigera den här kartan från en annan dator, använd denna länk: %(anonymous_url)s"
539
650
 
540
- #: views.py:894
651
+ #: views.py:1047
541
652
  msgid "Congratulations, your map has been cloned!"
542
653
  msgstr "Grattis, din karta har kopierats!"
543
654
 
544
- #: views.py:1130
655
+ #: views.py:1282
545
656
  msgid "Layer successfully deleted."
546
657
  msgstr "Lagret har raderats."
547
658
 
548
- #: views.py:1152
659
+ #: views.py:1304
549
660
  msgid "Permissions updated with success!"
550
661
  msgstr ""