umap-project 1.14.0a5__py3-none-any.whl → 2.0.0a0__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 (224) hide show
  1. umap/__init__.py +1 -1
  2. umap/decorators.py +0 -14
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +137 -85
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +136 -84
  7. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/el/LC_MESSAGES/django.po +136 -84
  9. umap/locale/en/LC_MESSAGES/django.po +128 -88
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +136 -84
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +131 -91
  14. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/hu/LC_MESSAGES/django.po +137 -85
  16. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/it/LC_MESSAGES/django.po +136 -84
  18. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/ms/LC_MESSAGES/django.po +136 -84
  20. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/pl/LC_MESSAGES/django.po +136 -84
  22. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/sv/LC_MESSAGES/django.po +135 -83
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +143 -91
  26. umap/models.py +23 -1
  27. umap/settings/__init__.py +1 -4
  28. umap/settings/base.py +1 -0
  29. umap/static/umap/base.css +5 -0
  30. umap/static/umap/content.css +185 -13
  31. umap/static/umap/favicons/icon.svg +2 -2
  32. umap/static/umap/img/edit.svg +3 -3
  33. umap/static/umap/img/icon-delete.svg +4 -0
  34. umap/static/umap/img/icon-download.svg +13 -0
  35. umap/static/umap/img/icon-duplicate.svg +5 -0
  36. umap/static/umap/img/icon-edit.svg +12 -0
  37. umap/static/umap/img/icon-share.svg +11 -0
  38. umap/static/umap/img/icon-view.svg +12 -0
  39. umap/static/umap/img/logo.svg +2 -2
  40. umap/static/umap/img/logo_small.svg +2 -2
  41. umap/static/umap/img/marker.svg +4 -0
  42. umap/static/umap/img/opensource.svg +2 -2
  43. umap/static/umap/img/osm.svg +2 -2
  44. umap/static/umap/js/components/fragment.js +1 -1
  45. umap/static/umap/js/modules/browser.js +159 -0
  46. umap/static/umap/js/modules/global.js +3 -1
  47. umap/static/umap/js/modules/request.js +155 -0
  48. umap/static/umap/js/umap.autocomplete.js +28 -38
  49. umap/static/umap/js/umap.controls.js +73 -58
  50. umap/static/umap/js/umap.core.js +4 -9
  51. umap/static/umap/js/umap.datalayer.permissions.js +13 -12
  52. umap/static/umap/js/umap.features.js +51 -49
  53. umap/static/umap/js/umap.forms.js +19 -19
  54. umap/static/umap/js/umap.icon.js +17 -17
  55. umap/static/umap/js/umap.importer.js +2 -1
  56. umap/static/umap/js/umap.js +242 -291
  57. umap/static/umap/js/umap.layer.js +173 -141
  58. umap/static/umap/js/umap.permissions.js +24 -25
  59. umap/static/umap/js/umap.popup.js +14 -14
  60. umap/static/umap/js/umap.share.js +4 -4
  61. umap/static/umap/js/umap.slideshow.js +4 -4
  62. umap/static/umap/js/umap.tableeditor.js +2 -2
  63. umap/static/umap/js/umap.ui.js +1 -1
  64. umap/static/umap/locale/am_ET.js +1 -11
  65. umap/static/umap/locale/am_ET.json +1 -11
  66. umap/static/umap/locale/ar.js +1 -11
  67. umap/static/umap/locale/ar.json +1 -11
  68. umap/static/umap/locale/ast.js +1 -11
  69. umap/static/umap/locale/ast.json +1 -11
  70. umap/static/umap/locale/bg.js +1 -11
  71. umap/static/umap/locale/bg.json +1 -11
  72. umap/static/umap/locale/br.js +1 -11
  73. umap/static/umap/locale/br.json +1 -11
  74. umap/static/umap/locale/ca.js +1 -11
  75. umap/static/umap/locale/ca.json +1 -11
  76. umap/static/umap/locale/cs_CZ.js +1 -11
  77. umap/static/umap/locale/cs_CZ.json +1 -11
  78. umap/static/umap/locale/da.js +1 -11
  79. umap/static/umap/locale/da.json +1 -11
  80. umap/static/umap/locale/de.js +1 -11
  81. umap/static/umap/locale/de.json +1 -11
  82. umap/static/umap/locale/el.js +1 -11
  83. umap/static/umap/locale/el.json +1 -11
  84. umap/static/umap/locale/en.js +1 -11
  85. umap/static/umap/locale/en.json +1 -11
  86. umap/static/umap/locale/en_US.json +1 -11
  87. umap/static/umap/locale/es.js +1 -11
  88. umap/static/umap/locale/es.json +1 -11
  89. umap/static/umap/locale/et.js +1 -11
  90. umap/static/umap/locale/et.json +1 -11
  91. umap/static/umap/locale/fa_IR.js +6 -16
  92. umap/static/umap/locale/fa_IR.json +6 -16
  93. umap/static/umap/locale/fi.js +1 -11
  94. umap/static/umap/locale/fi.json +1 -11
  95. umap/static/umap/locale/fr.js +1 -11
  96. umap/static/umap/locale/fr.json +1 -11
  97. umap/static/umap/locale/gl.js +1 -11
  98. umap/static/umap/locale/gl.json +1 -11
  99. umap/static/umap/locale/he.js +1 -11
  100. umap/static/umap/locale/he.json +1 -11
  101. umap/static/umap/locale/hr.js +1 -11
  102. umap/static/umap/locale/hr.json +1 -11
  103. umap/static/umap/locale/hu.js +1 -11
  104. umap/static/umap/locale/hu.json +1 -11
  105. umap/static/umap/locale/id.js +1 -11
  106. umap/static/umap/locale/id.json +1 -11
  107. umap/static/umap/locale/is.js +1 -11
  108. umap/static/umap/locale/is.json +1 -11
  109. umap/static/umap/locale/it.js +1 -11
  110. umap/static/umap/locale/it.json +1 -11
  111. umap/static/umap/locale/ja.js +1 -11
  112. umap/static/umap/locale/ja.json +1 -11
  113. umap/static/umap/locale/ko.js +1 -11
  114. umap/static/umap/locale/ko.json +1 -11
  115. umap/static/umap/locale/lt.js +1 -11
  116. umap/static/umap/locale/lt.json +1 -11
  117. umap/static/umap/locale/ms.js +1 -11
  118. umap/static/umap/locale/ms.json +1 -11
  119. umap/static/umap/locale/nl.js +1 -11
  120. umap/static/umap/locale/nl.json +1 -11
  121. umap/static/umap/locale/no.js +1 -11
  122. umap/static/umap/locale/no.json +1 -11
  123. umap/static/umap/locale/pl.js +1 -11
  124. umap/static/umap/locale/pl.json +1 -11
  125. umap/static/umap/locale/pl_PL.json +1 -11
  126. umap/static/umap/locale/pt.js +1 -11
  127. umap/static/umap/locale/pt.json +1 -11
  128. umap/static/umap/locale/pt_BR.js +1 -11
  129. umap/static/umap/locale/pt_BR.json +1 -11
  130. umap/static/umap/locale/pt_PT.js +1 -11
  131. umap/static/umap/locale/pt_PT.json +1 -11
  132. umap/static/umap/locale/ro.js +1 -11
  133. umap/static/umap/locale/ro.json +1 -11
  134. umap/static/umap/locale/ru.js +1 -11
  135. umap/static/umap/locale/ru.json +1 -11
  136. umap/static/umap/locale/sk_SK.js +1 -11
  137. umap/static/umap/locale/sk_SK.json +1 -11
  138. umap/static/umap/locale/sl.js +1 -11
  139. umap/static/umap/locale/sl.json +1 -11
  140. umap/static/umap/locale/sr.js +1 -11
  141. umap/static/umap/locale/sr.json +1 -11
  142. umap/static/umap/locale/sv.js +1 -11
  143. umap/static/umap/locale/sv.json +1 -11
  144. umap/static/umap/locale/th_TH.js +1 -11
  145. umap/static/umap/locale/th_TH.json +1 -11
  146. umap/static/umap/locale/tr.js +1 -11
  147. umap/static/umap/locale/tr.json +1 -11
  148. umap/static/umap/locale/uk_UA.js +1 -11
  149. umap/static/umap/locale/uk_UA.json +1 -11
  150. umap/static/umap/locale/vi.js +1 -11
  151. umap/static/umap/locale/vi.json +1 -11
  152. umap/static/umap/locale/vi_VN.json +1 -11
  153. umap/static/umap/locale/zh.js +1 -11
  154. umap/static/umap/locale/zh.json +1 -11
  155. umap/static/umap/locale/zh_CN.json +1 -11
  156. umap/static/umap/locale/zh_TW.Big5.json +1 -11
  157. umap/static/umap/locale/zh_TW.js +17 -27
  158. umap/static/umap/locale/zh_TW.json +17 -27
  159. umap/static/umap/map.css +2 -2
  160. umap/static/umap/nav.css +2 -1
  161. umap/static/umap/test/.eslintrc +0 -1
  162. umap/static/umap/test/Choropleth.js +29 -27
  163. umap/static/umap/test/DataLayer.js +207 -239
  164. umap/static/umap/test/Feature.js +33 -58
  165. umap/static/umap/test/Map.Export.js +11 -11
  166. umap/static/umap/test/Map.js +66 -67
  167. umap/static/umap/test/Marker.js +36 -32
  168. umap/static/umap/test/Polygon.js +95 -95
  169. umap/static/umap/test/Polyline.js +31 -31
  170. umap/static/umap/test/TableEditor.js +29 -25
  171. umap/static/umap/test/_pre.js +2 -7
  172. umap/static/umap/test/index.html +4 -4
  173. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.css +54 -0
  174. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.js +586 -0
  175. umap/static/umap/vendors/csv2geojson/index.js +259 -0
  176. umap/static/umap/vendors/dompurify/purify.js +1633 -0
  177. umap/static/umap/vendors/locatecontrol/L.Control.Locate.css +63 -0
  178. umap/static/umap/vendors/locatecontrol/L.Control.Locate.js +950 -0
  179. umap/static/umap/vendors/minimap/Control.MiniMap.css +88 -0
  180. umap/static/umap/vendors/minimap/Control.MiniMap.js +352 -0
  181. umap/static/umap/vendors/togeojson/togeojson.js +2 -0
  182. umap/templates/auth/user_form.html +3 -2
  183. umap/templates/base.html +1 -0
  184. umap/templates/registration/login.html +51 -36
  185. umap/templates/umap/about_summary.html +1 -1
  186. umap/templates/umap/branding.html +3 -0
  187. umap/templates/umap/content.html +15 -39
  188. umap/templates/umap/header.html +0 -0
  189. umap/templates/umap/home.html +4 -2
  190. umap/templates/umap/js.html +0 -1
  191. umap/templates/umap/map_detail.html +9 -0
  192. umap/templates/umap/map_init.html +1 -1
  193. umap/templates/umap/map_messages.html +4 -2
  194. umap/templates/umap/map_table.html +130 -69
  195. umap/templates/umap/navigation.html +2 -4
  196. umap/templates/umap/user_dashboard.html +29 -6
  197. umap/tests/base.py +1 -1
  198. umap/tests/integration/conftest.py +18 -0
  199. umap/tests/integration/test_anonymous_owned_map.py +6 -3
  200. umap/tests/integration/test_browser.py +166 -6
  201. umap/tests/integration/test_collaborative_editing.py +23 -5
  202. umap/tests/integration/test_dashboard.py +17 -0
  203. umap/tests/integration/test_edit_datalayer.py +4 -3
  204. umap/tests/integration/test_export_map.py +1 -1
  205. umap/tests/integration/test_import.py +9 -4
  206. umap/tests/integration/test_map.py +64 -0
  207. umap/tests/integration/test_map_preview.py +75 -0
  208. umap/tests/integration/test_owned_map.py +11 -25
  209. umap/tests/integration/test_picto.py +3 -3
  210. umap/tests/integration/test_querystring.py +52 -0
  211. umap/tests/integration/test_share.py +22 -0
  212. umap/tests/test_map_views.py +157 -14
  213. umap/tests/test_views.py +50 -11
  214. umap/urls.py +6 -12
  215. umap/views.py +170 -47
  216. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a0.dist-info}/METADATA +13 -15
  217. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a0.dist-info}/RECORD +220 -199
  218. umap/static/umap/js/umap.browser.js +0 -148
  219. umap/static/umap/js/umap.xhr.js +0 -304
  220. umap/static/umap/test/Controls.js +0 -100
  221. umap/static/umap/test/Map.Init.js +0 -46
  222. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a0.dist-info}/WHEEL +0 -0
  223. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a0.dist-info}/entry_points.txt +0 -0
  224. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a0.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-01-08 12:33+0000\n"
