umap-project 2.5.0__py3-none-any.whl → 2.6.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (276) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +9 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +8 -12
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +993 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/importers/overpass.js +22 -8
  68. umap/static/umap/js/modules/permissions.js +280 -0
  69. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  70. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  71. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  72. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  73. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  74. umap/static/umap/js/modules/rendering/popup.js +99 -0
  75. umap/static/umap/js/modules/rendering/template.js +217 -0
  76. umap/static/umap/js/modules/rendering/ui.js +610 -0
  77. umap/static/umap/js/modules/rules.js +16 -3
  78. umap/static/umap/js/modules/schema.js +25 -1
  79. umap/static/umap/js/modules/share.js +66 -45
  80. umap/static/umap/js/modules/sync/updaters.js +9 -10
  81. umap/static/umap/js/modules/tableeditor.js +7 -7
  82. umap/static/umap/js/modules/ui/dialog.js +8 -4
  83. umap/static/umap/js/modules/utils.js +22 -13
  84. umap/static/umap/js/umap.controls.js +80 -146
  85. umap/static/umap/js/umap.core.js +9 -9
  86. umap/static/umap/js/umap.forms.js +41 -17
  87. umap/static/umap/js/umap.js +72 -65
  88. umap/static/umap/locale/am_ET.js +8 -2
  89. umap/static/umap/locale/am_ET.json +8 -2
  90. umap/static/umap/locale/ar.js +8 -2
  91. umap/static/umap/locale/ar.json +8 -2
  92. umap/static/umap/locale/ast.js +8 -2
  93. umap/static/umap/locale/ast.json +8 -2
  94. umap/static/umap/locale/bg.js +8 -2
  95. umap/static/umap/locale/bg.json +8 -2
  96. umap/static/umap/locale/br.js +42 -36
  97. umap/static/umap/locale/br.json +42 -36
  98. umap/static/umap/locale/ca.js +67 -61
  99. umap/static/umap/locale/ca.json +67 -61
  100. umap/static/umap/locale/cs_CZ.js +8 -2
  101. umap/static/umap/locale/cs_CZ.json +8 -2
  102. umap/static/umap/locale/da.js +8 -2
  103. umap/static/umap/locale/da.json +8 -2
  104. umap/static/umap/locale/de.js +143 -137
  105. umap/static/umap/locale/de.json +143 -137
  106. umap/static/umap/locale/el.js +54 -48
  107. umap/static/umap/locale/el.json +54 -48
  108. umap/static/umap/locale/en.js +10 -2
  109. umap/static/umap/locale/en.json +10 -2
  110. umap/static/umap/locale/en_US.json +8 -2
  111. umap/static/umap/locale/es.js +8 -2
  112. umap/static/umap/locale/es.json +8 -2
  113. umap/static/umap/locale/et.js +8 -2
  114. umap/static/umap/locale/et.json +8 -2
  115. umap/static/umap/locale/eu.js +346 -338
  116. umap/static/umap/locale/eu.json +346 -338
  117. umap/static/umap/locale/fa_IR.js +415 -407
  118. umap/static/umap/locale/fa_IR.json +415 -407
  119. umap/static/umap/locale/fi.js +8 -2
  120. umap/static/umap/locale/fi.json +8 -2
  121. umap/static/umap/locale/fr.js +11 -3
  122. umap/static/umap/locale/fr.json +11 -3
  123. umap/static/umap/locale/gl.js +8 -2
  124. umap/static/umap/locale/gl.json +8 -2
  125. umap/static/umap/locale/he.js +8 -2
  126. umap/static/umap/locale/he.json +8 -2
  127. umap/static/umap/locale/hr.js +8 -2
  128. umap/static/umap/locale/hr.json +8 -2
  129. umap/static/umap/locale/hu.js +31 -23
  130. umap/static/umap/locale/hu.json +31 -23
  131. umap/static/umap/locale/id.js +8 -2
  132. umap/static/umap/locale/id.json +8 -2
  133. umap/static/umap/locale/is.js +8 -2
  134. umap/static/umap/locale/is.json +8 -2
  135. umap/static/umap/locale/it.js +8 -2
  136. umap/static/umap/locale/it.json +8 -2
  137. umap/static/umap/locale/ja.js +8 -2
  138. umap/static/umap/locale/ja.json +8 -2
  139. umap/static/umap/locale/ko.js +8 -2
  140. umap/static/umap/locale/ko.json +8 -2
  141. umap/static/umap/locale/lt.js +8 -2
  142. umap/static/umap/locale/lt.json +8 -2
  143. umap/static/umap/locale/ms.js +8 -2
  144. umap/static/umap/locale/ms.json +8 -2
  145. umap/static/umap/locale/nl.js +8 -2
  146. umap/static/umap/locale/nl.json +8 -2
  147. umap/static/umap/locale/no.js +8 -2
  148. umap/static/umap/locale/no.json +8 -2
  149. umap/static/umap/locale/pl.js +54 -48
  150. umap/static/umap/locale/pl.json +54 -48
  151. umap/static/umap/locale/pl_PL.json +8 -2
  152. umap/static/umap/locale/pt.js +24 -18
  153. umap/static/umap/locale/pt.json +24 -18
  154. umap/static/umap/locale/pt_BR.js +8 -2
  155. umap/static/umap/locale/pt_BR.json +8 -2
  156. umap/static/umap/locale/pt_PT.js +214 -208
  157. umap/static/umap/locale/pt_PT.json +214 -208
  158. umap/static/umap/locale/ro.js +8 -2
  159. umap/static/umap/locale/ro.json +8 -2
  160. umap/static/umap/locale/ru.js +8 -2
  161. umap/static/umap/locale/ru.json +8 -2
  162. umap/static/umap/locale/sk_SK.js +8 -2
  163. umap/static/umap/locale/sk_SK.json +8 -2
  164. umap/static/umap/locale/sl.js +8 -2
  165. umap/static/umap/locale/sl.json +8 -2
  166. umap/static/umap/locale/sr.js +8 -2
  167. umap/static/umap/locale/sr.json +8 -2
  168. umap/static/umap/locale/sv.js +8 -2
  169. umap/static/umap/locale/sv.json +8 -2
  170. umap/static/umap/locale/th_TH.js +33 -27
  171. umap/static/umap/locale/th_TH.json +33 -27
  172. umap/static/umap/locale/tr.js +8 -2
  173. umap/static/umap/locale/tr.json +8 -2
  174. umap/static/umap/locale/uk_UA.js +8 -2
  175. umap/static/umap/locale/uk_UA.json +8 -2
  176. umap/static/umap/locale/vi.js +8 -2
  177. umap/static/umap/locale/vi.json +8 -2
  178. umap/static/umap/locale/vi_VN.json +8 -2
  179. umap/static/umap/locale/zh.js +8 -2
  180. umap/static/umap/locale/zh.json +8 -2
  181. umap/static/umap/locale/zh_CN.json +8 -2
  182. umap/static/umap/locale/zh_TW.Big5.json +8 -2
  183. umap/static/umap/locale/zh_TW.js +102 -96
  184. umap/static/umap/locale/zh_TW.json +102 -96
  185. umap/static/umap/map.css +111 -108
  186. umap/static/umap/nav.css +19 -10
  187. umap/static/umap/unittests/utils.js +230 -107
  188. umap/static/umap/vars.css +1 -0
  189. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  190. umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
  191. umap/storage.py +4 -3
  192. umap/templates/404.html +5 -1
  193. umap/templates/500.html +3 -1
  194. umap/templates/auth/user_detail.html +8 -2
  195. umap/templates/auth/user_form.html +19 -10
  196. umap/templates/auth/user_stars.html +8 -2
  197. umap/templates/base.html +1 -0
  198. umap/templates/registration/login.html +18 -3
  199. umap/templates/umap/about.html +1 -0
  200. umap/templates/umap/about_summary.html +22 -7
  201. umap/templates/umap/components/alerts/alert.html +42 -21
  202. umap/templates/umap/content.html +2 -0
  203. umap/templates/umap/content_footer.html +7 -3
  204. umap/templates/umap/css.html +1 -0
  205. umap/templates/umap/dashboard_menu.html +15 -0
  206. umap/templates/umap/home.html +14 -4
  207. umap/templates/umap/js.html +4 -9
  208. umap/templates/umap/login_popup_end.html +10 -4
  209. umap/templates/umap/map_detail.html +8 -2
  210. umap/templates/umap/map_fragment.html +3 -1
  211. umap/templates/umap/map_init.html +2 -1
  212. umap/templates/umap/map_list.html +6 -3
  213. umap/templates/umap/map_table.html +36 -12
  214. umap/templates/umap/messages.html +0 -1
  215. umap/templates/umap/navigation.html +2 -1
  216. umap/templates/umap/password_change.html +5 -1
  217. umap/templates/umap/password_change_done.html +8 -2
  218. umap/templates/umap/search.html +8 -2
  219. umap/templates/umap/search_bar.html +1 -0
  220. umap/templates/umap/team_confirm_delete.html +19 -0
  221. umap/templates/umap/team_detail.html +27 -0
  222. umap/templates/umap/team_form.html +60 -0
  223. umap/templates/umap/user_dashboard.html +7 -9
  224. umap/templates/umap/user_teams.html +51 -0
  225. umap/tests/base.py +8 -1
  226. umap/tests/conftest.py +6 -0
  227. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  228. umap/tests/fixtures/test_upload_georss.xml +20 -0
  229. umap/tests/integration/conftest.py +18 -4
  230. umap/tests/integration/helpers.py +12 -0
  231. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  232. umap/tests/integration/test_basics.py +29 -0
  233. umap/tests/integration/test_browser.py +20 -0
  234. umap/tests/integration/test_caption.py +20 -0
  235. umap/tests/integration/test_circles_layer.py +69 -0
  236. umap/tests/integration/test_conditional_rules.py +102 -17
  237. umap/tests/integration/test_draw_polygon.py +138 -13
  238. umap/tests/integration/test_draw_polyline.py +8 -18
  239. umap/tests/integration/test_edit_datalayer.py +3 -3
  240. umap/tests/integration/test_import.py +124 -5
  241. umap/tests/integration/test_owned_map.py +21 -13
  242. umap/tests/integration/test_querystring.py +7 -0
  243. umap/tests/integration/test_team.py +47 -0
  244. umap/tests/integration/test_tilelayer.py +19 -2
  245. umap/tests/integration/test_view_marker.py +28 -1
  246. umap/tests/integration/test_websocket_sync.py +5 -5
  247. umap/tests/test_datalayer.py +32 -7
  248. umap/tests/test_datalayer_views.py +1 -1
  249. umap/tests/test_map.py +30 -4
  250. umap/tests/test_map_views.py +2 -2
  251. umap/tests/test_statics.py +40 -0
  252. umap/tests/test_team_views.py +131 -0
  253. umap/tests/test_views.py +15 -1
  254. umap/urls.py +23 -13
  255. umap/views.py +116 -10
  256. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
  257. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
  258. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  259. umap/static/umap/js/umap.features.js +0 -1290
  260. umap/static/umap/js/umap.layer.js +0 -1837
  261. umap/static/umap/js/umap.permissions.js +0 -208
  262. umap/static/umap/js/umap.popup.js +0 -341
  263. umap/static/umap/test/TableEditor.js +0 -104
  264. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  265. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  266. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  267. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  268. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  269. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  270. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  271. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  272. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  273. umap/tests/integration/test_statics.py +0 -47
  274. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
  275. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
  276. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -17,7 +17,7 @@ msgid ""
