umap-project 2.3.0__py3-none-any.whl → 2.4.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 (211) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/en/LC_MESSAGES/django.po +81 -31
  3. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/fr/LC_MESSAGES/django.po +117 -66
  5. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/pl/LC_MESSAGES/django.po +83 -78
  7. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/pt/LC_MESSAGES/django.po +129 -123
  9. umap/management/commands/run_websocket_server.py +23 -0
  10. umap/models.py +6 -1
  11. umap/settings/base.py +11 -3
  12. umap/static/umap/base.css +68 -186
  13. umap/static/umap/content.css +3 -2
  14. umap/static/umap/css/dialog.css +18 -0
  15. umap/static/umap/css/icon.css +8 -0
  16. umap/static/umap/css/importers.css +51 -0
  17. umap/static/umap/css/panel.css +18 -57
  18. umap/static/umap/css/tooltip.css +59 -0
  19. umap/static/umap/css/window.css +35 -0
  20. umap/static/umap/img/16-white.svg +1 -3
  21. umap/static/umap/img/alert-icon-error.svg +8 -0
  22. umap/static/umap/img/alert-icon-info.svg +4 -0
  23. umap/static/umap/img/alert-icon-success.svg +3 -0
  24. umap/static/umap/img/icon-external-link.svg +3 -0
  25. umap/static/umap/img/importers/communesfr.svg +5 -0
  26. umap/static/umap/img/importers/datasets.svg +13 -0
  27. umap/static/umap/img/importers/geodatamine.svg +10 -0
  28. umap/static/umap/img/importers/overpass.svg +7 -0
  29. umap/static/umap/img/importers/random.svg +18 -0
  30. umap/static/umap/img/importers/random1.svg +4 -0
  31. umap/static/umap/img/importers/random2.svg +4 -0
  32. umap/static/umap/img/source/16-white.svg +2 -4
  33. umap/static/umap/js/components/alerts/alert.css +160 -0
  34. umap/static/umap/js/components/alerts/alert.js +169 -0
  35. umap/static/umap/js/components/base.js +54 -0
  36. umap/static/umap/js/modules/autocomplete.js +347 -0
  37. umap/static/umap/js/modules/browser.js +14 -21
  38. umap/static/umap/js/modules/caption.js +119 -0
  39. umap/static/umap/js/modules/global.js +37 -11
  40. umap/static/umap/js/modules/help.js +255 -0
  41. umap/static/umap/js/modules/importer.js +308 -0
  42. umap/static/umap/js/modules/importers/communesfr.js +44 -0
  43. umap/static/umap/js/modules/importers/datasets.js +42 -0
  44. umap/static/umap/js/modules/importers/geodatamine.js +95 -0
  45. umap/static/umap/js/modules/importers/overpass.js +84 -0
  46. umap/static/umap/js/modules/request.js +12 -14
  47. umap/static/umap/js/modules/rules.js +241 -0
  48. umap/static/umap/js/modules/schema.js +63 -14
  49. umap/static/umap/js/modules/sync/engine.js +93 -0
  50. umap/static/umap/js/modules/sync/updaters.js +109 -0
  51. umap/static/umap/js/modules/sync/websocket.js +25 -0
  52. umap/static/umap/js/modules/ui/dialog.js +52 -0
  53. umap/static/umap/js/modules/{panel.js → ui/panel.js} +37 -20
  54. umap/static/umap/js/modules/ui/tooltip.js +116 -0
  55. umap/static/umap/js/modules/utils.js +25 -18
  56. umap/static/umap/js/umap.controls.js +37 -112
  57. umap/static/umap/js/umap.core.js +1 -327
  58. umap/static/umap/js/umap.features.js +77 -29
  59. umap/static/umap/js/umap.forms.js +17 -19
  60. umap/static/umap/js/umap.js +265 -228
  61. umap/static/umap/js/umap.layer.js +154 -76
  62. umap/static/umap/js/umap.permissions.js +5 -9
  63. umap/static/umap/js/umap.popup.js +2 -1
  64. umap/static/umap/js/umap.tableeditor.js +8 -8
  65. umap/static/umap/locale/am_ET.js +51 -16
  66. umap/static/umap/locale/am_ET.json +51 -16
  67. umap/static/umap/locale/ar.js +51 -16
  68. umap/static/umap/locale/ar.json +51 -16
  69. umap/static/umap/locale/ast.js +51 -16
  70. umap/static/umap/locale/ast.json +51 -16
  71. umap/static/umap/locale/bg.js +51 -16
  72. umap/static/umap/locale/bg.json +51 -16
  73. umap/static/umap/locale/br.js +55 -20
  74. umap/static/umap/locale/br.json +55 -20
  75. umap/static/umap/locale/ca.js +51 -16
  76. umap/static/umap/locale/ca.json +51 -16
  77. umap/static/umap/locale/cs_CZ.js +93 -58
  78. umap/static/umap/locale/cs_CZ.json +93 -58
  79. umap/static/umap/locale/da.js +51 -16
  80. umap/static/umap/locale/da.json +51 -16
  81. umap/static/umap/locale/de.js +56 -21
  82. umap/static/umap/locale/de.json +56 -21
  83. umap/static/umap/locale/el.js +51 -16
  84. umap/static/umap/locale/el.json +51 -16
  85. umap/static/umap/locale/en.js +52 -16
  86. umap/static/umap/locale/en.json +52 -16
  87. umap/static/umap/locale/en_US.json +51 -16
  88. umap/static/umap/locale/es.js +51 -16
  89. umap/static/umap/locale/es.json +51 -16
  90. umap/static/umap/locale/et.js +51 -16
  91. umap/static/umap/locale/et.json +51 -16
  92. umap/static/umap/locale/eu.js +51 -16
  93. umap/static/umap/locale/eu.json +51 -16
  94. umap/static/umap/locale/fa_IR.js +51 -16
  95. umap/static/umap/locale/fa_IR.json +51 -16
  96. umap/static/umap/locale/fi.js +51 -16
  97. umap/static/umap/locale/fi.json +51 -16
  98. umap/static/umap/locale/fr.js +61 -25
  99. umap/static/umap/locale/fr.json +61 -25
  100. umap/static/umap/locale/gl.js +51 -16
  101. umap/static/umap/locale/gl.json +51 -16
  102. umap/static/umap/locale/he.js +51 -16
  103. umap/static/umap/locale/he.json +51 -16
  104. umap/static/umap/locale/hr.js +51 -16
  105. umap/static/umap/locale/hr.json +51 -16
  106. umap/static/umap/locale/hu.js +51 -16
  107. umap/static/umap/locale/hu.json +51 -16
  108. umap/static/umap/locale/id.js +51 -16
  109. umap/static/umap/locale/id.json +51 -16
  110. umap/static/umap/locale/is.js +51 -16
  111. umap/static/umap/locale/is.json +51 -16
  112. umap/static/umap/locale/it.js +51 -16
  113. umap/static/umap/locale/it.json +51 -16
  114. umap/static/umap/locale/ja.js +51 -16
  115. umap/static/umap/locale/ja.json +51 -16
  116. umap/static/umap/locale/ko.js +51 -16
  117. umap/static/umap/locale/ko.json +51 -16
  118. umap/static/umap/locale/lt.js +51 -16
  119. umap/static/umap/locale/lt.json +51 -16
  120. umap/static/umap/locale/ms.js +51 -16
  121. umap/static/umap/locale/ms.json +51 -16
  122. umap/static/umap/locale/nl.js +51 -16
  123. umap/static/umap/locale/nl.json +51 -16
  124. umap/static/umap/locale/no.js +51 -16
  125. umap/static/umap/locale/no.json +51 -16
  126. umap/static/umap/locale/pl.js +93 -58
  127. umap/static/umap/locale/pl.json +93 -58
  128. umap/static/umap/locale/pl_PL.json +51 -16
  129. umap/static/umap/locale/pt.js +215 -180
  130. umap/static/umap/locale/pt.json +215 -180
  131. umap/static/umap/locale/pt_BR.js +51 -16
  132. umap/static/umap/locale/pt_BR.json +51 -16
  133. umap/static/umap/locale/pt_PT.js +51 -16
  134. umap/static/umap/locale/pt_PT.json +51 -16
  135. umap/static/umap/locale/ro.js +51 -16
  136. umap/static/umap/locale/ro.json +51 -16
  137. umap/static/umap/locale/ru.js +51 -16
  138. umap/static/umap/locale/ru.json +51 -16
  139. umap/static/umap/locale/si.js +51 -16
  140. umap/static/umap/locale/si.json +51 -16
  141. umap/static/umap/locale/sk_SK.js +51 -16
  142. umap/static/umap/locale/sk_SK.json +51 -16
  143. umap/static/umap/locale/sl.js +51 -16
  144. umap/static/umap/locale/sl.json +51 -16
  145. umap/static/umap/locale/sr.js +51 -16
  146. umap/static/umap/locale/sr.json +51 -16
  147. umap/static/umap/locale/sv.js +51 -16
  148. umap/static/umap/locale/sv.json +51 -16
  149. umap/static/umap/locale/th_TH.js +51 -16
  150. umap/static/umap/locale/th_TH.json +51 -16
  151. umap/static/umap/locale/tr.js +51 -16
  152. umap/static/umap/locale/tr.json +51 -16
  153. umap/static/umap/locale/uk_UA.js +51 -16
  154. umap/static/umap/locale/uk_UA.json +51 -16
  155. umap/static/umap/locale/vi.js +51 -16
  156. umap/static/umap/locale/vi.json +51 -16
  157. umap/static/umap/locale/vi_VN.json +51 -16
  158. umap/static/umap/locale/zh.js +51 -16
  159. umap/static/umap/locale/zh.json +51 -16
  160. umap/static/umap/locale/zh_CN.json +51 -16
  161. umap/static/umap/locale/zh_TW.Big5.json +51 -16
  162. umap/static/umap/locale/zh_TW.js +51 -16
  163. umap/static/umap/locale/zh_TW.json +51 -16
  164. umap/static/umap/map.css +40 -53
  165. umap/static/umap/unittests/sync.js +105 -0
  166. umap/static/umap/unittests/utils.js +78 -36
  167. umap/static/umap/vars.css +19 -1
  168. umap/static/umap/vendors/dompurify/purify.es.js +50 -15
  169. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  170. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +2 -2
  171. umap/templates/umap/components/alerts/alert.html +89 -0
  172. umap/templates/umap/content.html +4 -3
  173. umap/templates/umap/css.html +4 -0
  174. umap/templates/umap/home.html +3 -0
  175. umap/templates/umap/js.html +0 -3
  176. umap/templates/umap/map_init.html +2 -8
  177. umap/templates/umap/messages.html +9 -11
  178. umap/templates/umap/search.html +3 -0
  179. umap/tests/base.py +3 -0
  180. umap/tests/integration/conftest.py +30 -0
  181. umap/tests/integration/test_anonymous_owned_map.py +8 -13
  182. umap/tests/integration/test_browser.py +81 -6
  183. umap/tests/integration/test_caption.py +27 -0
  184. umap/tests/integration/test_conditional_rules.py +201 -0
  185. umap/tests/integration/test_dashboard.py +1 -1
  186. umap/tests/integration/test_datalayer.py +2 -3
  187. umap/tests/integration/test_edit_datalayer.py +32 -3
  188. umap/tests/integration/test_edit_map.py +1 -1
  189. umap/tests/integration/test_facets_browser.py +7 -4
  190. umap/tests/integration/test_import.py +185 -49
  191. umap/tests/integration/test_map.py +31 -17
  192. umap/tests/integration/{test_collaborative_editing.py → test_optimistic_merge.py} +7 -7
  193. umap/tests/integration/test_owned_map.py +1 -1
  194. umap/tests/integration/test_picto.py +2 -2
  195. umap/tests/integration/test_statics.py +1 -1
  196. umap/tests/integration/test_view_marker.py +19 -2
  197. umap/tests/integration/test_websocket_sync.py +283 -0
  198. umap/tests/settings.py +5 -0
  199. umap/tests/test_datalayer_views.py +0 -1
  200. umap/tests/test_views.py +53 -0
  201. umap/urls.py +5 -0
  202. umap/views.py +40 -11
  203. umap/websocket_server.py +92 -0
  204. {umap_project-2.3.0.dist-info → umap_project-2.4.0.dist-info}/METADATA +13 -11
  205. {umap_project-2.3.0.dist-info → umap_project-2.4.0.dist-info}/RECORD +208 -172
  206. umap/static/umap/js/umap.autocomplete.js +0 -341
  207. umap/static/umap/js/umap.importer.js +0 -187
  208. umap/static/umap/js/umap.ui.js +0 -190
  209. {umap_project-2.3.0.dist-info → umap_project-2.4.0.dist-info}/WHEEL +0 -0
  210. {umap_project-2.3.0.dist-info → umap_project-2.4.0.dist-info}/entry_points.txt +0 -0
  211. {umap_project-2.3.0.dist-info → umap_project-2.4.0.dist-info}/licenses/LICENSE +0 -0
