umap-project 1.14.0a5__py3-none-any.whl → 2.0.0a1__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 (216) 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/storage.py +2 -0
  174. umap/templates/auth/user_form.html +3 -2
  175. umap/templates/base.html +1 -0
  176. umap/templates/registration/login.html +51 -36
  177. umap/templates/umap/about_summary.html +1 -1
  178. umap/templates/umap/branding.html +3 -0
  179. umap/templates/umap/content.html +15 -39
  180. umap/templates/umap/header.html +0 -0
  181. umap/templates/umap/home.html +4 -2
  182. umap/templates/umap/js.html +0 -2
  183. umap/templates/umap/map_detail.html +9 -0
  184. umap/templates/umap/map_init.html +1 -1
  185. umap/templates/umap/map_messages.html +4 -2
  186. umap/templates/umap/map_table.html +130 -69
  187. umap/templates/umap/navigation.html +2 -4
  188. umap/templates/umap/user_dashboard.html +29 -6
  189. umap/tests/base.py +1 -1
  190. umap/tests/integration/conftest.py +18 -0
  191. umap/tests/integration/test_anonymous_owned_map.py +6 -3
  192. umap/tests/integration/test_browser.py +166 -6
  193. umap/tests/integration/test_collaborative_editing.py +23 -5
  194. umap/tests/integration/test_dashboard.py +17 -0
  195. umap/tests/integration/test_edit_datalayer.py +4 -3
  196. umap/tests/integration/test_export_map.py +1 -1
  197. umap/tests/integration/test_import.py +9 -4
  198. umap/tests/integration/test_map.py +64 -0
  199. umap/tests/integration/test_map_preview.py +75 -0
  200. umap/tests/integration/test_owned_map.py +11 -25
  201. umap/tests/integration/test_picto.py +3 -3
  202. umap/tests/integration/test_querystring.py +52 -0
  203. umap/tests/integration/test_share.py +22 -0
  204. umap/tests/test_map_views.py +157 -14
  205. umap/tests/test_views.py +50 -11
  206. umap/urls.py +6 -12
  207. umap/views.py +170 -47
  208. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/METADATA +13 -15
  209. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/RECORD +212 -200
  210. umap/static/umap/js/umap.browser.js +0 -148
  211. umap/static/umap/js/umap.xhr.js +0 -304
  212. umap/static/umap/test/Controls.js +0 -100
  213. umap/static/umap/test/Map.Init.js +0 -46
  214. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/WHEEL +0 -0
  215. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/entry_points.txt +0 -0
  216. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/licenses/LICENSE +0 -0
@@ -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-01-08 12:33+0000\n"
11
+ "POT-Creation-Date: 2024-02-09 17:17+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"
@@ -25,7 +25,7 @@ msgstr ""
25
25
  msgid "Everyone can edit"
26
26
  msgstr ""
27
27
 
28
- #: forms.py:69 models.py:349
28
+ #: forms.py:69 models.py:371
29
29
  msgid "Inherit"
30
30
  msgstr ""
31
31
 
@@ -33,107 +33,107 @@ msgstr ""
33
33
  msgid "Site is readonly for maintenance"
34
34
  msgstr ""
35
35
 
36
- #: models.py:49
36
+ #: models.py:50
37
37
  msgid "name"
38
38
  msgstr ""
39
39
 
40
- #: models.py:80
40
+ #: models.py:81
41
41
  msgid "details"
42
42
  msgstr ""
43
43
 
44
- #: models.py:81
44
+ #: models.py:82
45
45
  msgid "Link to a page where the licence is detailed."
46
46
  msgstr ""
47
47
 
48
- #: models.py:91
48
+ #: models.py:92
49
49
  msgid "URL template using OSM tile format"
50
50
  msgstr ""
51
51
 
52
- #: models.py:97
52
+ #: models.py:98
53
53
  msgid "Order of the tilelayers in the edit box"
54
54
  msgstr ""
55
55
 
