umap-project 3.4.0b3__py3-none-any.whl → 3.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.
Files changed (222) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  3. umap/locale/br/LC_MESSAGES/django.po +71 -57
  4. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/da/LC_MESSAGES/django.po +18 -14
  6. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/de/LC_MESSAGES/django.po +20 -16
  8. umap/locale/en/LC_MESSAGES/django.po +18 -14
  9. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/es/LC_MESSAGES/django.po +20 -16
  11. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/fr/LC_MESSAGES/django.po +18 -14
  13. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/hu/LC_MESSAGES/django.po +20 -16
  15. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/pl/LC_MESSAGES/django.po +101 -95
  17. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/zh_TW/LC_MESSAGES/django.po +20 -16
  19. umap/management/commands/clean_tilelayer.py +0 -1
  20. umap/management/commands/search_maps.py +95 -0
  21. umap/settings/__init__.py +9 -1
  22. umap/settings/base.py +7 -6
  23. umap/static/umap/content.css +0 -3
  24. umap/static/umap/css/bar.css +9 -6
  25. umap/static/umap/css/form.css +25 -9
  26. umap/static/umap/css/icon.css +8 -0
  27. umap/static/umap/css/popup.css +1 -0
  28. umap/static/umap/img/16-white.svg +5 -2
  29. umap/static/umap/img/16.svg +1 -1
  30. umap/static/umap/img/source/16-white.svg +7 -4
  31. umap/static/umap/img/source/16.svg +1 -1
  32. umap/static/umap/js/components/copiable.js +47 -0
  33. umap/static/umap/js/modules/autocomplete.js +32 -67
  34. umap/static/umap/js/modules/browser.js +31 -14
  35. umap/static/umap/js/modules/data/features.js +34 -36
  36. umap/static/umap/js/modules/data/fields.js +199 -23
  37. umap/static/umap/js/modules/data/layer.js +85 -96
  38. umap/static/umap/js/modules/domutils.js +25 -1
  39. umap/static/umap/js/modules/filters.js +24 -50
  40. umap/static/umap/js/modules/form/builder.js +17 -16
  41. umap/static/umap/js/modules/form/fields.js +20 -20
  42. umap/static/umap/js/modules/formatter.js +9 -1
  43. umap/static/umap/js/modules/help.js +12 -13
  44. umap/static/umap/js/modules/importer.js +17 -26
  45. umap/static/umap/js/modules/importers/banfr.js +0 -1
  46. umap/static/umap/js/modules/importers/cadastrefr.js +19 -19
  47. umap/static/umap/js/modules/importers/communesfr.js +7 -8
  48. umap/static/umap/js/modules/importers/datasets.js +14 -14
  49. umap/static/umap/js/modules/importers/geodatamine.js +20 -22
  50. umap/static/umap/js/modules/importers/opendata.js +10 -0
  51. umap/static/umap/js/modules/importers/overpass.js +19 -18
  52. umap/static/umap/js/modules/managers.js +1 -1
  53. umap/static/umap/js/modules/permissions.js +15 -5
  54. umap/static/umap/js/modules/rendering/controls.js +203 -10
  55. umap/static/umap/js/modules/rendering/icon.js +5 -9
  56. umap/static/umap/js/modules/rendering/layers/base.js +1 -1
  57. umap/static/umap/js/modules/rendering/layers/classified.js +16 -11
  58. umap/static/umap/js/modules/rendering/layers/heat.js +1 -0
  59. umap/static/umap/js/modules/rendering/map.js +67 -57
  60. umap/static/umap/js/modules/rendering/popup.js +6 -3
  61. umap/static/umap/js/modules/rendering/template.js +40 -40
  62. umap/static/umap/js/modules/rendering/ui.js +1 -2
  63. umap/static/umap/js/modules/rules.js +34 -41
  64. umap/static/umap/js/modules/schema.js +0 -7
  65. umap/static/umap/js/modules/share.js +36 -69
  66. umap/static/umap/js/modules/slideshow.js +3 -3
  67. umap/static/umap/js/modules/tableeditor.js +0 -1
  68. umap/static/umap/js/modules/ui/bar.js +53 -33
  69. umap/static/umap/js/modules/ui/hash.js +36 -0
  70. umap/static/umap/js/modules/ui/loader.js +26 -0
  71. umap/static/umap/js/modules/ui/panel.js +33 -21
  72. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  73. umap/static/umap/js/modules/umap.js +81 -80
  74. umap/static/umap/js/modules/utils.js +13 -3
  75. umap/static/umap/js/umap.controls.js +16 -179
  76. umap/static/umap/locale/am_ET.js +7 -8
  77. umap/static/umap/locale/am_ET.json +7 -8
  78. umap/static/umap/locale/ar.js +7 -8
  79. umap/static/umap/locale/ar.json +7 -8
  80. umap/static/umap/locale/ast.js +7 -8
  81. umap/static/umap/locale/ast.json +7 -8
  82. umap/static/umap/locale/bg.js +7 -8
  83. umap/static/umap/locale/bg.json +7 -8
  84. umap/static/umap/locale/br.js +44 -36
  85. umap/static/umap/locale/br.json +44 -36
  86. umap/static/umap/locale/ca.js +7 -8
  87. umap/static/umap/locale/ca.json +7 -8
  88. umap/static/umap/locale/cs_CZ.js +7 -8
  89. umap/static/umap/locale/cs_CZ.json +7 -8
  90. umap/static/umap/locale/da.js +8 -9
  91. umap/static/umap/locale/da.json +8 -9
  92. umap/static/umap/locale/de.js +62 -63
  93. umap/static/umap/locale/de.json +62 -63
  94. umap/static/umap/locale/el.js +7 -8
  95. umap/static/umap/locale/el.json +7 -8
  96. umap/static/umap/locale/en.js +7 -8
  97. umap/static/umap/locale/en.json +7 -8
  98. umap/static/umap/locale/en_US.json +7 -8
  99. umap/static/umap/locale/es.js +19 -20
  100. umap/static/umap/locale/es.json +19 -20
  101. umap/static/umap/locale/et.js +7 -8
  102. umap/static/umap/locale/et.json +7 -8
  103. umap/static/umap/locale/eu.js +23 -24
  104. umap/static/umap/locale/eu.json +23 -24
  105. umap/static/umap/locale/fa_IR.js +7 -8
  106. umap/static/umap/locale/fa_IR.json +7 -8
  107. umap/static/umap/locale/fi.js +7 -8
  108. umap/static/umap/locale/fi.json +7 -8
  109. umap/static/umap/locale/fr.js +11 -12
  110. umap/static/umap/locale/fr.json +11 -12
  111. umap/static/umap/locale/gl.js +147 -148
  112. umap/static/umap/locale/gl.json +147 -148
  113. umap/static/umap/locale/he.js +7 -8
  114. umap/static/umap/locale/he.json +7 -8
  115. umap/static/umap/locale/hr.js +7 -8
  116. umap/static/umap/locale/hr.json +7 -8
  117. umap/static/umap/locale/hu.js +8 -9
  118. umap/static/umap/locale/hu.json +8 -9
  119. umap/static/umap/locale/id.js +7 -8
  120. umap/static/umap/locale/id.json +7 -8
  121. umap/static/umap/locale/is.js +7 -8
  122. umap/static/umap/locale/is.json +7 -8
  123. umap/static/umap/locale/it.js +7 -8
  124. umap/static/umap/locale/it.json +7 -8
  125. umap/static/umap/locale/ja.js +7 -8
  126. umap/static/umap/locale/ja.json +7 -8
  127. umap/static/umap/locale/ko.js +7 -8
  128. umap/static/umap/locale/ko.json +7 -8
  129. umap/static/umap/locale/lt.js +7 -8
  130. umap/static/umap/locale/lt.json +7 -8
  131. umap/static/umap/locale/ms.js +7 -8
  132. umap/static/umap/locale/ms.json +7 -8
  133. umap/static/umap/locale/nl.js +7 -8
  134. umap/static/umap/locale/nl.json +7 -8
  135. umap/static/umap/locale/no.js +7 -8
  136. umap/static/umap/locale/no.json +7 -8
  137. umap/static/umap/locale/pl.js +53 -54
  138. umap/static/umap/locale/pl.json +53 -54
  139. umap/static/umap/locale/pl_PL.json +7 -8
  140. umap/static/umap/locale/pt.js +7 -8
  141. umap/static/umap/locale/pt.json +7 -8
  142. umap/static/umap/locale/pt_BR.js +7 -8
  143. umap/static/umap/locale/pt_BR.json +7 -8
  144. umap/static/umap/locale/pt_PT.js +7 -8
  145. umap/static/umap/locale/pt_PT.json +7 -8
  146. umap/static/umap/locale/ro.js +7 -8
  147. umap/static/umap/locale/ro.json +7 -8
  148. umap/static/umap/locale/ru.js +7 -8
  149. umap/static/umap/locale/ru.json +7 -8
  150. umap/static/umap/locale/sk_SK.js +7 -8
  151. umap/static/umap/locale/sk_SK.json +7 -8
  152. umap/static/umap/locale/sl.js +7 -8
  153. umap/static/umap/locale/sl.json +7 -8
  154. umap/static/umap/locale/sr.js +7 -8
  155. umap/static/umap/locale/sr.json +7 -8
  156. umap/static/umap/locale/sv.js +7 -8
  157. umap/static/umap/locale/sv.json +7 -8
  158. umap/static/umap/locale/th_TH.js +7 -8
  159. umap/static/umap/locale/th_TH.json +7 -8
  160. umap/static/umap/locale/tr.js +7 -8
  161. umap/static/umap/locale/tr.json +7 -8
  162. umap/static/umap/locale/uk_UA.js +7 -8
  163. umap/static/umap/locale/uk_UA.json +7 -8
  164. umap/static/umap/locale/vi.js +7 -8
  165. umap/static/umap/locale/vi.json +7 -8
  166. umap/static/umap/locale/vi_VN.json +7 -8
  167. umap/static/umap/locale/zh.js +7 -8
  168. umap/static/umap/locale/zh.json +7 -8
  169. umap/static/umap/locale/zh_CN.json +7 -8
  170. umap/static/umap/locale/zh_TW.Big5.json +7 -8
  171. umap/static/umap/locale/zh_TW.js +20 -21
  172. umap/static/umap/locale/zh_TW.json +20 -21
  173. umap/static/umap/map.css +6 -21
  174. umap/static/umap/unittests/utils.js +7 -7
  175. umap/static/umap/vendors/locatecontrol/L.Control.Locate.esm.js +942 -0
  176. umap/static/umap/vendors/photon/leaflet.photon.esm.js +472 -0
  177. umap/sync/app.py +4 -1
  178. umap/templates/umap/content_footer.html +1 -0
  179. umap/templates/umap/css.html +0 -4
  180. umap/templates/umap/js.html +1 -8
  181. umap/templates/umap/team_form.html +2 -1
  182. umap/tests/integration/conftest.py +3 -2
  183. umap/tests/integration/test_anonymous_owned_map.py +1 -1
  184. umap/tests/integration/test_conditional_rules.py +106 -51
  185. umap/tests/integration/test_draw_polygon.py +4 -0
  186. umap/tests/integration/test_draw_polyline.py +11 -0
  187. umap/tests/integration/test_edit_datalayer.py +1 -1
  188. umap/tests/integration/test_edit_map.py +2 -0
  189. umap/tests/integration/test_fields.py +19 -0
  190. umap/tests/integration/test_filters.py +24 -0
  191. umap/tests/integration/test_iframe.py +1 -1
  192. umap/tests/integration/test_import.py +26 -0
  193. umap/tests/integration/test_map.py +3 -3
  194. umap/tests/integration/test_optimistic_merge.py +7 -1
  195. umap/tests/integration/test_owned_map.py +2 -2
  196. umap/tests/integration/test_popup.py +31 -0
  197. umap/tests/integration/test_remote_data.py +5 -5
  198. umap/tests/integration/test_search.py +41 -0
  199. umap/tests/integration/test_share.py +2 -2
  200. umap/tests/integration/test_team.py +1 -1
  201. umap/tests/integration/test_websocket_sync.py +6 -1
  202. umap/tests/test_search_maps_command.py +44 -0
  203. umap/tests/test_utils.py +4 -1
  204. umap/utils.py +10 -3
  205. umap/views.py +17 -4
  206. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/METADATA +29 -23
  207. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/RECORD +210 -214
  208. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/WHEEL +1 -1
  209. umap/static/umap/js/umap.core.js +0 -93
  210. umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -46
  211. umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -240
  212. umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
  213. umap/static/umap/vendors/hash/leaflet-hash.js +0 -162
  214. umap/static/umap/vendors/loading/Control.Loading.css +0 -26
  215. umap/static/umap/vendors/loading/Control.Loading.js +0 -351
  216. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -1
  217. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -1
  218. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +0 -4
  219. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +0 -1
  220. umap/static/umap/vendors/photon/leaflet.photon.js +0 -487
  221. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/entry_points.txt +0 -0
  222. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -10,6 +10,8 @@