@@ -7,7 +7,7 @@
7
7
  # Daniel Koć <daniel@xn--ko-wla.pl>, 2015
8
8
  # endro, 2016
9
9
  # endro, 2015-2016
10
- # Krzysztof Chorzempa, 2023
10
+ # Krzysztof Chorzempa, 2023-2024
11
11
  # Maciej Kowalik <m.kowalik.79@gmail.com>, 2016
12
12
  # maro21 OSM, 2020-2021
13
13
  # Piotr Strębski <strebski@gmail.com>, 2020
@@ -17,9 +17,9 @@ msgid ""
17
17
  msgstr ""
18
18
  "Project-Id-Version: uMap\n"
19
19
  "Report-Msgid-Bugs-To: \n"
20
- "POT-Creation-Date: 2024-02-15 13:53+0000\n"
20
+ "POT-Creation-Date: 2024-04-24 19:16+0000\n"
21
21
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
22
- "Last-Translator: Bartosz Racławski <bartosz.raclawski@openstreetmap.pl>, 2023\n"
22
+ "Last-Translator: Krzysztof Chorzempa, 2023-2024\n"
23
23
  "Language-Team: Polish (http://app.transifex.com/openstreetmap/umap/language/pl/)\n"
24
24
  "MIME-Version: 1.0\n"