20
+ "POT-Creation-Date: 2024-02-09 10:52+0000\n"
21
21
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
22
22
  "Last-Translator: Bartosz Racławski <bartosz.raclawski@openstreetmap.pl>, 2023\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:349
38
+ #: forms.py:69 models.py:371
39
39
  msgid "Inherit"
40
40
  msgstr ""
41
41
 
@@ -43,107 +43,107 @@ msgstr ""
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:49
46
+ #: models.py:50
47
47
  msgid "name"
48
48
  msgstr "nazwa"
49
49
 
50
- #: models.py:80
50
+ #: models.py:81
51
51
  msgid "details"
52
52
  msgstr "szczegóły"
53
53
 
54
- #: models.py:81
54
+ #: models.py:82
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:91
58
+ #: models.py:92
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:97
62
+ #: models.py:98
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:143 models.py:350
66
+ #: models.py:144 models.py:372
67
67
  msgid "Everyone"
68
68
  msgstr "Każdy"
69
69
 
70
- #: models.py:144 models.py:150 models.py:351
70
+ #: models.py:145 models.py:151 models.py:373
71
71
  msgid "Editors only"
72
72
  msgstr "Tylko edytorzy"
73
73
 
74
- #: models.py:145 models.py:352
74
+ #: models.py:146 models.py:374
75
75
  msgid "Owner only"