17
17
  msgstr ""
18
18
  "Project-Id-Version: uMap\n"
19
19
  "Report-Msgid-Bugs-To: \n"
20
- "POT-Creation-Date: 2024-04-24 19:16+0000\n"
20
+ "POT-Creation-Date: 2024-08-30 18:23+0000\n"
21
21
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
22
22
  "Last-Translator: Krzysztof Chorzempa, 2023-2024\n"
23
23
  "Language-Team: Polish (http://app.transifex.com/openstreetmap/umap/language/pl/)\n"
@@ -35,7 +35,7 @@ msgstr "Edycja możliwa tylko z sekretnym odnośnikiem"
35
35
  msgid "Everyone can edit"
36
36
  msgstr "Wszyscy mogą edytować"
37
37
 
38
- #: forms.py:69 models.py:384
38
+ #: forms.py:69 models.py:423
39
39
  msgid "Inherit"
40
40
  msgstr "Odziedzicz"
41
41
 
@@ -43,242 +43,284 @@ msgstr "Odziedzicz"
43
43
  msgid "Site is readonly for maintenance"
44
44
  msgstr "Strona jest w trybie tylko do odczytu z powodu prac konserwacyjnych"
45
45
 
46
- #: models.py:53
46
+ #: models.py:54 models.py:73
47
47
  msgid "name"