25
25
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -35,115 +35,115 @@ 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:371
38
+ #: forms.py:69 models.py:384
39
39
  msgid "Inherit"
40
- msgstr ""
40
+ msgstr "Odziedzicz"
41
41
 
42
42
  #: middleware.py:13
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:50
46
+ #: models.py:53
47
47
  msgid "name"
48
48
  msgstr "nazwa"
49
49
 
50
- #: models.py:81
50
+ #: models.py:84
51
51
  msgid "details"
52
52
  msgstr "szczegóły"
53
53
 
54
- #: models.py:82
54
+ #: models.py:85
55
55
  msgid "Link to a page where the licence is detailed."
56
56
  msgstr "Odnośnik do strony ze szczegółowym opisem licencji."
57
57
 
58
- #: models.py:92
58
+ #: models.py:95
59
59
  msgid "URL template using OSM tile format"
60
60
  msgstr "Szablon URL używający formatu kafelków OSM"
61
61
 
62
- #: models.py:98
62
+ #: models.py:101
63
63
  msgid "Order of the tilelayers in the edit box"
64
64
  msgstr "Kolejność podkładów w oknie edycji"
65
65
 
66
- #: models.py:144 models.py:372
66
+ #: models.py:147 models.py:385
67
67
  msgid "Everyone"
