umap-project 2.5.1__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 +1 -0
  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.1.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
  257. {umap_project-2.5.1.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.1.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
  275. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
  276. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
Binary file
@@ -4,14 +4,14 @@
4
4
  #
5
5
  # Translators:
6
6
  # Krittin Leewanich, 2023
7
- # Krittin, 2023
7
+ # Krittin Leewanich, 2023-2024
8
8
  msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: uMap\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2024-02-15 13:53+0000\n"
12
+ "POT-Creation-Date: 2024-06-26 20:59+0000\n"
13
13
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
14
- "Last-Translator: Krittin Leewanich, 2023\n"
14
+ "Last-Translator: Krittin Leewanich, 2023-2024\n"
15
15
  "Language-Team: Thai (Thailand) (http://app.transifex.com/openstreetmap/umap/language/th_TH/)\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -27,115 +27,115 @@ msgstr "แก้ไขได้ ด้วยลิงก์ลับ"
27
27
  msgid "Everyone can edit"
28
28
  msgstr "ทุนคนแก้ไขได้"
29
29
 
30
- #: forms.py:69 models.py:371
30
+ #: forms.py:69 models.py:389
31
31
  msgid "Inherit"
32
- msgstr ""
32
+ msgstr "สืบทอด"
33
33
 
34
34
  #: middleware.py:13
35
35
  msgid "Site is readonly for maintenance"
36
36
  msgstr "สามารถอ่านไซต์เท่านั้น เนื่องจากมีการซ่อมบำรุง"
37
37
 
38
- #: models.py:50
38
+ #: models.py:53
39
39
  msgid "name"
40
40
  msgstr "ชื่อ"
41
41
 
42
- #: models.py:81
42
+ #: models.py:84
43
43
  msgid "details"
44
44
  msgstr "รายละเอียด"
45
45
 
46
- #: models.py:82
46
+ #: models.py:85
47
47
  msgid "Link to a page where the licence is detailed."
48
48
  msgstr "ลิงก์ไปยังหน้ารายละเอียดใบอนุญาต"
49
49
 
50
- #: models.py:92
50
+ #: models.py:95
51
51
  msgid "URL template using OSM tile format"
52
52
  msgstr "แม่แบบ URL ที่ใช้ฟอร์แมตไทล์ OSM"
53
53
 
54
- #: models.py:98
54
+ #: models.py:101
55
55
  msgid "Order of the tilelayers in the edit box"
56
56
  msgstr "ลำดับของเลเยอร์ไทล์ในกล่องแก้ไข"
57
57
 
58
- #: models.py:144 models.py:372
58
+ #: models.py:147 models.py:390
59
59
  msgid "Everyone"
60
60
  msgstr ""
61
61
 
62
- #: models.py:145 models.py:151 models.py:373
62
+ #: models.py:148 models.py:154 models.py:391
63
63
  msgid "Editors only"
64
64
  msgstr ""
65
65
 
66
- #: models.py:146 models.py:374
66
+ #: models.py:149 models.py:392
67
67
  msgid "Owner only"
68
68
  msgstr ""
69
69
 
70
- #: models.py:149
70
+ #: models.py:152
71
71
  msgid "Everyone (public)"
72
72
  msgstr ""
73
73
 
74
- #: models.py:150
74
+ #: models.py:153
75
75
  msgid "Anyone with link"
76
76
  msgstr ""
77
77
 
78
- #: models.py:152
78
+ #: models.py:155
79
79
  msgid "Blocked"
80
80
  msgstr ""
81
81
 
82
- #: models.py:155 models.py:378
83
- msgid "description"
84
- msgstr "คำอธิบาย"
85
-
86
- #: models.py:156
82
+ #: models.py:158
87
83
  msgid "center"
88
84
  msgstr "ทำให้อยู่ตรงกลาง"
89
85
 
90
- #: models.py:157
86
+ #: models.py:159
91
87
  msgid "zoom"
92
88
  msgstr "ซูม"
93
89
 
94
- #: models.py:159
90
+ #: models.py:161
95
91
  msgid "locate"
96
92
  msgstr "ระบุตำแหน่ง"
97
93
 
98
- #: models.py:159
94
+ #: models.py:161
99
95
  msgid "Locate user on load?"
100
96
  msgstr "ระบุตำแหน่งผู้ใช้ที่กำลังโหลด?"
101
97
 
102
- #: models.py:163
98
+ #: models.py:165
103
99
  msgid "Choose the map licence."
104
100
  msgstr "เลือกใบอนุญาติแผนที่"
105
101
 
106
- #: models.py:164
102
+ #: models.py:166
107
103
  msgid "licence"
108
104
  msgstr "ใบอนุญาติ"
109
105
 
110
- #: models.py:175
106
+ #: models.py:177
111
107
  msgid "owner"
112
108
  msgstr "เจ้าของ"
113
109
 
114
- #: models.py:179
110
+ #: models.py:181
115
111
  msgid "editors"
116
112
  msgstr "ผู้แก้ไข"
117
113
 
118
- #: models.py:184 models.py:392
114
+ #: models.py:186 models.py:413
119
115
  msgid "edit status"
120
116
  msgstr "สถานะการแก้ไข"
121
117
 
122
- #: models.py:189
118
+ #: models.py:191
123
119
  msgid "share status"
124
120
  msgstr "สถานะการแชร์"
125
121
 
126
- #: models.py:192 models.py:387
122
+ #: models.py:194 models.py:408
127
123
  msgid "settings"
128
124
  msgstr "การตั้งค่า"
129
125
 
130
- #: models.py:320
126
+ #: models.py:330
131
127
  msgid "Clone of"
132
128
  msgstr "โคลนของ"
133
129
 
134
- #: models.py:382
130
+ #: models.py:399
131
+ msgid "description"
132
+ msgstr "คำอธิบาย"
133
+
134
+ #: models.py:403
135
135
  msgid "display on load"
136
136
  msgstr "แสดงตอนโหลด"
137
137
 
138
- #: models.py:383
138
+ #: models.py:404
139
139
  msgid "Display this layer on load."
140
140
  msgstr "แสดงเลเยอร์ตอนโหลด"
141
141
 
@@ -264,13 +264,59 @@ msgstr "สร้างแผนที่"
264
264
  msgid "Play with the demo"
265
265
  msgstr "เล่นกับตัวอย่างเดโม่"
266
266
 
267
- #: templates/umap/content.html:22
267
+ #: templates/umap/components/alerts/alert.html:14
268
+ #: templates/umap/components/alerts/alert.html:49
269
+ #: templates/umap/components/alerts/alert.html:71
270
+ msgid "Close"
271
+ msgstr ""
272
+
273
+ #: templates/umap/components/alerts/alert.html:27
274
+ #, python-format
275
+ msgid ""
276
+ "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
277
+ "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
278
+ "target=\"_blank\">log in</a>."
279
+ msgstr ""
280
+
281
+ #: templates/umap/components/alerts/alert.html:30
282
+ msgid "Here is your secret link to edit the map, please keep it safe:"
283
+ msgstr ""
284
+
285
+ #: templates/umap/components/alerts/alert.html:33
286
+ msgid "Copy link"
287
+ msgstr ""
288
+
289
+ #: templates/umap/components/alerts/alert.html:39
290
+ msgid "Enter your email address to receive the secret link:"
291
+ msgstr ""
292
+
293
+ #: templates/umap/components/alerts/alert.html:41
294
+ msgid "Email"
295
+ msgstr ""
296
+
297
+ #: templates/umap/components/alerts/alert.html:42
298
+ msgid "Send me the link"
299
+ msgstr ""
300
+
301
+ #: templates/umap/components/alerts/alert.html:63
302
+ msgid "See their edits in another tab"
303
+ msgstr ""
304
+
305
+ #: templates/umap/components/alerts/alert.html:64
306
+ msgid "Keep your changes and loose theirs"
307
+ msgstr ""
308
+
309
+ #: templates/umap/components/alerts/alert.html:65
310
+ msgid "Keep their changes and loose yours"
311
+ msgstr ""
312
+
313
+ #: templates/umap/content.html:24
268
314
  msgid ""
269
315
  "This instance of uMap is currently in read only mode, no creation/edit is "
270
316
  "allowed."
271
317
  msgstr ""
272
318
 
273
- #: templates/umap/content.html:30
319
+ #: templates/umap/content.html:32
274
320
  #, python-format
275
321
  msgid ""
276
322
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -279,11 +325,11 @@ msgid ""
279
325
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
280
326
  msgstr "นี่เป็นเพียงตัวอย่างสาธิต ใช้สำหรับการทดสอบและการเผยแพร่ล่วงหน้า ถ้าต้องการตัวอย่าง\nเสถียร โปรดใช้ <a href=\"%(stable_url)s\">%(stable_url)s</a> คุณยังสามารถโฮสต์ตัวอย่างของคุณได้ เนื่องจากเป็น<a href=\"%(repo_url)s\">โอเพนซอร์ส</a>!"
281
327
 
282
- #: templates/umap/home.html:8
328
+ #: templates/umap/home.html:11
283
329
  msgid "Map of the uMaps"
284
330
  msgstr "แผนที่จาก uMaps"
285
331
 
286
- #: templates/umap/home.html:14
332
+ #: templates/umap/home.html:17
287
333
  msgid "Get inspired, browse maps"
288
334
  msgstr "รับแรงบันดาลใจ เรียกดูแผนที่"
289
335
 
@@ -291,7 +337,7 @@ msgstr "รับแรงบันดาลใจ เรียกดูแผ
291
337
  msgid "You are logged in. Continuing..."
292
338
  msgstr "คุณเข้าสู่ระบบแล้ว กำลังดำเนินการต่อ..."
293
339
 
294
- #: templates/umap/map_list.html:9 views.py:341
340
+ #: templates/umap/map_list.html:9 views.py:348
295
341
  msgid "by"
296
342
  msgstr "โดย"
297
343
 
@@ -327,57 +373,57 @@ msgstr ""
327
373
  msgid "Actions"
328
374
  msgstr ""
329
375
 
330
- #: templates/umap/map_table.html:25 templates/umap/map_table.html:27
376
+ #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
331
377
  msgid "Open preview"
332
378
  msgstr ""
333
379
 
334
- #: templates/umap/map_table.html:46 templates/umap/map_table.html:48
380
+ #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
335
381
  msgid "Share"
336
382
  msgstr ""
337
383
 
338
- #: templates/umap/map_table.html:51 templates/umap/map_table.html:53
384
+ #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
339
385
  msgid "Edit"
340
386
  msgstr ""
341
387
 
342
- #: templates/umap/map_table.html:56 templates/umap/map_table.html:58
388
+ #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
343
389
  msgid "Download"
344
390
  msgstr ""
345
391
 
346
- #: templates/umap/map_table.html:63 templates/umap/map_table.html:65
392
+ #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
347
393
  msgid "Clone"
348
394
  msgstr ""
349
395
 
350
- #: templates/umap/map_table.html:73 templates/umap/map_table.html:75
396
+ #: templates/umap/map_table.html:77 templates/umap/map_table.html:79
351
397
  msgid "Delete"
352
398
  msgstr ""
353
399
 
354
- #: templates/umap/map_table.html:88
400
+ #: templates/umap/map_table.html:93
355
401
  msgid "first"
356
402
  msgstr ""
357
403
 
358
- #: templates/umap/map_table.html:89
404
+ #: templates/umap/map_table.html:94
359
405
  msgid "previous"
360
406
  msgstr ""
361
407
 
362
- #: templates/umap/map_table.html:98
408
+ #: templates/umap/map_table.html:102
363
409
  #, python-format
364
410
  msgid "Page %(maps_number)s of %(num_pages)s"
365
411
  msgstr ""
366
412
 
367
- #: templates/umap/map_table.html:104
413
+ #: templates/umap/map_table.html:107
368
414
  msgid "next"
369
415
  msgstr ""
370
416
 
371
- #: templates/umap/map_table.html:105
417
+ #: templates/umap/map_table.html:108
372
418
  msgid "last"
373
419
  msgstr ""
374
420
 
375
- #: templates/umap/map_table.html:113
421
+ #: templates/umap/map_table.html:116
376
422
  #, python-format
377
423
  msgid "Lines per page: %(per_page)s"
378
424
  msgstr ""
379
425
 
380
- #: templates/umap/map_table.html:118
426
+ #: templates/umap/map_table.html:121
381
427
  #, python-format
382
428
  msgid "%(count)s maps"
383
429
  msgstr ""
@@ -448,17 +494,17 @@ msgstr "เปลี่ยนรหัสผ่านแล้ว"
448
494
  msgid "Your password was changed."
449
495
  msgstr "รหัสผ่านของคุณนั้นถูกเปลี่ยนแล้ว"
450
496
 
451
- #: templates/umap/search.html:10
497
+ #: templates/umap/search.html:13
452
498
  #, python-format
453
499
  msgid "%(count)s map found:"
454
500
  msgid_plural "%(count)s maps found:"
455
501
  msgstr[0] ""
456
502
 
457
- #: templates/umap/search.html:18
503
+ #: templates/umap/search.html:21
458
504
  msgid "No map found."
459
505
  msgstr ""
460
506
 
461
- #: templates/umap/search.html:21
507
+ #: templates/umap/search.html:24
462
508
  msgid "Latest created maps"
463
509
  msgstr ""
464
510
 
@@ -470,20 +516,20 @@ msgstr "ค้นหาแผนที่"
470
516
  msgid "Search"
471
517
  msgstr "ค้นหา"
472
518
 
473
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:26
519
+ #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
474
520
  msgid "Search my maps"
475
521
  msgstr ""
476
522
 
477
- #: templates/umap/user_dashboard.html:11
523
+ #: templates/umap/user_dashboard.html:10
478
524
  #, python-format
479
525
  msgid "My Maps (%(count)s)"
480
526
  msgstr ""
481
527
 
482
- #: templates/umap/user_dashboard.html:13
528
+ #: templates/umap/user_dashboard.html:12
483
529
  msgid "My profile"
484
530
  msgstr ""
485
531
 
486
- #: templates/umap/user_dashboard.html:21 templates/umap/user_dashboard.html:23
532
+ #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
487
533
  msgid "Map’s title"
488
534
  msgstr ""
489
535
 
@@ -496,52 +542,61 @@ msgstr ""
496
542
  msgid "You have no map yet."
497
543
  msgstr ""
498
544
 
499
- #: views.py:346
545
+ #: views.py:353
500
546
  msgid "View the map"
501
547
  msgstr "ดูแผนที่"
502
548
 
503
- #: views.py:704
549
+ #: views.py:719
504
550
  msgid "See full screen"
505
551
  msgstr ""
506
552
 
507
- #: views.py:803
553
+ #: views.py:847
508
554
  msgid "Map editors updated with success!"
509
555
  msgstr "ผู้แก้ไขแผนที่อัปเดตสำเร็จแล้ว!"
510
556
 
511
- #: views.py:841
557
+ #: views.py:883
512
558
  #, python-format
513
559
  msgid "The uMap edit link for your map: %(map_name)s"
514
560
  msgstr ""
515
561
 
516
- #: views.py:844
562
+ #: views.py:886
517
563
  #, python-format
518
564
  msgid "Here is your secret edit link: %(link)s"
519
565
  msgstr ""
520
566
 
521
- #: views.py:850
567
+ #: views.py:893
568
+ #, python-format
569
+ msgid "Can't send email to %(email)s"
570
+ msgstr ""
571
+
572
+ #: views.py:896
522
573
  #, python-format
523
574
  msgid "Email sent to %(email)s"
524
575
  msgstr ""
525
576
 
526
- #: views.py:861
577
+ #: views.py:907
527
578
  msgid "Only its owner can delete the map."
528
579
  msgstr "เฉพาะเจ้าของสามารถลบแผนที่ได้เท่านั้น"
529
580
 
530
- #: views.py:889
581
+ #: views.py:910
582
+ msgid "Map successfully deleted."
583
+ msgstr ""
584
+
585
+ #: views.py:936
531
586
  #, python-format
532
587
  msgid ""
533
588
  "Your map has been cloned! If you want to edit this map from another "
534
589
  "computer, please use this link: %(anonymous_url)s"
535
590
  msgstr "แผนที่ของคุณถูกโคลนแล้ว! ถ้าคุณต้องการแก้ไขแผนที่นี้จากอุปกรณ์อื่น โปรดใช้ลิงค์: %(anonymous_url)s"
536
591
 
537
- #: views.py:894
592
+ #: views.py:941
538
593
  msgid "Congratulations, your map has been cloned!"
539
594
  msgstr "ยินดีด้วย แผนที่ของคุณถูกโคลนแล้ว!"
540
595
 
541
- #: views.py:1130
596
+ #: views.py:1176
542
597
  msgid "Layer successfully deleted."
543
598
  msgstr "ลบเลเยอร์สำเร็จแล้ว"
544
599
 
545
- #: views.py:1152
600
+ #: views.py:1198
546
601
  msgid "Permissions updated with success!"
547
602
  msgstr ""
Binary file