umap-project 2.9.3__py3-none-any.whl → 3.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (217) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/forms.py +1 -2
  4. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/de/LC_MESSAGES/django.po +218 -96
  6. umap/locale/en/LC_MESSAGES/django.po +128 -52
  7. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/fr/LC_MESSAGES/django.po +128 -52
  9. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/hu/LC_MESSAGES/django.po +209 -88
  11. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/is/LC_MESSAGES/django.po +296 -175
  13. umap/migrations/0027_map_tags.py +23 -0
  14. umap/models.py +13 -2
  15. umap/settings/base.py +23 -5
  16. umap/static/umap/base.css +41 -8
  17. umap/static/umap/content.css +72 -37
  18. umap/static/umap/css/bar.css +43 -21
  19. umap/static/umap/css/dialog.css +4 -1
  20. umap/static/umap/css/form.css +40 -27
  21. umap/static/umap/css/icon.css +11 -1
  22. umap/static/umap/css/importers.css +7 -0
  23. umap/static/umap/img/16-white.svg +23 -2
  24. umap/static/umap/img/16.svg +1 -1
  25. umap/static/umap/img/24.svg +4 -4
  26. umap/static/umap/img/home.svg +7 -0
  27. umap/static/umap/img/importers/banfr.svg +1 -0
  28. umap/static/umap/img/marker.svg +2 -5
  29. umap/static/umap/img/source/16-white.svg +24 -3
  30. umap/static/umap/img/source/16.svg +1 -1
  31. umap/static/umap/img/source/24.svg +5 -5
  32. umap/static/umap/img/target.svg +1 -0
  33. umap/static/umap/js/components/alerts/alert.js +0 -1
  34. umap/static/umap/js/modules/browser.js +4 -4
  35. umap/static/umap/js/modules/caption.js +1 -1
  36. umap/static/umap/js/modules/data/features.js +25 -25
  37. umap/static/umap/js/modules/data/layer.js +91 -97
  38. umap/static/umap/js/modules/facets.js +9 -5
  39. umap/static/umap/js/modules/form/builder.js +19 -27
  40. umap/static/umap/js/modules/form/fields.js +40 -14
  41. umap/static/umap/js/modules/formatter.js +1 -1
  42. umap/static/umap/js/modules/global.js +9 -5
  43. umap/static/umap/js/modules/help.js +18 -5
  44. umap/static/umap/js/modules/importer.js +5 -2
  45. umap/static/umap/js/modules/importers/banfr.js +93 -0
  46. umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
  47. umap/static/umap/js/modules/importers/communesfr.js +1 -1
  48. umap/static/umap/js/modules/permissions.js +20 -10
  49. umap/static/umap/js/modules/rendering/icon.js +15 -2
  50. umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
  51. umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
  52. umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
  53. umap/static/umap/js/modules/rendering/map.js +14 -6
  54. umap/static/umap/js/modules/rendering/popup.js +2 -2
  55. umap/static/umap/js/modules/rendering/template.js +3 -3
  56. umap/static/umap/js/modules/rendering/ui.js +17 -11
  57. umap/static/umap/js/modules/rules.js +13 -16
  58. umap/static/umap/js/modules/schema.js +23 -1
  59. umap/static/umap/js/modules/share.js +1 -1
  60. umap/static/umap/js/modules/slideshow.js +1 -0
  61. umap/static/umap/js/modules/sync/engine.js +141 -19
  62. umap/static/umap/js/modules/sync/undo.js +101 -0
  63. umap/static/umap/js/modules/sync/updaters.js +51 -28
  64. umap/static/umap/js/modules/tableeditor.js +1 -1
  65. umap/static/umap/js/modules/ui/bar.js +61 -21
  66. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  67. umap/static/umap/js/modules/umap.js +190 -176
  68. umap/static/umap/js/modules/utils.js +30 -4
  69. umap/static/umap/js/umap.controls.js +82 -38
  70. umap/static/umap/locale/am_ET.js +11 -6
  71. umap/static/umap/locale/am_ET.json +11 -6
  72. umap/static/umap/locale/ar.js +11 -6
  73. umap/static/umap/locale/ar.json +11 -6
  74. umap/static/umap/locale/ast.js +11 -6
  75. umap/static/umap/locale/ast.json +11 -6
  76. umap/static/umap/locale/bg.js +11 -6
  77. umap/static/umap/locale/bg.json +11 -6
  78. umap/static/umap/locale/br.js +12 -7
  79. umap/static/umap/locale/br.json +12 -7
  80. umap/static/umap/locale/ca.js +11 -6
  81. umap/static/umap/locale/ca.json +11 -6
  82. umap/static/umap/locale/cs_CZ.js +11 -6
  83. umap/static/umap/locale/cs_CZ.json +11 -6
  84. umap/static/umap/locale/da.js +11 -6
  85. umap/static/umap/locale/da.json +11 -6
  86. umap/static/umap/locale/de.js +47 -42
  87. umap/static/umap/locale/de.json +47 -42
  88. umap/static/umap/locale/el.js +11 -6
  89. umap/static/umap/locale/el.json +11 -6
  90. umap/static/umap/locale/en.js +11 -6
  91. umap/static/umap/locale/en.json +11 -6
  92. umap/static/umap/locale/en_US.json +11 -6
  93. umap/static/umap/locale/es.js +11 -6
  94. umap/static/umap/locale/es.json +11 -6
  95. umap/static/umap/locale/et.js +11 -6
  96. umap/static/umap/locale/et.json +11 -6
  97. umap/static/umap/locale/eu.js +11 -6
  98. umap/static/umap/locale/eu.json +11 -6
  99. umap/static/umap/locale/fa_IR.js +11 -6
  100. umap/static/umap/locale/fa_IR.json +11 -6
  101. umap/static/umap/locale/fi.js +11 -6
  102. umap/static/umap/locale/fi.json +11 -6
  103. umap/static/umap/locale/fr.js +11 -6
  104. umap/static/umap/locale/fr.json +11 -6
  105. umap/static/umap/locale/gl.js +12 -7
  106. umap/static/umap/locale/gl.json +12 -7
  107. umap/static/umap/locale/he.js +11 -6
  108. umap/static/umap/locale/he.json +11 -6
  109. umap/static/umap/locale/hr.js +11 -6
  110. umap/static/umap/locale/hr.json +11 -6
  111. umap/static/umap/locale/hu.js +25 -20
  112. umap/static/umap/locale/hu.json +25 -20
  113. umap/static/umap/locale/id.js +11 -6
  114. umap/static/umap/locale/id.json +11 -6
  115. umap/static/umap/locale/is.js +151 -146
  116. umap/static/umap/locale/is.json +151 -146
  117. umap/static/umap/locale/it.js +11 -6
  118. umap/static/umap/locale/it.json +11 -6
  119. umap/static/umap/locale/ja.js +11 -6
  120. umap/static/umap/locale/ja.json +11 -6
  121. umap/static/umap/locale/ko.js +11 -6
  122. umap/static/umap/locale/ko.json +11 -6
  123. umap/static/umap/locale/lt.js +11 -6
  124. umap/static/umap/locale/lt.json +11 -6
  125. umap/static/umap/locale/ms.js +11 -6
  126. umap/static/umap/locale/ms.json +11 -6
  127. umap/static/umap/locale/nl.js +12 -7
  128. umap/static/umap/locale/nl.json +12 -7
  129. umap/static/umap/locale/no.js +11 -6
  130. umap/static/umap/locale/no.json +11 -6
  131. umap/static/umap/locale/pl.js +11 -6
  132. umap/static/umap/locale/pl.json +11 -6
  133. umap/static/umap/locale/pl_PL.json +11 -6
  134. umap/static/umap/locale/pt.js +11 -6
  135. umap/static/umap/locale/pt.json +11 -6
  136. umap/static/umap/locale/pt_BR.js +11 -6
  137. umap/static/umap/locale/pt_BR.json +11 -6
  138. umap/static/umap/locale/pt_PT.js +11 -6
  139. umap/static/umap/locale/pt_PT.json +11 -6
  140. umap/static/umap/locale/ro.js +11 -6
  141. umap/static/umap/locale/ro.json +11 -6
  142. umap/static/umap/locale/ru.js +11 -6
  143. umap/static/umap/locale/ru.json +11 -6
  144. umap/static/umap/locale/sk_SK.js +11 -6
  145. umap/static/umap/locale/sk_SK.json +11 -6
  146. umap/static/umap/locale/sl.js +11 -6
  147. umap/static/umap/locale/sl.json +11 -6
  148. umap/static/umap/locale/sr.js +11 -6
  149. umap/static/umap/locale/sr.json +11 -6
  150. umap/static/umap/locale/sv.js +11 -6
  151. umap/static/umap/locale/sv.json +11 -6
  152. umap/static/umap/locale/th_TH.js +11 -6
  153. umap/static/umap/locale/th_TH.json +11 -6
  154. umap/static/umap/locale/tr.js +11 -6
  155. umap/static/umap/locale/tr.json +11 -6
  156. umap/static/umap/locale/uk_UA.js +11 -6
  157. umap/static/umap/locale/uk_UA.json +11 -6
  158. umap/static/umap/locale/vi.js +11 -6
  159. umap/static/umap/locale/vi.json +11 -6
  160. umap/static/umap/locale/vi_VN.json +11 -6
  161. umap/static/umap/locale/zh.js +11 -6
  162. umap/static/umap/locale/zh.json +11 -6
  163. umap/static/umap/locale/zh_CN.json +11 -6
  164. umap/static/umap/locale/zh_TW.Big5.json +11 -6
  165. umap/static/umap/locale/zh_TW.js +19 -14
  166. umap/static/umap/locale/zh_TW.json +19 -14
  167. umap/static/umap/map.css +58 -28
  168. umap/static/umap/unittests/sync.js +0 -57
  169. umap/static/umap/unittests/utils.js +47 -0
  170. umap/static/umap/vars.css +5 -2
  171. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  172. umap/sync/payloads.py +3 -2
  173. umap/templates/auth/user_detail.html +1 -1
  174. umap/templates/auth/user_stars.html +1 -1
  175. umap/templates/umap/content.html +17 -12
  176. umap/templates/umap/home.html +7 -5
  177. umap/templates/umap/map_fragment.html +1 -1
  178. umap/templates/umap/map_list.html +20 -13
  179. umap/templates/umap/search.html +7 -3
  180. umap/templates/umap/search_bar.html +13 -11
  181. umap/templates/umap/team_detail.html +1 -1
  182. umap/tests/base.py +2 -1
  183. umap/tests/fixtures/remote_data.umap +55 -0
  184. umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
  185. umap/tests/integration/test_browser.py +1 -3
  186. umap/tests/integration/test_conditional_rules.py +3 -0
  187. umap/tests/integration/test_edit_datalayer.py +2 -7
  188. umap/tests/integration/test_edit_map.py +15 -0
  189. umap/tests/integration/test_edit_polygon.py +1 -2
  190. umap/tests/integration/test_import.py +59 -2
  191. umap/tests/integration/test_optimistic_merge.py +4 -3
  192. umap/tests/integration/test_owned_map.py +0 -1
  193. umap/tests/integration/test_save.py +2 -4
  194. umap/tests/integration/test_undo_redo.py +267 -0
  195. umap/tests/integration/test_websocket_sync.py +78 -11
  196. umap/tests/settings.py +1 -3
  197. umap/tests/test_datalayer_s3.py +1 -0
  198. umap/tests/test_map_views.py +1 -0
  199. umap/tests/test_views.py +34 -0
  200. umap/utils.py +1 -1
  201. umap/views.py +23 -2
  202. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/METADATA +13 -12
  203. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/RECORD +206 -208
  204. umap/static/umap/js/modules/saving.js +0 -52
  205. umap/static/umap/test/.eslintrc +0 -21
  206. umap/static/umap/test/DataLayer.js +0 -463
  207. umap/static/umap/test/Feature.js +0 -131
  208. umap/static/umap/test/Map.js +0 -37
  209. umap/static/umap/test/Marker.js +0 -126
  210. umap/static/umap/test/Polygon.js +0 -111
  211. umap/static/umap/test/Polyline.js +0 -286
  212. umap/static/umap/test/Util.js +0 -28
  213. umap/static/umap/test/_pre.js +0 -455
  214. umap/static/umap/test/index.html +0 -139
  215. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/WHEEL +0 -0
  216. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/entry_points.txt +0 -0
  217. {umap_project-2.9.3.dist-info → umap_project-3.0.1.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: 2025-03-07 15:18+0000\n"
11
+ "POT-Creation-Date: 2025-04-04 16:49+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"
@@ -37,134 +37,202 @@ msgid ""
37
37
  "and maps. Then, please logout and login again with the new provider."
38
38
  msgstr ""
39
39
 
40
- #: models.py:60 models.py:79
40
+ #: models.py:61 models.py:80
41
41
  msgid "name"
42
42
  msgstr ""
43
43
 
44
- #: models.py:62 models.py:485
44
+ #: models.py:63 models.py:493
45
45
  msgid "description"
46
46
  msgstr ""
47
47
 
48
- #: models.py:110
48
+ #: models.py:111
49
49
  msgid "details"
50
50
  msgstr ""
51
51
 
52
- #: models.py:111
52
+ #: models.py:112
53
53
  msgid "Link to a page where the licence is detailed."
54
54
  msgstr ""
55
55
 
56
- #: models.py:121
56
+ #: models.py:122
57
57
  msgid "URL template using OSM tile format"
58
58
  msgstr ""
59
59
 
60
- #: models.py:127
60
+ #: models.py:128
61
61
  msgid "Order of the tilelayers in the edit box"
62
62
  msgstr ""
63
63
 
64
- #: models.py:175 models.py:479
64
+ #: models.py:176 models.py:487
65
65
  msgid "Only editable with secret edit link"
66
66
  msgstr ""
67
67
 
68
- #: models.py:176 models.py:480
68
+ #: models.py:177 models.py:488
69
69
  msgid "Everyone can edit"
70
70
  msgstr ""
71
71
 
72
- #: models.py:179 models.py:473
72
+ #: models.py:180 models.py:481
73
73
  msgid "Everyone"
74
74
  msgstr ""
75
75
 
76
- #: models.py:180 models.py:189 models.py:474
76
+ #: models.py:181 models.py:190 models.py:482
77
77
  msgid "Editors and team only"
78
78
  msgstr ""
79
79
 
80
- #: models.py:181 models.py:475
80
+ #: models.py:182 models.py:483
81
81
  msgid "Owner only"
82
82
  msgstr ""
83
83
 
84
- #: models.py:184
84
+ #: models.py:185
85
85
  msgid "Draft (private)"
86
86
  msgstr ""
87
87
 
88
- #: models.py:185
88
+ #: models.py:186
89
89
  msgid "Everyone (public)"
90
90
  msgstr ""
91
91
 
92
- #: models.py:188
92
+ #: models.py:189
93
93
  msgid "Anyone with link"
94
94
  msgstr ""
95
95
 
96
- #: models.py:190
96
+ #: models.py:191
97
97
  msgid "Blocked"
98
98
  msgstr ""
99
99
 
100
- #: models.py:191 models.py:469
100
+ #: models.py:192 models.py:477
101
101
  msgid "Deleted"
102
102
  msgstr ""
103
103
 
104
- #: models.py:194
104
+ #: models.py:195
105
105
  msgid "center"
106
106
  msgstr ""
107
107
 
108
- #: models.py:195
108
+ #: models.py:196
109
109
  msgid "zoom"
110
110
  msgstr ""
111
111
 
112
- #: models.py:197
112
+ #: models.py:198
113
113
  msgid "locate"
114
114
  msgstr ""
115
115
 
116
- #: models.py:197
116
+ #: models.py:198
117
117
  msgid "Locate user on load?"
118
118
  msgstr ""
119
119
 
120
- #: models.py:201
120
+ #: models.py:202
121
121
  msgid "Choose the map licence."
122
122
  msgstr ""
123
123
 
124
- #: models.py:202
124
+ #: models.py:203
125
125
  msgid "licence"
126
126
  msgstr ""
127
127
 
128
- #: models.py:213
128
+ #: models.py:214
129
129
  msgid "owner"
130
130
  msgstr ""
131
131
 
132
- #: models.py:217
132
+ #: models.py:218
133
133
  msgid "editors"
134
134
  msgstr ""
135
135
 
136
- #: models.py:223
136
+ #: models.py:224
137
137
  msgid "team"
138
138
  msgstr ""
139
139
 
140
- #: models.py:229 models.py:501
140
+ #: models.py:230 models.py:509
141
141
  msgid "edit status"
142
142
  msgstr ""
143
143
 
144
- #: models.py:234 models.py:506
144
+ #: models.py:235 models.py:514
145
145
  msgid "share status"
146
146
  msgstr ""
147
147
 
148
- #: models.py:237 models.py:496
148
+ #: models.py:238 models.py:504
149
149
  msgid "settings"
150
150
  msgstr ""
151
151
 
152
- #: models.py:407
152
+ #: models.py:410
153
153
  msgid "Clone of"
154
154
  msgstr ""
155
155
 
156
- #: models.py:468 models.py:472 models.py:478
156
+ #: models.py:476 models.py:480 models.py:486
157
157
  msgid "Inherit"
158
158
  msgstr ""
159
159
 
160
- #: models.py:491
160
+ #: models.py:499
161
161
  msgid "display on load"
162
162
  msgstr ""
163
163
 
164
- #: models.py:492
164
+ #: models.py:500
165
165
  msgid "Display this layer on load."
166
166
  msgstr ""
167
167
 
168
+ #: settings/base.py:295
169
+ msgid "Art and Culture"
170
+ msgstr ""
171
+
172
+ #: settings/base.py:296
173
+ msgid "Cycling"
174
+ msgstr ""
175
+
176
+ #: settings/base.py:297
177
+ msgid "Business"
178
+ msgstr ""
179
+
180
+ #: settings/base.py:298
181
+ msgid "Environment"
182
+ msgstr ""
183
+
184
+ #: settings/base.py:299
185
+ msgid "Education"
186
+ msgstr ""
187
+
188
+ #: settings/base.py:300
189
+ msgid "Food and Agriculture"
190
+ msgstr ""
191
+
192
+ #: settings/base.py:301
193
+ msgid "Geopolitics"
194
+ msgstr ""
195
+
196
+ #: settings/base.py:302
197
+ msgid "Health"
198
+ msgstr ""
199
+
200
+ #: settings/base.py:303
201
+ msgid "Hiking"
202
+ msgstr ""
203
+
204
+ #: settings/base.py:304
205
+ msgid "History"
206
+ msgstr ""
207
+
208
+ #: settings/base.py:305
209
+ msgid "Public sector"
210
+ msgstr ""
211
+
212
+ #: settings/base.py:306
213
+ msgid "Science"
214
+ msgstr ""
215
+
216
+ #: settings/base.py:307
217
+ msgid "Shopping"
218
+ msgstr ""
219
+
220
+ #: settings/base.py:308
221
+ msgid "Sport and Leisure"
222
+ msgstr ""
223
+
224
+ #: settings/base.py:309
225
+ msgid "Travel"
226
+ msgstr ""
227
+
228
+ #: settings/base.py:310
229
+ msgid "Transports"
230
+ msgstr ""
231
+
232
+ #: settings/base.py:311
233
+ msgid "Tourism"
234
+ msgstr ""
235
+
168
236
  #: templates/403.html:8
169
237
  msgid ""
170
238
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
@@ -417,7 +485,7 @@ msgstr ""
417
485
  msgid "Map of the uMaps"
418
486
  msgstr ""
419
487
 
420
- #: templates/umap/home.html:24
488
+ #: templates/umap/home.html:25
421
489
  msgid "Get inspired, browse maps"
422
490
  msgstr ""
423
491
 
@@ -425,11 +493,15 @@ msgstr ""
425
493
  msgid "You are logged in. Continuing..."
426
494
  msgstr ""
427
495
 
428
- #: templates/umap/map_list.html:11 views.py:438
496
+ #: templates/umap/map_list.html:18 views.py:444
429
497
  msgid "by"
430
498
  msgstr ""
431
499
 
432
- #: templates/umap/map_list.html:20
500
+ #: templates/umap/map_list.html:22
501
+ msgid "See the map"
502
+ msgstr ""
503
+
504
+ #: templates/umap/map_list.html:28
433
505
  msgid "More"
434
506
  msgstr ""
435
507
 
@@ -587,11 +659,11 @@ msgid_plural "%(count)s maps found:"
587
659
  msgstr[0] ""
588
660
  msgstr[1] ""
589
661
 
590
- #: templates/umap/search.html:28
662
+ #: templates/umap/search.html:30
591
663
  msgid "No map found."
592
664
  msgstr ""
593
665
 
594
- #: templates/umap/search.html:33
666
+ #: templates/umap/search.html:35
595
667
  msgid "Latest created maps"
596
668
  msgstr ""
597
669
 
@@ -599,7 +671,11 @@ msgstr ""
599
671
  msgid "Search maps"
600
672
  msgstr ""
601
673
 
602
- #: templates/umap/search_bar.html:16
674
+ #: templates/umap/search_bar.html:14
675
+ msgid "Any category"
676
+ msgstr ""
677
+
678
+ #: templates/umap/search_bar.html:19
603
679
  msgid "Search"
604
680
  msgstr ""
605
681
 
@@ -672,61 +748,61 @@ msgstr ""
672
748
  msgid "Team “%(name)s” has been deleted"
673
749
  msgstr ""
674
750
 
675
- #: views.py:443
751
+ #: views.py:449
676
752
  msgid "View the map"
677
753
  msgstr ""
678
754
 
679
- #: views.py:839
755
+ #: views.py:845
680
756
  msgid "See full screen"
681
757
  msgstr ""
682
758
 
683
- #: views.py:982
759
+ #: views.py:988
684
760
  msgid "Map editors updated with success!"
685
761
  msgstr ""
686
762
 
687
- #: views.py:1018
763
+ #: views.py:1024
688
764
  #, python-format
689
765
  msgid "The uMap edit link for your map: %(map_name)s"
690
766
  msgstr ""
691
767
 
692
- #: views.py:1021
768
+ #: views.py:1027
693
769
  #, python-format
694
770
  msgid "Here is your secret edit link: %(link)s"
695
771
  msgstr ""
696
772
 
697
- #: views.py:1028
773
+ #: views.py:1034
698
774
  #, python-format
699
775
  msgid "Can't send email to %(email)s"
700
776
  msgstr ""
701
777
 
702
- #: views.py:1031
778
+ #: views.py:1037
703
779
  #, python-format
704
780
  msgid "Email sent to %(email)s"
705
781
  msgstr ""
706
782
 
707
- #: views.py:1042
783
+ #: views.py:1048
708
784
  msgid "Only its owner can delete the map."
709
785
  msgstr ""
710
786
 
711
- #: views.py:1045
787
+ #: views.py:1051
712
788
  msgid "Map successfully deleted."
713
789
  msgstr ""
714
790
 
715
- #: views.py:1071
791
+ #: views.py:1077
716
792
  #, python-format
717
793
  msgid ""
718
794
  "Your map has been cloned! If you want to edit this map from another "
719
795
  "computer, please use this link: %(anonymous_url)s"
720
796
  msgstr ""
721
797
 
722
- #: views.py:1076
798
+ #: views.py:1082
723
799
  msgid "Congratulations, your map has been cloned!"
724
800
  msgstr ""
725
801
 
726
- #: views.py:1330
802
+ #: views.py:1336
727
803
  msgid "Layer successfully deleted."
728
804
  msgstr ""
729
805
 
730
- #: views.py:1352
806
+ #: views.py:1358
731
807
  msgid "Permissions updated with success!"
732
808
  msgstr ""
Binary file