48
48
  msgstr "nazwa"
49
49
 
50
- #: models.py:84
50
+ #: models.py:56 models.py:433
51
+ msgid "description"
52
+ msgstr "opis"
53
+
54
+ #: models.py:104
51
55
  msgid "details"
52
56
  msgstr "szczegóły"
53
57
 
54
- #: models.py:85
58
+ #: models.py:105
55
59
  msgid "Link to a page where the licence is detailed."
56
60
  msgstr "Odnośnik do strony ze szczegółowym opisem licencji."
57
61
 
58
- #: models.py:95
62
+ #: models.py:115
59
63
  msgid "URL template using OSM tile format"
60
64
  msgstr "Szablon URL używający formatu kafelków OSM"
61
65
 
62
- #: models.py:101
66
+ #: models.py:121
63
67
  msgid "Order of the tilelayers in the edit box"
64
68
  msgstr "Kolejność podkładów w oknie edycji"
65
69
 
66
- #: models.py:147 models.py:385
70
+ #: models.py:167 models.py:424
67
71
  msgid "Everyone"
68
72
  msgstr "Każdy"
69
73
 
70
- #: models.py:148 models.py:154 models.py:386
71
- msgid "Editors only"
72
- msgstr "Tylko edytorzy"
74
+ #: models.py:168 models.py:174 models.py:425
75
+ msgid "Editors and team only"
76
+ msgstr ""
73
77
 
74
- #: models.py:149 models.py:387
78
+ #: models.py:169 models.py:426
75
79
  msgid "Owner only"
76
80
  msgstr "Tylko właściciel"
77
81
 
78
- #: models.py:152
82
+ #: models.py:172
79
83
  msgid "Everyone (public)"
80
84
  msgstr "Każdy (publiczne)"
81
85
 
82
- #: models.py:153
86
+ #: models.py:173
83
87
  msgid "Anyone with link"
84
88
  msgstr "Każdy z linkiem"
85
89
 
86
- #: models.py:155
90
+ #: models.py:175
87
91
  msgid "Blocked"
88
92
  msgstr "Zablokowane"
89
93
 
90
- #: models.py:158
94
+ #: models.py:178
91
95
  msgid "center"
92
96
  msgstr "środek"
93
97
 
94
- #: models.py:159
98
+ #: models.py:179
95
99
  msgid "zoom"
96
100
  msgstr "przybliżenie"
97
101
 
98
- #: models.py:161
102
+ #: models.py:181
99
103
  msgid "locate"
100
104
  msgstr "lokalizuj"
101
105
 
102
- #: models.py:161
106
+ #: models.py:181
103
107
  msgid "Locate user on load?"
104
108
  msgstr "Lokalizować użytkownika po załadowaniu?"
105
109
 
106
- #: models.py:165
110
+ #: models.py:185
107
111
  msgid "Choose the map licence."
108
112
  msgstr "Wybierz licencję mapy."
109
113
 
110
- #: models.py:166
114
+ #: models.py:186
111
115
  msgid "licence"
112
116
  msgstr "licencja"
113
117
 
114
- #: models.py:177
118
+ #: models.py:197
115
119
  msgid "owner"
116
120
  msgstr "właściciel"
