umap-project 3.0.6__py3-none-any.whl → 3.1.1__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.
- umap/__init__.py +1 -1
- umap/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +125 -59
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/providers/bitbucket.png +0 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +11 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +33 -1
- umap/static/umap/locale/en.json +33 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +64 -18
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/METADATA +13 -13
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/RECORD +143 -130
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
# Krzysztof Chorzempa, 2023-2024
|
|
11
11
|
# Maciej Kowalik <m.kowalik.79@gmail.com>, 2016
|
|
12
12
|
# maro21 OSM, 2020-2021
|
|
13
|
-
# Piotr
|
|
13
|
+
# Piotr Strebski <strebski@gmail.com>, 2020
|
|
14
14
|
# Teiron, 2016
|
|
15
15
|
# Tomasz Nycz <tomasz.merkato@gmail.com>, 2018
|
|
16
16
|
msgid ""
|
|
17
17
|
msgstr ""
|
|
18
18
|
"Project-Id-Version: uMap\n"
|
|
19
19
|
"Report-Msgid-Bugs-To: \n"
|
|
20
|
-
"POT-Creation-Date:
|
|
20
|
+
"POT-Creation-Date: 2025-06-10 09:19+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,138 +35,238 @@ msgstr ""
|
|
|
35
35
|
msgid "This map is not publicly available"
|
|
36
36
|
msgstr ""
|
|
37
37
|
|
|
38
|
-
#: middleware.py:
|
|
38
|
+
#: middleware.py:19
|
|
39
39
|
msgid "Site is readonly for maintenance"
|
|
40
40
|
msgstr "Strona jest w trybie tylko do odczytu z powodu prac konserwacyjnych"
|
|
41
41
|
|
|
42
|
-
#:
|
|
42
|
+
#: middleware.py:34
|
|
43
|
+
#, python-format
|
|
44
|
+
msgid ""
|
|
45
|
+
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
46
|
+
"Please configure another provider below before losing access to your account"
|
|
47
|
+
" and maps. Then, please logout and login again with the new provider."
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
50
|
+
#: models.py:61 models.py:80
|
|
43
51
|
msgid "name"
|
|
44
52
|
msgstr "nazwa"
|
|
45
53
|
|
|
46
|
-
#: models.py:
|
|
54
|
+
#: models.py:63 models.py:503
|
|
47
55
|
msgid "description"
|
|
48
56
|
msgstr "opis"
|
|
49
57
|
|
|
50
|
-
#: models.py:
|
|
58
|
+
#: models.py:111
|
|
51
59
|
msgid "details"
|
|
52
60
|
msgstr "szczegóły"
|
|
53
61
|
|
|
54
|
-
#: models.py:
|
|
62
|
+
#: models.py:112
|
|
55
63
|
msgid "Link to a page where the licence is detailed."
|
|
56
64
|
msgstr "Odnośnik do strony ze szczegółowym opisem licencji."
|
|
57
65
|
|
|
58
|
-
#: models.py:
|
|
66
|
+
#: models.py:122
|
|
59
67
|
msgid "URL template using OSM tile format"
|
|
60
68
|
msgstr "Szablon URL używający formatu kafelków OSM"
|
|
61
69
|
|
|
62
|
-
#: models.py:
|
|
70
|
+
#: models.py:128
|
|
63
71
|
msgid "Order of the tilelayers in the edit box"
|
|
64
72
|
msgstr "Kolejność podkładów w oknie edycji"
|
|
65
73
|
|
|
66
|
-
#: models.py:
|
|
74
|
+
#: models.py:176 models.py:497
|
|
67
75
|
msgid "Only editable with secret edit link"
|
|
68
76
|
msgstr "Edycja możliwa tylko z sekretnym odnośnikiem"
|
|
69
77
|
|
|
70
|
-
#: models.py:
|
|
78
|
+
#: models.py:177 models.py:498
|
|
71
79
|
msgid "Everyone can edit"
|
|
72
80
|
msgstr "Wszyscy mogą edytować"
|
|
73
81
|
|
|
74
|
-
#: models.py:
|
|
82
|
+
#: models.py:180 models.py:491
|
|
75
83
|
msgid "Everyone"
|
|
76
84
|
msgstr "Każdy"
|
|
77
85
|
|
|
78
|
-
#: models.py:
|
|
86
|
+
#: models.py:181 models.py:190 models.py:492
|
|
79
87
|
msgid "Editors and team only"
|
|
80
88
|
msgstr ""
|
|
81
89
|
|
|
82
|
-
#: models.py:
|
|
90
|
+
#: models.py:182 models.py:493
|
|
83
91
|
msgid "Owner only"
|
|
84
92
|
msgstr "Tylko właściciel"
|
|
85
93
|
|
|
86
|
-
#: models.py:
|
|
94
|
+
#: models.py:185
|
|
87
95
|
msgid "Draft (private)"
|
|
88
96
|
msgstr ""
|
|
89
97
|
|
|
90
|
-
#: models.py:
|
|
98
|
+
#: models.py:186
|
|
91
99
|
msgid "Everyone (public)"
|
|
92
100
|
msgstr "Każdy (publiczne)"
|
|
93
101
|
|
|
94
|
-
#: models.py:
|
|
102
|
+
#: models.py:189
|
|
95
103
|
msgid "Anyone with link"
|
|
96
104
|
msgstr "Każdy z linkiem"
|
|
97
105
|
|
|
98
|
-
#: models.py:
|
|
106
|
+
#: models.py:191
|
|
99
107
|
msgid "Blocked"
|
|
100
108
|
msgstr "Zablokowane"
|
|
101
109
|
|
|
102
|
-
#: models.py:
|
|
110
|
+
#: models.py:192 models.py:487
|
|
103
111
|
msgid "Deleted"
|
|
104
112
|
msgstr ""
|
|
105
113
|
|
|
106
|
-
#: models.py:
|
|
114
|
+
#: models.py:195
|
|
107
115
|
msgid "center"
|
|
108
116
|
msgstr "środek"
|
|
109
117
|
|
|
110
|
-
#: models.py:
|
|
118
|
+
#: models.py:196
|
|
111
119
|
msgid "zoom"
|
|
112
120
|
msgstr "przybliżenie"
|
|
113
121
|
|
|
114
|
-
#: models.py:
|
|
122
|
+
#: models.py:198
|
|
115
123
|
msgid "locate"
|
|
116
124
|
msgstr "lokalizuj"
|
|
117
125
|
|
|
118
|
-
#: models.py:
|
|
126
|
+
#: models.py:198
|
|
119
127
|
msgid "Locate user on load?"
|
|
120
128
|
msgstr "Lokalizować użytkownika po załadowaniu?"
|
|
121
129
|
|
|
122
|
-
#: models.py:
|
|
130
|
+
#: models.py:202
|
|
123
131
|
msgid "Choose the map licence."
|
|
124
132
|
msgstr "Wybierz licencję mapy."
|
|
125
133
|
|
|
126
|
-
#: models.py:
|
|
134
|
+
#: models.py:203
|
|
127
135
|
msgid "licence"
|
|
128
136
|
msgstr "licencja"
|
|
129
137
|
|
|
130
|
-
#: models.py:
|
|
138
|
+
#: models.py:214
|
|
131
139
|
msgid "owner"
|
|
132
140
|
msgstr "właściciel"
|
|
133
141
|
|
|
134
|
-
#: models.py:
|
|
142
|
+
#: models.py:218
|
|
135
143
|
msgid "editors"
|
|
136
144
|
msgstr "edytorzy"
|
|
137
145
|
|
|
138
|
-
#: models.py:
|
|
146
|
+
#: models.py:224
|
|
139
147
|
msgid "team"
|
|
140
148
|
msgstr ""
|
|
141
149
|
|
|
142
|
-
#: models.py:
|
|
150
|
+
#: models.py:230 models.py:519
|
|
143
151
|
msgid "edit status"
|
|
144
152
|
msgstr "status edycji"
|
|
145
153
|
|
|
146
|
-
#: models.py:
|
|
154
|
+
#: models.py:235 models.py:524
|
|
147
155
|
msgid "share status"
|
|
148
156
|
msgstr "udostępnij status"
|
|
149
157
|
|
|
150
|
-
#: models.py:
|
|
158
|
+
#: models.py:238 models.py:514
|
|
151
159
|
msgid "settings"
|
|
152
160
|
msgstr "ustawienia"
|
|
153
161
|
|
|
154
|
-
#: models.py:
|
|
162
|
+
#: models.py:243
|
|
163
|
+
msgid "save as template"
|
|
164
|
+
msgstr ""
|
|
165
|
+
|
|
166
|
+
#: models.py:244
|
|
167
|
+
msgid "This map is a template map."
|
|
168
|
+
msgstr ""
|
|
169
|
+
|
|
170
|
+
#: models.py:420
|
|
155
171
|
msgid "Clone of"
|
|
156
172
|
msgstr "Kopia"
|
|
157
173
|
|
|
158
|
-
#: models.py:
|
|
174
|
+
#: models.py:486 models.py:490 models.py:496
|
|
159
175
|
msgid "Inherit"
|
|
160
176
|
msgstr "Odziedzicz"
|
|
161
177
|
|
|
162
|
-
#: models.py:
|
|
178
|
+
#: models.py:509
|
|
163
179
|
msgid "display on load"
|
|
164
180
|
msgstr "wyświetl po załadowaniu"
|
|
165
181
|
|
|
166
|
-
#: models.py:
|
|
182
|
+
#: models.py:510
|
|
167
183
|
msgid "Display this layer on load."
|
|
168
184
|
msgstr "Wyświetl tę warstwę po załadowaniu."
|
|
169
185
|
|
|
186
|
+
#: settings/base.py:283
|
|
187
|
+
msgid "uMap user documentation"
|
|
188
|
+
msgstr ""
|
|
189
|
+
|
|
190
|
+
#: settings/base.py:288
|
|
191
|
+
msgid "Video tutorials"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
194
|
+
#: settings/base.py:293
|
|
195
|
+
msgid "OpenStreetMap.org forum"
|
|
196
|
+
msgstr ""
|
|
197
|
+
|
|
198
|
+
#: settings/base.py:298
|
|
199
|
+
msgid "OpenStreetMap France forum"
|
|
200
|
+
msgstr ""
|
|
201
|
+
|
|
202
|
+
#: settings/base.py:318
|
|
203
|
+
msgid "Art and Culture"
|
|
204
|
+
msgstr ""
|
|
205
|
+
|
|
206
|
+
#: settings/base.py:319
|
|
207
|
+
msgid "Cycling"
|
|
208
|
+
msgstr ""
|
|
209
|
+
|
|
210
|
+
#: settings/base.py:320
|
|
211
|
+
msgid "Business"
|
|
212
|
+
msgstr ""
|
|
213
|
+
|
|
214
|
+
#: settings/base.py:321
|
|
215
|
+
msgid "Environment"
|
|
216
|
+
msgstr ""
|
|
217
|
+
|
|
218
|
+
#: settings/base.py:322
|
|
219
|
+
msgid "Education"
|
|
220
|
+
msgstr ""
|
|
221
|
+
|
|
222
|
+
#: settings/base.py:323
|
|
223
|
+
msgid "Food and Agriculture"
|
|
224
|
+
msgstr ""
|
|
225
|
+
|
|
226
|
+
#: settings/base.py:324
|
|
227
|
+
msgid "Geopolitics"
|
|
228
|
+
msgstr ""
|
|
229
|
+
|
|
230
|
+
#: settings/base.py:325
|
|
231
|
+
msgid "Health"
|
|
232
|
+
msgstr ""
|
|
233
|
+
|
|
234
|
+
#: settings/base.py:326
|
|
235
|
+
msgid "Hiking"
|
|
236
|
+
msgstr ""
|
|
237
|
+
|
|
238
|
+
#: settings/base.py:327
|
|
239
|
+
msgid "History"
|
|
240
|
+
msgstr ""
|
|
241
|
+
|
|
242
|
+
#: settings/base.py:328
|
|
243
|
+
msgid "Public sector"
|
|
244
|
+
msgstr ""
|
|
245
|
+
|
|
246
|
+
#: settings/base.py:329
|
|
247
|
+
msgid "Science"
|
|
248
|
+
msgstr ""
|
|
249
|
+
|
|
250
|
+
#: settings/base.py:330
|
|
251
|
+
msgid "Shopping"
|
|
252
|
+
msgstr ""
|
|
253
|
+
|
|
254
|
+
#: settings/base.py:331
|
|
255
|
+
msgid "Sport and Leisure"
|
|
256
|
+
msgstr ""
|
|
257
|
+
|
|
258
|
+
#: settings/base.py:332
|
|
259
|
+
msgid "Travel"
|
|
260
|
+
msgstr ""
|
|
261
|
+
|
|
262
|
+
#: settings/base.py:333
|
|
263
|
+
msgid "Transports"
|
|
264
|
+
msgstr ""
|
|
265
|
+
|
|
266
|
+
#: settings/base.py:334
|
|
267
|
+
msgid "Tourism"
|
|
268
|
+
msgstr ""
|
|
269
|
+
|
|
170
270
|
#: templates/403.html:8
|
|
171
271
|
msgid ""
|
|
172
272
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
@@ -182,40 +282,54 @@ msgstr ""
|
|
|
182
282
|
msgid "404 Page Not Found"
|
|
183
283
|
msgstr ""
|
|
184
284
|
|
|
185
|
-
#: templates/auth/user_detail.html:
|
|
285
|
+
#: templates/auth/user_detail.html:6
|
|
286
|
+
#, python-format
|
|
287
|
+
msgid "%(current_user)s’s maps"
|
|
288
|
+
msgstr ""
|
|
289
|
+
|
|
290
|
+
#: templates/auth/user_detail.html:12
|
|
186
291
|
#, python-format
|
|
187
292
|
msgid "Browse %(current_user)s's maps"
|
|
188
293
|
msgstr "Przeglądaj mapy %(current_user)s"
|
|
189
294
|
|
|
190
|
-
#: templates/auth/user_detail.html:
|
|
295
|
+
#: templates/auth/user_detail.html:21
|
|
191
296
|
#, python-format
|
|
192
297
|
msgid "%(current_user)s has no maps."
|
|
193
298
|
msgstr "%(current_user)s nie posiada map."
|
|
194
299
|
|
|
195
|
-
#: templates/auth/user_form.html:
|
|
300
|
+
#: templates/auth/user_form.html:6
|
|
301
|
+
msgid "My Profile"
|
|
302
|
+
msgstr ""
|
|
303
|
+
|
|
304
|
+
#: templates/auth/user_form.html:24 templates/umap/team_form.html:25
|
|
196
305
|
msgid "Save"
|
|
197
306
|
msgstr "Zapisz"
|
|
198
307
|
|
|
199
|
-
#: templates/auth/user_form.html:
|
|
308
|
+
#: templates/auth/user_form.html:30
|
|
200
309
|
msgid "Your current providers"
|
|
201
310
|
msgstr ""
|
|
202
311
|
|
|
203
|
-
#: templates/auth/user_form.html:
|
|
312
|
+
#: templates/auth/user_form.html:44
|
|
204
313
|
msgid "Connect to another provider"
|
|
205
314
|
msgstr ""
|
|
206
315
|
|
|
207
|
-
#: templates/auth/user_form.html:
|
|
316
|
+
#: templates/auth/user_form.html:47
|
|
208
317
|
msgid ""
|
|
209
318
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
210
319
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
211
320
|
msgstr ""
|
|
212
321
|
|
|
213
|
-
#: templates/auth/user_stars.html:
|
|
322
|
+
#: templates/auth/user_stars.html:6
|
|
323
|
+
#, python-format
|
|
324
|
+
msgid "%(current_user)s’s starred maps"
|
|
325
|
+
msgstr ""
|
|
326
|
+
|
|
327
|
+
#: templates/auth/user_stars.html:12
|
|
214
328
|
#, python-format
|
|
215
329
|
msgid "Browse %(current_user)s's starred maps"
|
|
216
330
|
msgstr "Przeglądaj mapy oznaczone gwiazdką przez %(current_user)s"
|
|
217
331
|
|
|
218
|
-
#: templates/auth/user_stars.html:
|
|
332
|
+
#: templates/auth/user_stars.html:21
|
|
219
333
|
#, python-format
|
|
220
334
|
msgid "%(current_user)s has no starred maps yet."
|
|
221
335
|
msgstr "%(current_user)s nie ma map oznaczonych gwiazdką."
|
|
@@ -250,6 +364,10 @@ msgstr "Hasło"
|
|
|
250
364
|
msgid "Please choose a provider:"
|
|
251
365
|
msgstr ""
|
|
252
366
|
|
|
367
|
+
#: templates/umap/about.html:5 templates/umap/navigation.html:22
|
|
368
|
+
msgid "About"
|
|
369
|
+
msgstr "Informacje"
|
|
370
|
+
|
|
253
371
|
#: templates/umap/about_summary.html:12
|
|
254
372
|
#, python-format
|
|
255
373
|
msgid ""
|
|
@@ -291,7 +409,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
291
409
|
msgstr "I to wszystko <a href=\"%(repo_url)s\">na wolnej licencji</a>!"
|
|
292
410
|
|
|
293
411
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
294
|
-
#: templates/umap/user_dashboard.html:
|
|
412
|
+
#: templates/umap/user_dashboard.html:16
|
|
295
413
|
msgid "Create a map"
|
|
296
414
|
msgstr "Stwórz mapę"
|
|
297
415
|
|
|
@@ -389,11 +507,20 @@ msgstr "Moje Mapy (%(count)s)"
|
|
|
389
507
|
msgid "My Maps"
|
|
390
508
|
msgstr "Moje Mapy"
|
|
391
509
|
|
|
392
|
-
#: templates/umap/dashboard_menu.html:
|
|
510
|
+
#: templates/umap/dashboard_menu.html:11
|
|
511
|
+
#, python-format
|
|
512
|
+
msgid "My Templates (%(count)s)"
|
|
513
|
+
msgstr ""
|
|
514
|
+
|
|
515
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
516
|
+
msgid "My Templates"
|
|
517
|
+
msgstr ""
|
|
518
|
+
|
|
519
|
+
#: templates/umap/dashboard_menu.html:17
|
|
393
520
|
msgid "My profile"
|
|
394
521
|
msgstr "Mój profil"
|
|
395
522
|
|
|
396
|
-
#: templates/umap/dashboard_menu.html:
|
|
523
|
+
#: templates/umap/dashboard_menu.html:20
|
|
397
524
|
msgid "My teams"
|
|
398
525
|
msgstr ""
|
|
399
526
|
|
|
@@ -401,7 +528,7 @@ msgstr ""
|
|
|
401
528
|
msgid "Map of the uMaps"
|
|
402
529
|
msgstr "Mapa uMapek"
|
|
403
530
|
|
|
404
|
-
#: templates/umap/home.html:
|
|
531
|
+
#: templates/umap/home.html:25
|
|
405
532
|
msgid "Get inspired, browse maps"
|
|
406
533
|
msgstr "Zainspiruj się, przejrzyj mapy"
|
|
407
534
|
|
|
@@ -409,15 +536,27 @@ msgstr "Zainspiruj się, przejrzyj mapy"
|
|
|
409
536
|
msgid "You are logged in. Continuing..."
|
|
410
537
|
msgstr "Jesteś zalogowany. Kontynuowanie..."
|
|
411
538
|
|
|
412
|
-
#: templates/umap/map_list.html:
|
|
539
|
+
#: templates/umap/map_list.html:15
|
|
540
|
+
msgid "template"
|
|
541
|
+
msgstr ""
|
|
542
|
+
|
|
543
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
413
544
|
msgid "by"
|
|
414
545
|
msgstr "przez"
|
|
415
546
|
|
|
416
|
-
#: templates/umap/map_list.html:
|
|
547
|
+
#: templates/umap/map_list.html:22
|
|
548
|
+
msgid "See the template"
|
|
549
|
+
msgstr ""
|
|
550
|
+
|
|
551
|
+
#: templates/umap/map_list.html:22
|
|
552
|
+
msgid "See the map"
|
|
553
|
+
msgstr ""
|
|
554
|
+
|
|
555
|
+
#: templates/umap/map_list.html:28
|
|
417
556
|
msgid "More"
|
|
418
557
|
msgstr "Więcej"
|
|
419
558
|
|
|
420
|
-
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:
|
|
559
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
|
|
421
560
|
msgid "Name"
|
|
422
561
|
msgstr "Nazwa"
|
|
423
562
|
|
|
@@ -441,11 +580,11 @@ msgstr "Ostatni zapis"
|
|
|
441
580
|
msgid "Owner"
|
|
442
581
|
msgstr "Właściciel"
|
|
443
582
|
|
|
444
|
-
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:
|
|
583
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
|
|
445
584
|
msgid "Actions"
|
|
446
585
|
msgstr "Akcje"
|
|
447
586
|
|
|
448
|
-
#: templates/umap/map_table.html:
|
|
587
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
449
588
|
msgid "Open preview"
|
|
450
589
|
msgstr "Otwórz podgląd"
|
|
451
590
|
|
|
@@ -454,7 +593,7 @@ msgid "Share"
|
|
|
454
593
|
msgstr "Udostępnij"
|
|
455
594
|
|
|
456
595
|
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
457
|
-
#: templates/umap/user_teams.html:
|
|
596
|
+
#: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
|
|
458
597
|
msgid "Edit"
|
|
459
598
|
msgstr "Edytuj"
|
|
460
599
|
|
|
@@ -517,10 +656,6 @@ msgstr "Logowanie"
|
|
|
517
656
|
msgid "Sign in"
|
|
518
657
|
msgstr "Rejestracja"
|
|
519
658
|
|
|
520
|
-
#: templates/umap/navigation.html:22
|
|
521
|
-
msgid "About"
|
|
522
|
-
msgstr "Informacje"
|
|
523
|
-
|
|
524
659
|
#: templates/umap/navigation.html:30
|
|
525
660
|
msgid "Change password"
|
|
526
661
|
msgstr "Zmień hasło"
|
|
@@ -529,41 +664,47 @@ msgstr "Zmień hasło"
|
|
|
529
664
|
msgid "Log out"
|
|
530
665
|
msgstr "Wyloguj się"
|
|
531
666
|
|
|
532
|
-
#: templates/umap/password_change.html:
|
|
667
|
+
#: templates/umap/password_change.html:6
|
|
668
|
+
#: templates/umap/password_change.html:11
|
|
533
669
|
msgid "Password change"
|
|
534
670
|
msgstr "Zmiana hasła"
|
|
535
671
|
|
|
536
|
-
#: templates/umap/password_change.html:
|
|
672
|
+
#: templates/umap/password_change.html:14
|
|
537
673
|
msgid ""
|
|
538
674
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
539
675
|
" password twice so we can verify you typed it in correctly."
|
|
540
676
|
msgstr "Prosimy wpisać swoje poprzednie hasło, a następnie podać nowe dwukrotnie, by zweryfikować, czy wpisano je poprawnie"
|
|
541
677
|
|
|
542
|
-
#: templates/umap/password_change.html:
|
|
678
|
+
#: templates/umap/password_change.html:21
|
|
543
679
|
msgid "Old password"
|
|
544
680
|
msgstr "Stare hasło"
|
|
545
681
|
|
|
546
|
-
#: templates/umap/password_change.html:
|
|
682
|
+
#: templates/umap/password_change.html:26
|
|
547
683
|
msgid "New password"
|
|
548
684
|
msgstr "Nowe hasło"
|
|
549
685
|
|
|
550
|
-
#: templates/umap/password_change.html:
|
|
686
|
+
#: templates/umap/password_change.html:30
|
|
551
687
|
msgid "New password confirmation"
|
|
552
688
|
msgstr "Potwierdź nowe hasło"
|
|
553
689
|
|
|
554
|
-
#: templates/umap/password_change.html:
|
|
690
|
+
#: templates/umap/password_change.html:31
|
|
555
691
|
msgid "Change my password"
|
|
556
692
|
msgstr "Zmień moje hasło"
|
|
557
693
|
|
|
558
|
-
#: templates/umap/password_change_done.html:
|
|
694
|
+
#: templates/umap/password_change_done.html:6
|
|
695
|
+
#: templates/umap/password_change_done.html:11
|
|
559
696
|
msgid "Password change successful"
|
|
560
697
|
msgstr "Zmiana hasła powiodła się"
|
|
561
698
|
|
|
562
|
-
#: templates/umap/password_change_done.html:
|
|
699
|
+
#: templates/umap/password_change_done.html:14
|
|
563
700
|
msgid "Your password was changed."
|
|
564
701
|
msgstr "Twoje hasło zostało zmienione."
|
|
565
702
|
|
|
566
|
-
#: templates/umap/search.html:
|
|
703
|
+
#: templates/umap/search.html:6
|
|
704
|
+
msgid "Explore maps"
|
|
705
|
+
msgstr ""
|
|
706
|
+
|
|
707
|
+
#: templates/umap/search.html:19
|
|
567
708
|
#, python-format
|
|
568
709
|
msgid "%(count)s map found:"
|
|
569
710
|
msgid_plural "%(count)s maps found:"
|
|
@@ -572,11 +713,15 @@ msgstr[1] "Znaleziono %(count)s mapy:"
|
|
|
572
713
|
msgstr[2] "Znaleziono %(count)s map:"
|
|
573
714
|
msgstr[3] "Znaleziono %(count)s map:"
|
|
574
715
|
|
|
575
|
-
#: templates/umap/search.html:
|
|
716
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
576
717
|
msgid "No map found."
|
|
577
718
|
msgstr "Nie znaleziono mapy."
|
|
578
719
|
|
|
579
|
-
#: templates/umap/search.html:
|
|
720
|
+
#: templates/umap/search.html:36
|
|
721
|
+
msgid "Latest created maps in category"
|
|
722
|
+
msgstr ""
|
|
723
|
+
|
|
724
|
+
#: templates/umap/search.html:43
|
|
580
725
|
msgid "Latest created maps"
|
|
581
726
|
msgstr "Ostatnio utworzone mapy"
|
|
582
727
|
|
|
@@ -584,117 +729,163 @@ msgstr "Ostatnio utworzone mapy"
|
|
|
584
729
|
msgid "Search maps"
|
|
585
730
|
msgstr "Znajdź mapy"
|
|
586
731
|
|
|
587
|
-
#: templates/umap/search_bar.html:
|
|
732
|
+
#: templates/umap/search_bar.html:14
|
|
733
|
+
msgid "Any category"
|
|
734
|
+
msgstr ""
|
|
735
|
+
|
|
736
|
+
#: templates/umap/search_bar.html:19
|
|
588
737
|
msgid "Search"
|
|
589
738
|
msgstr "Szukaj"
|
|
590
739
|
|
|
591
|
-
#: templates/umap/
|
|
740
|
+
#: templates/umap/team_confirm_delete.html:6
|
|
741
|
+
msgid "Team deletion"
|
|
742
|
+
msgstr ""
|
|
743
|
+
|
|
744
|
+
#: templates/umap/team_detail.html:6
|
|
745
|
+
#, python-format
|
|
746
|
+
msgid "%(current_team)s’s maps"
|
|
747
|
+
msgstr ""
|
|
748
|
+
|
|
749
|
+
#: templates/umap/team_detail.html:14
|
|
592
750
|
#, python-format
|
|
593
751
|
msgid "Browse %(current_team)s's maps"
|
|
594
752
|
msgstr ""
|
|
595
753
|
|
|
596
|
-
#: templates/umap/team_detail.html:
|
|
754
|
+
#: templates/umap/team_detail.html:26
|
|
597
755
|
#, python-format
|
|
598
756
|
msgid "%(current_team)s has no public maps."
|
|
599
757
|
msgstr ""
|
|
600
758
|
|
|
601
|
-
#: templates/umap/team_form.html:
|
|
759
|
+
#: templates/umap/team_form.html:6
|
|
760
|
+
msgid "Create or edit a team"
|
|
761
|
+
msgstr ""
|
|
762
|
+
|
|
763
|
+
#: templates/umap/team_form.html:28
|
|
602
764
|
msgid "Delete this team"
|
|
603
765
|
msgstr ""
|
|
604
766
|
|
|
605
|
-
#: templates/umap/team_form.html:
|
|
767
|
+
#: templates/umap/team_form.html:51
|
|
606
768
|
msgid "Add user"
|
|
607
769
|
msgstr ""
|
|
608
770
|
|
|
609
|
-
#: templates/umap/user_dashboard.html:
|
|
771
|
+
#: templates/umap/user_dashboard.html:10
|
|
610
772
|
msgid "Search my maps"
|
|
611
773
|
msgstr "Przeszukaj moje mapy"
|
|
612
774
|
|
|
613
|
-
#: templates/umap/user_dashboard.html:
|
|
614
|
-
msgid "Map’s
|
|
615
|
-
msgstr "
|
|
775
|
+
#: templates/umap/user_dashboard.html:11
|
|
776
|
+
msgid "Map’s name"
|
|
777
|
+
msgstr ""
|
|
616
778
|
|
|
617
|
-
#: templates/umap/user_dashboard.html:
|
|
779
|
+
#: templates/umap/user_dashboard.html:12
|
|
618
780
|
#, python-format
|
|
619
781
|
msgid "Download %(count)s maps"
|
|
620
782
|
msgstr "Pobierz %(count)s map"
|
|
621
783
|
|
|
622
|
-
#: templates/umap/user_dashboard.html:
|
|
784
|
+
#: templates/umap/user_dashboard.html:15
|
|
623
785
|
msgid "You have no map yet."
|
|
624
786
|
msgstr "Nie masz jeszcze żadnej mapy."
|
|
625
787
|
|
|
626
|
-
#: templates/umap/user_teams.html:
|
|
788
|
+
#: templates/umap/user_teams.html:6
|
|
789
|
+
msgid "My Teams"
|
|
790
|
+
msgstr ""
|
|
791
|
+
|
|
792
|
+
#: templates/umap/user_teams.html:21
|
|
627
793
|
msgid "Users"
|
|
628
794
|
msgstr ""
|
|
629
795
|
|
|
630
|
-
#: templates/umap/user_teams.html:
|
|
796
|
+
#: templates/umap/user_teams.html:52
|
|
631
797
|
msgid "New team"
|
|
632
798
|
msgstr ""
|
|
633
799
|
|
|
634
|
-
#:
|
|
800
|
+
#: templates/umap/user_templates.html:10
|
|
801
|
+
msgid "Search my templates"
|
|
802
|
+
msgstr ""
|
|
803
|
+
|
|
804
|
+
#: templates/umap/user_templates.html:11
|
|
805
|
+
msgid "Template’s name"
|
|
806
|
+
msgstr ""
|
|
807
|
+
|
|
808
|
+
#: templates/umap/user_templates.html:12
|
|
809
|
+
#, python-format
|
|
810
|
+
msgid "Download %(count)s templates"
|
|
811
|
+
msgstr ""
|
|
812
|
+
|
|
813
|
+
#: templates/umap/user_templates.html:15
|
|
814
|
+
msgid "You have no template yet."
|
|
815
|
+
msgstr ""
|
|
816
|
+
|
|
817
|
+
#: templates/umap/user_templates.html:16
|
|
818
|
+
msgid "Create a template"
|
|
819
|
+
msgstr ""
|
|
820
|
+
|
|
821
|
+
#: templates/umap/user_templates.html:17
|
|
822
|
+
msgid "No template found."
|
|
823
|
+
msgstr ""
|
|
824
|
+
|
|
825
|
+
#: views.py:233
|
|
635
826
|
msgid "Cannot delete a team with more than one member"
|
|
636
827
|
msgstr ""
|
|
637
828
|
|
|
638
|
-
#: views.py:
|
|
829
|
+
#: views.py:237
|
|
639
830
|
#, python-format
|
|
640
831
|
msgid "Team “%(name)s” has been deleted"
|
|
641
832
|
msgstr ""
|
|
642
833
|
|
|
643
|
-
#: views.py:
|
|
834
|
+
#: views.py:463
|
|
644
835
|
msgid "View the map"
|
|
645
836
|
msgstr "Zobacz mapę"
|
|
646
837
|
|
|
647
|
-
#: views.py:
|
|
838
|
+
#: views.py:864
|
|
648
839
|
msgid "See full screen"
|
|
649
840
|
msgstr ""
|
|
650
841
|
|
|
651
|
-
#: views.py:
|
|
842
|
+
#: views.py:1007
|
|
652
843
|
msgid "Map editors updated with success!"
|
|
653
844
|
msgstr "Edytorzy mapy zaktualizowani pomyślnie!"
|
|
654
845
|
|
|
655
|
-
#: views.py:
|
|
846
|
+
#: views.py:1043
|
|
656
847
|
#, python-format
|
|
657
848
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
658
849
|
msgstr "Link uMap do edytowania twojej mapy: %(map_name)s"
|
|
659
850
|
|
|
660
|
-
#: views.py:
|
|
851
|
+
#: views.py:1046
|
|
661
852
|
#, python-format
|
|
662
853
|
msgid "Here is your secret edit link: %(link)s"
|
|
663
854
|
msgstr "Oto twój sekretny link do edycji: %(link)s"
|
|
664
855
|
|
|
665
|
-
#: views.py:
|
|
856
|
+
#: views.py:1053
|
|
666
857
|
#, python-format
|
|
667
858
|
msgid "Can't send email to %(email)s"
|
|
668
859
|
msgstr "Nie można wysłać emaila do %(email)s"
|
|
669
860
|
|
|
670
|
-
#: views.py:
|
|
861
|
+
#: views.py:1056
|
|
671
862
|
#, python-format
|
|
672
863
|
msgid "Email sent to %(email)s"
|
|
673
864
|
msgstr "Email wysłany do %(email)s"
|
|
674
865
|
|
|
675
|
-
#: views.py:
|
|
866
|
+
#: views.py:1067
|
|
676
867
|
msgid "Only its owner can delete the map."
|
|
677
868
|
msgstr "Tylko właściciel może usunąć mapę."
|
|
678
869
|
|
|
679
|
-
#: views.py:
|
|
870
|
+
#: views.py:1073
|
|
680
871
|
msgid "Map successfully deleted."
|
|
681
872
|
msgstr "Pomyślnie usunięto mapę."
|
|
682
873
|
|
|
683
|
-
#: views.py:
|
|
874
|
+
#: views.py:1099
|
|
684
875
|
#, python-format
|
|
685
876
|
msgid ""
|
|
686
877
|
"Your map has been cloned! If you want to edit this map from another "
|
|
687
878
|
"computer, please use this link: %(anonymous_url)s"
|
|
688
879
|
msgstr "Twoja mapa została skopiowana! Jeśli chcesz edytować ją z innego komputera, użyj odnośnika: %(anonymous_url)s"
|
|
689
880
|
|
|
690
|
-
#: views.py:
|
|
881
|
+
#: views.py:1104
|
|
691
882
|
msgid "Congratulations, your map has been cloned!"
|
|
692
883
|
msgstr "Gratulacje, twoja mapa została skopiowana!"
|
|
693
884
|
|
|
694
|
-
#: views.py:
|
|
885
|
+
#: views.py:1358
|
|
695
886
|
msgid "Layer successfully deleted."
|
|
696
887
|
msgstr "Warstwa usunięta pomyślnie."
|
|
697
888
|
|
|
698
|
-
#: views.py:
|
|
889
|
+
#: views.py:1380
|
|
699
890
|
msgid "Permissions updated with success!"
|
|
700
891
|
msgstr "Pomyślnie zaktualizowano uprawnienia!"
|