10
10
  # Krzysztof Chorzempa, 2023-2024
11
11
  # Maciej Kowalik <m.kowalik.79@gmail.com>, 2016
12
12
  # maro21 OSM, 2020-2021
13
+ # Piotr Deres, 2025
14
+ # Piotr Strebski <strebski@gmail.com>, 2020
13
15
  # Piotr Strebski <strebski@gmail.com>, 2020
14
16
  # Teiron, 2016
15
17
  # Tomasz Nycz <tomasz.merkato@gmail.com>, 2018
@@ -17,9 +19,9 @@ msgid ""
17
19
  msgstr ""
18
20
  "Project-Id-Version: uMap\n"
19
21
  "Report-Msgid-Bugs-To: \n"
20
- "POT-Creation-Date: 2025-10-14 15:28+0000\n"
22
+ "POT-Creation-Date: 2025-11-24 14:49+0000\n"
21
23
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
22
- "Last-Translator: Krzysztof Chorzempa, 2023-2024\n"
24
+ "Last-Translator: Piotr Deres, 2025\n"
23
25
  "Language-Team: Polish (http://app.transifex.com/openstreetmap/umap/language/pl/)\n"
24
26
  "MIME-Version: 1.0\n"
25
27
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -29,11 +31,11 @@ msgstr ""
29
31
 