76
76
  msgstr "Tylko właściciel"
77
77
 
78
- #: models.py:148
78
+ #: models.py:149
79
79
  msgid "Everyone (public)"
80
80
  msgstr "Każdy (publiczne)"
81
81
 
82
- #: models.py:149
82
+ #: models.py:150
83
83
  msgid "Anyone with link"
84
84
  msgstr "Każdy z linkiem"
85
85
 
86
- #: models.py:151
86
+ #: models.py:152
87
87
  msgid "Blocked"
88
88
  msgstr "Zablokowane"
89
89
 
90
- #: models.py:154 models.py:356
90
+ #: models.py:155 models.py:378
91
91
  msgid "description"
92
92
  msgstr "opis"
93
93
 
94
- #: models.py:155
94
+ #: models.py:156
95
95
  msgid "center"
96
96
  msgstr "środek"
97
97
 
98
- #: models.py:156
98
+ #: models.py:157
99
99
  msgid "zoom"
100
100
  msgstr "przybliżenie"
101
101
 
102
- #: models.py:158
102
+ #: models.py:159
103
103
  msgid "locate"
104
104
  msgstr "lokalizuj"
105
105
 
106
- #: models.py:158
106
+ #: models.py:159
107
107
  msgid "Locate user on load?"
108
108
  msgstr "Lokalizować użytkownika po załadowaniu?"