68
68
  msgstr "Każdy"
69
69
 
70
- #: models.py:145 models.py:151 models.py:373
70
+ #: models.py:148 models.py:154 models.py:386
71
71
  msgid "Editors only"
72
72
  msgstr "Tylko edytorzy"
73
73
 
74
- #: models.py:146 models.py:374
74
+ #: models.py:149 models.py:387
75
75
  msgid "Owner only"
76
76
  msgstr "Tylko właściciel"
77
77
 
78
- #: models.py:149
78
+ #: models.py:152
79
79
  msgid "Everyone (public)"
80
80
  msgstr "Każdy (publiczne)"
81
81
 
82
- #: models.py:150
82
+ #: models.py:153
83
83
  msgid "Anyone with link"
84
84
  msgstr "Każdy z linkiem"
85
85
 
86
- #: models.py:152
86
+ #: models.py:155
87
87
  msgid "Blocked"
88
88
  msgstr "Zablokowane"
89
89
 
90
- #: models.py:155 models.py:378
91
- msgid "description"
92
- msgstr "opis"
93
-
94
- #: models.py:156
90
+ #: models.py:158
95
91
  msgid "center"
96
92
  msgstr "środek"
97
93
 
98
- #: models.py:157
94
+ #: models.py:159
99
95
  msgid "zoom"