30
32
  #: admin.py:16
31
33
  msgid "CSV Export"
32
- msgstr ""
34
+ msgstr "Eksport CSV"
33
35
 
34
36
  #: decorators.py:60
35
37
  msgid "This map is not publicly available"
36
- msgstr ""
38
+ msgstr "Ta mapa nie jest dostępna publicznie"
37
39
 
38
40
  #: middleware.py:19
39
41
  msgid "Site is readonly for maintenance"
@@ -45,13 +47,13 @@ msgid ""
45
47
  "Using “%(name)s” to authenticate is deprecated and will be removed soon. "
46
48
  "Please configure another provider below before losing access to your account"
47
49
  " and maps. Then, please logout and login again with the new provider."
48
- msgstr ""
50
+ msgstr "Uwierzytelnianie przy pomocy „%(name)s” jest przestarzałe i wkrótce zostanie usunięte. Skonfiguruj innego dostawcę, zanim utracisz dostęp do konta i map. Następnie wyloguj się i zaloguj ponownie, używając nowego dostawcy."
49
51
 
50
52
  #: models.py:61 models.py:80
51
53
  msgid "name"
52
54
  msgstr "nazwa"
53
55
 
54
- #: models.py:63 models.py:503
56
+ #: models.py:63 models.py:507
55
57
  msgid "description"