109
109
 
110
- #: models.py:162
110
+ #: models.py:163
111
111
  msgid "Choose the map licence."
112
112
  msgstr "Wybierz licencję mapy."
113
113
 
114
- #: models.py:163
114
+ #: models.py:164
115
115
  msgid "licence"
116
116
  msgstr "licencja"
117
117
 
118
- #: models.py:174
118
+ #: models.py:175
119
119
  msgid "owner"
120
120
  msgstr "właściciel"
121
121
 
122
- #: models.py:178
122
+ #: models.py:179
123
123
  msgid "editors"
124
124
  msgstr "edytorzy"
125
125
 
126
- #: models.py:183 models.py:370
126
+ #: models.py:184 models.py:392
127
127
  msgid "edit status"
128
128
  msgstr "status edycji"
129
129
 
130
- #: models.py:188
130
+ #: models.py:189
131
131
  msgid "share status"
132
132
  msgstr "udostępnij status"
133
133
 
134
- #: models.py:191 models.py:365
134
+ #: models.py:192 models.py:387
135
135
  msgid "settings"
136
136
  msgstr "ustawienia"
137
137
 
138
- #: models.py:298
138
+ #: models.py:320
139
139
  msgid "Clone of"
140
140
  msgstr "Kopia"
141
141
 