117
121
 
118
- #: models.py:181
122
+ #: models.py:201
119
123
  msgid "editors"
120
124
  msgstr "edytorzy"
121
125
 
122
- #: models.py:186 models.py:408
126
+ #: models.py:207
127
+ msgid "team"
128
+ msgstr ""
129
+
130
+ #: models.py:213 models.py:447
123
131
  msgid "edit status"
124
132
  msgstr "status edycji"
125
133
 
126
- #: models.py:191
134
+ #: models.py:218
127
135
  msgid "share status"
128
136
  msgstr "udostępnij status"
129
137
 
130
- #: models.py:194 models.py:403
138
+ #: models.py:221 models.py:442
131
139
  msgid "settings"
132
140
  msgstr "ustawienia"
133
141
 
134
- #: models.py:325
142
+ #: models.py:364
135
143
  msgid "Clone of"
136
144
  msgstr "Kopia"
137
145
 
138
- #: models.py:394
139
- msgid "description"
140
- msgstr "opis"
141
-
142
- #: models.py:398
146
+ #: models.py:437
143
147
  msgid "display on load"
144
148
  msgstr "wyświetl po załadowaniu"
145
149
 
146
- #: models.py:399
150
+ #: models.py:438
147
151
  msgid "Display this layer on load."
148
152
  msgstr "Wyświetl tę warstwę po załadowaniu."
149
153
 
150
- #: templates/404.html:6
154
+ #: templates/404.html:8
151
155
  msgid "Take me to the home page"
152
156
  msgstr "Zabierz mnie na stronę główną"
153
157
 
154
- #: templates/auth/user_detail.html:5
158
+ #: templates/auth/user_detail.html:8
155
159
  #, python-format
156
160
  msgid "Browse %(current_user)s's maps"
157
161
  msgstr "Przeglądaj mapy %(current_user)s"
158
162
 
159
- #: templates/auth/user_detail.html:12
163
+ #: templates/auth/user_detail.html:17
160
164
  #, python-format
161
165
  msgid "%(current_user)s has no maps."
162
166
  msgstr "%(current_user)s nie posiada map."
163
167
 
164
- #: templates/auth/user_form.html:6
165
- msgid "My Maps"
166
- msgstr "Moje Mapy"
167
-
168
- #: templates/auth/user_form.html:7
169
- msgid "My Profile"
170
- msgstr "Mój profil"
171
-
172
- #: templates/auth/user_form.html:20
168
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
173
169
  msgid "Save"
174
170
  msgstr "Zapisz"
175
171
 
176
- #: templates/auth/user_form.html:25
172
+ #: templates/auth/user_form.html:27
177
173
  msgid "Your current providers"
178
174
  msgstr ""
179
175
 
180
- #: templates/auth/user_form.html:31
176
+ #: templates/auth/user_form.html:39
181
177
  msgid "Connect to another provider"
182
178
  msgstr ""
183
179
 
184
- #: templates/auth/user_form.html:33
180
+ #: templates/auth/user_form.html:42
185
181
  msgid ""
186
182
  "It's a good habit to connect your account to more than one provider, in case"
187
183
  " one provider becomes unavailable, temporarily or even permanently."
188
184
  msgstr ""
189
185
 
190
- #: templates/auth/user_stars.html:5
186
+ #: templates/auth/user_stars.html:8
191
187
  #, python-format
192
188
  msgid "Browse %(current_user)s's starred maps"
193
189
  msgstr "Przeglądaj mapy oznaczone gwiazdką przez %(current_user)s"
194
190
 
195
- #: templates/auth/user_stars.html:12
191
+ #: templates/auth/user_stars.html:17
196
192
  #, python-format
197
193
  msgid "%(current_user)s has no starred maps yet."
198
194
  msgstr "%(current_user)s nie ma map oznaczonych gwiazdką."
199
195
 
200
- #: templates/base.html:12
196
+ #: templates/base.html:13
201
197
  msgid ""
202
198
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
203
199
  "them in your site."
204
200
  msgstr "uMap pozwala ci szybko tworzyć mapy z warstwami OpenStreetMap i umieścić je na twojej stronie."
205
201
 
206
- #: templates/registration/login.html:16
202
+ #: templates/registration/login.html:6 templates/registration/login.html:45
203
+ msgid "Login"
204
+ msgstr "Zaloguj się"
205
+
206
+ #: templates/registration/login.html:24
207
207
  msgid "Please log in with your account"
208
208
  msgstr "Proszę zalogować się na swoje konto"
209
209
 
210
- #: templates/registration/login.html:28
210
+ #: templates/registration/login.html:41
211
211
  msgid "Username"
212
212
  msgstr "Nazwa użytkownika"
213
213
 
214
- #: templates/registration/login.html:31
214
+ #: templates/registration/login.html:44
215
215
  msgid "Password"
216
216
  msgstr "Hasło"
217
217
 
218
- #: templates/registration/login.html:32
219
- msgid "Login"
220
- msgstr "Zaloguj się"
221
-
222
- #: templates/registration/login.html:37
218
+ #: templates/registration/login.html:51
223
219
  msgid "Please choose a provider"
224
220
  msgstr "Proszę wybrać serwis"
225
221
 
226
- #: templates/umap/about_summary.html:11
222
+ #: templates/umap/about_summary.html:12
227
223
  #, python-format
228
224
  msgid ""
229
225
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
230
226
  "layers in a minute and embed them in your site."