56
- #: models.py:143 models.py:350
56
+ #: models.py:144 models.py:372
57
57
  msgid "Everyone"
58
58
  msgstr ""
59
59
 
60
- #: models.py:144 models.py:150 models.py:351
60
+ #: models.py:145 models.py:151 models.py:373
61
61
  msgid "Editors only"
62
62
  msgstr ""
63
63
 
64
- #: models.py:145 models.py:352
64
+ #: models.py:146 models.py:374
65
65
  msgid "Owner only"
66
66
  msgstr ""
67
67
 
68
- #: models.py:148
68
+ #: models.py:149
69
69
  msgid "Everyone (public)"
70
70
  msgstr ""
71
71
 
72
- #: models.py:149
72
+ #: models.py:150
73
73
  msgid "Anyone with link"
74
74
  msgstr ""
75
75
 
76
- #: models.py:151
76
+ #: models.py:152
77
77
  msgid "Blocked"
78
78
  msgstr ""
79
79
 
80
- #: models.py:154 models.py:356
80
+ #: models.py:155 models.py:378
81
81
  msgid "description"
82
82
  msgstr ""
83
83
 
84
- #: models.py:155
84
+ #: models.py:156
85
85
  msgid "center"
86
86
  msgstr ""
87
87
 
88
- #: models.py:156
88
+ #: models.py:157
89
89
  msgid "zoom"
90
90
  msgstr ""
91
91
 
92
- #: models.py:158
92
+ #: models.py:159
93
93
  msgid "locate"
94
94
  msgstr ""
95
95
 
96
- #: models.py:158
96
+ #: models.py:159
97
97
  msgid "Locate user on load?"
98
98
  msgstr ""
99
99
 
100
- #: models.py:162
100
+ #: models.py:163
101
101
  msgid "Choose the map licence."
102
102
  msgstr ""
103
103
 
104
- #: models.py:163
104
+ #: models.py:164
105
105
  msgid "licence"
106
106
  msgstr ""
107
107
 
108
- #: models.py:174
108
+ #: models.py:175
109
109
  msgid "owner"
110
110
  msgstr ""
111
111
 
112
- #: models.py:178
112
+ #: models.py:179
113
113
  msgid "editors"
114
114
  msgstr ""
115
115
 
116
- #: models.py:183 models.py:370
116
+ #: models.py:184 models.py:392
117
117
  msgid "edit status"
118
118
  msgstr ""
119
119
 
120
- #: models.py:188
120
+ #: models.py:189
121
121
  msgid "share status"
122
122
  msgstr ""
123
123
 
124
- #: models.py:191 models.py:365
124
+ #: models.py:192 models.py:387
125
125
  msgid "settings"
126
126
  msgstr ""
127
127
 
128
- #: models.py:298
128
+ #: models.py:320
129
129
  msgid "Clone of"
130
130
  msgstr ""
131
131
 
132
- #: models.py:360
132
+ #: models.py:382
133
133
  msgid "display on load"
134
134
  msgstr ""
135
135
 
136
- #: models.py:361
136
+ #: models.py:383
137
137
  msgid "Display this layer on load."
138
138
  msgstr ""
139
139
 
@@ -151,28 +151,27 @@ msgstr ""
151
151
  msgid "%(current_user)s has no maps."
152
152
  msgstr ""
153
153
 
154
- #: templates/auth/user_form.html:6 templates/umap/navigation.html:12
155
- #: templates/umap/user_dashboard.html:4 templates/umap/user_dashboard.html:10
156
- msgid "My Dashboard"
154
+ #: templates/auth/user_form.html:6
155
+ msgid "My Maps"
157
156
  msgstr ""
158
157
 
159
- #: templates/auth/user_form.html:6
158
+ #: templates/auth/user_form.html:7
160
159
  msgid "My Profile"
161
160
  msgstr ""
162
161
 
163
- #: templates/auth/user_form.html:19
162
+ #: templates/auth/user_form.html:20
164
163
  msgid "Save"