142
- #: models.py:360
142
+ #: models.py:382
143
143
  msgid "display on load"
144
144
  msgstr "wyświetl po załadowaniu"
145
145
 
146
- #: models.py:361
146
+ #: models.py:383
147
147
  msgid "Display this layer on load."
148
148
  msgstr "Wyświetl tę warstwę po załadowaniu."
149
149
 
@@ -161,28 +161,27 @@ msgstr "Przeglądaj mapy %(current_user)s"
161
161
  msgid "%(current_user)s has no maps."
162
162
  msgstr "%(current_user)s nie posiada map."
163
163
 
164
- #: templates/auth/user_form.html:6 templates/umap/navigation.html:12
165
- #: templates/umap/user_dashboard.html:4 templates/umap/user_dashboard.html:10
166
- msgid "My Dashboard"
167
- msgstr "Mój Panel"
168
-
169
164
  #: templates/auth/user_form.html:6
165
+ msgid "My Maps"
166
+ msgstr ""
167
+
168
+ #: templates/auth/user_form.html:7
170
169
  msgid "My Profile"
171
170
  msgstr "Mój profil"
172
171
 
173
- #: templates/auth/user_form.html:19
172
+ #: templates/auth/user_form.html:20
174
173
  msgid "Save"
175
174
  msgstr "Zapisz"
176
175
 
177
- #: templates/auth/user_form.html:24
176
+ #: templates/auth/user_form.html:25
178
177
  msgid "Your current providers"
179
178
  msgstr ""
180
179
 
181
- #: templates/auth/user_form.html:30
180
+ #: templates/auth/user_form.html:31
182
181
  msgid "Connect to another provider"
183
182
  msgstr ""
184
183
 
185
- #: templates/auth/user_form.html:32
184
+ #: templates/auth/user_form.html:33
186
185
  msgid ""
187
186
  "It's a good habit to connect your account to more than one provider, in case"
188
187
  " one provider becomes unavailable, temporarily or even permanently."
@@ -204,23 +203,23 @@ msgid ""
204
203
  "them in your site."
205
204
  msgstr "uMap pozwala ci szybko tworzyć mapy z warstwami OpenStreetMap i umieścić je na twojej stronie."
206
205
 
207
- #: templates/registration/login.html:3
206
+ #: templates/registration/login.html:16
208
207
  msgid "Please log in with your account"
209
208
  msgstr "Proszę zalogować się na swoje konto"
210
209
 
211
- #: templates/registration/login.html:15
210
+ #: templates/registration/login.html:28
212
211
  msgid "Username"
213
212
  msgstr "Nazwa użytkownika"
214
213
 
215
- #: templates/registration/login.html:18
214
+ #: templates/registration/login.html:31
216
215
  msgid "Password"
217
216
  msgstr "Hasło"
218
217
 