100
96
  msgstr "przybliżenie"
101
97
 
102
- #: models.py:159
98
+ #: models.py:161
103
99
  msgid "locate"
104
100
  msgstr "lokalizuj"
105
101
 
106
- #: models.py:159
102
+ #: models.py:161
107
103
  msgid "Locate user on load?"
108
104
  msgstr "Lokalizować użytkownika po załadowaniu?"
109
105
 
110
- #: models.py:163
106
+ #: models.py:165
111
107
  msgid "Choose the map licence."
112
108
  msgstr "Wybierz licencję mapy."
113
109
 
114
- #: models.py:164
110
+ #: models.py:166
115
111
  msgid "licence"
116
112
  msgstr "licencja"
117
113
 
118
- #: models.py:175
114
+ #: models.py:177
119
115
  msgid "owner"
120
116
  msgstr "właściciel"
121
117
 
122
- #: models.py:179
118
+ #: models.py:181
123
119
  msgid "editors"
124
120
  msgstr "edytorzy"
125
121
 
126
- #: models.py:184 models.py:392
122
+ #: models.py:186 models.py:408
127
123
  msgid "edit status"
128
124
  msgstr "status edycji"
129
125
 
130
- #: models.py:189
126
+ #: models.py:191
131
127
  msgid "share status"
132
128
  msgstr "udostępnij status"
133
129
 
134
- #: models.py:192 models.py:387
130
+ #: models.py:194 models.py:403
135
131
  msgid "settings"
136
132
  msgstr "ustawienia"
137
133
 
138
- #: models.py:320
134
+ #: models.py:325
139
135
  msgid "Clone of"
140
136
  msgstr "Kopia"
141
137
 
142
- #: models.py:382
138
+ #: models.py:394
139
+ msgid "description"
140
+ msgstr "opis"
141
+
142
+ #: models.py:398
143
143
  msgid "display on load"
144
144
  msgstr "wyświetl po załadowaniu"
145
145
 
146
- #: models.py:383
146
+ #: models.py:399
147
147
  msgid "Display this layer on load."
148
148
  msgstr "Wyświetl tę warstwę po załadowaniu."
149
149
 
@@ -163,7 +163,7 @@ msgstr "%(current_user)s nie posiada map."
163
163
 
164
164
  #: templates/auth/user_form.html:6
165
165
  msgid "My Maps"
166
- msgstr ""
166
+ msgstr "Moje Mapy"
167
167
 
168
168
  #: templates/auth/user_form.html:7
169
169
  msgid "My Profile"
@@ -299,7 +299,7 @@ msgstr "Zainspiruj się, przejrzyj mapy"
299
299
  msgid "You are logged in. Continuing..."
300
300
  msgstr "Jesteś zalogowany. Kontynuowanie..."
301
301
 
302
- #: templates/umap/map_list.html:9 views.py:341
302
+ #: templates/umap/map_list.html:9 views.py:349
303
303
  msgid "by"
