umap-project 3.3.6__py3-none-any.whl → 3.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.
- umap/__init__.py +1 -1
- umap/context_processors.py +4 -1
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +43 -33
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +35 -29
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +35 -29
- umap/locale/en/LC_MESSAGES/django.po +47 -41
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +43 -33
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +58 -54
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +43 -33
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +36 -30
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +43 -33
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +35 -29
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +43 -33
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +43 -33
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +35 -29
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +114 -103
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +43 -33
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
- umap/management/commands/switch_user.py +2 -2
- umap/migrations/0018_datalayer_uuid.py +1 -1
- umap/models.py +7 -3
- umap/settings/local.py.sample +1 -1
- umap/static/umap/base.css +89 -32
- umap/static/umap/content.css +129 -33
- umap/static/umap/css/bar.css +82 -20
- umap/static/umap/css/browser.css +163 -0
- umap/static/umap/css/contextmenu.css +15 -0
- umap/static/umap/css/dialog.css +36 -16
- umap/static/umap/css/form.css +123 -33
- umap/static/umap/css/icon.css +46 -3
- umap/static/umap/css/panel.css +7 -3
- umap/static/umap/css/popup.css +34 -8
- umap/static/umap/css/tooltip.css +8 -4
- umap/static/umap/img/16-white.svg +26 -8
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/source/16-white.svg +36 -18
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.css +69 -31
- umap/static/umap/js/components/alerts/alert.js +20 -2
- umap/static/umap/js/components/base.js +1 -1
- umap/static/umap/js/modules/browser.js +69 -61
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +85 -60
- umap/static/umap/js/modules/data/fields.js +446 -0
- umap/static/umap/js/modules/data/layer.js +78 -184
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +780 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +111 -221
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +4 -3
- umap/static/umap/js/modules/i18n.js +1 -1
- umap/static/umap/js/modules/importer.js +1 -1
- umap/static/umap/js/modules/importers/opendata.js +15 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +2 -2
- umap/static/umap/js/modules/permissions.js +39 -31
- umap/static/umap/js/modules/rendering/controls.js +11 -9
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
- umap/static/umap/js/modules/rendering/layers/cluster.js +5 -3
- umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
- umap/static/umap/js/modules/rendering/template.js +50 -23
- umap/static/umap/js/modules/rendering/ui.js +29 -23
- umap/static/umap/js/modules/rules.js +38 -44
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +5 -4
- umap/static/umap/js/modules/tableeditor.js +50 -38
- umap/static/umap/js/modules/templates.js +2 -3
- umap/static/umap/js/modules/ui/bar.js +55 -23
- umap/static/umap/js/modules/ui/dialog.js +38 -27
- umap/static/umap/js/modules/ui/panel.js +23 -8
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +151 -56
- umap/static/umap/js/modules/utils.js +24 -2
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +52 -17
- umap/static/umap/locale/am_ET.json +52 -17
- umap/static/umap/locale/ar.js +52 -17
- umap/static/umap/locale/ar.json +52 -17
- umap/static/umap/locale/ast.js +52 -17
- umap/static/umap/locale/ast.json +52 -17
- umap/static/umap/locale/bg.js +52 -17
- umap/static/umap/locale/bg.json +52 -17
- umap/static/umap/locale/br.js +48 -22
- umap/static/umap/locale/br.json +48 -22
- umap/static/umap/locale/ca.js +52 -17
- umap/static/umap/locale/ca.json +52 -17
- umap/static/umap/locale/cs_CZ.js +52 -17
- umap/static/umap/locale/cs_CZ.json +52 -17
- umap/static/umap/locale/da.js +54 -17
- umap/static/umap/locale/da.json +54 -17
- umap/static/umap/locale/de.js +51 -16
- umap/static/umap/locale/de.json +51 -16
- umap/static/umap/locale/el.js +52 -17
- umap/static/umap/locale/el.json +52 -17
- umap/static/umap/locale/en.js +53 -16
- umap/static/umap/locale/en.json +53 -16
- umap/static/umap/locale/en_US.json +52 -17
- umap/static/umap/locale/es.js +54 -17
- umap/static/umap/locale/es.json +54 -17
- umap/static/umap/locale/et.js +91 -56
- umap/static/umap/locale/et.json +91 -56
- umap/static/umap/locale/eu.js +84 -49
- umap/static/umap/locale/eu.json +84 -49
- umap/static/umap/locale/fa_IR.js +52 -17
- umap/static/umap/locale/fa_IR.json +52 -17
- umap/static/umap/locale/fi.js +52 -17
- umap/static/umap/locale/fi.json +52 -17
- umap/static/umap/locale/fr.js +53 -16
- umap/static/umap/locale/fr.json +53 -16
- umap/static/umap/locale/gl.js +52 -17
- umap/static/umap/locale/gl.json +52 -17
- umap/static/umap/locale/he.js +52 -17
- umap/static/umap/locale/he.json +52 -17
- umap/static/umap/locale/hr.js +52 -17
- umap/static/umap/locale/hr.json +52 -17
- umap/static/umap/locale/hu.js +59 -24
- umap/static/umap/locale/hu.json +59 -24
- umap/static/umap/locale/id.js +52 -17
- umap/static/umap/locale/id.json +52 -17
- umap/static/umap/locale/is.js +52 -17
- umap/static/umap/locale/is.json +52 -17
- umap/static/umap/locale/it.js +52 -17
- umap/static/umap/locale/it.json +52 -17
- umap/static/umap/locale/ja.js +52 -17
- umap/static/umap/locale/ja.json +52 -17
- umap/static/umap/locale/ko.js +52 -17
- umap/static/umap/locale/ko.json +52 -17
- umap/static/umap/locale/lt.js +52 -17
- umap/static/umap/locale/lt.json +52 -17
- umap/static/umap/locale/ms.js +52 -17
- umap/static/umap/locale/ms.json +52 -17
- umap/static/umap/locale/nl.js +52 -17
- umap/static/umap/locale/nl.json +52 -17
- umap/static/umap/locale/no.js +52 -17
- umap/static/umap/locale/no.json +52 -17
- umap/static/umap/locale/pl.js +53 -17
- umap/static/umap/locale/pl.json +53 -17
- umap/static/umap/locale/pl_PL.json +52 -17
- umap/static/umap/locale/pt.js +52 -17
- umap/static/umap/locale/pt.json +52 -17
- umap/static/umap/locale/pt_BR.js +52 -17
- umap/static/umap/locale/pt_BR.json +52 -17
- umap/static/umap/locale/pt_PT.js +52 -17
- umap/static/umap/locale/pt_PT.json +52 -17
- umap/static/umap/locale/ro.js +52 -17
- umap/static/umap/locale/ro.json +52 -17
- umap/static/umap/locale/ru.js +52 -17
- umap/static/umap/locale/ru.json +52 -17
- umap/static/umap/locale/si.js +1 -1
- umap/static/umap/locale/si.json +1 -1
- umap/static/umap/locale/sk_SK.js +52 -17
- umap/static/umap/locale/sk_SK.json +52 -17
- umap/static/umap/locale/sl.js +52 -17
- umap/static/umap/locale/sl.json +52 -17
- umap/static/umap/locale/sr.js +52 -17
- umap/static/umap/locale/sr.json +52 -17
- umap/static/umap/locale/sv.js +52 -17
- umap/static/umap/locale/sv.json +52 -17
- umap/static/umap/locale/th_TH.js +52 -17
- umap/static/umap/locale/th_TH.json +52 -17
- umap/static/umap/locale/tr.js +52 -17
- umap/static/umap/locale/tr.json +52 -17
- umap/static/umap/locale/uk_UA.js +52 -17
- umap/static/umap/locale/uk_UA.json +52 -17
- umap/static/umap/locale/vi.js +52 -17
- umap/static/umap/locale/vi.json +52 -17
- umap/static/umap/locale/vi_VN.json +52 -17
- umap/static/umap/locale/zh.js +52 -17
- umap/static/umap/locale/zh.json +52 -17
- umap/static/umap/locale/zh_CN.json +52 -17
- umap/static/umap/locale/zh_TW.Big5.json +52 -17
- umap/static/umap/locale/zh_TW.js +52 -16
- umap/static/umap/locale/zh_TW.json +52 -16
- umap/static/umap/map.css +63 -226
- umap/static/umap/unittests/utils.js +18 -0
- umap/static/umap/vars.css +23 -5
- umap/templates/umap/components/alerts/alert.html +32 -29
- umap/templates/umap/css.html +2 -1
- umap/templates/umap/login_popup_end.html +18 -9
- umap/templates/umap/user_map_table.html +7 -2
- umap/tests/integration/conftest.py +10 -6
- umap/tests/integration/test_anonymous_owned_map.py +90 -37
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_conditional_rules.py +107 -52
- umap/tests/integration/test_draw_polygon.py +6 -0
- umap/tests/integration/test_draw_polyline.py +11 -0
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +541 -0
- umap/tests/integration/test_filters.py +616 -0
- umap/tests/integration/test_iframe.py +1 -1
- umap/tests/integration/test_import.py +38 -42
- umap/tests/integration/test_map_preview.py +1 -1
- umap/tests/integration/test_picto.py +1 -1
- umap/tests/integration/test_popup.py +31 -0
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_save.py +1 -1
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +71 -20
- umap/tests/test_dashboard.py +11 -1
- umap/tests/test_statics.py +2 -2
- umap/tests/test_utils.py +19 -2
- umap/tests/test_views.py +1 -1
- umap/urls.py +1 -0
- umap/utils.py +8 -1
- umap/views.py +5 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
- {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/RECORD +237 -233
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -11,15 +11,16 @@
|
|
|
11
11
|
# Maciej Kowalik <m.kowalik.79@gmail.com>, 2016
|
|
12
12
|
# maro21 OSM, 2020-2021
|
|
13
13
|
# Piotr Strebski <strebski@gmail.com>, 2020
|
|
14
|
+
# Piotr Strebski <strebski@gmail.com>, 2020
|
|
14
15
|
# Teiron, 2016
|
|
15
16
|
# Tomasz Nycz <tomasz.merkato@gmail.com>, 2018
|
|
16
17
|
msgid ""
|
|
17
18
|
msgstr ""
|
|
18
19
|
"Project-Id-Version: uMap\n"
|
|
19
20
|
"Report-Msgid-Bugs-To: \n"
|
|
20
|
-
"POT-Creation-Date: 2025-
|
|
21
|
+
"POT-Creation-Date: 2025-10-17 06:00+0000\n"
|
|
21
22
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
22
|
-
"Last-Translator:
|
|
23
|
+
"Last-Translator: Tomasz Nycz <tomasz.merkato@gmail.com>, 2018\n"
|
|
23
24
|
"Language-Team: Polish (http://app.transifex.com/openstreetmap/umap/language/pl/)\n"
|
|
24
25
|
"MIME-Version: 1.0\n"
|
|
25
26
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -33,7 +34,7 @@ msgstr ""
|
|
|
33
34
|
|
|
34
35
|
#: decorators.py:60
|
|
35
36
|
msgid "This map is not publicly available"
|
|
36
|
-
msgstr ""
|
|
37
|
+
msgstr "Ta mapa nie jest dostępna publicznie"
|
|
37
38
|
|
|
38
39
|
#: middleware.py:19
|
|
39
40
|
msgid "Site is readonly for maintenance"
|
|
@@ -51,7 +52,7 @@ msgstr ""
|
|
|
51
52
|
msgid "name"
|
|
52
53
|
msgstr "nazwa"
|
|
53
54
|
|
|
54
|
-
#: models.py:63 models.py:
|
|
55
|
+
#: models.py:63 models.py:507
|
|
55
56
|
msgid "description"
|
|
56
57
|
msgstr "opis"
|
|
57
58
|
|
|
@@ -71,29 +72,29 @@ msgstr "Szablon URL używający formatu kafelków OSM"
|
|
|
71
72
|
msgid "Order of the tilelayers in the edit box"
|
|
72
73
|
msgstr "Kolejność podkładów w oknie edycji"
|
|
73
74
|
|
|
74
|
-
#: models.py:176 models.py:
|
|
75
|
+
#: models.py:176 models.py:501
|
|
75
76
|
msgid "Only editable with secret edit link"
|
|
76
77
|
msgstr "Edycja możliwa tylko z sekretnym odnośnikiem"
|
|
77
78
|
|
|
78
|
-
#: models.py:177 models.py:
|
|
79
|
+
#: models.py:177 models.py:502
|
|
79
80
|
msgid "Everyone can edit"
|
|
80
81
|
msgstr "Wszyscy mogą edytować"
|
|
81
82
|
|
|
82
|
-
#: models.py:180 models.py:
|
|
83
|
+
#: models.py:180 models.py:495
|
|
83
84
|
msgid "Everyone"
|
|
84
85
|
msgstr "Każdy"
|
|
85
86
|
|
|
86
|
-
#: models.py:181 models.py:190 models.py:
|
|
87
|
+
#: models.py:181 models.py:190 models.py:496
|
|
87
88
|
msgid "Editors and team only"
|
|
88
|
-
msgstr ""
|
|
89
|
+
msgstr "Tylko edytorzy i zespół"
|
|
89
90
|
|
|
90
|
-
#: models.py:182 models.py:
|
|
91
|
+
#: models.py:182 models.py:497
|
|
91
92
|
msgid "Owner only"
|
|
92
93
|
msgstr "Tylko właściciel"
|
|
93
94
|
|
|
94
95
|
#: models.py:185
|
|
95
96
|
msgid "Draft (private)"
|
|
96
|
-
msgstr ""
|
|
97
|
+
msgstr "Szkic (prywatnie)"
|
|
97
98
|
|
|
98
99
|
#: models.py:186
|
|
99
100
|
msgid "Everyone (public)"
|
|
@@ -107,9 +108,9 @@ msgstr "Każdy z linkiem"
|
|
|
107
108
|
msgid "Blocked"
|
|
108
109
|
msgstr "Zablokowane"
|
|
109
110
|
|
|
110
|
-
#: models.py:192 models.py:
|
|
111
|
+
#: models.py:192 models.py:491
|
|
111
112
|
msgid "Deleted"
|
|
112
|
-
msgstr ""
|
|
113
|
+
msgstr "Usunięto"
|
|
113
114
|
|
|
114
115
|
#: models.py:195
|
|
115
116
|
msgid "center"
|
|
@@ -145,127 +146,127 @@ msgstr "edytorzy"
|
|
|
145
146
|
|
|
146
147
|
#: models.py:224
|
|
147
148
|
msgid "team"
|
|
148
|
-
msgstr ""
|
|
149
|
+
msgstr "zespół"
|
|
149
150
|
|
|
150
|
-
#: models.py:230 models.py:
|
|
151
|
+
#: models.py:230 models.py:523
|
|
151
152
|
msgid "edit status"
|
|
152
153
|
msgstr "status edycji"
|
|
153
154
|
|
|
154
|
-
#: models.py:235 models.py:
|
|
155
|
+
#: models.py:235 models.py:528
|
|
155
156
|
msgid "share status"
|
|
156
157
|
msgstr "udostępnij status"
|
|
157
158
|
|
|
158
|
-
#: models.py:238 models.py:
|
|
159
|
+
#: models.py:238 models.py:518
|
|
159
160
|
msgid "settings"
|
|
160
161
|
msgstr "ustawienia"
|
|
161
162
|
|
|
162
163
|
#: models.py:243
|
|
163
164
|
msgid "save as template"
|
|
164
|
-
msgstr ""
|
|
165
|
+
msgstr "zapisz jako szablon"
|
|
165
166
|
|
|
166
167
|
#: models.py:244
|
|
167
168
|
msgid "This map is a template map."
|
|
168
|
-
msgstr ""
|
|
169
|
+
msgstr "Ta mapa jest szablonem"
|
|
169
170
|
|
|
170
171
|
#: models.py:420
|
|
171
172
|
msgid "Clone of"
|
|
172
173
|
msgstr "Kopia"
|
|
173
174
|
|
|
174
|
-
#: models.py:
|
|
175
|
+
#: models.py:490 models.py:494 models.py:500
|
|
175
176
|
msgid "Inherit"
|
|
176
177
|
msgstr "Odziedzicz"
|
|
177
178
|
|
|
178
|
-
#: models.py:
|
|
179
|
+
#: models.py:513
|
|
179
180
|
msgid "display on load"
|
|
180
181
|
msgstr "wyświetl po załadowaniu"
|
|
181
182
|
|
|
182
|
-
#: models.py:
|
|
183
|
+
#: models.py:514
|
|
183
184
|
msgid "Display this layer on load."
|
|
184
185
|
msgstr "Wyświetl tę warstwę po załadowaniu."
|
|
185
186
|
|
|
186
187
|
#: settings/base.py:283
|
|
187
188
|
msgid "uMap user documentation"
|
|
188
|
-
msgstr ""
|
|
189
|
+
msgstr "Dokumentacja użytkownika uMap"
|
|
189
190
|
|
|
190
191
|
#: settings/base.py:288
|
|
191
192
|
msgid "Video tutorials"
|
|
192
|
-
msgstr ""
|
|
193
|
+
msgstr "Poradniki wideo"
|
|
193
194
|
|
|
194
195
|
#: settings/base.py:293
|
|
195
196
|
msgid "OpenStreetMap.org forum"
|
|
196
|
-
msgstr ""
|
|
197
|
+
msgstr "Forum OpenStreetMap.org"
|
|
197
198
|
|
|
198
199
|
#: settings/base.py:298
|
|
199
200
|
msgid "OpenStreetMap France forum"
|
|
200
|
-
msgstr ""
|
|
201
|
+
msgstr "Forum OpenStreetMap France"
|
|
201
202
|
|
|
202
203
|
#: settings/base.py:318
|
|
203
204
|
msgid "Art and Culture"
|
|
204
|
-
msgstr ""
|
|
205
|
+
msgstr "Sztuka i Kultura"
|
|
205
206
|
|
|
206
207
|
#: settings/base.py:319
|
|
207
208
|
msgid "Cycling"
|
|
208
|
-
msgstr ""
|
|
209
|
+
msgstr "Kolarstwo"
|
|
209
210
|
|
|
210
211
|
#: settings/base.py:320
|
|
211
212
|
msgid "Business"
|
|
212
|
-
msgstr ""
|
|
213
|
+
msgstr "Biznes"
|
|
213
214
|
|
|
214
215
|
#: settings/base.py:321
|
|
215
216
|
msgid "Environment"
|
|
216
|
-
msgstr ""
|
|
217
|
+
msgstr "Środowisko"
|
|
217
218
|
|
|
218
219
|
#: settings/base.py:322
|
|
219
220
|
msgid "Education"
|
|
220
|
-
msgstr ""
|
|
221
|
+
msgstr "Edukacja"
|
|
221
222
|
|
|
222
223
|
#: settings/base.py:323
|
|
223
224
|
msgid "Food and Agriculture"
|
|
224
|
-
msgstr ""
|
|
225
|
+
msgstr "Żywność i rolnictwo"
|
|
225
226
|
|
|
226
227
|
#: settings/base.py:324
|
|
227
228
|
msgid "Geopolitics"
|
|
228
|
-
msgstr ""
|
|
229
|
+
msgstr "Geopolityka"
|
|
229
230
|
|
|
230
231
|
#: settings/base.py:325
|
|
231
232
|
msgid "Health"
|
|
232
|
-
msgstr ""
|
|
233
|
+
msgstr "Zdrowie"
|
|
233
234
|
|
|
234
235
|
#: settings/base.py:326
|
|
235
236
|
msgid "Hiking"
|
|
236
|
-
msgstr ""
|
|
237
|
+
msgstr "Piesze wędrówki"
|
|
237
238
|
|
|
238
239
|
#: settings/base.py:327
|
|
239
240
|
msgid "History"
|
|
240
|
-
msgstr ""
|
|
241
|
+
msgstr "Historia"
|
|
241
242
|
|
|
242
243
|
#: settings/base.py:328
|
|
243
244
|
msgid "Public sector"
|
|
244
|
-
msgstr ""
|
|
245
|
+
msgstr "Sektor publiczny"
|
|
245
246
|
|
|
246
247
|
#: settings/base.py:329
|
|
247
248
|
msgid "Science"
|
|
248
|
-
msgstr ""
|
|
249
|
+
msgstr "Nauka"
|
|
249
250
|
|
|
250
251
|
#: settings/base.py:330
|
|
251
252
|
msgid "Shopping"
|
|
252
|
-
msgstr ""
|
|
253
|
+
msgstr "Zakupy"
|
|
253
254
|
|
|
254
255
|
#: settings/base.py:331
|
|
255
256
|
msgid "Sport and Leisure"
|
|
256
|
-
msgstr ""
|
|
257
|
+
msgstr "Sport i wypoczynek"
|
|
257
258
|
|
|
258
259
|
#: settings/base.py:332
|
|
259
260
|
msgid "Travel"
|
|
260
|
-
msgstr ""
|
|
261
|
+
msgstr "Podróż"
|
|
261
262
|
|
|
262
263
|
#: settings/base.py:333
|
|
263
264
|
msgid "Transports"
|
|
264
|
-
msgstr ""
|
|
265
|
+
msgstr "Transport"
|
|
265
266
|
|
|
266
267
|
#: settings/base.py:334
|
|
267
268
|
msgid "Tourism"
|
|
268
|
-
msgstr ""
|
|
269
|
+
msgstr "Turystyka"
|
|
269
270
|
|
|
270
271
|
#: templates/403.html:8
|
|
271
272
|
msgid ""
|
|
@@ -276,16 +277,16 @@ msgstr ""
|
|
|
276
277
|
|
|
277
278
|
#: templates/403.html:10 templates/404.html:8
|
|
278
279
|
msgid "← Go to the homepage"
|
|
279
|
-
msgstr ""
|
|
280
|
+
msgstr "← Idź do strony głównej"
|
|
280
281
|
|
|
281
282
|
#: templates/404.html:7
|
|
282
283
|
msgid "404 Page Not Found"
|
|
283
|
-
msgstr ""
|
|
284
|
+
msgstr "404 nie znaleziono strony"
|
|
284
285
|
|
|
285
286
|
#: templates/auth/user_detail.html:6
|
|
286
287
|
#, python-format
|
|
287
288
|
msgid "%(current_user)s’s maps"
|
|
288
|
-
msgstr ""
|
|
289
|
+
msgstr "Mapy %(current_user)s"
|
|
289
290
|
|
|
290
291
|
#: templates/auth/user_detail.html:12
|
|
291
292
|
#, python-format
|
|
@@ -299,7 +300,7 @@ msgstr "%(current_user)s nie posiada map."
|
|
|
299
300
|
|
|
300
301
|
#: templates/auth/user_form.html:6
|
|
301
302
|
msgid "My Profile"
|
|
302
|
-
msgstr ""
|
|
303
|
+
msgstr "Mój Profil"
|
|
303
304
|
|
|
304
305
|
#: templates/auth/user_form.html:24 templates/umap/team_form.html:25
|
|
305
306
|
msgid "Save"
|
|
@@ -307,17 +308,17 @@ msgstr "Zapisz"
|
|
|
307
308
|
|
|
308
309
|
#: templates/auth/user_form.html:30
|
|
309
310
|
msgid "Your current providers"
|
|
310
|
-
msgstr ""
|
|
311
|
+
msgstr "Twoi obecni dostawcy"
|
|
311
312
|
|
|
312
313
|
#: templates/auth/user_form.html:44
|
|
313
314
|
msgid "Connect to another provider"
|
|
314
|
-
msgstr ""
|
|
315
|
+
msgstr "Połącz się z innym dostawcą"
|
|
315
316
|
|
|
316
317
|
#: templates/auth/user_form.html:47
|
|
317
318
|
msgid ""
|
|
318
319
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
319
320
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
320
|
-
msgstr ""
|
|
321
|
+
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
322
|
|
|
322
323
|
#: templates/auth/user_stars.html:6
|
|
323
324
|
#, python-format
|
|
@@ -334,7 +335,7 @@ msgstr "Przeglądaj mapy oznaczone gwiazdką przez %(current_user)s"
|
|
|
334
335
|
msgid "%(current_user)s has no starred maps yet."
|
|
335
336
|
msgstr "%(current_user)s nie ma map oznaczonych gwiazdką."
|
|
336
337
|
|
|
337
|
-
#: templates/base.html:
|
|
338
|
+
#: templates/base.html:16
|
|
338
339
|
msgid ""
|
|
339
340
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
340
341
|
"them in your site."
|
|
@@ -362,7 +363,7 @@ msgstr "Hasło"
|
|
|
362
363
|
|
|
363
364
|
#: templates/registration/login.html:52
|
|
364
365
|
msgid "Please choose a provider:"
|
|
365
|
-
msgstr ""
|
|
366
|
+
msgstr "Wybierz dostawcę:"
|
|
366
367
|
|
|
367
368
|
#: templates/umap/about.html:5 templates/umap/navigation.html:22
|
|
368
369
|
msgid "About"
|
|
@@ -418,48 +419,54 @@ msgid "Play with the demo"
|
|
|
418
419
|
msgstr "Zobacz wersję demo"
|
|
419
420
|
|
|
420
421
|
#: templates/umap/components/alerts/alert.html:17
|
|
421
|
-
#: templates/umap/components/alerts/alert.html:
|
|
422
|
-
#: templates/umap/components/alerts/alert.html:
|
|
422
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
423
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
423
424
|
msgid "Close"
|
|
424
425
|
msgstr "Zamknij"
|
|
425
426
|
|
|
426
427
|
#: templates/umap/components/alerts/alert.html:32
|
|
427
428
|
#, python-format
|
|
428
429
|
msgid ""
|
|
429
|
-
"
|
|
430
|
-
"
|
|
431
|
-
"
|
|
432
|
-
msgstr "
|
|
430
|
+
"Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
|
|
431
|
+
"class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
432
|
+
"class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
|
|
433
|
+
msgstr ""
|
|
433
434
|
|
|
434
|
-
#: templates/umap/components/alerts/alert.html:
|
|
435
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
436
|
+
msgid ""
|
|
437
|
+
"Yes, I want to continue editing anonymously, I will save the secret edit "
|
|
438
|
+
"link to be able to edit this map later or on another device"
|
|
439
|
+
msgstr ""
|
|
440
|
+
|
|
441
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
435
442
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
436
443
|
msgstr ""
|
|
437
444
|
|
|
438
|
-
#: templates/umap/components/alerts/alert.html:
|
|
445
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
439
446
|
msgid "Copy link"
|
|
440
447
|
msgstr "Skopiuj link"
|
|
441
448
|
|
|
442
|
-
#: templates/umap/components/alerts/alert.html:
|
|
449
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
443
450
|
msgid "Enter your email address to receive the secret link:"
|
|
444
451
|
msgstr "Wprowadź swój adres email, aby otrzymać tajny link:"
|
|
445
452
|
|
|
446
|
-
#: templates/umap/components/alerts/alert.html:
|
|
453
|
+
#: templates/umap/components/alerts/alert.html:56
|
|
447
454
|
msgid "Email"
|
|
448
455
|
msgstr "Email"
|
|
449
456
|
|
|
450
|
-
#: templates/umap/components/alerts/alert.html:
|
|
457
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
451
458
|
msgid "Send me the link"
|
|
452
459
|
msgstr "Wyślij mi link"
|
|
453
460
|
|
|
454
|
-
#: templates/umap/components/alerts/alert.html:
|
|
461
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
455
462
|
msgid "See their edits in another tab"
|
|
456
463
|
msgstr "Zobacz edycje innych w osobnej zakładce"
|
|
457
464
|
|
|
458
|
-
#: templates/umap/components/alerts/alert.html:
|
|
465
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
459
466
|
msgid "Keep your changes and loose theirs"
|
|
460
467
|
msgstr "Zachowaj swoje zmiany i utrać zmiany innych"
|
|
461
468
|
|
|
462
|
-
#: templates/umap/components/alerts/alert.html:
|
|
469
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
463
470
|
msgid "Keep their changes and loose yours"
|
|
464
471
|
msgstr "Zachowaj zmiany innych i utrać swoje"
|
|
465
472
|
|
|
@@ -480,19 +487,19 @@ msgstr "To jest serwer demonstracyjny, używany do testów i niefinalnych wydań
|
|
|
480
487
|
|
|
481
488
|
#: templates/umap/content_footer.html:5
|
|
482
489
|
msgid "An OpenStreetMap project"
|
|
483
|
-
msgstr ""
|
|
490
|
+
msgstr "Projekt OpenStreetMap"
|
|
484
491
|
|
|
485
492
|
#: templates/umap/content_footer.html:6
|
|
486
493
|
msgid "version"
|
|
487
|
-
msgstr ""
|
|
494
|
+
msgstr "wersja"
|
|
488
495
|
|
|
489
496
|
#: templates/umap/content_footer.html:7
|
|
490
497
|
msgid "Hosted by"
|
|
491
|
-
msgstr ""
|
|
498
|
+
msgstr "Prowadzone przez"
|
|
492
499
|
|
|
493
500
|
#: templates/umap/content_footer.html:8
|
|
494
501
|
msgid "Contact"
|
|
495
|
-
msgstr ""
|
|
502
|
+
msgstr "Kontakt"
|
|
496
503
|
|
|
497
504
|
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
498
505
|
msgid "Help"
|
|
@@ -510,11 +517,11 @@ msgstr "Moje Mapy"
|
|
|
510
517
|
#: templates/umap/dashboard_menu.html:11
|
|
511
518
|
#, python-format
|
|
512
519
|
msgid "My Templates (%(count)s)"
|
|
513
|
-
msgstr ""
|
|
520
|
+
msgstr "Moje szablony (%(count)s)"
|
|
514
521
|
|
|
515
522
|
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
516
523
|
msgid "My Templates"
|
|
517
|
-
msgstr ""
|
|
524
|
+
msgstr "Moje szablony"
|
|
518
525
|
|
|
519
526
|
#: templates/umap/dashboard_menu.html:17
|
|
520
527
|
msgid "My profile"
|
|
@@ -522,7 +529,7 @@ msgstr "Mój profil"
|
|
|
522
529
|
|
|
523
530
|
#: templates/umap/dashboard_menu.html:20
|
|
524
531
|
msgid "My teams"
|
|
525
|
-
msgstr ""
|
|
532
|
+
msgstr "Mój zespół"
|
|
526
533
|
|
|
527
534
|
#: templates/umap/home.html:14
|
|
528
535
|
msgid "Map of the uMaps"
|
|
@@ -538,19 +545,19 @@ msgstr "Jesteś zalogowany. Kontynuowanie..."
|
|
|
538
545
|
|
|
539
546
|
#: templates/umap/map_list.html:15
|
|
540
547
|
msgid "template"
|
|
541
|
-
msgstr ""
|
|
548
|
+
msgstr "szablon"
|
|
542
549
|
|
|
543
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
550
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
544
551
|
msgid "by"
|
|
545
552
|
msgstr "przez"
|
|
546
553
|
|
|
547
554
|
#: templates/umap/map_list.html:22
|
|
548
555
|
msgid "See the template"
|
|
549
|
-
msgstr ""
|
|
556
|
+
msgstr "Zobacz szablon"
|
|
550
557
|
|
|
551
558
|
#: templates/umap/map_list.html:22
|
|
552
559
|
msgid "See the map"
|
|
553
|
-
msgstr ""
|
|
560
|
+
msgstr "Zobacz mapę"
|
|
554
561
|
|
|
555
562
|
#: templates/umap/map_list.html:28
|
|
556
563
|
msgid "More"
|
|
@@ -633,7 +640,7 @@ msgstr "ostatni"
|
|
|
633
640
|
#: templates/umap/map_table.html:140
|
|
634
641
|
#, python-format
|
|
635
642
|
msgid "Lines per page: %(per_page)s"
|
|
636
|
-
msgstr ""
|
|
643
|
+
msgstr "Linijek na stronę: %(per_page)s"
|
|
637
644
|
|
|
638
645
|
#: templates/umap/map_table.html:145
|
|
639
646
|
#, python-format
|
|
@@ -719,7 +726,7 @@ msgstr "Nie znaleziono mapy."
|
|
|
719
726
|
|
|
720
727
|
#: templates/umap/search.html:36
|
|
721
728
|
msgid "Latest created maps in category"
|
|
722
|
-
msgstr ""
|
|
729
|
+
msgstr "Ostatnio utworzone mapy w kategorii"
|
|
723
730
|
|
|
724
731
|
#: templates/umap/search.html:43
|
|
725
732
|
msgid "Latest created maps"
|
|
@@ -729,9 +736,9 @@ msgstr "Ostatnio utworzone mapy"
|
|
|
729
736
|
msgid "Search maps"
|
|
730
737
|
msgstr "Znajdź mapy"
|
|
731
738
|
|
|
732
|
-
#: templates/umap/search_bar.html:14
|
|
739
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
733
740
|
msgid "Any category"
|
|
734
|
-
msgstr ""
|
|
741
|
+
msgstr "Dowolna kategoria"
|
|
735
742
|
|
|
736
743
|
#: templates/umap/search_bar.html:19
|
|
737
744
|
msgid "Search"
|
|
@@ -739,34 +746,34 @@ msgstr "Szukaj"
|
|
|
739
746
|
|
|
740
747
|
#: templates/umap/team_confirm_delete.html:6
|
|
741
748
|
msgid "Team deletion"
|
|
742
|
-
msgstr ""
|
|
749
|
+
msgstr "Usunięcie zespołu"
|
|
743
750
|
|
|
744
751
|
#: templates/umap/team_detail.html:6
|
|
745
752
|
#, python-format
|
|
746
753
|
msgid "%(current_team)s’s maps"
|
|
747
|
-
msgstr ""
|
|
754
|
+
msgstr "Mapy zespołu %(current_team)s"
|
|
748
755
|
|
|
749
756
|
#: templates/umap/team_detail.html:14
|
|
750
757
|
#, python-format
|
|
751
758
|
msgid "Browse %(current_team)s's maps"
|
|
752
|
-
msgstr ""
|
|
759
|
+
msgstr "Przeglądaj mapy zespołu %(current_team)s"
|
|
753
760
|
|
|
754
761
|
#: templates/umap/team_detail.html:26
|
|
755
762
|
#, python-format
|
|
756
763
|
msgid "%(current_team)s has no public maps."
|
|
757
|
-
msgstr ""
|
|
764
|
+
msgstr "Zespół %(current_team)s nie ma map publicznych"
|
|
758
765
|
|
|
759
766
|
#: templates/umap/team_form.html:6
|
|
760
767
|
msgid "Create or edit a team"
|
|
761
|
-
msgstr ""
|
|
768
|
+
msgstr "Utwórz lub edytuj zespół"
|
|
762
769
|
|
|
763
770
|
#: templates/umap/team_form.html:28
|
|
764
771
|
msgid "Delete this team"
|
|
765
|
-
msgstr ""
|
|
772
|
+
msgstr "Usuń ten zespół"
|
|
766
773
|
|
|
767
774
|
#: templates/umap/team_form.html:51
|
|
768
775
|
msgid "Add user"
|
|
769
|
-
msgstr ""
|
|
776
|
+
msgstr "Dodaj użytkownika"
|
|
770
777
|
|
|
771
778
|
#: templates/umap/user_dashboard.html:10
|
|
772
779
|
msgid "Search my maps"
|
|
@@ -822,70 +829,74 @@ msgstr ""
|
|
|
822
829
|
msgid "No template found."
|
|
823
830
|
msgstr ""
|
|
824
831
|
|
|
825
|
-
#: views.py:
|
|
832
|
+
#: views.py:235
|
|
826
833
|
msgid "Cannot delete a team with more than one member"
|
|
827
834
|
msgstr ""
|
|
828
835
|
|
|
829
|
-
#: views.py:
|
|
836
|
+
#: views.py:239
|
|
830
837
|
#, python-format
|
|
831
838
|
msgid "Team “%(name)s” has been deleted"
|
|
832
839
|
msgstr ""
|
|
833
840
|
|
|
834
|
-
#: views.py:
|
|
841
|
+
#: views.py:464
|
|
835
842
|
msgid "View the map"
|
|
836
843
|
msgstr "Zobacz mapę"
|
|
837
844
|
|
|
838
|
-
#: views.py:
|
|
845
|
+
#: views.py:872
|
|
839
846
|
msgid "See full screen"
|
|
840
847
|
msgstr ""
|
|
841
848
|
|
|
842
|
-
#: views.py:
|
|
849
|
+
#: views.py:1015
|
|
843
850
|
msgid "Map editors updated with success!"
|
|
844
851
|
msgstr "Edytorzy mapy zaktualizowani pomyślnie!"
|
|
845
852
|
|
|
846
|
-
#: views.py:
|
|
853
|
+
#: views.py:1051
|
|
847
854
|
#, python-format
|
|
848
855
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
849
856
|
msgstr "Link uMap do edytowania twojej mapy: %(map_name)s"
|
|
850
857
|
|
|
851
|
-
#: views.py:
|
|
858
|
+
#: views.py:1054
|
|
852
859
|
#, python-format
|
|
853
860
|
msgid "Here is your secret edit link: %(link)s"
|
|
854
861
|
msgstr "Oto twój sekretny link do edycji: %(link)s"
|
|
855
862
|
|
|
856
|
-
#: views.py:
|
|
863
|
+
#: views.py:1061
|
|
857
864
|
#, python-format
|
|
858
865
|
msgid "Can't send email to %(email)s"
|
|
859
866
|
msgstr "Nie można wysłać emaila do %(email)s"
|
|
860
867
|
|
|
861
|
-
#: views.py:
|
|
868
|
+
#: views.py:1064
|
|
862
869
|
#, python-format
|
|
863
870
|
msgid "Email sent to %(email)s"
|
|
864
871
|
msgstr "Email wysłany do %(email)s"
|
|
865
872
|
|
|
866
|
-
#: views.py:
|
|
873
|
+
#: views.py:1075
|
|
867
874
|
msgid "Only its owner can delete the map."
|
|
868
875
|
msgstr "Tylko właściciel może usunąć mapę."
|
|
869
876
|
|
|
870
|
-
#: views.py:
|
|
877
|
+
#: views.py:1081
|
|
871
878
|
msgid "Map successfully deleted."
|
|
872
879
|
msgstr "Pomyślnie usunięto mapę."
|
|
873
880
|
|
|
874
|
-
#: views.py:
|
|
881
|
+
#: views.py:1107
|
|
875
882
|
#, python-format
|
|
876
883
|
msgid ""
|
|
877
884
|
"Your map has been cloned! If you want to edit this map from another "
|
|
878
885
|
"computer, please use this link: %(anonymous_url)s"
|
|
879
886
|
msgstr "Twoja mapa została skopiowana! Jeśli chcesz edytować ją z innego komputera, użyj odnośnika: %(anonymous_url)s"
|
|
880
887
|
|
|
881
|
-
#: views.py:
|
|
888
|
+
#: views.py:1112
|
|
882
889
|
msgid "Congratulations, your map has been cloned!"
|
|
883
890
|
msgstr "Gratulacje, twoja mapa została skopiowana!"
|
|
884
891
|
|
|
885
|
-
#: views.py:
|
|
892
|
+
#: views.py:1366
|
|
886
893
|
msgid "Layer successfully deleted."
|
|
887
894
|
msgstr "Warstwa usunięta pomyślnie."
|
|
888
895
|
|
|
889
|
-
#: views.py:
|
|
896
|
+
#: views.py:1388
|
|
890
897
|
msgid "Permissions updated with success!"
|
|
891
898
|
msgstr "Pomyślnie zaktualizowano uprawnienia!"
|
|
899
|
+
|
|
900
|
+
#: views.py:1405
|
|
901
|
+
msgid "Generic"
|
|
902
|
+
msgstr ""
|
|
Binary file
|