219
- #: templates/registration/login.html:19
218
+ #: templates/registration/login.html:32
220
219
  msgid "Login"
221
220
  msgstr "Zaloguj się"
222
221
 
223
- #: templates/registration/login.html:24
222
+ #: templates/registration/login.html:37
224
223
  msgid "Please choose a provider"
225
224
  msgstr "Proszę wybrać serwis"
226
225
 
@@ -264,8 +263,8 @@ msgstr "Umieszczaj mapy w sieci i dziel się nimi"
264
263
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
265
264
  msgstr "I to wszystko <a href=\"%(repo_url)s\">na wolnej licencji</a>!"
266
265
 
267
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:42
268
- #: templates/umap/user_dashboard.html:20
266
+ #: templates/umap/about_summary.html:48 templates/umap/navigation.html:40
267
+ #: templates/umap/user_dashboard.html:41
269
268
  msgid "Create a map"
270
269
  msgstr "Stwórz mapę"
271
270
 
@@ -273,13 +272,13 @@ msgstr "Stwórz mapę"
273
272
  msgid "Play with the demo"
274
273
  msgstr "Zobacz wersję demo"
275
274
 
276
- #: templates/umap/content.html:23
275
+ #: templates/umap/content.html:22
277
276
  msgid ""
278
277
  "This instance of uMap is currently in read only mode, no creation/edit is "
279
278
  "allowed."
280
279
  msgstr "Ta instancja uMap jest obecnie w trybie tylko do odczytu, nie jest możliwe edytowanie ani tworzenie."
281
280
 
282
- #: templates/umap/content.html:31
281
+ #: templates/umap/content.html:30
283
282
  #, python-format
284
283
  msgid ""
285
284
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -292,7 +291,7 @@ msgstr "To jest serwer demonstracyjny, używany do testów i niefinalnych wydań
292
291
  msgid "Map of the uMaps"
293
292
  msgstr "Mapa uMapek"
294
293
 
295
- #: templates/umap/home.html:13
294
+ #: templates/umap/home.html:14
296
295
  msgid "Get inspired, browse maps"
297
296
  msgstr "Zainspiruj się, przejrzyj mapy"
298
297
 
@@ -300,7 +299,7 @@ msgstr "Zainspiruj się, przejrzyj mapy"
300
299
  msgid "You are logged in. Continuing..."
301
300
  msgstr "Jesteś zalogowany. Kontynuowanie..."
302
301
 
303
- #: templates/umap/map_list.html:9 views.py:296
302
+ #: templates/umap/map_list.html:9 views.py:341
304
303
  msgid "by"
305
304
  msgstr "przez"
306
305
 
@@ -317,86 +316,118 @@ msgid "Preview"
317
316
  msgstr ""
318
317
 
319
318
  #: templates/umap/map_table.html:7
320
- msgid "Who can see / edit"
321
- msgstr "Kto może zobaczyć / edytować"
319
+ msgid "Who can see"
320
+ msgstr ""
322
321
 
323
322
  #: templates/umap/map_table.html:8
323
+ msgid "Who can edit"
324
+ msgstr ""
325
+
326
+ #: templates/umap/map_table.html:9
324
327
  msgid "Last save"
325
328
  msgstr "Ostatni zapis"
326
329
 
327
- #: templates/umap/map_table.html:9
330
+ #: templates/umap/map_table.html:10
328
331
  msgid "Owner"
329
332
  msgstr "Właściciel"
330
333
 
331
- #: templates/umap/map_table.html:10
334
+ #: templates/umap/map_table.html:11
332
335
  msgid "Actions"
333
336
  msgstr "Akcje"
334
337
 
335
- #: templates/umap/map_table.html:22
338
+ #: templates/umap/map_table.html:24 templates/umap/map_table.html:26
336
339
  msgid "Open preview"
337
340
  msgstr ""
338
341
 
339
- #: templates/umap/map_table.html:38
342
+ #: templates/umap/map_table.html:45 templates/umap/map_table.html:47
340
343
  msgid "Share"
