umap-project 1.14.0a5__py3-none-any.whl → 2.0.0a0__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 (224) hide show
  1. umap/__init__.py +1 -1
  2. umap/decorators.py +0 -14
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +137 -85
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +136 -84
  7. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/el/LC_MESSAGES/django.po +136 -84
  9. umap/locale/en/LC_MESSAGES/django.po +128 -88
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +136 -84
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +131 -91
  14. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/hu/LC_MESSAGES/django.po +137 -85
  16. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/it/LC_MESSAGES/django.po +136 -84
  18. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/ms/LC_MESSAGES/django.po +136 -84
  20. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/pl/LC_MESSAGES/django.po +136 -84
  22. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/sv/LC_MESSAGES/django.po +135 -83
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +143 -91
  26. umap/models.py +23 -1
  27. umap/settings/__init__.py +1 -4
  28. umap/settings/base.py +1 -0
  29. umap/static/umap/base.css +5 -0
  30. umap/static/umap/content.css +185 -13
  31. umap/static/umap/favicons/icon.svg +2 -2
  32. umap/static/umap/img/edit.svg +3 -3
  33. umap/static/umap/img/icon-delete.svg +4 -0
  34. umap/static/umap/img/icon-download.svg +13 -0
  35. umap/static/umap/img/icon-duplicate.svg +5 -0
  36. umap/static/umap/img/icon-edit.svg +12 -0
  37. umap/static/umap/img/icon-share.svg +11 -0
  38. umap/static/umap/img/icon-view.svg +12 -0
  39. umap/static/umap/img/logo.svg +2 -2
  40. umap/static/umap/img/logo_small.svg +2 -2
  41. umap/static/umap/img/marker.svg +4 -0
  42. umap/static/umap/img/opensource.svg +2 -2
  43. umap/static/umap/img/osm.svg +2 -2
  44. umap/static/umap/js/components/fragment.js +1 -1
  45. umap/static/umap/js/modules/browser.js +159 -0
  46. umap/static/umap/js/modules/global.js +3 -1
  47. umap/static/umap/js/modules/request.js +155 -0
  48. umap/static/umap/js/umap.autocomplete.js +28 -38
  49. umap/static/umap/js/umap.controls.js +73 -58
  50. umap/static/umap/js/umap.core.js +4 -9
  51. umap/static/umap/js/umap.datalayer.permissions.js +13 -12
  52. umap/static/umap/js/umap.features.js +51 -49
  53. umap/static/umap/js/umap.forms.js +19 -19
  54. umap/static/umap/js/umap.icon.js +17 -17
  55. umap/static/umap/js/umap.importer.js +2 -1
  56. umap/static/umap/js/umap.js +242 -291
  57. umap/static/umap/js/umap.layer.js +173 -141
  58. umap/static/umap/js/umap.permissions.js +24 -25
  59. umap/static/umap/js/umap.popup.js +14 -14
  60. umap/static/umap/js/umap.share.js +4 -4
  61. umap/static/umap/js/umap.slideshow.js +4 -4
  62. umap/static/umap/js/umap.tableeditor.js +2 -2
  63. umap/static/umap/js/umap.ui.js +1 -1
  64. umap/static/umap/locale/am_ET.js +1 -11
  65. umap/static/umap/locale/am_ET.json +1 -11
  66. umap/static/umap/locale/ar.js +1 -11
  67. umap/static/umap/locale/ar.json +1 -11
  68. umap/static/umap/locale/ast.js +1 -11
  69. umap/static/umap/locale/ast.json +1 -11
  70. umap/static/umap/locale/bg.js +1 -11
  71. umap/static/umap/locale/bg.json +1 -11
  72. umap/static/umap/locale/br.js +1 -11
  73. umap/static/umap/locale/br.json +1 -11
  74. umap/static/umap/locale/ca.js +1 -11
  75. umap/static/umap/locale/ca.json +1 -11
  76. umap/static/umap/locale/cs_CZ.js +1 -11
  77. umap/static/umap/locale/cs_CZ.json +1 -11
  78. umap/static/umap/locale/da.js +1 -11
  79. umap/static/umap/locale/da.json +1 -11
  80. umap/static/umap/locale/de.js +1 -11
  81. umap/static/umap/locale/de.json +1 -11
  82. umap/static/umap/locale/el.js +1 -11
  83. umap/static/umap/locale/el.json +1 -11
  84. umap/static/umap/locale/en.js +1 -11
  85. umap/static/umap/locale/en.json +1 -11
  86. umap/static/umap/locale/en_US.json +1 -11
  87. umap/static/umap/locale/es.js +1 -11
  88. umap/static/umap/locale/es.json +1 -11
  89. umap/static/umap/locale/et.js +1 -11
  90. umap/static/umap/locale/et.json +1 -11
  91. umap/static/umap/locale/fa_IR.js +6 -16
  92. umap/static/umap/locale/fa_IR.json +6 -16
  93. umap/static/umap/locale/fi.js +1 -11
  94. umap/static/umap/locale/fi.json +1 -11
  95. umap/static/umap/locale/fr.js +1 -11
  96. umap/static/umap/locale/fr.json +1 -11
  97. umap/static/umap/locale/gl.js +1 -11
  98. umap/static/umap/locale/gl.json +1 -11
  99. umap/static/umap/locale/he.js +1 -11
  100. umap/static/umap/locale/he.json +1 -11
  101. umap/static/umap/locale/hr.js +1 -11
  102. umap/static/umap/locale/hr.json +1 -11
  103. umap/static/umap/locale/hu.js +1 -11
  104. umap/static/umap/locale/hu.json +1 -11
  105. umap/static/umap/locale/id.js +1 -11
  106. umap/static/umap/locale/id.json +1 -11
  107. umap/static/umap/locale/is.js +1 -11
  108. umap/static/umap/locale/is.json +1 -11
  109. umap/static/umap/locale/it.js +1 -11
  110. umap/static/umap/locale/it.json +1 -11
  111. umap/static/umap/locale/ja.js +1 -11
  112. umap/static/umap/locale/ja.json +1 -11
  113. umap/static/umap/locale/ko.js +1 -11
  114. umap/static/umap/locale/ko.json +1 -11
  115. umap/static/umap/locale/lt.js +1 -11
  116. umap/static/umap/locale/lt.json +1 -11
  117. umap/static/umap/locale/ms.js +1 -11
  118. umap/static/umap/locale/ms.json +1 -11
  119. umap/static/umap/locale/nl.js +1 -11
  120. umap/static/umap/locale/nl.json +1 -11
  121. umap/static/umap/locale/no.js +1 -11
  122. umap/static/umap/locale/no.json +1 -11
  123. umap/static/umap/locale/pl.js +1 -11
  124. umap/static/umap/locale/pl.json +1 -11
  125. umap/static/umap/locale/pl_PL.json +1 -11
  126. umap/static/umap/locale/pt.js +1 -11
  127. umap/static/umap/locale/pt.json +1 -11
  128. umap/static/umap/locale/pt_BR.js +1 -11
  129. umap/static/umap/locale/pt_BR.json +1 -11
  130. umap/static/umap/locale/pt_PT.js +1 -11
  131. umap/static/umap/locale/pt_PT.json +1 -11
  132. umap/static/umap/locale/ro.js +1 -11
  133. umap/static/umap/locale/ro.json +1 -11
  134. umap/static/umap/locale/ru.js +1 -11
  135. umap/static/umap/locale/ru.json +1 -11
  136. umap/static/umap/locale/sk_SK.js +1 -11
  137. umap/static/umap/locale/sk_SK.json +1 -11
  138. umap/static/umap/locale/sl.js +1 -11
  139. umap/static/umap/locale/sl.json +1 -11
  140. umap/static/umap/locale/sr.js +1 -11
  141. umap/static/umap/locale/sr.json +1 -11
  142. umap/static/umap/locale/sv.js +1 -11
  143. umap/static/umap/locale/sv.json +1 -11
  144. umap/static/umap/locale/th_TH.js +1 -11
  145. umap/static/umap/locale/th_TH.json +1 -11
  146. umap/static/umap/locale/tr.js +1 -11
  147. umap/static/umap/locale/tr.json +1 -11
  148. umap/static/umap/locale/uk_UA.js +1 -11
  149. umap/static/umap/locale/uk_UA.json +1 -11
  150. umap/static/umap/locale/vi.js +1 -11
  151. umap/static/umap/locale/vi.json +1 -11
  152. umap/static/umap/locale/vi_VN.json +1 -11
  153. umap/static/umap/locale/zh.js +1 -11
  154. umap/static/umap/locale/zh.json +1 -11
  155. umap/static/umap/locale/zh_CN.json +1 -11
  156. umap/static/umap/locale/zh_TW.Big5.json +1 -11
  157. umap/static/umap/locale/zh_TW.js +17 -27
  158. umap/static/umap/locale/zh_TW.json +17 -27
  159. umap/static/umap/map.css +2 -2
  160. umap/static/umap/nav.css +2 -1
  161. umap/static/umap/test/.eslintrc +0 -1
  162. umap/static/umap/test/Choropleth.js +29 -27
  163. umap/static/umap/test/DataLayer.js +207 -239
  164. umap/static/umap/test/Feature.js +33 -58
  165. umap/static/umap/test/Map.Export.js +11 -11
  166. umap/static/umap/test/Map.js +66 -67
  167. umap/static/umap/test/Marker.js +36 -32
  168. umap/static/umap/test/Polygon.js +95 -95
  169. umap/static/umap/test/Polyline.js +31 -31
  170. umap/static/umap/test/TableEditor.js +29 -25
  171. umap/static/umap/test/_pre.js +2 -7
  172. umap/static/umap/test/index.html +4 -4
  173. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.css +54 -0
  174. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.js +586 -0
  175. umap/static/umap/vendors/csv2geojson/index.js +259 -0
  176. umap/static/umap/vendors/dompurify/purify.js +1633 -0
  177. umap/static/umap/vendors/locatecontrol/L.Control.Locate.css +63 -0
  178. umap/static/umap/vendors/locatecontrol/L.Control.Locate.js +950 -0
  179. umap/static/umap/vendors/minimap/Control.MiniMap.css +88 -0
  180. umap/static/umap/vendors/minimap/Control.MiniMap.js +352 -0
  181. umap/static/umap/vendors/togeojson/togeojson.js +2 -0
  182. umap/templates/auth/user_form.html +3 -2
  183. umap/templates/base.html +1 -0
  184. umap/templates/registration/login.html +51 -36
  185. umap/templates/umap/about_summary.html +1 -1
  186. umap/templates/umap/branding.html +3 -0
  187. umap/templates/umap/content.html +15 -39
  188. umap/templates/umap/header.html +0 -0
  189. umap/templates/umap/home.html +4 -2
  190. umap/templates/umap/js.html +0 -1
  191. umap/templates/umap/map_detail.html +9 -0
  192. umap/templates/umap/map_init.html +1 -1
  193. umap/templates/umap/map_messages.html +4 -2
  194. umap/templates/umap/map_table.html +130 -69
  195. umap/templates/umap/navigation.html +2 -4
  196. umap/templates/umap/user_dashboard.html +29 -6
  197. umap/tests/base.py +1 -1
  198. umap/tests/integration/conftest.py +18 -0
  199. umap/tests/integration/test_anonymous_owned_map.py +6 -3
  200. umap/tests/integration/test_browser.py +166 -6
  201. umap/tests/integration/test_collaborative_editing.py +23 -5
  202. umap/tests/integration/test_dashboard.py +17 -0
  203. umap/tests/integration/test_edit_datalayer.py +4 -3
  204. umap/tests/integration/test_export_map.py +1 -1
  205. umap/tests/integration/test_import.py +9 -4
  206. umap/tests/integration/test_map.py +64 -0
  207. umap/tests/integration/test_map_preview.py +75 -0
  208. umap/tests/integration/test_owned_map.py +11 -25
  209. umap/tests/integration/test_picto.py +3 -3
  210. umap/tests/integration/test_querystring.py +52 -0
  211. umap/tests/integration/test_share.py +22 -0
  212. umap/tests/test_map_views.py +157 -14
  213. umap/tests/test_views.py +50 -11
  214. umap/urls.py +6 -12
  215. umap/views.py +170 -47
  216. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a0.dist-info}/METADATA +13 -15
  217. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a0.dist-info}/RECORD +220 -199
  218. umap/static/umap/js/umap.browser.js +0 -148
  219. umap/static/umap/js/umap.xhr.js +0 -304
  220. umap/static/umap/test/Controls.js +0 -100
  221. umap/static/umap/test/Map.Init.js +0 -46
  222. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a0.dist-info}/WHEEL +0 -0
  223. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a0.dist-info}/entry_points.txt +0 -0
  224. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a0.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-01-08 12:33+0000\n"