165
164
  msgstr ""
166
165
 
167
- #: templates/auth/user_form.html:24
166
+ #: templates/auth/user_form.html:25
168
167
  msgid "Your current providers"
169
168
  msgstr ""
170
169
 
171
- #: templates/auth/user_form.html:30
170
+ #: templates/auth/user_form.html:31
172
171
  msgid "Connect to another provider"
173
172
  msgstr ""
174
173
 
175
- #: templates/auth/user_form.html:32
174
+ #: templates/auth/user_form.html:33
176
175
  msgid ""
177
176
  "It's a good habit to connect your account to more than one provider, in case "
178
177
  "one provider becomes unavailable, temporarily or even permanently."
@@ -194,23 +193,23 @@ msgid ""
194
193
  "them in your site."
195
194
  msgstr ""
196
195
 
197
- #: templates/registration/login.html:3
196
+ #: templates/registration/login.html:16
198
197
  msgid "Please log in with your account"
199
198
  msgstr ""
200
199
 
201
- #: templates/registration/login.html:15
200
+ #: templates/registration/login.html:28
202
201
  msgid "Username"
203
202
  msgstr ""
204
203
 
205
- #: templates/registration/login.html:18
204
+ #: templates/registration/login.html:31
206
205
  msgid "Password"
207
206
  msgstr ""
208
207
 
209
- #: templates/registration/login.html:19
208
+ #: templates/registration/login.html:32
210
209
  msgid "Login"
211
210
  msgstr ""
212
211
 
213
- #: templates/registration/login.html:24
212
+ #: templates/registration/login.html:37
214
213
  msgid "Please choose a provider"
215
214
  msgstr ""
216
215
 
@@ -254,8 +253,8 @@ msgstr ""
254
253
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
255
254
  msgstr ""
256
255
 
257
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:42
258
- #: templates/umap/user_dashboard.html:20
256
+ #: templates/umap/about_summary.html:48 templates/umap/navigation.html:40
257
+ #: templates/umap/user_dashboard.html:42
259
258
  msgid "Create a map"
260
259
  msgstr ""
261
260
 
@@ -263,13 +262,13 @@ msgstr ""
263
262
  msgid "Play with the demo"
264
263
  msgstr ""
265
264
 
266
- #: templates/umap/content.html:23
265
+ #: templates/umap/content.html:22
267
266
  msgid ""
268
267
  "This instance of uMap is currently in read only mode, no creation/edit is "
269
268
  "allowed."
270
269
  msgstr ""
271
270
 
272
- #: templates/umap/content.html:31
271
+ #: templates/umap/content.html:30
273
272
  #, python-format
274
273
  msgid ""
275
274
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -282,7 +281,7 @@ msgstr ""
282
281
  msgid "Map of the uMaps"
283
282
  msgstr ""
284
283
 
285
- #: templates/umap/home.html:13
284
+ #: templates/umap/home.html:14
286
285
  msgid "Get inspired, browse maps"
287
286
  msgstr ""
288
287
 
@@ -290,7 +289,7 @@ msgstr ""
290
289
  msgid "You are logged in. Continuing..."
291
290
  msgstr ""
292
291
 
293
- #: templates/umap/map_list.html:9 views.py:296
292
+ #: templates/umap/map_list.html:9 views.py:341
294
293
  msgid "by"
295
294
  msgstr ""
296
295
 
@@ -298,95 +297,118 @@ msgstr ""
298
297
  msgid "More"
299
298
  msgstr ""
300
299
 
301
- #: templates/umap/map_table.html:5
300
+ #: templates/umap/map_table.html:6
302
301
  msgid "Name"
303
302
  msgstr ""
304
303
 
305
- #: templates/umap/map_table.html:6
304
+ #: templates/umap/map_table.html:7
306
305
  msgid "Preview"
307
306
  msgstr ""
308
307
 
309
- #: templates/umap/map_table.html:7
310
- msgid "Who can see / edit"
308
+ #: templates/umap/map_table.html:8
309
+ msgid "Who can see"
311
310
  msgstr ""