341
344
  msgstr "Udostępnij"
342
345
 
343
- #: templates/umap/map_table.html:39
346
+ #: templates/umap/map_table.html:50 templates/umap/map_table.html:52
344
347
  msgid "Edit"
345
348
  msgstr "Edytuj"
346
349
 
347
- #: templates/umap/map_table.html:40
350
+ #: templates/umap/map_table.html:55 templates/umap/map_table.html:57
348
351
  msgid "Download"
349
352
  msgstr "Pobierz"
350
353
 
351
- #: templates/umap/map_table.html:49
354
+ #: templates/umap/map_table.html:62 templates/umap/map_table.html:64
355
+ msgid "Clone"
356
+ msgstr ""
357
+
358
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
359
+ msgid "Delete"
360
+ msgstr ""
361
+
362
+ #: templates/umap/map_table.html:86
352
363
  msgid "first"
353
364
  msgstr ""
354
365
 
355
- #: templates/umap/map_table.html:50
366
+ #: templates/umap/map_table.html:87
356
367
  msgid "previous"
357
368
  msgstr ""
358
369
 
359
- #: templates/umap/map_table.html:59
370
+ #: templates/umap/map_table.html:96
360
371
  #, python-format
361
372
  msgid ""
362
373
  "\n"
363
- " Page %(maps_number)s of %(num_pages)s\n"
364
- " "
374
+ " Page %(maps_number)s of %(num_pages)s\n"
375
+ " "
365
376
  msgstr ""
366
377
 
367
- #: templates/umap/map_table.html:65
378
+ #: templates/umap/map_table.html:102
368
379
  msgid "next"
369
380
  msgstr ""
370
381
 
371
- #: templates/umap/map_table.html:66
382
+ #: templates/umap/map_table.html:103
372
383
  msgid "last"
373
384
  msgstr ""
374
385
 
375
- #: templates/umap/navigation.html:15
386
+ #: templates/umap/map_table.html:111
387
+ #, python-format
388
+ msgid ""
389
+ "\n"
390
+ " Lines per page: %(per_page)s\n"
391
+ " "
392
+ msgstr ""
393
+
394
+ #: templates/umap/map_table.html:116
395
+ #, python-format
396
+ msgid ""
397
+ "\n"
398
+ " %(count)s maps\n"
399
+ " "
400
+ msgstr ""
401
+
402
+ #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
403
+ msgid "My Dashboard"
404
+ msgstr "Mój Panel"
405
+
406
+ #: templates/umap/navigation.html:13
376
407
  msgid "Starred maps"
377
408
  msgstr "Mapy oznaczone gwiazdką"
378
409
 
379
- #: templates/umap/navigation.html:19
410
+ #: templates/umap/navigation.html:17
380
411
  msgid "Log in"
381
412
  msgstr "Logowanie"
382
413
 
383
- #: templates/umap/navigation.html:19
414
+ #: templates/umap/navigation.html:17
384
415
  msgid "Sign in"
385
416
  msgstr "Rejestracja"
386
417
 
387
- #: templates/umap/navigation.html:23
418
+ #: templates/umap/navigation.html:21
388
419
  msgid "About"
389
420
  msgstr "Informacje"
390
421
 
391
- #: templates/umap/navigation.html:26
422
+ #: templates/umap/navigation.html:24
392
423
  msgid "Help"
393
424
  msgstr "Pomoc"
394
425
 
395
- #: templates/umap/navigation.html:31
426
+ #: templates/umap/navigation.html:29
396
427
  msgid "Change password"
397
428
  msgstr "Zmień hasło"
398
429
 
399
- #: templates/umap/navigation.html:35
430
+ #: templates/umap/navigation.html:33
400
431
  msgid "Log out"
401
432
  msgstr "Wyloguj się"
402
433
 
@@ -455,7 +486,7 @@ msgstr "Ostatnio utworzone mapy"
455
486
  msgid "Search maps"
456
487
  msgstr "Znajdź mapy"
457
488
 