14
+ "POT-Creation-Date: 2024-02-09 10:52+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:349
32
+ #: forms.py:69 models.py:371
33
33
  msgid "Inherit"
34
34
  msgstr ""
35
35
 
@@ -37,107 +37,107 @@ msgstr ""
37
37
  msgid "Site is readonly for maintenance"
38
38
  msgstr "Webbplatsen är skrivskyddad för underhållsarbete."
39
39
 
40
- #: models.py:49
40
+ #: models.py:50
41
41
  msgid "name"
42
42
  msgstr "namn"
43
43
 
44
- #: models.py:80
44
+ #: models.py:81
45
45
  msgid "details"
46
46
  msgstr "detaljer"
47
47
 
48
- #: models.py:81
48
+ #: models.py:82
49
49
  msgid "Link to a page where the licence is detailed."
50
50
  msgstr "Länk till sida med detaljerad licens information."
51
51
 
52
- #: models.py:91
52
+ #: models.py:92
53
53
  msgid "URL template using OSM tile format"
54
54
  msgstr "URL-mall med OSM:s tile-format"
55
55
 
56
- #: models.py:97
56
+ #: models.py:98
57
57
  msgid "Order of the tilelayers in the edit box"
58
58
  msgstr "Ordningen för tile-lager i redigeringsrutan"