56
58
  msgstr "opis"
57
59
 
@@ -71,29 +73,29 @@ msgstr "Szablon URL używający formatu kafelków OSM"
71
73
  msgid "Order of the tilelayers in the edit box"
72
74
  msgstr "Kolejność podkładów w oknie edycji"
73
75
 
74
- #: models.py:176 models.py:497
76
+ #: models.py:176 models.py:501
75
77
  msgid "Only editable with secret edit link"
76
78
  msgstr "Edycja możliwa tylko z sekretnym odnośnikiem"
77
79
 
78
- #: models.py:177 models.py:498
80
+ #: models.py:177 models.py:502
79
81
  msgid "Everyone can edit"
80
82
  msgstr "Wszyscy mogą edytować"
81
83
 
82
- #: models.py:180 models.py:491
84
+ #: models.py:180 models.py:495
83
85
  msgid "Everyone"
84
86
  msgstr "Każdy"
85
87
 
86
- #: models.py:181 models.py:190 models.py:492
88
+ #: models.py:181 models.py:190 models.py:496
87
89
  msgid "Editors and team only"
88
- msgstr ""
90
+ msgstr "Tylko edytorzy i zespół"
89
91
 
90
- #: models.py:182 models.py:493
92
+ #: models.py:182 models.py:497
91
93
  msgid "Owner only"
92
94
  msgstr "Tylko właściciel"
93
95
 
94
96
  #: models.py:185
95
97
  msgid "Draft (private)"
96
- msgstr ""
98
+ msgstr "Szkic (prywatnie)"
97
99
 
98
100
  #: models.py:186
99
101
  msgid "Everyone (public)"
@@ -107,9 +109,9 @@ msgstr "Każdy z linkiem"
107
109
  msgid "Blocked"
108
110
  msgstr "Zablokowane"
109
111
 
110
- #: models.py:192 models.py:487
112
+ #: models.py:192 models.py:491
111
113
  msgid "Deleted"
112
- msgstr ""
114
+ msgstr "Usunięto"
113
115
 
114
116
  #: models.py:195
115
117
  msgid "center"
@@ -145,147 +147,147 @@ msgstr "edytorzy"
145
147
 
146
148
  #: models.py:224
147
149
  msgid "team"
148
- msgstr ""
150
+ msgstr "zespół"
149
151
 
150
- #: models.py:230 models.py:519
152
+ #: models.py:230 models.py:523
151
153
  msgid "edit status"
152
154
  msgstr "status edycji"
153
155
 
154
- #: models.py:235 models.py:524
156
+ #: models.py:235 models.py:528
155
157
  msgid "share status"
156
158
  msgstr "udostępnij status"
157
159
 
158
- #: models.py:238 models.py:514
160
+ #: models.py:238 models.py:518
159
161
  msgid "settings"
160
162
  msgstr "ustawienia"
161
163
 
162
164
  #: models.py:243
163
165
  msgid "save as template"
164
- msgstr ""
166
+ msgstr "zapisz jako szablon"
165
167
 
166
168
  #: models.py:244
167
169
  msgid "This map is a template map."