458
- #: templates/umap/search_bar.html:14
489
+ #: templates/umap/search_bar.html:14 templates/umap/user_dashboard.html:25
459
490
  msgid "Search"
460
491
  msgstr "Szukaj"
461
492
 
@@ -463,60 +494,81 @@ msgstr "Szukaj"
463
494
  msgid "Search my maps"
464
495
  msgstr "Przeszukaj moje mapy"
465
496
 
466
- #: templates/umap/user_dashboard.html:10
497
+ #: templates/umap/user_dashboard.html:11
498
+ #, python-format
499
+ msgid "My Maps (%(count)s)"
500
+ msgstr ""
501
+
502
+ #: templates/umap/user_dashboard.html:13
467
503
  msgid "My profile"
468
504
  msgstr "Mój profil"
469
505
 
470
- #: templates/umap/user_dashboard.html:20
506
+ #: templates/umap/user_dashboard.html:21
507
+ msgid "Map’s title"
508
+ msgstr ""
509
+
510
+ #: templates/umap/user_dashboard.html:31
511
+ #, python-format
512
+ msgid ""
513
+ "\n"
514
+ " Download %(count)s maps\n"
515
+ " "
516
+ msgstr ""
517
+
518
+ #: templates/umap/user_dashboard.html:41
471
519
  msgid "You have no map yet."
472
520
  msgstr "Nie masz jeszcze żadnej mapy."
473
521
 
474
- #: views.py:301
522
+ #: views.py:346
475
523
  msgid "View the map"
476
524
  msgstr "Zobacz mapę"
477
525
 
478
- #: views.py:660
526
+ #: views.py:704
527
+ msgid "See full screen"
528
+ msgstr ""
529
+
530
+ #: views.py:779
479
531
  msgid "Map has been updated!"
480
532
  msgstr "Mapa została zaktualizowana!"
481
533
 
482
- #: views.py:685
534
+ #: views.py:804
483
535
  msgid "Map editors updated with success!"
484
536
  msgstr "Edytorzy mapy zaktualizowani pomyślnie!"
485
537
 
486
- #: views.py:723
538
+ #: views.py:842
487
539
  #, python-format
488
540
  msgid "The uMap edit link for your map: %(map_name)s"
489
541
  msgstr "Link uMap do edytowania twojej mapy: %(map_name)s"
490
542
 
491
- #: views.py:726
543
+ #: views.py:845
492
544
  #, python-format
493
545
  msgid "Here is your secret edit link: %(link)s"
494
546
  msgstr "Oto twój sekretny link do edycji: %(link)s"
495
547
 
496
- #: views.py:732
548
+ #: views.py:851
497
549
  #, python-format
498
550
  msgid "Email sent to %(email)s"
499
551
  msgstr "Email wysłany do %(email)s"
500
552
 
501
- #: views.py:743
553
+ #: views.py:862
502
554
  msgid "Only its owner can delete the map."
503
555
  msgstr "Tylko właściciel może usunąć mapę."
504
556
 
505
- #: views.py:766
557
+ #: views.py:890
506
558
  #, python-format
507
559
  msgid ""
508
560
  "Your map has been cloned! If you want to edit this map from another "
509
561
  "computer, please use this link: %(anonymous_url)s"
510
562
  msgstr "Twoja mapa została skopiowana! Jeśli chcesz edytować ją z innego komputera, użyj odnośnika: %(anonymous_url)s"
511
563
 
512
- #: views.py:771
564
+ #: views.py:895
513
565
  msgid "Congratulations, your map has been cloned!"
514
566
  msgstr "Gratulacje, twoja mapa została skopiowana!"
515
567
 
516
- #: views.py:1007
568
+ #: views.py:1131
517
569
  msgid "Layer successfully deleted."
518
570
  msgstr "Warstwa usunięta pomyślnie."
519
571
 
520
- #: views.py:1029
572
+ #: views.py:1153
521
573
  msgid "Permissions updated with success!"
522
574
  msgstr ""
Binary file