59
59
 
60
- #: models.py:143 models.py:350
60
+ #: models.py:144 models.py:372
61
61
  msgid "Everyone"
62
62
  msgstr "Alla"
63
63
 
64
- #: models.py:144 models.py:150 models.py:351
64
+ #: models.py:145 models.py:151 models.py:373
65
65
  msgid "Editors only"
66
66
  msgstr "Enbart redaktörer"
67
67
 
68
- #: models.py:145 models.py:352
68
+ #: models.py:146 models.py:374
69
69
  msgid "Owner only"
70
70
  msgstr "Enbart ägaren "
71
71
 
72
- #: models.py:148
72
+ #: models.py:149
73
73
  msgid "Everyone (public)"
74
74
  msgstr "Alla (publik)"
75
75
 
76
- #: models.py:149
76
+ #: models.py:150
77
77
  msgid "Anyone with link"
78
78
  msgstr "Alla med en länk"
79
79
 
80
- #: models.py:151
80
+ #: models.py:152
81
81
  msgid "Blocked"
82
82
  msgstr "Låst"
83
83
 
84
- #: models.py:154 models.py:356
84
+ #: models.py:155 models.py:378
85
85
  msgid "description"
86
86
  msgstr "beskrivning"
87
87
 
88
- #: models.py:155
88
+ #: models.py:156
89
89
  msgid "center"