304
304
  msgstr "przez"
305
305
 
@@ -313,15 +313,15 @@ msgstr "Nazwa"
313
313
 
314
314
  #: templates/umap/map_table.html:7
315
315
  msgid "Preview"
316
- msgstr ""
316
+ msgstr "Podgląd"
317
317
 
318
318
  #: templates/umap/map_table.html:8
319
319
  msgid "Who can see"
320
- msgstr ""
320
+ msgstr "Kto może zobaczyć"
321
321
 
322
322
  #: templates/umap/map_table.html:9
323
323
  msgid "Who can edit"
324
- msgstr ""
324
+ msgstr "Kto może edytować"
325
325
 
326
326
  #: templates/umap/map_table.html:10
327
327
  msgid "Last save"
@@ -335,60 +335,60 @@ msgstr "Właściciel"
335
335
  msgid "Actions"
336
336
  msgstr "Akcje"
337
337
 
338
- #: templates/umap/map_table.html:25 templates/umap/map_table.html:27
338
+ #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
339
339
  msgid "Open preview"
340
- msgstr ""
340
+ msgstr "Otwórz podgląd"
341
341
 
342
- #: templates/umap/map_table.html:46 templates/umap/map_table.html:48
342
+ #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
343
343
  msgid "Share"
344
344
  msgstr "Udostępnij"
345
345
 
346
- #: templates/umap/map_table.html:51 templates/umap/map_table.html:53
346
+ #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
347
347
  msgid "Edit"
348
348
  msgstr "Edytuj"
349
349
 
350
- #: templates/umap/map_table.html:56 templates/umap/map_table.html:58
350
+ #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
351
351
  msgid "Download"
352
352
  msgstr "Pobierz"
353
353
 
354
- #: templates/umap/map_table.html:63 templates/umap/map_table.html:65
354
+ #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
355
355
  msgid "Clone"
356
- msgstr ""
356
+ msgstr "Skopiuj"
357
357
 
358
- #: templates/umap/map_table.html:73 templates/umap/map_table.html:75
358
+ #: templates/umap/map_table.html:77 templates/umap/map_table.html:79
359
359
  msgid "Delete"
360
- msgstr ""
360
+ msgstr "Usuń"
361
361
 
362
- #: templates/umap/map_table.html:88
362
+ #: templates/umap/map_table.html:93
363
363
  msgid "first"
364
- msgstr ""
364
+ msgstr "pierwszy"
365
365
 
366
- #: templates/umap/map_table.html:89
366
+ #: templates/umap/map_table.html:94
367
367
  msgid "previous"
368
- msgstr ""
368
+ msgstr "poprzedni"
369
369
 
370
- #: templates/umap/map_table.html:98
370
+ #: templates/umap/map_table.html:102
371
371
  #, python-format
372
372
  msgid "Page %(maps_number)s of %(num_pages)s"
373
- msgstr ""
373
+ msgstr "Strona %(maps_number)s. z %(num_pages)s"
374
374
 
375
- #: templates/umap/map_table.html:104
375
+ #: templates/umap/map_table.html:107
376
376
  msgid "next"
377
377
  msgstr ""
378
378
 
379
- #: templates/umap/map_table.html:105
379
+ #: templates/umap/map_table.html:108
380
380
  msgid "last"
381
381
  msgstr ""
382
382
 
383
- #: templates/umap/map_table.html:113
383
+ #: templates/umap/map_table.html:116
384
384
  #, python-format
385
385
  msgid "Lines per page: %(per_page)s"
386
386
  msgstr ""
387
387
 
388
- #: templates/umap/map_table.html:118
388
+ #: templates/umap/map_table.html:121
389
389
  #, python-format
390
390
  msgid "%(count)s maps"
391
- msgstr ""
391
+ msgstr "%(count)s map"
392
392
 
393
393
  #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
394
394
  msgid "My Dashboard"
@@ -481,78 +481,83 @@ msgstr "Znajdź mapy"
481
481
  msgid "Search"
482
482
  msgstr "Szukaj"