312
311
 
313
- #: templates/umap/map_table.html:8
312
+ #: templates/umap/map_table.html:9
313
+ msgid "Who can edit"
314
+ msgstr ""
315
+
316
+ #: templates/umap/map_table.html:10
314
317
  msgid "Last save"
315
318
  msgstr ""
316
319
 
317
- #: templates/umap/map_table.html:9
320
+ #: templates/umap/map_table.html:11
318
321
  msgid "Owner"
319
322
  msgstr ""
320
323
 
321
- #: templates/umap/map_table.html:10
324
+ #: templates/umap/map_table.html:12
322
325
  msgid "Actions"
323
326
  msgstr ""
324
327
 
325
- #: templates/umap/map_table.html:22
328
+ #: templates/umap/map_table.html:25 templates/umap/map_table.html:27
326
329
  msgid "Open preview"
327
330
  msgstr ""
328
331
 
329
- #: templates/umap/map_table.html:38
332
+ #: templates/umap/map_table.html:46 templates/umap/map_table.html:48
330
333
  msgid "Share"
331
334
  msgstr ""
332
335
 
333
- #: templates/umap/map_table.html:39
336
+ #: templates/umap/map_table.html:51 templates/umap/map_table.html:53
334
337
  msgid "Edit"
335
338
  msgstr ""
336
339
 
337
- #: templates/umap/map_table.html:40
340
+ #: templates/umap/map_table.html:56 templates/umap/map_table.html:58
338
341
  msgid "Download"
339
342
  msgstr ""
340
343
 
341
- #: templates/umap/map_table.html:49
344
+ #: templates/umap/map_table.html:63 templates/umap/map_table.html:65
345
+ msgid "Clone"
346
+ msgstr ""
347
+
348
+ #: templates/umap/map_table.html:73 templates/umap/map_table.html:75
349
+ msgid "Delete"
350
+ msgstr ""
351
+
352
+ #: templates/umap/map_table.html:88
342
353
  msgid "first"
343
354
  msgstr ""
344
355
 
345
- #: templates/umap/map_table.html:50
356
+ #: templates/umap/map_table.html:89
346
357
  msgid "previous"
347
358
  msgstr ""
348
359
 
349
- #: templates/umap/map_table.html:59
360
+ #: templates/umap/map_table.html:98
350
361
  #, python-format
351
- msgid ""
352
- "\n"
353
- " Page %(maps_number)s of %(num_pages)s\n"
354
- " "
362
+ msgid "Page %(maps_number)s of %(num_pages)s"
355
363
  msgstr ""
356
364
 
357
- #: templates/umap/map_table.html:65
365
+ #: templates/umap/map_table.html:104
358
366
  msgid "next"
359
367
  msgstr ""
360
368
 
361
- #: templates/umap/map_table.html:66
369
+ #: templates/umap/map_table.html:105
362
370
  msgid "last"
363
371
  msgstr ""
364
372
 
365
- #: templates/umap/navigation.html:15
373
+ #: templates/umap/map_table.html:113
374
+ #, python-format
375
+ msgid "Lines per page: %(per_page)s"
376
+ msgstr ""
377
+
378
+ #: templates/umap/map_table.html:118
379
+ #, python-format
380
+ msgid "%(count)s maps"
381
+ msgstr ""
382
+
383
+ #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
384
+ msgid "My Dashboard"
385
+ msgstr ""
386
+
387
+ #: templates/umap/navigation.html:13
366
388
  msgid "Starred maps"
367
389
  msgstr ""
368
390
 
369
- #: templates/umap/navigation.html:19
391
+ #: templates/umap/navigation.html:17
370
392
  msgid "Log in"
371
393
  msgstr ""
372
394
 
373
- #: templates/umap/navigation.html:19
395
+ #: templates/umap/navigation.html:17
374
396
  msgid "Sign in"
375
397
  msgstr ""
376
398
 