168
- msgstr ""
170
+ msgstr "Ta mapa jest szablonem"
169
171
 
170
172
  #: models.py:420
171
173
  msgid "Clone of"
172
174
  msgstr "Kopia"
173
175
 
174
- #: models.py:486 models.py:490 models.py:496
176
+ #: models.py:490 models.py:494 models.py:500
175
177
  msgid "Inherit"
176
178
  msgstr "Odziedzicz"
177
179
 
178
- #: models.py:509
180
+ #: models.py:513
179
181
  msgid "display on load"
180
182
  msgstr "wyświetl po załadowaniu"
181
183
 
182
- #: models.py:510
184
+ #: models.py:514
183
185
  msgid "Display this layer on load."
184
186
  msgstr "Wyświetl tę warstwę po załadowaniu."
185
187
 
186
188
  #: settings/base.py:283
187
189
  msgid "uMap user documentation"
188
- msgstr ""
190
+ msgstr "Dokumentacja użytkownika uMap"
189
191
 
190
192
  #: settings/base.py:288
191
193
  msgid "Video tutorials"
192
- msgstr ""
194
+ msgstr "Poradniki wideo"
193
195
 
194
196
  #: settings/base.py:293
195
197
  msgid "OpenStreetMap.org forum"
196
- msgstr ""
198
+ msgstr "Forum OpenStreetMap.org"
197
199
 
198
200
  #: settings/base.py:298
199
201
  msgid "OpenStreetMap France forum"
200
- msgstr ""
202
+ msgstr "Forum OpenStreetMap France"
201
203
 
202
204
  #: settings/base.py:318
203
205
  msgid "Art and Culture"
204
- msgstr ""
206
+ msgstr "Sztuka i Kultura"
205
207
 
206
208
  #: settings/base.py:319
207
209
  msgid "Cycling"
208
- msgstr ""
210
+ msgstr "Kolarstwo"
209
211
 
210
212
  #: settings/base.py:320
211
213
  msgid "Business"
212
- msgstr ""
214
+ msgstr "Biznes"
213
215
 
214
216
  #: settings/base.py:321
215
217
  msgid "Environment"
216
- msgstr ""
218
+ msgstr "Środowisko"
217
219
 
218
220
  #: settings/base.py:322
219
221
  msgid "Education"
220
- msgstr ""
222
+ msgstr "Edukacja"
221
223
 
222
224
  #: settings/base.py:323
223
225
  msgid "Food and Agriculture"
224
- msgstr ""
226
+ msgstr "Żywność i rolnictwo"
225
227
 
226
228
  #: settings/base.py:324
227
229
  msgid "Geopolitics"
228
- msgstr ""
230
+ msgstr "Geopolityka"
229
231
 
230
232
  #: settings/base.py:325
231
233
  msgid "Health"
232
- msgstr ""
234
+ msgstr "Zdrowie"
233
235
 
234
236
  #: settings/base.py:326
235
237
  msgid "Hiking"
236
- msgstr ""
238
+ msgstr "Piesze wędrówki"
237
239
 
238
240
  #: settings/base.py:327
239
241
  msgid "History"
240
- msgstr ""
242
+ msgstr "Historia"
241
243
 
242
244
  #: settings/base.py:328
243
245
  msgid "Public sector"
244
- msgstr ""
246
+ msgstr "Sektor publiczny"
245
247
 
246
248
  #: settings/base.py:329
247
249
  msgid "Science"
248
- msgstr ""
250
+ msgstr "Nauka"
249
251
 
250
252
  #: settings/base.py:330
251
253
  msgid "Shopping"
252
- msgstr ""
254
+ msgstr "Zakupy"
253
255
 
254
256
  #: settings/base.py:331
255
257
  msgid "Sport and Leisure"
256
- msgstr ""
258
+ msgstr "Sport i wypoczynek"
257
259
 
258
260
  #: settings/base.py:332
259
261
  msgid "Travel"
260
- msgstr ""
262
+ msgstr "Podróż"
261
263
 
262
264
  #: settings/base.py:333
263
265
  msgid "Transports"
264
- msgstr ""
266
+ msgstr "Transport"
265
267
 
266
268
  #: settings/base.py:334
267
269
  msgid "Tourism"
268
- msgstr ""
270
+ msgstr "Turystyka"
269
271
 
270
272
  #: templates/403.html:8
271
273
  msgid ""
272
274
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
273
275
  "target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
274
276
  " permissions."
275
- msgstr ""
277
+ msgstr "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" target=\"_blank\">Tutaj znajdziesz dokumentację</a>, jak zarządzać uprawnieniami mapy."
276
278
 
277
279
  #: templates/403.html:10 templates/404.html:8
278
280
  msgid "← Go to the homepage"