90
90
  msgstr "centrera"
91
91
 
92
- #: models.py:156
92
+ #: models.py:157
93
93
  msgid "zoom"
94
94
  msgstr "zooma"
95
95
 
96
- #: models.py:158
96
+ #: models.py:159
97
97
  msgid "locate"
98
98
  msgstr "lokalisera"
99
99
 
100
- #: models.py:158
100
+ #: models.py:159
101
101
  msgid "Locate user on load?"
102
102
  msgstr "Lokalisera användaren vid uppstart?"
103
103
 
104
- #: models.py:162
104
+ #: models.py:163
105
105
  msgid "Choose the map licence."
106
106
  msgstr "Välj licens för kartan."
107
107
 
108
- #: models.py:163
108
+ #: models.py:164
109
109
  msgid "licence"
110
110
  msgstr "licens"
111
111
 
112
- #: models.py:174
112
+ #: models.py:175
113
113
  msgid "owner"
114
114
  msgstr "ägare"
115
115
 
116
- #: models.py:178
116
+ #: models.py:179
117
117
  msgid "editors"
118
118
  msgstr "redaktörer"
119
119
 
120
- #: models.py:183 models.py:370
120
+ #: models.py:184 models.py:392
121
121
  msgid "edit status"
122
122
  msgstr "redigeringsstatus"