231
227
  msgstr "uMap umożliwia ci utworzenie w kilka minut mapy z użyciem warstw <a href=\"%(osm_url)s\" />OpenStreetMap</a> i zamieszczenie jej na swojej stronie internetowej."
232
228
 
233
- #: templates/umap/about_summary.html:21
229
+ #: templates/umap/about_summary.html:23
234
230
  msgid "Choose the layers of your map"
235
231
  msgstr "Wybierz warstwy swojej mapy"
236
232
 
237
- #: templates/umap/about_summary.html:22
233
+ #: templates/umap/about_summary.html:26
238
234
  msgid "Add POIs: markers, lines, polygons..."
239
235
  msgstr "Dodaj POI: znaczniki, linie, obszary..."
240
236
 
241
- #: templates/umap/about_summary.html:23
237
+ #: templates/umap/about_summary.html:29
242
238
  msgid "Manage POIs colours and icons"
243
239
  msgstr "Zarządzaj kolorami oraz ikonami"
244
240
 
245
- #: templates/umap/about_summary.html:24
241
+ #: templates/umap/about_summary.html:32
246
242
  msgid "Manage map options: display a minimap, locate user on load…"
247
243
  msgstr "Zmieniaj ustawienia mapy: wyświetlanie minimapy, lokalizacja użytkownika po załadowaniu..."
248
244
 
249
- #: templates/umap/about_summary.html:25
245
+ #: templates/umap/about_summary.html:35
250
246
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
251
247
  msgstr "Importuj geostrukturalne dane (geojson, gpx, kml, osm...)"
252
248
 
253
- #: templates/umap/about_summary.html:26
249
+ #: templates/umap/about_summary.html:38
254
250
  msgid "Choose the license for your data"
255
251
  msgstr "Wybierz licencję swoich danych"
256
252
 
257
- #: templates/umap/about_summary.html:27
253
+ #: templates/umap/about_summary.html:41
258
254
  msgid "Embed and share your map"
259
255
  msgstr "Umieszczaj mapy w sieci i dziel się nimi"
260
256
 
261
- #: templates/umap/about_summary.html:37
257
+ #: templates/umap/about_summary.html:52
262
258
  #, python-format
263
259
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
264
260
  msgstr "I to wszystko <a href=\"%(repo_url)s\">na wolnej licencji</a>!"
265
261
 
266
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
267
- #: templates/umap/user_dashboard.html:42
262
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
263
+ #: templates/umap/user_dashboard.html:40
268
264
  msgid "Create a map"
269
265
  msgstr "Stwórz mapę"
270
266
 
271
- #: templates/umap/about_summary.html:51
267
+ #: templates/umap/about_summary.html:66
272
268
  msgid "Play with the demo"
273
269
  msgstr "Zobacz wersję demo"
274
270
 
275
- #: templates/umap/content.html:22
271
+ #: templates/umap/components/alerts/alert.html:15
272
+ #: templates/umap/components/alerts/alert.html:64
273
+ #: templates/umap/components/alerts/alert.html:92
274
+ msgid "Close"
275
+ msgstr "Zamknij"
276
+
277
+ #: templates/umap/components/alerts/alert.html:30
278
+ #, python-format
279
+ msgid ""
280
+ "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
281
+ "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
282
+ "target=\"_blank\">log in</a>."
283
+ msgstr "Wskazówka: aby łatwo znaleźć swoje mapy, <a href=\"%(login_url)s\" target=\"_blank\">utwórz konto</a> lub <a href=\"%(login_url)s\" target=\"_blank\">zaloguj się</a>. "
284
+
285
+ #: templates/umap/components/alerts/alert.html:35
286
+ msgid "Here is your secret link to edit the map, please keep it safe:"
287
+ msgstr ""
288
+
289
+ #: templates/umap/components/alerts/alert.html:39
290
+ msgid "Copy link"
291
+ msgstr "Skopiuj link"
292
+
293
+ #: templates/umap/components/alerts/alert.html:46
294
+ msgid "Enter your email address to receive the secret link:"
295
+ msgstr "Wprowadź swój adres email, aby otrzymać tajny link:"
296
+
297
+ #: templates/umap/components/alerts/alert.html:52
298
+ msgid "Email"
299
+ msgstr "Email"
300
+
301
+ #: templates/umap/components/alerts/alert.html:55
302
+ msgid "Send me the link"
303
+ msgstr "Wyślij mi link"
304
+
305
+ #: templates/umap/components/alerts/alert.html:79
306
+ msgid "See their edits in another tab"
307
+ msgstr "Zobacz edycje innych w osobnej zakładce"
308
+
309
+ #: templates/umap/components/alerts/alert.html:82
310
+ msgid "Keep your changes and loose theirs"
311
+ msgstr "Zachowaj swoje zmiany i utrać zmiany innych"
312
+
313
+ #: templates/umap/components/alerts/alert.html:85
314
+ msgid "Keep their changes and loose yours"
315
+ msgstr "Zachowaj zmiany innych i utrać swoje"
316
+
317
+ #: templates/umap/content.html:26
276
318
  msgid ""
277
319
  "This instance of uMap is currently in read only mode, no creation/edit is "
278
320
  "allowed."
279
321
  msgstr "Ta instancja uMap jest obecnie w trybie tylko do odczytu, nie jest możliwe edytowanie ani tworzenie."
280
322
 