279
- msgstr ""
281
+ msgstr "← Idź do strony głównej"
280
282
 
281
283
  #: templates/404.html:7
282
284
  msgid "404 Page Not Found"
283
- msgstr ""
285
+ msgstr "404 nie znaleziono strony"
284
286
 
285
287
  #: templates/auth/user_detail.html:6
286
288
  #, python-format
287
289
  msgid "%(current_user)s’s maps"
288
- msgstr ""
290
+ msgstr "Mapy %(current_user)s"
289
291
 
290
292
  #: templates/auth/user_detail.html:12
291
293
  #, python-format
@@ -299,7 +301,7 @@ msgstr "%(current_user)s nie posiada map."
299
301
 
300
302
  #: templates/auth/user_form.html:6
301
303
  msgid "My Profile"
302
- msgstr ""
304
+ msgstr "Mój Profil"
303
305
 
304
306
  #: templates/auth/user_form.html:24 templates/umap/team_form.html:25
305
307
  msgid "Save"
@@ -307,22 +309,22 @@ msgstr "Zapisz"
307
309
 
308
310
  #: templates/auth/user_form.html:30
309
311
  msgid "Your current providers"
310
- msgstr ""
312
+ msgstr "Twoi obecni dostawcy"
311
313
 
312
314
  #: templates/auth/user_form.html:44
313
315
  msgid "Connect to another provider"
314
- msgstr ""
316
+ msgstr "Połącz się z innym dostawcą"
315
317
 
316
318
  #: templates/auth/user_form.html:47
317
319
  msgid ""
318
320
  "It's a good habit to connect your account to more than one provider, in case"
319
321
  " one provider becomes unavailable, temporarily or even permanently."
320
- msgstr ""
322
+ msgstr "Dobrym nawykiem jest połączenie Twojego konta z więcej niż jednym dostawcą, na wypadek gdyby jeden z nich stał się niedostępny, tymczasowo lub nawet na stałe."
321
323
 
322
324
  #: templates/auth/user_stars.html:6
323
325
  #, python-format
324
326
  msgid "%(current_user)s’s starred maps"
325
- msgstr ""
327
+ msgstr "Mapy oznaczone gwiazdką użytkownika %(current_user)s"
326
328
 
327
329
  #: templates/auth/user_stars.html:12
328
330
  #, python-format
@@ -346,11 +348,11 @@ msgstr "Zaloguj się"
346
348
 
347
349
  #: templates/registration/login.html:22
348
350
  msgid "To save and easily find your maps, identify yourself."
349
- msgstr ""
351
+ msgstr "Aby zapisać i łatwo odnaleźć swoje mapy, zidentyfikuj się."
350
352
 
351
353
  #: templates/registration/login.html:25
352
354
  msgid "Please log in with your account:"
353
- msgstr ""
355
+ msgstr "Zaloguj się przy pomocy swojego konta:"
354
356
 
355
357
  #: templates/registration/login.html:42
356
358
  msgid "Username"
@@ -362,7 +364,7 @@ msgstr "Hasło"
362
364
 
363
365
  #: templates/registration/login.html:52
364
366
  msgid "Please choose a provider:"
365
- msgstr ""
367
+ msgstr "Wybierz dostawcę:"
366
368
 
367
369
  #: templates/umap/about.html:5 templates/umap/navigation.html:22
368
370
  msgid "About"
@@ -429,17 +431,17 @@ msgid ""
429
431
  "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
430
432
  "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
431
433
  "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
432
- msgstr ""
434
+ msgstr " Ups, nie to miałem na myśli. Chcę <a href=\"%(login_url)s\" class=\"login\">utworzyć konto</a> lub <a href=\"%(login_url)s\" class=\"login\">zalogować się</a> (nie martw się, dodamy mapę do Twojego konta)."
433
435
 
434
436
  #: templates/umap/components/alerts/alert.html:35
435
437
  msgid ""
436
438
  "Yes, I want to continue editing anonymously, I will save the secret edit "
437
439
  "link to be able to edit this map later or on another device"
438
- msgstr ""
440
+ msgstr "Tak, chcę kontynuować edycję anonimowo. Zachowam tajny link do edycji, aby móc edytować tę mapę później lub na innym urządzeniu."
439
441
 
440
442
  #: templates/umap/components/alerts/alert.html:39
441
443
  msgid "Here is your secret link to edit the map, please keep it safe:"
442
- msgstr ""
444
+ msgstr "To jest tajny link, który umożliwia edycję mapy. Zachowaj go w bezpiecznym miejscu:"
443
445
 
444
446
  #: templates/umap/components/alerts/alert.html:43
445
447
  msgid "Copy link"
@@ -486,24 +488,28 @@ msgstr "To jest serwer demonstracyjny, używany do testów i niefinalnych wydań
486
488
 