123
123
 
124
- #: models.py:188
124
+ #: models.py:189
125
125
  msgid "share status"
126
126
  msgstr "delningsstatus"
127
127
 
128
- #: models.py:191 models.py:365
128
+ #: models.py:192 models.py:387
129
129
  msgid "settings"
130
130
  msgstr "inställningar"
131
131
 
132
- #: models.py:298
132
+ #: models.py:320
133
133
  msgid "Clone of"
134
134
  msgstr "Kopia av"
135
135
 
136
- #: models.py:360
136
+ #: models.py:382
137
137
  msgid "display on load"
138
138
  msgstr "visa vid uppstart"
139
139
 
140
- #: models.py:361
140
+ #: models.py:383
141
141
  msgid "Display this layer on load."
142
142
  msgstr "Visa detta lager från start."
143
143
 
@@ -155,28 +155,27 @@ msgstr "Bläddra bland %(current_user)ss kartor"
155
155
  msgid "%(current_user)s has no maps."
156
156
  msgstr "%(current_user)s har inga kartor."
157
157
 
158
- #: templates/auth/user_form.html:6 templates/umap/navigation.html:12
159
- #: templates/umap/user_dashboard.html:4 templates/umap/user_dashboard.html:10
160
- msgid "My Dashboard"
158
+ #: templates/auth/user_form.html:6
159
+ msgid "My Maps"
161
160
  msgstr ""
162
161
 
163
- #: templates/auth/user_form.html:6
162
+ #: templates/auth/user_form.html:7
164
163
  msgid "My Profile"
165
164
  msgstr ""
166
165
 
167
- #: templates/auth/user_form.html:19
166
+ #: templates/auth/user_form.html:20
168
167
  msgid "Save"
169
168
  msgstr ""
170
169
 
171
- #: templates/auth/user_form.html:24
170
+ #: templates/auth/user_form.html:25
172
171
  msgid "Your current providers"
173
172
  msgstr ""
174
173
 
175
- #: templates/auth/user_form.html:30
174
+ #: templates/auth/user_form.html:31
176
175
  msgid "Connect to another provider"
177
176
  msgstr ""
178
177
 
179
- #: templates/auth/user_form.html:32
178
+ #: templates/auth/user_form.html:33
180
179
  msgid ""
181
180
  "It's a good habit to connect your account to more than one provider, in case"
182
181
  " one provider becomes unavailable, temporarily or even permanently."
@@ -198,23 +197,23 @@ msgid ""
198
197
  "them in your site."
199
198
  msgstr "Med uMap kan du på minuter skapa egna kartor med OpenStreetMap-lager och bädda in dem på din webbsida."
200
199
 
201
- #: templates/registration/login.html:3
200
+ #: templates/registration/login.html:16
202
201
  msgid "Please log in with your account"
203
202
  msgstr "Vänligen logga in med ditt konto"