281
- #: templates/umap/content.html:30
323
+ #: templates/umap/content.html:34
282
324
  #, python-format
283
325
  msgid ""
284
326
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -287,176 +329,210 @@ msgid ""
287
329
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
288
330
  msgstr "To jest serwer demonstracyjny, używany do testów i niefinalnych wydań. Jeśli potrzebujesz stabilnego serwera, użyj <a href=\"%(stable_url)s\">%(stable_url)s</a>. Możesz także postawić swój własny, wszystko jest <a href=\"%(repo_url)s\">open source</a>!"
289
331
 
290
- #: templates/umap/home.html:8
332
+ #: templates/umap/content_footer.html:5
333
+ msgid "An OpenStreetMap project"
334
+ msgstr ""
335
+
336
+ #: templates/umap/content_footer.html:6
337
+ msgid "version"
338
+ msgstr ""
339
+
340
+ #: templates/umap/content_footer.html:7
341
+ msgid "Hosted by"
342
+ msgstr ""
343
+
344
+ #: templates/umap/content_footer.html:8
345
+ msgid "Contact"
346
+ msgstr ""
347
+
348
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
349
+ msgid "Help"
350
+ msgstr "Pomoc"
351
+
352
+ #: templates/umap/dashboard_menu.html:6
353
+ #, python-format
354
+ msgid "My Maps (%(count)s)"
355
+ msgstr "Moje Mapy (%(count)s)"
356
+
357
+ #: templates/umap/dashboard_menu.html:8
358
+ msgid "My Maps"
359
+ msgstr "Moje Mapy"
360
+
361
+ #: templates/umap/dashboard_menu.html:11
362
+ msgid "My profile"
363
+ msgstr "Mój profil"
364
+
365
+ #: templates/umap/dashboard_menu.html:13
366
+ msgid "My teams"
367
+ msgstr ""
368
+
369
+ #: templates/umap/home.html:14
291
370
  msgid "Map of the uMaps"
292
371
  msgstr "Mapa uMapek"
293
372
 
294
- #: templates/umap/home.html:14
373
+ #: templates/umap/home.html:24
295
374
  msgid "Get inspired, browse maps"
296
375
  msgstr "Zainspiruj się, przejrzyj mapy"
297
376
 
298
- #: templates/umap/login_popup_end.html:2
377
+ #: templates/umap/login_popup_end.html:4
299
378
  msgid "You are logged in. Continuing..."
300
379
  msgstr "Jesteś zalogowany. Kontynuowanie..."
301
380
 
302
- #: templates/umap/map_list.html:9 views.py:349
381
+ #: templates/umap/map_list.html:10 views.py:433
303
382
  msgid "by"
304
383
  msgstr "przez"
305
384
 
306
- #: templates/umap/map_list.html:17
385
+ #: templates/umap/map_list.html:18
307
386
  msgid "More"
308
387
  msgstr "Więcej"
309
388
 
310
- #: templates/umap/map_table.html:6
389
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
311
390
  msgid "Name"
312
391
  msgstr "Nazwa"
313
392
 
314
- #: templates/umap/map_table.html:7
393
+ #: templates/umap/map_table.html:11
315
394
  msgid "Preview"
316
395
  msgstr "Podgląd"
317
396
 
318
- #: templates/umap/map_table.html:8
397
+ #: templates/umap/map_table.html:14
319
398
  msgid "Who can see"
320
399
  msgstr "Kto może zobaczyć"
321
400
 
322
- #: templates/umap/map_table.html:9
401
+ #: templates/umap/map_table.html:17
323
402
  msgid "Who can edit"
324
403
  msgstr "Kto może edytować"
325
404
 
326
- #: templates/umap/map_table.html:10
405
+ #: templates/umap/map_table.html:20
327
406
  msgid "Last save"
328
407
  msgstr "Ostatni zapis"
329
408
 
330
- #: templates/umap/map_table.html:11
409
+ #: templates/umap/map_table.html:23
331
410
  msgid "Owner"
332
411
  msgstr "Właściciel"
333
412
 
334
- #: templates/umap/map_table.html:12
413
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
335
414
  msgid "Actions"
336
415
  msgstr "Akcje"
337
416
 
338
- #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
417
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
339
418
  msgid "Open preview"
340
419
  msgstr "Otwórz podgląd"
341
420
 
342
- #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
421
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
343
422
  msgid "Share"
344
423
  msgstr "Udostępnij"
345
424
 
346
- #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
425
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
426
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
347
427
  msgid "Edit"
348
428
  msgstr "Edytuj"
349
429
 
350
- #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
430
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
351
431
  msgid "Download"
352
432
  msgstr "Pobierz"
353
433
 
354
- #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
434
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
355
435
  msgid "Clone"
356
436
  msgstr "Skopiuj"
357
437
 
358
- #: templates/umap/map_table.html:77 templates/umap/map_table.html:79
438
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
359
439
  msgid "Delete"
360
440
  msgstr "Usuń"
361
441
 
362
- #: templates/umap/map_table.html:93
442
+ #: templates/umap/map_table.html:117
363
443
  msgid "first"
364
444
  msgstr "pierwszy"
365
445
 
366
- #: templates/umap/map_table.html:94
446
+ #: templates/umap/map_table.html:118
367
447
  msgid "previous"
368
448
  msgstr "poprzedni"
369
449
 
370
- #: templates/umap/map_table.html:102
450
+ #: templates/umap/map_table.html:126
371
451
  #, python-format