487
489
  #: templates/umap/content_footer.html:5
488
490
  msgid "An OpenStreetMap project"
489
- msgstr ""
491
+ msgstr "Projekt OpenStreetMap"
490
492
 
491
493
  #: templates/umap/content_footer.html:6
492
494
  msgid "version"
493
- msgstr ""
495
+ msgstr "wersja"
494
496
 
495
497
  #: templates/umap/content_footer.html:7
496
498
  msgid "Hosted by"
497
- msgstr ""
499
+ msgstr "Prowadzone przez"
498
500
 
499
501
  #: templates/umap/content_footer.html:8
500
502
  msgid "Contact"
501
- msgstr ""
503
+ msgstr "Kontakt"
502
504
 
503
505
  #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
504
506
  msgid "Help"
505
507
  msgstr "Pomoc"
506
508
 
509
+ #: templates/umap/content_footer.html:10
510
+ msgid "Terms of Service"
511
+ msgstr "Regulamin"
512
+
507
513
  #: templates/umap/dashboard_menu.html:6
508
514
  #, python-format
509
515
  msgid "My Maps (%(count)s)"
@@ -516,11 +522,11 @@ msgstr "Moje Mapy"
516
522
  #: templates/umap/dashboard_menu.html:11
517
523
  #, python-format
518
524
  msgid "My Templates (%(count)s)"
519
- msgstr ""
525
+ msgstr "Moje szablony (%(count)s)"
520
526
 
521
527
  #: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
522
528
  msgid "My Templates"
523
- msgstr ""
529
+ msgstr "Moje szablony"
524
530
 
525
531
  #: templates/umap/dashboard_menu.html:17
526
532
  msgid "My profile"
@@ -528,7 +534,7 @@ msgstr "Mój profil"
528
534
 
529
535
  #: templates/umap/dashboard_menu.html:20
530
536
  msgid "My teams"
531
- msgstr ""
537
+ msgstr "Moje zespoły"
532
538
 
533
539
  #: templates/umap/home.html:14
534
540
  msgid "Map of the uMaps"
@@ -544,7 +550,7 @@ msgstr "Jesteś zalogowany. Kontynuowanie..."
544
550
 
545
551
  #: templates/umap/map_list.html:15
546
552
  msgid "template"
547
- msgstr ""
553
+ msgstr "szablon"
548
554
 
549
555
  #: templates/umap/map_list.html:18 views.py:459
550
556
  msgid "by"
@@ -552,11 +558,11 @@ msgstr "przez"
552
558
 
553
559
  #: templates/umap/map_list.html:22
554
560
  msgid "See the template"
555
- msgstr ""
561
+ msgstr "Zobacz szablon"
556
562
 
557
563
  #: templates/umap/map_list.html:22
558
564
  msgid "See the map"
559
- msgstr ""
565
+ msgstr "Zobacz mapę"
560
566
 
561
567
  #: templates/umap/map_list.html:28
562
568
  msgid "More"
@@ -639,7 +645,7 @@ msgstr "ostatni"
639
645
  #: templates/umap/map_table.html:140
640
646
  #, python-format
641
647
  msgid "Lines per page: %(per_page)s"
642
- msgstr ""
648
+ msgstr "Linijek na stronę: %(per_page)s"
643
649
 
644
650
  #: templates/umap/map_table.html:145
645
651
  #, python-format
@@ -708,7 +714,7 @@ msgstr "Twoje hasło zostało zmienione."
708
714
 
709
715
  #: templates/umap/search.html:6
710
716
  msgid "Explore maps"
711
- msgstr ""
717
+ msgstr "Przeglądaj mapy"
712
718
 
713
719
  #: templates/umap/search.html:19
714
720
  #, python-format
@@ -725,7 +731,7 @@ msgstr "Nie znaleziono mapy."
725
731
 
726
732
  #: templates/umap/search.html:36
727
733
  msgid "Latest created maps in category"
728
- msgstr ""
734
+ msgstr "Ostatnio utworzone mapy w kategorii"
729
735
 
730
736
  #: templates/umap/search.html:43
731
737
  msgid "Latest created maps"
@@ -737,7 +743,7 @@ msgstr "Znajdź mapy"
737
743
 
738
744
  #: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
739
745
  msgid "Any category"
740
- msgstr ""
746
+ msgstr "Dowolna kategoria"
741
747
 
742
748
  #: templates/umap/search_bar.html:19
743
749
  msgid "Search"
@@ -745,34 +751,34 @@ msgstr "Szukaj"
745
751
 
746
752
  #: templates/umap/team_confirm_delete.html:6
747
753
  msgid "Team deletion"
748
- msgstr ""
754
+ msgstr "Usunięcie zespołu"
749
755
 