204
203
 
205
- #: templates/registration/login.html:15
204
+ #: templates/registration/login.html:28
206
205
  msgid "Username"
207
206
  msgstr "Användarnamn"
208
207
 
209
- #: templates/registration/login.html:18
208
+ #: templates/registration/login.html:31
210
209
  msgid "Password"
211
210
  msgstr "Lösenord"
212
211
 
213
- #: templates/registration/login.html:19
212
+ #: templates/registration/login.html:32
214
213
  msgid "Login"
215
214
  msgstr "Logga in"
216
215
 
217
- #: templates/registration/login.html:24
216
+ #: templates/registration/login.html:37
218
217
  msgid "Please choose a provider"
219
218
  msgstr "Välj en leverantör"
220
219
 
@@ -258,8 +257,8 @@ msgstr "Bädda in och dela din karta"
258
257
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
259
258
  msgstr "Och det är <a href=\"%(repo_url)s\">öppen källkod</a>!"
260
259
 
261
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:42
262
- #: templates/umap/user_dashboard.html:20
260
+ #: templates/umap/about_summary.html:48 templates/umap/navigation.html:40
261
+ #: templates/umap/user_dashboard.html:41
263
262
  msgid "Create a map"
264
263
  msgstr "Skapa en karta"
265
264
 
@@ -267,13 +266,13 @@ msgstr "Skapa en karta"
267
266
  msgid "Play with the demo"
268
267
  msgstr "Lek med demotjänsten"
269
268
 
270
- #: templates/umap/content.html:23
269
+ #: templates/umap/content.html:22
271
270
  msgid ""
272
271
  "This instance of uMap is currently in read only mode, no creation/edit is "
273
272
  "allowed."
274
273
  msgstr "Denna instans av uMap är för tillfället låst i visningsläge, ingen redigering är tillåten. "
275
274
 
276
- #: templates/umap/content.html:31
275
+ #: templates/umap/content.html:30
277
276
  #, python-format
278
277
  msgid ""
279
278
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -286,7 +285,7 @@ msgstr "Det här är en demo-instans, som används för tester och förhandsvers
286
285
  msgid "Map of the uMaps"
287
286
  msgstr "Karta över uMap-kartor."
288
287
 
289
- #: templates/umap/home.html:13
288
+ #: templates/umap/home.html:14
290
289
  msgid "Get inspired, browse maps"
291
290
  msgstr "Inspireras av andra kartor"
292
291
 
@@ -294,7 +293,7 @@ msgstr "Inspireras av andra kartor"
294
293
  msgid "You are logged in. Continuing..."
295
294
  msgstr "Du är nu inloggad. Fortsätter..."
296
295
 
297
- #: templates/umap/map_list.html:9 views.py:296
296
+ #: templates/umap/map_list.html:9 views.py:341
298
297
  msgid "by"
299
298
  msgstr "av"
300
299
 
@@ -311,86 +310,118 @@ msgid "Preview"
311
310
  msgstr ""
312
311
 
313
312
  #: templates/umap/map_table.html:7
314
- msgid "Who can see / edit"
315
- msgstr "Vem kan se/redigera"
313
+ msgid "Who can see"
314
+ msgstr ""
316
315
 
317
316
  #: templates/umap/map_table.html:8
317
+ msgid "Who can edit"
318
+ msgstr ""
319
+
320
+ #: templates/umap/map_table.html:9
318
321
  msgid "Last save"
319
322
  msgstr "Senast sparad "
320
323
 
321
- #: templates/umap/map_table.html:9
324
+ #: templates/umap/map_table.html:10
322
325
  msgid "Owner"
323
326
  msgstr "Ägare"
324
327
 
325
- #: templates/umap/map_table.html:10
328
+ #: templates/umap/map_table.html:11
326
329
  msgid "Actions"
327
330
  msgstr "Åtgärder"
328
331
 
329
- #: templates/umap/map_table.html:22
332
+ #: templates/umap/map_table.html:24 templates/umap/map_table.html:26
330
333
  msgid "Open preview"