372
452
  msgid "Page %(maps_number)s of %(num_pages)s"
373
453
  msgstr "Strona %(maps_number)s. z %(num_pages)s"
374
454
 
375
- #: templates/umap/map_table.html:107
455
+ #: templates/umap/map_table.html:131
376
456
  msgid "next"
377
- msgstr ""
457
+ msgstr "następny"
378
458
 
379
- #: templates/umap/map_table.html:108
459
+ #: templates/umap/map_table.html:132
380
460
  msgid "last"
381
- msgstr ""
461
+ msgstr "ostatni"
382
462
 
383
- #: templates/umap/map_table.html:116
463
+ #: templates/umap/map_table.html:140
384
464
  #, python-format
385
465
  msgid "Lines per page: %(per_page)s"
386
466
  msgstr ""
387
467
 
388
- #: templates/umap/map_table.html:121
468
+ #: templates/umap/map_table.html:145
389
469
  #, python-format
390
470
  msgid "%(count)s maps"
391
471
  msgstr "%(count)s map"
392
472
 
393
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
473
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
394
474
  msgid "My Dashboard"
395
475
  msgstr "Mój Panel"
396
476
 
397
- #: templates/umap/navigation.html:13
477
+ #: templates/umap/navigation.html:14
398
478
  msgid "Starred maps"
399
479
  msgstr "Mapy oznaczone gwiazdką"
400
480
 
401
- #: templates/umap/navigation.html:17
481
+ #: templates/umap/navigation.html:18
402
482
  msgid "Log in"
403
483
  msgstr "Logowanie"
404
484
 
405
- #: templates/umap/navigation.html:17
485
+ #: templates/umap/navigation.html:18
406
486
  msgid "Sign in"
407
487
  msgstr "Rejestracja"
408
488
 
409
- #: templates/umap/navigation.html:21
489
+ #: templates/umap/navigation.html:22
410
490
  msgid "About"
411
491
  msgstr "Informacje"
412
492
 
413
- #: templates/umap/navigation.html:24
414
- msgid "Help"
415
- msgstr "Pomoc"
416
-
417
- #: templates/umap/navigation.html:29
493
+ #: templates/umap/navigation.html:30
418
494
  msgid "Change password"
419
495
  msgstr "Zmień hasło"
420
496
 
421
- #: templates/umap/navigation.html:33
497
+ #: templates/umap/navigation.html:34
422
498
  msgid "Log out"
423
499
  msgstr "Wyloguj się"
424
500
 
425
- #: templates/umap/password_change.html:4
501
+ #: templates/umap/password_change.html:7
426
502
  msgid "Password change"
427
503
  msgstr "Zmiana hasła"
428
504
 
429
- #: templates/umap/password_change.html:6
505
+ #: templates/umap/password_change.html:10
430
506
  msgid ""
431
507
  "Please enter your old password, for security's sake, and then enter your new"
432
508
  " password twice so we can verify you typed it in correctly."
433
509
  msgstr "Prosimy wpisać swoje poprzednie hasło, a następnie podać nowe dwukrotnie, by zweryfikować, czy wpisano je poprawnie"
434
510
 
435
- #: templates/umap/password_change.html:13
511
+ #: templates/umap/password_change.html:17
436
512
  msgid "Old password"
437
513
  msgstr "Stare hasło"
438
514
 
439
- #: templates/umap/password_change.html:18
515
+ #: templates/umap/password_change.html:22
440
516
  msgid "New password"
441
517
  msgstr "Nowe hasło"
442
518
 
443
- #: templates/umap/password_change.html:22
519
+ #: templates/umap/password_change.html:26
444
520
  msgid "New password confirmation"
445
521
  msgstr "Potwierdź nowe hasło"
446
522
 
447
- #: templates/umap/password_change.html:23
523
+ #: templates/umap/password_change.html:27
448
524
  msgid "Change my password"
449
525
  msgstr "Zmień moje hasło"
450
526
 
451
- #: templates/umap/password_change_done.html:4
527
+ #: templates/umap/password_change_done.html:7
452
528
  msgid "Password change successful"
453
529
  msgstr "Zmiana hasła powiodła się"
454
530
 
455
- #: templates/umap/password_change_done.html:5
531
+ #: templates/umap/password_change_done.html:10
456
532
  msgid "Your password was changed."
457
533
  msgstr "Twoje hasło zostało zmienione."
458
534
 
459
- #: templates/umap/search.html:10
535
+ #: templates/umap/search.html:15
460
536
  #, python-format
461
537
  msgid "%(count)s map found:"
462
538
  msgid_plural "%(count)s maps found:"
@@ -465,99 +541,129 @@ msgstr[1] "Znaleziono %(count)s mapy:"
465
541
  msgstr[2] "Znaleziono %(count)s map:"
466
542
  msgstr[3] "Znaleziono %(count)s map:"
467
543
 
468
- #: templates/umap/search.html:18
544
+ #: templates/umap/search.html:24
469
545
  msgid "No map found."
470
546
  msgstr "Nie znaleziono mapy."
471
547
 
472
- #: templates/umap/search.html:21
548
+ #: templates/umap/search.html:29
473
549
  msgid "Latest created maps"
474
550
  msgstr "Ostatnio utworzone mapy"
475
551
 
476
- #: templates/umap/search_bar.html:3
552
+ #: templates/umap/search_bar.html:4
477
553
  msgid "Search maps"