377
- #: templates/umap/navigation.html:23
399
+ #: templates/umap/navigation.html:21
378
400
  msgid "About"
379
401
  msgstr ""
380
402
 
381
- #: templates/umap/navigation.html:26
403
+ #: templates/umap/navigation.html:24
382
404
  msgid "Help"
383
405
  msgstr ""
384
406
 
385
- #: templates/umap/navigation.html:31
407
+ #: templates/umap/navigation.html:29
386
408
  msgid "Change password"
387
409
  msgstr ""
388
410
 
389
- #: templates/umap/navigation.html:35
411
+ #: templates/umap/navigation.html:33
390
412
  msgid "Log out"
391
413
  msgstr ""
392
414
 
@@ -447,64 +469,82 @@ msgstr ""
447
469
  msgid "Search"
448
470
  msgstr ""
449
471
 
450
- #: templates/umap/user_dashboard.html:7
472
+ #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:26
451
473
  msgid "Search my maps"
452
474
  msgstr ""
453
475
 
454
- #: templates/umap/user_dashboard.html:10
476
+ #: templates/umap/user_dashboard.html:11
477
+ #, python-format
478
+ msgid "My Maps (%(count)s)"
479
+ msgstr ""
480
+
481
+ #: templates/umap/user_dashboard.html:13
455
482
  msgid "My profile"
456
483
  msgstr ""
457
484
 
458
- #: templates/umap/user_dashboard.html:20
485
+ #: templates/umap/user_dashboard.html:21 templates/umap/user_dashboard.html:23
486
+ msgid "Map’s title"
487
+ msgstr ""
488
+
489
+ #: templates/umap/user_dashboard.html:32
490
+ #, python-format
491
+ msgid "Download %(count)s maps"
492
+ msgstr ""
493
+
494
+ #: templates/umap/user_dashboard.html:42
459
495
  msgid "You have no map yet."
460
496
  msgstr ""
461
497
 
462
- #: views.py:301
498
+ #: views.py:346
463
499
  msgid "View the map"
464
500
  msgstr ""
465
501
 
466
- #: views.py:660
502
+ #: views.py:704
503
+ msgid "See full screen"
504
+ msgstr ""
505
+
506
+ #: views.py:779
467
507
  msgid "Map has been updated!"
468
508
  msgstr ""
469
509
 
470
- #: views.py:685
510
+ #: views.py:804
471
511
  msgid "Map editors updated with success!"
472
512
  msgstr ""
473
513
 
474
- #: views.py:723
514
+ #: views.py:842
475
515
  #, python-format
476
516
  msgid "The uMap edit link for your map: %(map_name)s"
477
517
  msgstr ""
478
518
 
479
- #: views.py:726
519
+ #: views.py:845
480
520
  #, python-format
481
521
  msgid "Here is your secret edit link: %(link)s"
482
522
  msgstr ""
483
523
 
484
- #: views.py:732
524
+ #: views.py:851
485
525
  #, python-format
486
526
  msgid "Email sent to %(email)s"
487
527
  msgstr ""
488
528
 
489
- #: views.py:743
529
+ #: views.py:862
490
530
  msgid "Only its owner can delete the map."
491
531
  msgstr ""
492
532
 
493
- #: views.py:766
533
+ #: views.py:890
494
534
  #, python-format
495
535
  msgid ""
496
536
  "Your map has been cloned! If you want to edit this map from another "
497
537
  "computer, please use this link: %(anonymous_url)s"
498
538
  msgstr ""
499
539
 
500
- #: views.py:771
540
+ #: views.py:895
501
541
  msgid "Congratulations, your map has been cloned!"
502
542
  msgstr ""
503
543
 
504
- #: views.py:1007
544
+ #: views.py:1131
505
545
  msgid "Layer successfully deleted."
506
546
  msgstr ""
507
547
 
508
- #: views.py:1029
548
+ #: views.py:1153
509
549
  msgid "Permissions updated with success!"
510
550
  msgstr ""
Binary file