331
334
  msgstr ""
332
335
 
333
- #: templates/umap/map_table.html:38
336
+ #: templates/umap/map_table.html:45 templates/umap/map_table.html:47
334
337
  msgid "Share"
335
338
  msgstr "Dela"
336
339
 
337
- #: templates/umap/map_table.html:39
340
+ #: templates/umap/map_table.html:50 templates/umap/map_table.html:52
338
341
  msgid "Edit"
339
342
  msgstr "Redigera"
340
343
 
341
- #: templates/umap/map_table.html:40
344
+ #: templates/umap/map_table.html:55 templates/umap/map_table.html:57
342
345
  msgid "Download"
343
346
  msgstr "Ladda ned"
344
347
 
345
- #: templates/umap/map_table.html:49
348
+ #: templates/umap/map_table.html:62 templates/umap/map_table.html:64
349
+ msgid "Clone"
350
+ msgstr ""
351
+
352
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
353
+ msgid "Delete"
354
+ msgstr ""
355
+
356
+ #: templates/umap/map_table.html:86
346
357
  msgid "first"
347
358
  msgstr ""
348
359
 
349
- #: templates/umap/map_table.html:50
360
+ #: templates/umap/map_table.html:87
350
361
  msgid "previous"
351
362
  msgstr ""
352
363
 
353
- #: templates/umap/map_table.html:59
364
+ #: templates/umap/map_table.html:96
354
365
  #, python-format
355
366
  msgid ""
356
367
  "\n"
357
- " Page %(maps_number)s of %(num_pages)s\n"
358
- " "
368
+ " Page %(maps_number)s of %(num_pages)s\n"
369
+ " "
359
370
  msgstr ""
360
371
 
361
- #: templates/umap/map_table.html:65
372
+ #: templates/umap/map_table.html:102
362
373
  msgid "next"
363
374
  msgstr ""
364
375
 
365
- #: templates/umap/map_table.html:66
376
+ #: templates/umap/map_table.html:103
366
377
  msgid "last"
367
378
  msgstr ""
368
379
 
369
- #: templates/umap/navigation.html:15
380
+ #: templates/umap/map_table.html:111
381
+ #, python-format
382
+ msgid ""
383
+ "\n"
384
+ " Lines per page: %(per_page)s\n"
385
+ " "
386
+ msgstr ""
387
+
388
+ #: templates/umap/map_table.html:116
389
+ #, python-format
390
+ msgid ""
391
+ "\n"
392
+ " %(count)s maps\n"
393
+ " "
394
+ msgstr ""
395
+
396
+ #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
397
+ msgid "My Dashboard"
398
+ msgstr ""
399
+
400
+ #: templates/umap/navigation.html:13
370
401
  msgid "Starred maps"
371
402
  msgstr "Stjärnmärkta kartor "
372
403
 
373
- #: templates/umap/navigation.html:19
404
+ #: templates/umap/navigation.html:17
374
405
  msgid "Log in"
375
406
  msgstr "Logga in"
376
407
 
377
- #: templates/umap/navigation.html:19
408
+ #: templates/umap/navigation.html:17
378
409
  msgid "Sign in"
379
410
  msgstr "Logga in"
380
411
 
381
- #: templates/umap/navigation.html:23
412
+ #: templates/umap/navigation.html:21
382
413
  msgid "About"
383
414
  msgstr "Om"
384
415
 
385
- #: templates/umap/navigation.html:26
416
+ #: templates/umap/navigation.html:24
386
417
  msgid "Help"
387
418
  msgstr "Hjälp"
388
419
 
389
- #: templates/umap/navigation.html:31
420
+ #: templates/umap/navigation.html:29
390
421
  msgid "Change password"
391
422
  msgstr "Byt lösenord"
392
423
 
393
- #: templates/umap/navigation.html:35
424
+ #: templates/umap/navigation.html:33
394
425
  msgid "Log out"