478
554
  msgstr "Znajdź mapy"
479
555
 
480
- #: templates/umap/search_bar.html:14
556
+ #: templates/umap/search_bar.html:15
481
557
  msgid "Search"
482
558
  msgstr "Szukaj"
483
559
 
484
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
485
- msgid "Search my maps"
486
- msgstr "Przeszukaj moje mapy"
560
+ #: templates/umap/team_detail.html:10
561
+ #, python-format
562
+ msgid "Browse %(current_team)s's maps"
563
+ msgstr ""
487
564
 
488
- #: templates/umap/user_dashboard.html:10
565
+ #: templates/umap/team_detail.html:22
489
566
  #, python-format
490
- msgid "My Maps (%(count)s)"
491
- msgstr "Moje Mapy (%(count)s)"
567
+ msgid "%(current_team)s has no public maps."
568
+ msgstr ""
492
569
 
493
- #: templates/umap/user_dashboard.html:12
494
- msgid "My profile"
495
- msgstr "Mój profil"
570
+ #: templates/umap/team_form.html:24
571
+ msgid "Delete this team"
572
+ msgstr ""
573
+
574
+ #: templates/umap/team_form.html:47
575
+ msgid "Add user"
576
+ msgstr ""
577
+
578
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
579
+ msgid "Search my maps"
580
+ msgstr "Przeszukaj moje mapy"
496
581
 
497
- #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
582
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
498
583
  msgid "Map’s title"
499
584
  msgstr "Nazwa mapy"
500
585
 
501
- #: templates/umap/user_dashboard.html:32
586
+ #: templates/umap/user_dashboard.html:30
502
587
  #, python-format
503
588
  msgid "Download %(count)s maps"
504
589
  msgstr "Pobierz %(count)s map"
505
590
 
506
- #: templates/umap/user_dashboard.html:42
591
+ #: templates/umap/user_dashboard.html:40
507
592
  msgid "You have no map yet."
508
593
  msgstr "Nie masz jeszcze żadnej mapy."
509
594
 
510
- #: views.py:354
595
+ #: templates/umap/user_teams.html:17
596
+ msgid "Users"
597
+ msgstr ""
598
+
599
+ #: templates/umap/user_teams.html:48
600
+ msgid "New team"
601
+ msgstr ""
602
+
603
+ #: views.py:235
604
+ msgid "Cannot delete a team with more than one member"
605
+ msgstr ""
606
+
607
+ #: views.py:239
608
+ #, python-format
609
+ msgid "Team “%(name)s” has been deleted"
610
+ msgstr ""
611
+
612
+ #: views.py:438
511
613
  msgid "View the map"
512
614
  msgstr "Zobacz mapę"
513
615
 
514
- #: views.py:716
616
+ #: views.py:824
515
617
  msgid "See full screen"
516
618
  msgstr ""
517
619
 
518
- #: views.py:817
620
+ #: views.py:953
519
621
  msgid "Map editors updated with success!"
520
622
  msgstr "Edytorzy mapy zaktualizowani pomyślnie!"
521
623
 
522
- #: views.py:854
624
+ #: views.py:989
523
625
  #, python-format
524
626
  msgid "The uMap edit link for your map: %(map_name)s"
525
627
  msgstr "Link uMap do edytowania twojej mapy: %(map_name)s"
526
628
 
527
- #: views.py:857
629
+ #: views.py:992
528
630
  #, python-format
529
631
  msgid "Here is your secret edit link: %(link)s"
530
632
  msgstr "Oto twój sekretny link do edycji: %(link)s"
531
633
 
532
- #: views.py:864
634
+ #: views.py:999
533
635
  #, python-format
534
636
  msgid "Can't send email to %(email)s"
535
637
  msgstr "Nie można wysłać emaila do %(email)s"
536
638
 
537
- #: views.py:867
639
+ #: views.py:1002
538
640
  #, python-format
539
641
  msgid "Email sent to %(email)s"
540
642
  msgstr "Email wysłany do %(email)s"
541
643
 
542
- #: views.py:878
644
+ #: views.py:1013
543
645
  msgid "Only its owner can delete the map."
544
646
  msgstr "Tylko właściciel może usunąć mapę."
545
647
 
546
- #: views.py:906
648
+ #: views.py:1016
649
+ msgid "Map successfully deleted."
650
+ msgstr "Pomyślnie usunięto mapę."
651
+
652
+ #: views.py:1042
547
653
  #, python-format
548
654
  msgid ""
549
655
  "Your map has been cloned! If you want to edit this map from another "
550
656
  "computer, please use this link: %(anonymous_url)s"
551
657
  msgstr "Twoja mapa została skopiowana! Jeśli chcesz edytować ją z innego komputera, użyj odnośnika: %(anonymous_url)s"
552
658
 
553
- #: views.py:911
659
+ #: views.py:1047
554
660
  msgid "Congratulations, your map has been cloned!"
555
661
  msgstr "Gratulacje, twoja mapa została skopiowana!"
556
662
 
557
- #: views.py:1146
663
+ #: views.py:1282
558
664
  msgid "Layer successfully deleted."
559
665
  msgstr "Warstwa usunięta pomyślnie."
560
666
 
561
- #: views.py:1168
667
+ #: views.py:1304
562
668
  msgid "Permissions updated with success!"
563
669
  msgstr "Pomyślnie zaktualizowano uprawnienia!"