750
756
  #: templates/umap/team_detail.html:6
751
757
  #, python-format
752
758
  msgid "%(current_team)s’s maps"
753
- msgstr ""
759
+ msgstr "Mapy zespołu %(current_team)s"
754
760
 
755
761
  #: templates/umap/team_detail.html:14
756
762
  #, python-format
757
763
  msgid "Browse %(current_team)s's maps"
758
- msgstr ""
764
+ msgstr "Przeglądaj mapy zespołu %(current_team)s"
759
765
 
760
766
  #: templates/umap/team_detail.html:26
761
767
  #, python-format
762
768
  msgid "%(current_team)s has no public maps."
763
- msgstr ""
769
+ msgstr "Zespół %(current_team)s nie ma map publicznych"
764
770
 
765
771
  #: templates/umap/team_form.html:6
766
772
  msgid "Create or edit a team"
767
- msgstr ""
773
+ msgstr "Utwórz lub edytuj zespół"
768
774
 
769
775
  #: templates/umap/team_form.html:28
770
776
  msgid "Delete this team"
771
- msgstr ""
777
+ msgstr "Usuń ten zespół"
772
778
 
773
779
  #: templates/umap/team_form.html:51
774
780
  msgid "Add user"
775
- msgstr ""
781
+ msgstr "Dodaj użytkownika"
776
782
 
777
783
  #: templates/umap/user_dashboard.html:10
778
784
  msgid "Search my maps"
@@ -780,7 +786,7 @@ msgstr "Przeszukaj moje mapy"
780
786
 
781
787
  #: templates/umap/user_dashboard.html:11
782
788
  msgid "Map’s name"
783
- msgstr ""
789
+ msgstr "Nazwa mapy"
784
790
 
785
791
  #: templates/umap/user_dashboard.html:12
786
792
  #, python-format
@@ -793,49 +799,49 @@ msgstr "Nie masz jeszcze żadnej mapy."
793
799
 
794
800
  #: templates/umap/user_teams.html:6
795
801
  msgid "My Teams"
796
- msgstr ""
802
+ msgstr "Moje zespoły"
797
803
 
798
804
  #: templates/umap/user_teams.html:21
799
805
  msgid "Users"
800
- msgstr ""
806
+ msgstr "Użytkownicy"
801
807
 
802
808
  #: templates/umap/user_teams.html:52
803
809
  msgid "New team"
804
- msgstr ""
810
+ msgstr "Nowy zespół"
805
811
 
806
812
  #: templates/umap/user_templates.html:10
807
813
  msgid "Search my templates"
808
- msgstr ""
814
+ msgstr "Szukaj moich szablonów"
809
815
 
810
816
  #: templates/umap/user_templates.html:11
811
817
  msgid "Template’s name"
812
- msgstr ""
818
+ msgstr "Nazwa szablonu"
813
819
 
814
820
  #: templates/umap/user_templates.html:12
815
821
  #, python-format
816
822
  msgid "Download %(count)s templates"
817
- msgstr ""
823
+ msgstr "Pobierz %(count)s szablon"
818
824
 
819
825
  #: templates/umap/user_templates.html:15
820
826
  msgid "You have no template yet."
821
- msgstr ""
827
+ msgstr "Nie masz jeszcze szablonów."
822
828
 
823
829
  #: templates/umap/user_templates.html:16
824
830
  msgid "Create a template"
825
- msgstr ""
831
+ msgstr "Utwórz szablon"
826
832
 
827
833
  #: templates/umap/user_templates.html:17
828
834
  msgid "No template found."
829
- msgstr ""
835
+ msgstr "Nie znaleziono szablonu."
830
836
 
831
837
  #: views.py:235
832
838
  msgid "Cannot delete a team with more than one member"
833
- msgstr ""
839
+ msgstr "Nie można usunąć zespołu z więcej niż jednym członkiem"
834
840
 
835
841
  #: views.py:239
836
842
  #, python-format
837
843
  msgid "Team “%(name)s” has been deleted"
838
- msgstr ""
844
+ msgstr "Zespół “%(name)s” został usunięty"
839
845
 
840
846
  #: views.py:464
841
847
  msgid "View the map"
@@ -843,7 +849,7 @@ msgstr "Zobacz mapę"
843
849
 
844
850
  #: views.py:872
845
851
  msgid "See full screen"
846
- msgstr ""
852
+ msgstr "Zobacz pełny ekran"
847
853
 
848
854
  #: views.py:1015
849
855
  msgid "Map editors updated with success!"
@@ -898,4 +904,4 @@ msgstr "Pomyślnie zaktualizowano uprawnienia!"
898
904
 
899
905
  #: views.py:1405
900
906
  msgid "Generic"
901
- msgstr ""
907
+ msgstr "Ogólny"
Binary file