395
426
  msgstr "Logga ut"
396
427
 
@@ -447,7 +478,7 @@ msgstr "Senast skapade kartor "
447
478
  msgid "Search maps"
448
479
  msgstr "Sök karta"
449
480
 
450
- #: templates/umap/search_bar.html:14
481
+ #: templates/umap/search_bar.html:14 templates/umap/user_dashboard.html:25
451
482
  msgid "Search"
452
483
  msgstr "Sök"
453
484
 
@@ -455,60 +486,81 @@ msgstr "Sök"
455
486
  msgid "Search my maps"
456
487
  msgstr "Sök i mina kartor"
457
488
 
458
- #: templates/umap/user_dashboard.html:10
489
+ #: templates/umap/user_dashboard.html:11
490
+ #, python-format
491
+ msgid "My Maps (%(count)s)"
492
+ msgstr ""
493
+
494
+ #: templates/umap/user_dashboard.html:13
459
495
  msgid "My profile"
460
496
  msgstr ""
461
497
 
462
- #: templates/umap/user_dashboard.html:20
498
+ #: templates/umap/user_dashboard.html:21
499
+ msgid "Map’s title"
500
+ msgstr ""
501
+
502
+ #: templates/umap/user_dashboard.html:31
503
+ #, python-format
504
+ msgid ""
505
+ "\n"
506
+ " Download %(count)s maps\n"
507
+ " "
508
+ msgstr ""
509
+
510
+ #: templates/umap/user_dashboard.html:41
463
511
  msgid "You have no map yet."
464
512
  msgstr "Du har ingen karta än. "
465
513
 
466
- #: views.py:301
514
+ #: views.py:346
467
515
  msgid "View the map"
468
516
  msgstr "Se kartan"
469
517
 
470
- #: views.py:660
518
+ #: views.py:704
519
+ msgid "See full screen"
520
+ msgstr ""
521
+
522
+ #: views.py:779
471
523
  msgid "Map has been updated!"
472
524
  msgstr "Kartan har uppdaterats!"
473
525
 
474
- #: views.py:685
526
+ #: views.py:804
475
527
  msgid "Map editors updated with success!"
476
528
  msgstr "Kartans redaktörer har uppdaterats!"
477
529
 
478
- #: views.py:723
530
+ #: views.py:842
479
531
  #, python-format
480
532
  msgid "The uMap edit link for your map: %(map_name)s"
481
533
  msgstr "Redigeringslänken för din uMap-karta: %(map_name)s"
482
534
 
483
- #: views.py:726
535
+ #: views.py:845
484
536
  #, python-format
485
537
  msgid "Here is your secret edit link: %(link)s"
486
538
  msgstr "Här är din hemliga redigeringslänk: %(link)s"
487
539
 
488
- #: views.py:732
540
+ #: views.py:851
489
541
  #, python-format
490
542
  msgid "Email sent to %(email)s"
491
543
  msgstr "Ett mejl har skickats till %(email)s"
492
544
 
493
- #: views.py:743
545
+ #: views.py:862
494
546
  msgid "Only its owner can delete the map."
495
547
  msgstr "Bara ägaren kan radera kartan."
496
548
 
497
- #: views.py:766
549
+ #: views.py:890
498
550
  #, python-format
499
551
  msgid ""
500
552
  "Your map has been cloned! If you want to edit this map from another "
501
553
  "computer, please use this link: %(anonymous_url)s"
502
554
  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"
503
555
 
504
- #: views.py:771
556
+ #: views.py:895
505
557
  msgid "Congratulations, your map has been cloned!"
506
558
  msgstr "Grattis, din karta har kopierats!"
507
559
 
508
- #: views.py:1007
560
+ #: views.py:1131
509
561
  msgid "Layer successfully deleted."
510
562
  msgstr "Lagret har raderats."
511
563
 
512
- #: views.py:1029
564
+ #: views.py:1153
513
565
  msgid "Permissions updated with success!"
514
566
  msgstr ""
Binary file