483
483
 
484
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:26
484
+ #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
485
485
  msgid "Search my maps"
486
486
  msgstr "Przeszukaj moje mapy"
487
487
 
488
- #: templates/umap/user_dashboard.html:11
488
+ #: templates/umap/user_dashboard.html:10
489
489
  #, python-format
490
490
  msgid "My Maps (%(count)s)"
491
- msgstr ""
491
+ msgstr "Moje Mapy (%(count)s)"
492
492
 
493
- #: templates/umap/user_dashboard.html:13
493
+ #: templates/umap/user_dashboard.html:12
494
494
  msgid "My profile"
495
495
  msgstr "Mój profil"
496
496
 
497
- #: templates/umap/user_dashboard.html:21 templates/umap/user_dashboard.html:23
497
+ #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
498
498
  msgid "Map’s title"
499
- msgstr ""
499
+ msgstr "Nazwa mapy"
500
500
 
501
501
  #: templates/umap/user_dashboard.html:32
502
502
  #, python-format
503
503
  msgid "Download %(count)s maps"
504
- msgstr ""
504
+ msgstr "Pobierz %(count)s map"
505
505
 
506
506
  #: templates/umap/user_dashboard.html:42
507
507
  msgid "You have no map yet."
508
508
  msgstr "Nie masz jeszcze żadnej mapy."
509
509
 
510
- #: views.py:346
510
+ #: views.py:354
511
511
  msgid "View the map"
512
512
  msgstr "Zobacz mapę"
513
513
 
514
- #: views.py:704
514
+ #: views.py:716
515
515
  msgid "See full screen"
516
516
  msgstr ""
517
517
 
518
- #: views.py:803
518
+ #: views.py:817
519
519
  msgid "Map editors updated with success!"
520
520
  msgstr "Edytorzy mapy zaktualizowani pomyślnie!"
521
521
 
522
- #: views.py:841
522
+ #: views.py:854
523
523
  #, python-format
524
524
  msgid "The uMap edit link for your map: %(map_name)s"
525
525
  msgstr "Link uMap do edytowania twojej mapy: %(map_name)s"
526
526
 
527
- #: views.py:844
527
+ #: views.py:857
528
528
  #, python-format
529
529
  msgid "Here is your secret edit link: %(link)s"
530
530
  msgstr "Oto twój sekretny link do edycji: %(link)s"
531
531
 
532
- #: views.py:850
532
+ #: views.py:864
533
+ #, python-format
534
+ msgid "Can't send email to %(email)s"
535
+ msgstr "Nie można wysłać emaila do %(email)s"
536
+
537
+ #: views.py:867
533
538
  #, python-format
534
539
  msgid "Email sent to %(email)s"
535
540
  msgstr "Email wysłany do %(email)s"
536
541
 
537
- #: views.py:861
542
+ #: views.py:878
538
543
  msgid "Only its owner can delete the map."
539
544
  msgstr "Tylko właściciel może usunąć mapę."
540
545
 
541
- #: views.py:889
546
+ #: views.py:906
542
547
  #, python-format
543
548
  msgid ""
544
549
  "Your map has been cloned! If you want to edit this map from another "
545
550
  "computer, please use this link: %(anonymous_url)s"
546
551
  msgstr "Twoja mapa została skopiowana! Jeśli chcesz edytować ją z innego komputera, użyj odnośnika: %(anonymous_url)s"
547
552
 
548
- #: views.py:894
553
+ #: views.py:911
549
554
  msgid "Congratulations, your map has been cloned!"
550
555
  msgstr "Gratulacje, twoja mapa została skopiowana!"
551
556
 
552
- #: views.py:1130
557
+ #: views.py:1146
553
558
  msgid "Layer successfully deleted."
554
559
  msgstr "Warstwa usunięta pomyślnie."
555
560
 
556
- #: views.py:1152
561
+ #: views.py:1168
557
562
  msgid "Permissions updated with success!"
558
- msgstr ""
563
+ msgstr "Pomyślnie zaktualizowano uprawnienia!"
Binary file