umap-project 2.5.0__py3-none-any.whl → 2.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/admin.py +6 -1
- umap/context_processors.py +2 -1
- umap/decorators.py +13 -2
- umap/forms.py +26 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +252 -146
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +274 -162
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +299 -187
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +215 -159
- umap/locale/en/LC_MESSAGES/django.po +211 -155
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +255 -144
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +254 -198
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +216 -160
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +215 -159
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +252 -146
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +252 -146
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +254 -148
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +215 -159
- umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- umap/locale/sv/LC_MESSAGES/django.po +254 -143
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
- umap/migrations/0022_add_team.py +94 -0
- umap/models.py +45 -10
- umap/settings/__init__.py +2 -0
- umap/settings/base.py +9 -2
- umap/static/umap/base.css +32 -41
- umap/static/umap/content.css +19 -25
- umap/static/umap/css/icon.css +63 -37
- umap/static/umap/css/importers.css +1 -1
- umap/static/umap/css/slideshow.css +7 -5
- umap/static/umap/css/tableeditor.css +4 -3
- umap/static/umap/img/16-white.svg +1 -4
- umap/static/umap/img/16.svg +2 -6
- umap/static/umap/img/24-white.svg +4 -4
- umap/static/umap/img/24.svg +6 -6
- umap/static/umap/img/source/16-white.svg +2 -5
- umap/static/umap/img/source/16.svg +3 -7
- umap/static/umap/img/source/24-white.svg +7 -14
- umap/static/umap/img/source/24.svg +10 -17
- umap/static/umap/js/components/alerts/alert.css +20 -8
- umap/static/umap/js/modules/autocomplete.js +8 -12
- umap/static/umap/js/modules/browser.js +4 -3
- umap/static/umap/js/modules/caption.js +9 -11
- umap/static/umap/js/modules/data/features.js +993 -0
- umap/static/umap/js/modules/data/layer.js +1210 -0
- umap/static/umap/js/modules/formatter.js +12 -3
- umap/static/umap/js/modules/global.js +21 -5
- umap/static/umap/js/modules/importers/overpass.js +22 -8
- umap/static/umap/js/modules/permissions.js +280 -0
- umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
- umap/static/umap/js/modules/rendering/layers/base.js +105 -0
- umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
- umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
- umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
- umap/static/umap/js/modules/rendering/popup.js +99 -0
- umap/static/umap/js/modules/rendering/template.js +217 -0
- umap/static/umap/js/modules/rendering/ui.js +610 -0
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/js/modules/schema.js +25 -1
- umap/static/umap/js/modules/share.js +66 -45
- umap/static/umap/js/modules/sync/updaters.js +9 -10
- umap/static/umap/js/modules/tableeditor.js +7 -7
- umap/static/umap/js/modules/ui/dialog.js +8 -4
- umap/static/umap/js/modules/utils.js +22 -13
- umap/static/umap/js/umap.controls.js +80 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +41 -17
- umap/static/umap/js/umap.js +72 -65
- umap/static/umap/locale/am_ET.js +8 -2
- umap/static/umap/locale/am_ET.json +8 -2
- umap/static/umap/locale/ar.js +8 -2
- umap/static/umap/locale/ar.json +8 -2
- umap/static/umap/locale/ast.js +8 -2
- umap/static/umap/locale/ast.json +8 -2
- umap/static/umap/locale/bg.js +8 -2
- umap/static/umap/locale/bg.json +8 -2
- umap/static/umap/locale/br.js +42 -36
- umap/static/umap/locale/br.json +42 -36
- umap/static/umap/locale/ca.js +67 -61
- umap/static/umap/locale/ca.json +67 -61
- umap/static/umap/locale/cs_CZ.js +8 -2
- umap/static/umap/locale/cs_CZ.json +8 -2
- umap/static/umap/locale/da.js +8 -2
- umap/static/umap/locale/da.json +8 -2
- umap/static/umap/locale/de.js +143 -137
- umap/static/umap/locale/de.json +143 -137
- umap/static/umap/locale/el.js +54 -48
- umap/static/umap/locale/el.json +54 -48
- umap/static/umap/locale/en.js +10 -2
- umap/static/umap/locale/en.json +10 -2
- umap/static/umap/locale/en_US.json +8 -2
- umap/static/umap/locale/es.js +8 -2
- umap/static/umap/locale/es.json +8 -2
- umap/static/umap/locale/et.js +8 -2
- umap/static/umap/locale/et.json +8 -2
- umap/static/umap/locale/eu.js +346 -338
- umap/static/umap/locale/eu.json +346 -338
- umap/static/umap/locale/fa_IR.js +415 -407
- umap/static/umap/locale/fa_IR.json +415 -407
- umap/static/umap/locale/fi.js +8 -2
- umap/static/umap/locale/fi.json +8 -2
- umap/static/umap/locale/fr.js +11 -3
- umap/static/umap/locale/fr.json +11 -3
- umap/static/umap/locale/gl.js +8 -2
- umap/static/umap/locale/gl.json +8 -2
- umap/static/umap/locale/he.js +8 -2
- umap/static/umap/locale/he.json +8 -2
- umap/static/umap/locale/hr.js +8 -2
- umap/static/umap/locale/hr.json +8 -2
- umap/static/umap/locale/hu.js +31 -23
- umap/static/umap/locale/hu.json +31 -23
- umap/static/umap/locale/id.js +8 -2
- umap/static/umap/locale/id.json +8 -2
- umap/static/umap/locale/is.js +8 -2
- umap/static/umap/locale/is.json +8 -2
- umap/static/umap/locale/it.js +8 -2
- umap/static/umap/locale/it.json +8 -2
- umap/static/umap/locale/ja.js +8 -2
- umap/static/umap/locale/ja.json +8 -2
- umap/static/umap/locale/ko.js +8 -2
- umap/static/umap/locale/ko.json +8 -2
- umap/static/umap/locale/lt.js +8 -2
- umap/static/umap/locale/lt.json +8 -2
- umap/static/umap/locale/ms.js +8 -2
- umap/static/umap/locale/ms.json +8 -2
- umap/static/umap/locale/nl.js +8 -2
- umap/static/umap/locale/nl.json +8 -2
- umap/static/umap/locale/no.js +8 -2
- umap/static/umap/locale/no.json +8 -2
- umap/static/umap/locale/pl.js +54 -48
- umap/static/umap/locale/pl.json +54 -48
- umap/static/umap/locale/pl_PL.json +8 -2
- umap/static/umap/locale/pt.js +24 -18
- umap/static/umap/locale/pt.json +24 -18
- umap/static/umap/locale/pt_BR.js +8 -2
- umap/static/umap/locale/pt_BR.json +8 -2
- umap/static/umap/locale/pt_PT.js +214 -208
- umap/static/umap/locale/pt_PT.json +214 -208
- umap/static/umap/locale/ro.js +8 -2
- umap/static/umap/locale/ro.json +8 -2
- umap/static/umap/locale/ru.js +8 -2
- umap/static/umap/locale/ru.json +8 -2
- umap/static/umap/locale/sk_SK.js +8 -2
- umap/static/umap/locale/sk_SK.json +8 -2
- umap/static/umap/locale/sl.js +8 -2
- umap/static/umap/locale/sl.json +8 -2
- umap/static/umap/locale/sr.js +8 -2
- umap/static/umap/locale/sr.json +8 -2
- umap/static/umap/locale/sv.js +8 -2
- umap/static/umap/locale/sv.json +8 -2
- umap/static/umap/locale/th_TH.js +33 -27
- umap/static/umap/locale/th_TH.json +33 -27
- umap/static/umap/locale/tr.js +8 -2
- umap/static/umap/locale/tr.json +8 -2
- umap/static/umap/locale/uk_UA.js +8 -2
- umap/static/umap/locale/uk_UA.json +8 -2
- umap/static/umap/locale/vi.js +8 -2
- umap/static/umap/locale/vi.json +8 -2
- umap/static/umap/locale/vi_VN.json +8 -2
- umap/static/umap/locale/zh.js +8 -2
- umap/static/umap/locale/zh.json +8 -2
- umap/static/umap/locale/zh_CN.json +8 -2
- umap/static/umap/locale/zh_TW.Big5.json +8 -2
- umap/static/umap/locale/zh_TW.js +102 -96
- umap/static/umap/locale/zh_TW.json +102 -96
- umap/static/umap/map.css +111 -108
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/storage.py +4 -3
- umap/templates/404.html +5 -1
- umap/templates/500.html +3 -1
- umap/templates/auth/user_detail.html +8 -2
- umap/templates/auth/user_form.html +19 -10
- umap/templates/auth/user_stars.html +8 -2
- umap/templates/base.html +1 -0
- umap/templates/registration/login.html +18 -3
- umap/templates/umap/about.html +1 -0
- umap/templates/umap/about_summary.html +22 -7
- umap/templates/umap/components/alerts/alert.html +42 -21
- umap/templates/umap/content.html +2 -0
- umap/templates/umap/content_footer.html +7 -3
- umap/templates/umap/css.html +1 -0
- umap/templates/umap/dashboard_menu.html +15 -0
- umap/templates/umap/home.html +14 -4
- umap/templates/umap/js.html +4 -9
- umap/templates/umap/login_popup_end.html +10 -4
- umap/templates/umap/map_detail.html +8 -2
- umap/templates/umap/map_fragment.html +3 -1
- umap/templates/umap/map_init.html +2 -1
- umap/templates/umap/map_list.html +6 -3
- umap/templates/umap/map_table.html +36 -12
- umap/templates/umap/messages.html +0 -1
- umap/templates/umap/navigation.html +2 -1
- umap/templates/umap/password_change.html +5 -1
- umap/templates/umap/password_change_done.html +8 -2
- umap/templates/umap/search.html +8 -2
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +19 -0
- umap/templates/umap/team_detail.html +27 -0
- umap/templates/umap/team_form.html +60 -0
- umap/templates/umap/user_dashboard.html +7 -9
- umap/templates/umap/user_teams.html +51 -0
- umap/tests/base.py +8 -1
- umap/tests/conftest.py +6 -0
- umap/tests/fixtures/test_circles_layer.geojson +219 -0
- umap/tests/fixtures/test_upload_georss.xml +20 -0
- umap/tests/integration/conftest.py +18 -4
- umap/tests/integration/helpers.py +12 -0
- umap/tests/integration/test_anonymous_owned_map.py +23 -0
- umap/tests/integration/test_basics.py +29 -0
- umap/tests/integration/test_browser.py +20 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +138 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +3 -3
- umap/tests/integration/test_import.py +124 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_querystring.py +7 -0
- umap/tests/integration/test_team.py +47 -0
- umap/tests/integration/test_tilelayer.py +19 -2
- umap/tests/integration/test_view_marker.py +28 -1
- umap/tests/integration/test_websocket_sync.py +5 -5
- umap/tests/test_datalayer.py +32 -7
- umap/tests/test_datalayer_views.py +1 -1
- umap/tests/test_map.py +30 -4
- umap/tests/test_map_views.py +2 -2
- umap/tests/test_statics.py +40 -0
- umap/tests/test_team_views.py +131 -0
- umap/tests/test_views.py +15 -1
- umap/urls.py +23 -13
- umap/views.py +116 -10
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
- umap/static/umap/js/umap.datalayer.permissions.js +0 -70
- umap/static/umap/js/umap.features.js +0 -1290
- umap/static/umap/js/umap.layer.js +0 -1837
- umap/static/umap/js/umap.permissions.js +0 -208
- umap/static/umap/js/umap.popup.js +0 -341
- umap/static/umap/test/TableEditor.js +0 -104
- umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
- umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
- umap/static/umap/vendors/leaflet/leaflet.js +0 -6
- umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
- umap/tests/integration/test_statics.py +0 -47
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.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-
|
|
20
|
+
"POT-Creation-Date: 2024-08-30 18:23+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,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:
|
|
38
|
+
#: forms.py:69 models.py:423
|
|
39
39
|
msgid "Inherit"
|
|
40
40
|
msgstr "Odziedzicz"
|
|
41
41
|
|
|
@@ -43,242 +43,284 @@ msgstr "Odziedzicz"
|
|
|
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:
|
|
46
|
+
#: models.py:54 models.py:73
|
|
47
47
|
msgid "name"
|
|
48
48
|
msgstr "nazwa"
|
|
49
49
|
|
|
50
|
-
#: models.py:
|
|
50
|
+
#: models.py:56 models.py:433
|
|
51
|
+
msgid "description"
|
|
52
|
+
msgstr "opis"
|
|
53
|
+
|
|
54
|
+
#: models.py:104
|
|
51
55
|
msgid "details"
|
|
52
56
|
msgstr "szczegóły"
|
|
53
57
|
|
|
54
|
-
#: models.py:
|
|
58
|
+
#: models.py:105
|
|
55
59
|
msgid "Link to a page where the licence is detailed."
|
|
56
60
|
msgstr "Odnośnik do strony ze szczegółowym opisem licencji."
|
|
57
61
|
|
|
58
|
-
#: models.py:
|
|
62
|
+
#: models.py:115
|
|
59
63
|
msgid "URL template using OSM tile format"
|
|
60
64
|
msgstr "Szablon URL używający formatu kafelków OSM"
|
|
61
65
|
|
|
62
|
-
#: models.py:
|
|
66
|
+
#: models.py:121
|
|
63
67
|
msgid "Order of the tilelayers in the edit box"
|
|
64
68
|
msgstr "Kolejność podkładów w oknie edycji"
|
|
65
69
|
|
|
66
|
-
#: models.py:
|
|
70
|
+
#: models.py:167 models.py:424
|
|
67
71
|
msgid "Everyone"
|
|
68
72
|
msgstr "Każdy"
|
|
69
73
|
|
|
70
|
-
#: models.py:
|
|
71
|
-
msgid "Editors only"
|
|
72
|
-
msgstr "
|
|
74
|
+
#: models.py:168 models.py:174 models.py:425
|
|
75
|
+
msgid "Editors and team only"
|
|
76
|
+
msgstr ""
|
|
73
77
|
|
|
74
|
-
#: models.py:
|
|
78
|
+
#: models.py:169 models.py:426
|
|
75
79
|
msgid "Owner only"
|
|
76
80
|
msgstr "Tylko właściciel"
|
|
77
81
|
|
|
78
|
-
#: models.py:
|
|
82
|
+
#: models.py:172
|
|
79
83
|
msgid "Everyone (public)"
|
|
80
84
|
msgstr "Każdy (publiczne)"
|
|
81
85
|
|
|
82
|
-
#: models.py:
|
|
86
|
+
#: models.py:173
|
|
83
87
|
msgid "Anyone with link"
|
|
84
88
|
msgstr "Każdy z linkiem"
|
|
85
89
|
|
|
86
|
-
#: models.py:
|
|
90
|
+
#: models.py:175
|
|
87
91
|
msgid "Blocked"
|
|
88
92
|
msgstr "Zablokowane"
|
|
89
93
|
|
|
90
|
-
#: models.py:
|
|
94
|
+
#: models.py:178
|
|
91
95
|
msgid "center"
|
|
92
96
|
msgstr "środek"
|
|
93
97
|
|
|
94
|
-
#: models.py:
|
|
98
|
+
#: models.py:179
|
|
95
99
|
msgid "zoom"
|
|
96
100
|
msgstr "przybliżenie"
|
|
97
101
|
|
|
98
|
-
#: models.py:
|
|
102
|
+
#: models.py:181
|
|
99
103
|
msgid "locate"
|
|
100
104
|
msgstr "lokalizuj"
|
|
101
105
|
|
|
102
|
-
#: models.py:
|
|
106
|
+
#: models.py:181
|
|
103
107
|
msgid "Locate user on load?"
|
|
104
108
|
msgstr "Lokalizować użytkownika po załadowaniu?"
|
|
105
109
|
|
|
106
|
-
#: models.py:
|
|
110
|
+
#: models.py:185
|
|
107
111
|
msgid "Choose the map licence."
|
|
108
112
|
msgstr "Wybierz licencję mapy."
|
|
109
113
|
|
|
110
|
-
#: models.py:
|
|
114
|
+
#: models.py:186
|
|
111
115
|
msgid "licence"
|
|
112
116
|
msgstr "licencja"
|
|
113
117
|
|
|
114
|
-
#: models.py:
|
|
118
|
+
#: models.py:197
|
|
115
119
|
msgid "owner"
|
|
116
120
|
msgstr "właściciel"
|
|
117
121
|
|
|
118
|
-
#: models.py:
|
|
122
|
+
#: models.py:201
|
|
119
123
|
msgid "editors"
|
|
120
124
|
msgstr "edytorzy"
|
|
121
125
|
|
|
122
|
-
#: models.py:
|
|
126
|
+
#: models.py:207
|
|
127
|
+
msgid "team"
|
|
128
|
+
msgstr ""
|
|
129
|
+
|
|
130
|
+
#: models.py:213 models.py:447
|
|
123
131
|
msgid "edit status"
|
|
124
132
|
msgstr "status edycji"
|
|
125
133
|
|
|
126
|
-
#: models.py:
|
|
134
|
+
#: models.py:218
|
|
127
135
|
msgid "share status"
|
|
128
136
|
msgstr "udostępnij status"
|
|
129
137
|
|
|
130
|
-
#: models.py:
|
|
138
|
+
#: models.py:221 models.py:442
|
|
131
139
|
msgid "settings"
|
|
132
140
|
msgstr "ustawienia"
|
|
133
141
|
|
|
134
|
-
#: models.py:
|
|
142
|
+
#: models.py:364
|
|
135
143
|
msgid "Clone of"
|
|
136
144
|
msgstr "Kopia"
|
|
137
145
|
|
|
138
|
-
#: models.py:
|
|
139
|
-
msgid "description"
|
|
140
|
-
msgstr "opis"
|
|
141
|
-
|
|
142
|
-
#: models.py:398
|
|
146
|
+
#: models.py:437
|
|
143
147
|
msgid "display on load"
|
|
144
148
|
msgstr "wyświetl po załadowaniu"
|
|
145
149
|
|
|
146
|
-
#: models.py:
|
|
150
|
+
#: models.py:438
|
|
147
151
|
msgid "Display this layer on load."
|
|
148
152
|
msgstr "Wyświetl tę warstwę po załadowaniu."
|
|
149
153
|
|
|
150
|
-
#: templates/404.html:
|
|
154
|
+
#: templates/404.html:8
|
|
151
155
|
msgid "Take me to the home page"
|
|
152
156
|
msgstr "Zabierz mnie na stronę główną"
|
|
153
157
|
|
|
154
|
-
#: templates/auth/user_detail.html:
|
|
158
|
+
#: templates/auth/user_detail.html:8
|
|
155
159
|
#, python-format
|
|
156
160
|
msgid "Browse %(current_user)s's maps"
|
|
157
161
|
msgstr "Przeglądaj mapy %(current_user)s"
|
|
158
162
|
|
|
159
|
-
#: templates/auth/user_detail.html:
|
|
163
|
+
#: templates/auth/user_detail.html:17
|
|
160
164
|
#, python-format
|
|
161
165
|
msgid "%(current_user)s has no maps."
|
|
162
166
|
msgstr "%(current_user)s nie posiada map."
|
|
163
167
|
|
|
164
|
-
#: templates/auth/user_form.html:
|
|
165
|
-
msgid "My Maps"
|
|
166
|
-
msgstr "Moje Mapy"
|
|
167
|
-
|
|
168
|
-
#: templates/auth/user_form.html:7
|
|
169
|
-
msgid "My Profile"
|
|
170
|
-
msgstr "Mój profil"
|
|
171
|
-
|
|
172
|
-
#: templates/auth/user_form.html:20
|
|
168
|
+
#: templates/auth/user_form.html:21 templates/umap/team_form.html:21
|
|
173
169
|
msgid "Save"
|
|
174
170
|
msgstr "Zapisz"
|
|
175
171
|
|
|
176
|
-
#: templates/auth/user_form.html:
|
|
172
|
+
#: templates/auth/user_form.html:27
|
|
177
173
|
msgid "Your current providers"
|
|
178
174
|
msgstr ""
|
|
179
175
|
|
|
180
|
-
#: templates/auth/user_form.html:
|
|
176
|
+
#: templates/auth/user_form.html:39
|
|
181
177
|
msgid "Connect to another provider"
|
|
182
178
|
msgstr ""
|
|
183
179
|
|
|
184
|
-
#: templates/auth/user_form.html:
|
|
180
|
+
#: templates/auth/user_form.html:42
|
|
185
181
|
msgid ""
|
|
186
182
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
187
183
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
188
184
|
msgstr ""
|
|
189
185
|
|
|
190
|
-
#: templates/auth/user_stars.html:
|
|
186
|
+
#: templates/auth/user_stars.html:8
|
|
191
187
|
#, python-format
|
|
192
188
|
msgid "Browse %(current_user)s's starred maps"
|
|
193
189
|
msgstr "Przeglądaj mapy oznaczone gwiazdką przez %(current_user)s"
|
|
194
190
|
|
|
195
|
-
#: templates/auth/user_stars.html:
|
|
191
|
+
#: templates/auth/user_stars.html:17
|
|
196
192
|
#, python-format
|
|
197
193
|
msgid "%(current_user)s has no starred maps yet."
|
|
198
194
|
msgstr "%(current_user)s nie ma map oznaczonych gwiazdką."
|
|
199
195
|
|
|
200
|
-
#: templates/base.html:
|
|
196
|
+
#: templates/base.html:13
|
|
201
197
|
msgid ""
|
|
202
198
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
203
199
|
"them in your site."
|
|
204
200
|
msgstr "uMap pozwala ci szybko tworzyć mapy z warstwami OpenStreetMap i umieścić je na twojej stronie."
|
|
205
201
|
|
|
206
|
-
#: templates/registration/login.html:
|
|
202
|
+
#: templates/registration/login.html:6 templates/registration/login.html:45
|
|
203
|
+
msgid "Login"
|
|
204
|
+
msgstr "Zaloguj się"
|
|
205
|
+
|
|
206
|
+
#: templates/registration/login.html:24
|
|
207
207
|
msgid "Please log in with your account"
|
|
208
208
|
msgstr "Proszę zalogować się na swoje konto"
|
|
209
209
|
|
|
210
|
-
#: templates/registration/login.html:
|
|
210
|
+
#: templates/registration/login.html:41
|
|
211
211
|
msgid "Username"
|
|
212
212
|
msgstr "Nazwa użytkownika"
|
|
213
213
|
|
|
214
|
-
#: templates/registration/login.html:
|
|
214
|
+
#: templates/registration/login.html:44
|
|
215
215
|
msgid "Password"
|
|
216
216
|
msgstr "Hasło"
|
|
217
217
|
|
|
218
|
-
#: templates/registration/login.html:
|
|
219
|
-
msgid "Login"
|
|
220
|
-
msgstr "Zaloguj się"
|
|
221
|
-
|
|
222
|
-
#: templates/registration/login.html:37
|
|
218
|
+
#: templates/registration/login.html:51
|
|
223
219
|
msgid "Please choose a provider"
|
|
224
220
|
msgstr "Proszę wybrać serwis"
|
|
225
221
|
|
|
226
|
-
#: templates/umap/about_summary.html:
|
|
222
|
+
#: templates/umap/about_summary.html:12
|
|
227
223
|
#, python-format
|
|
228
224
|
msgid ""
|
|
229
225
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
230
226
|
"layers in a minute and embed them in your site."
|
|
231
227
|
msgstr "uMap umożliwia ci utworzenie w kilka minut mapy z użyciem warstw <a href=\"%(osm_url)s\" />OpenStreetMap</a> i zamieszczenie jej na swojej stronie internetowej."
|
|
232
228
|
|
|
233
|
-
#: templates/umap/about_summary.html:
|
|
229
|
+
#: templates/umap/about_summary.html:23
|
|
234
230
|
msgid "Choose the layers of your map"
|
|
235
231
|
msgstr "Wybierz warstwy swojej mapy"
|
|
236
232
|
|
|
237
|
-
#: templates/umap/about_summary.html:
|
|
233
|
+
#: templates/umap/about_summary.html:26
|
|
238
234
|
msgid "Add POIs: markers, lines, polygons..."
|
|
239
235
|
msgstr "Dodaj POI: znaczniki, linie, obszary..."
|
|
240
236
|
|
|
241
|
-
#: templates/umap/about_summary.html:
|
|
237
|
+
#: templates/umap/about_summary.html:29
|
|
242
238
|
msgid "Manage POIs colours and icons"
|
|
243
239
|
msgstr "Zarządzaj kolorami oraz ikonami"
|
|
244
240
|
|
|
245
|
-
#: templates/umap/about_summary.html:
|
|
241
|
+
#: templates/umap/about_summary.html:32
|
|
246
242
|
msgid "Manage map options: display a minimap, locate user on load…"
|
|
247
243
|
msgstr "Zmieniaj ustawienia mapy: wyświetlanie minimapy, lokalizacja użytkownika po załadowaniu..."
|
|
248
244
|
|
|
249
|
-
#: templates/umap/about_summary.html:
|
|
245
|
+
#: templates/umap/about_summary.html:35
|
|
250
246
|
msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
|
|
251
247
|
msgstr "Importuj geostrukturalne dane (geojson, gpx, kml, osm...)"
|
|
252
248
|
|
|
253
|
-
#: templates/umap/about_summary.html:
|
|
249
|
+
#: templates/umap/about_summary.html:38
|
|
254
250
|
msgid "Choose the license for your data"
|
|
255
251
|
msgstr "Wybierz licencję swoich danych"
|
|
256
252
|
|
|
257
|
-
#: templates/umap/about_summary.html:
|
|
253
|
+
#: templates/umap/about_summary.html:41
|
|
258
254
|
msgid "Embed and share your map"
|
|
259
255
|
msgstr "Umieszczaj mapy w sieci i dziel się nimi"
|
|
260
256
|
|
|
261
|
-
#: templates/umap/about_summary.html:
|
|
257
|
+
#: templates/umap/about_summary.html:52
|
|
262
258
|
#, python-format
|
|
263
259
|
msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
264
260
|
msgstr "I to wszystko <a href=\"%(repo_url)s\">na wolnej licencji</a>!"
|
|
265
261
|
|
|
266
|
-
#: templates/umap/about_summary.html:
|
|
267
|
-
#: templates/umap/user_dashboard.html:
|
|
262
|
+
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
263
|
+
#: templates/umap/user_dashboard.html:40
|
|
268
264
|
msgid "Create a map"
|
|
269
265
|
msgstr "Stwórz mapę"
|
|
270
266
|
|
|
271
|
-
#: templates/umap/about_summary.html:
|
|
267
|
+
#: templates/umap/about_summary.html:66
|
|
272
268
|
msgid "Play with the demo"
|
|
273
269
|
msgstr "Zobacz wersję demo"
|
|
274
270
|
|
|
275
|
-
#: templates/umap/
|
|
271
|
+
#: templates/umap/components/alerts/alert.html:15
|
|
272
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
273
|
+
#: templates/umap/components/alerts/alert.html:92
|
|
274
|
+
msgid "Close"
|
|
275
|
+
msgstr "Zamknij"
|
|
276
|
+
|
|
277
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
278
|
+
#, python-format
|
|
279
|
+
msgid ""
|
|
280
|
+
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
281
|
+
"target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
282
|
+
"target=\"_blank\">log in</a>."
|
|
283
|
+
msgstr "Wskazówka: aby łatwo znaleźć swoje mapy, <a href=\"%(login_url)s\" target=\"_blank\">utwórz konto</a> lub <a href=\"%(login_url)s\" target=\"_blank\">zaloguj się</a>. "
|
|
284
|
+
|
|
285
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
286
|
+
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
287
|
+
msgstr ""
|
|
288
|
+
|
|
289
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
290
|
+
msgid "Copy link"
|
|
291
|
+
msgstr "Skopiuj link"
|
|
292
|
+
|
|
293
|
+
#: templates/umap/components/alerts/alert.html:46
|
|
294
|
+
msgid "Enter your email address to receive the secret link:"
|
|
295
|
+
msgstr "Wprowadź swój adres email, aby otrzymać tajny link:"
|
|
296
|
+
|
|
297
|
+
#: templates/umap/components/alerts/alert.html:52
|
|
298
|
+
msgid "Email"
|
|
299
|
+
msgstr "Email"
|
|
300
|
+
|
|
301
|
+
#: templates/umap/components/alerts/alert.html:55
|
|
302
|
+
msgid "Send me the link"
|
|
303
|
+
msgstr "Wyślij mi link"
|
|
304
|
+
|
|
305
|
+
#: templates/umap/components/alerts/alert.html:79
|
|
306
|
+
msgid "See their edits in another tab"
|
|
307
|
+
msgstr "Zobacz edycje innych w osobnej zakładce"
|
|
308
|
+
|
|
309
|
+
#: templates/umap/components/alerts/alert.html:82
|
|
310
|
+
msgid "Keep your changes and loose theirs"
|
|
311
|
+
msgstr "Zachowaj swoje zmiany i utrać zmiany innych"
|
|
312
|
+
|
|
313
|
+
#: templates/umap/components/alerts/alert.html:85
|
|
314
|
+
msgid "Keep their changes and loose yours"
|
|
315
|
+
msgstr "Zachowaj zmiany innych i utrać swoje"
|
|
316
|
+
|
|
317
|
+
#: templates/umap/content.html:26
|
|
276
318
|
msgid ""
|
|
277
319
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
278
320
|
"allowed."
|
|
279
321
|
msgstr "Ta instancja uMap jest obecnie w trybie tylko do odczytu, nie jest możliwe edytowanie ani tworzenie."
|
|
280
322
|
|
|
281
|
-
#: templates/umap/content.html:
|
|
323
|
+
#: templates/umap/content.html:34
|
|
282
324
|
#, python-format
|
|
283
325
|
msgid ""
|
|
284
326
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -287,176 +329,210 @@ msgid ""
|
|
|
287
329
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
288
330
|
msgstr "To jest serwer demonstracyjny, używany do testów i niefinalnych wydań. Jeśli potrzebujesz stabilnego serwera, użyj <a href=\"%(stable_url)s\">%(stable_url)s</a>. Możesz także postawić swój własny, wszystko jest <a href=\"%(repo_url)s\">open source</a>!"
|
|
289
331
|
|
|
290
|
-
#: templates/umap/
|
|
332
|
+
#: templates/umap/content_footer.html:5
|
|
333
|
+
msgid "An OpenStreetMap project"
|
|
334
|
+
msgstr ""
|
|
335
|
+
|
|
336
|
+
#: templates/umap/content_footer.html:6
|
|
337
|
+
msgid "version"
|
|
338
|
+
msgstr ""
|
|
339
|
+
|
|
340
|
+
#: templates/umap/content_footer.html:7
|
|
341
|
+
msgid "Hosted by"
|
|
342
|
+
msgstr ""
|
|
343
|
+
|
|
344
|
+
#: templates/umap/content_footer.html:8
|
|
345
|
+
msgid "Contact"
|
|
346
|
+
msgstr ""
|
|
347
|
+
|
|
348
|
+
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
349
|
+
msgid "Help"
|
|
350
|
+
msgstr "Pomoc"
|
|
351
|
+
|
|
352
|
+
#: templates/umap/dashboard_menu.html:6
|
|
353
|
+
#, python-format
|
|
354
|
+
msgid "My Maps (%(count)s)"
|
|
355
|
+
msgstr "Moje Mapy (%(count)s)"
|
|
356
|
+
|
|
357
|
+
#: templates/umap/dashboard_menu.html:8
|
|
358
|
+
msgid "My Maps"
|
|
359
|
+
msgstr "Moje Mapy"
|
|
360
|
+
|
|
361
|
+
#: templates/umap/dashboard_menu.html:11
|
|
362
|
+
msgid "My profile"
|
|
363
|
+
msgstr "Mój profil"
|
|
364
|
+
|
|
365
|
+
#: templates/umap/dashboard_menu.html:13
|
|
366
|
+
msgid "My teams"
|
|
367
|
+
msgstr ""
|
|
368
|
+
|
|
369
|
+
#: templates/umap/home.html:14
|
|
291
370
|
msgid "Map of the uMaps"
|
|
292
371
|
msgstr "Mapa uMapek"
|
|
293
372
|
|
|
294
|
-
#: templates/umap/home.html:
|
|
373
|
+
#: templates/umap/home.html:24
|
|
295
374
|
msgid "Get inspired, browse maps"
|
|
296
375
|
msgstr "Zainspiruj się, przejrzyj mapy"
|
|
297
376
|
|
|
298
|
-
#: templates/umap/login_popup_end.html:
|
|
377
|
+
#: templates/umap/login_popup_end.html:4
|
|
299
378
|
msgid "You are logged in. Continuing..."
|
|
300
379
|
msgstr "Jesteś zalogowany. Kontynuowanie..."
|
|
301
380
|
|
|
302
|
-
#: templates/umap/map_list.html:
|
|
381
|
+
#: templates/umap/map_list.html:10 views.py:433
|
|
303
382
|
msgid "by"
|
|
304
383
|
msgstr "przez"
|
|
305
384
|
|
|
306
|
-
#: templates/umap/map_list.html:
|
|
385
|
+
#: templates/umap/map_list.html:18
|
|
307
386
|
msgid "More"
|
|
308
387
|
msgstr "Więcej"
|
|
309
388
|
|
|
310
|
-
#: templates/umap/map_table.html:
|
|
389
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
|
|
311
390
|
msgid "Name"
|
|
312
391
|
msgstr "Nazwa"
|
|
313
392
|
|
|
314
|
-
#: templates/umap/map_table.html:
|
|
393
|
+
#: templates/umap/map_table.html:11
|
|
315
394
|
msgid "Preview"
|
|
316
395
|
msgstr "Podgląd"
|
|
317
396
|
|
|
318
|
-
#: templates/umap/map_table.html:
|
|
397
|
+
#: templates/umap/map_table.html:14
|
|
319
398
|
msgid "Who can see"
|
|
320
399
|
msgstr "Kto może zobaczyć"
|
|
321
400
|
|
|
322
|
-
#: templates/umap/map_table.html:
|
|
401
|
+
#: templates/umap/map_table.html:17
|
|
323
402
|
msgid "Who can edit"
|
|
324
403
|
msgstr "Kto może edytować"
|
|
325
404
|
|
|
326
|
-
#: templates/umap/map_table.html:
|
|
405
|
+
#: templates/umap/map_table.html:20
|
|
327
406
|
msgid "Last save"
|
|
328
407
|
msgstr "Ostatni zapis"
|
|
329
408
|
|
|
330
|
-
#: templates/umap/map_table.html:
|
|
409
|
+
#: templates/umap/map_table.html:23
|
|
331
410
|
msgid "Owner"
|
|
332
411
|
msgstr "Właściciel"
|
|
333
412
|
|
|
334
|
-
#: templates/umap/map_table.html:
|
|
413
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
|
|
335
414
|
msgid "Actions"
|
|
336
415
|
msgstr "Akcje"
|
|
337
416
|
|
|
338
|
-
#: templates/umap/map_table.html:
|
|
417
|
+
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
339
418
|
msgid "Open preview"
|
|
340
419
|
msgstr "Otwórz podgląd"
|
|
341
420
|
|
|
342
|
-
#: templates/umap/map_table.html:
|
|
421
|
+
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
343
422
|
msgid "Share"
|
|
344
423
|
msgstr "Udostępnij"
|
|
345
424
|
|
|
346
|
-
#: templates/umap/map_table.html:
|
|
425
|
+
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
426
|
+
#: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
|
|
347
427
|
msgid "Edit"
|
|
348
428
|
msgstr "Edytuj"
|
|
349
429
|
|
|
350
|
-
#: templates/umap/map_table.html:
|
|
430
|
+
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
351
431
|
msgid "Download"
|
|
352
432
|
msgstr "Pobierz"
|
|
353
433
|
|
|
354
|
-
#: templates/umap/map_table.html:
|
|
434
|
+
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
355
435
|
msgid "Clone"
|
|
356
436
|
msgstr "Skopiuj"
|
|
357
437
|
|
|
358
|
-
#: templates/umap/map_table.html:
|
|
438
|
+
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
359
439
|
msgid "Delete"
|
|
360
440
|
msgstr "Usuń"
|
|
361
441
|
|
|
362
|
-
#: templates/umap/map_table.html:
|
|
442
|
+
#: templates/umap/map_table.html:117
|
|
363
443
|
msgid "first"
|
|
364
444
|
msgstr "pierwszy"
|
|
365
445
|
|
|
366
|
-
#: templates/umap/map_table.html:
|
|
446
|
+
#: templates/umap/map_table.html:118
|
|
367
447
|
msgid "previous"
|
|
368
448
|
msgstr "poprzedni"
|
|
369
449
|
|
|
370
|
-
#: templates/umap/map_table.html:
|
|
450
|
+
#: templates/umap/map_table.html:126
|
|
371
451
|
#, python-format
|
|
372
452
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
373
453
|
msgstr "Strona %(maps_number)s. z %(num_pages)s"
|
|
374
454
|
|
|
375
|
-
#: templates/umap/map_table.html:
|
|
455
|
+
#: templates/umap/map_table.html:131
|
|
376
456
|
msgid "next"
|
|
377
|
-
msgstr ""
|
|
457
|
+
msgstr "następny"
|
|
378
458
|
|
|
379
|
-
#: templates/umap/map_table.html:
|
|
459
|
+
#: templates/umap/map_table.html:132
|
|
380
460
|
msgid "last"
|
|
381
|
-
msgstr ""
|
|
461
|
+
msgstr "ostatni"
|
|
382
462
|
|
|
383
|
-
#: templates/umap/map_table.html:
|
|
463
|
+
#: templates/umap/map_table.html:140
|
|
384
464
|
#, python-format
|
|
385
465
|
msgid "Lines per page: %(per_page)s"
|
|
386
466
|
msgstr ""
|
|
387
467
|
|
|
388
|
-
#: templates/umap/map_table.html:
|
|
468
|
+
#: templates/umap/map_table.html:145
|
|
389
469
|
#, python-format
|
|
390
470
|
msgid "%(count)s maps"
|
|
391
471
|
msgstr "%(count)s map"
|
|
392
472
|
|
|
393
|
-
#: templates/umap/navigation.html:
|
|
473
|
+
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
394
474
|
msgid "My Dashboard"
|
|
395
475
|
msgstr "Mój Panel"
|
|
396
476
|
|
|
397
|
-
#: templates/umap/navigation.html:
|
|
477
|
+
#: templates/umap/navigation.html:14
|
|
398
478
|
msgid "Starred maps"
|
|
399
479
|
msgstr "Mapy oznaczone gwiazdką"
|
|
400
480
|
|
|
401
|
-
#: templates/umap/navigation.html:
|
|
481
|
+
#: templates/umap/navigation.html:18
|
|
402
482
|
msgid "Log in"
|
|
403
483
|
msgstr "Logowanie"
|
|
404
484
|
|
|
405
|
-
#: templates/umap/navigation.html:
|
|
485
|
+
#: templates/umap/navigation.html:18
|
|
406
486
|
msgid "Sign in"
|
|
407
487
|
msgstr "Rejestracja"
|
|
408
488
|
|
|
409
|
-
#: templates/umap/navigation.html:
|
|
489
|
+
#: templates/umap/navigation.html:22
|
|
410
490
|
msgid "About"
|
|
411
491
|
msgstr "Informacje"
|
|
412
492
|
|
|
413
|
-
#: templates/umap/navigation.html:
|
|
414
|
-
msgid "Help"
|
|
415
|
-
msgstr "Pomoc"
|
|
416
|
-
|
|
417
|
-
#: templates/umap/navigation.html:29
|
|
493
|
+
#: templates/umap/navigation.html:30
|
|
418
494
|
msgid "Change password"
|
|
419
495
|
msgstr "Zmień hasło"
|
|
420
496
|
|
|
421
|
-
#: templates/umap/navigation.html:
|
|
497
|
+
#: templates/umap/navigation.html:34
|
|
422
498
|
msgid "Log out"
|
|
423
499
|
msgstr "Wyloguj się"
|
|
424
500
|
|
|
425
|
-
#: templates/umap/password_change.html:
|
|
501
|
+
#: templates/umap/password_change.html:7
|
|
426
502
|
msgid "Password change"
|
|
427
503
|
msgstr "Zmiana hasła"
|
|
428
504
|
|
|
429
|
-
#: templates/umap/password_change.html:
|
|
505
|
+
#: templates/umap/password_change.html:10
|
|
430
506
|
msgid ""
|
|
431
507
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
432
508
|
" password twice so we can verify you typed it in correctly."
|
|
433
509
|
msgstr "Prosimy wpisać swoje poprzednie hasło, a następnie podać nowe dwukrotnie, by zweryfikować, czy wpisano je poprawnie"
|
|
434
510
|
|
|
435
|
-
#: templates/umap/password_change.html:
|
|
511
|
+
#: templates/umap/password_change.html:17
|
|
436
512
|
msgid "Old password"
|
|
437
513
|
msgstr "Stare hasło"
|
|
438
514
|
|
|
439
|
-
#: templates/umap/password_change.html:
|
|
515
|
+
#: templates/umap/password_change.html:22
|
|
440
516
|
msgid "New password"
|
|
441
517
|
msgstr "Nowe hasło"
|
|
442
518
|
|
|
443
|
-
#: templates/umap/password_change.html:
|
|
519
|
+
#: templates/umap/password_change.html:26
|
|
444
520
|
msgid "New password confirmation"
|
|
445
521
|
msgstr "Potwierdź nowe hasło"
|
|
446
522
|
|
|
447
|
-
#: templates/umap/password_change.html:
|
|
523
|
+
#: templates/umap/password_change.html:27
|
|
448
524
|
msgid "Change my password"
|
|
449
525
|
msgstr "Zmień moje hasło"
|
|
450
526
|
|
|
451
|
-
#: templates/umap/password_change_done.html:
|
|
527
|
+
#: templates/umap/password_change_done.html:7
|
|
452
528
|
msgid "Password change successful"
|
|
453
529
|
msgstr "Zmiana hasła powiodła się"
|
|
454
530
|
|
|
455
|
-
#: templates/umap/password_change_done.html:
|
|
531
|
+
#: templates/umap/password_change_done.html:10
|
|
456
532
|
msgid "Your password was changed."
|
|
457
533
|
msgstr "Twoje hasło zostało zmienione."
|
|
458
534
|
|
|
459
|
-
#: templates/umap/search.html:
|
|
535
|
+
#: templates/umap/search.html:15
|
|
460
536
|
#, python-format
|
|
461
537
|
msgid "%(count)s map found:"
|
|
462
538
|
msgid_plural "%(count)s maps found:"
|
|
@@ -465,99 +541,129 @@ msgstr[1] "Znaleziono %(count)s mapy:"
|
|
|
465
541
|
msgstr[2] "Znaleziono %(count)s map:"
|
|
466
542
|
msgstr[3] "Znaleziono %(count)s map:"
|
|
467
543
|
|
|
468
|
-
#: templates/umap/search.html:
|
|
544
|
+
#: templates/umap/search.html:24
|
|
469
545
|
msgid "No map found."
|
|
470
546
|
msgstr "Nie znaleziono mapy."
|
|
471
547
|
|
|
472
|
-
#: templates/umap/search.html:
|
|
548
|
+
#: templates/umap/search.html:29
|
|
473
549
|
msgid "Latest created maps"
|
|
474
550
|
msgstr "Ostatnio utworzone mapy"
|
|
475
551
|
|
|
476
|
-
#: templates/umap/search_bar.html:
|
|
552
|
+
#: templates/umap/search_bar.html:4
|
|
477
553
|
msgid "Search maps"
|
|
478
554
|
msgstr "Znajdź mapy"
|
|
479
555
|
|
|
480
|
-
#: templates/umap/search_bar.html:
|
|
556
|
+
#: templates/umap/search_bar.html:15
|
|
481
557
|
msgid "Search"
|
|
482
558
|
msgstr "Szukaj"
|
|
483
559
|
|
|
484
|
-
#: templates/umap/
|
|
485
|
-
|
|
486
|
-
|
|
560
|
+
#: templates/umap/team_detail.html:10
|
|
561
|
+
#, python-format
|
|
562
|
+
msgid "Browse %(current_team)s's maps"
|
|
563
|
+
msgstr ""
|
|
487
564
|
|
|
488
|
-
#: templates/umap/
|
|
565
|
+
#: templates/umap/team_detail.html:22
|
|
489
566
|
#, python-format
|
|
490
|
-
msgid "
|
|
491
|
-
msgstr "
|
|
567
|
+
msgid "%(current_team)s has no public maps."
|
|
568
|
+
msgstr ""
|
|
492
569
|
|
|
493
|
-
#: templates/umap/
|
|
494
|
-
msgid "
|
|
495
|
-
msgstr "
|
|
570
|
+
#: templates/umap/team_form.html:24
|
|
571
|
+
msgid "Delete this team"
|
|
572
|
+
msgstr ""
|
|
573
|
+
|
|
574
|
+
#: templates/umap/team_form.html:47
|
|
575
|
+
msgid "Add user"
|
|
576
|
+
msgstr ""
|
|
577
|
+
|
|
578
|
+
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
579
|
+
msgid "Search my maps"
|
|
580
|
+
msgstr "Przeszukaj moje mapy"
|
|
496
581
|
|
|
497
|
-
#: templates/umap/user_dashboard.html:
|
|
582
|
+
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
498
583
|
msgid "Map’s title"
|
|
499
584
|
msgstr "Nazwa mapy"
|
|
500
585
|
|
|
501
|
-
#: templates/umap/user_dashboard.html:
|
|
586
|
+
#: templates/umap/user_dashboard.html:30
|
|
502
587
|
#, python-format
|
|
503
588
|
msgid "Download %(count)s maps"
|
|
504
589
|
msgstr "Pobierz %(count)s map"
|
|
505
590
|
|
|
506
|
-
#: templates/umap/user_dashboard.html:
|
|
591
|
+
#: templates/umap/user_dashboard.html:40
|
|
507
592
|
msgid "You have no map yet."
|
|
508
593
|
msgstr "Nie masz jeszcze żadnej mapy."
|
|
509
594
|
|
|
510
|
-
#:
|
|
595
|
+
#: templates/umap/user_teams.html:17
|
|
596
|
+
msgid "Users"
|
|
597
|
+
msgstr ""
|
|
598
|
+
|
|
599
|
+
#: templates/umap/user_teams.html:48
|
|
600
|
+
msgid "New team"
|
|
601
|
+
msgstr ""
|
|
602
|
+
|
|
603
|
+
#: views.py:235
|
|
604
|
+
msgid "Cannot delete a team with more than one member"
|
|
605
|
+
msgstr ""
|
|
606
|
+
|
|
607
|
+
#: views.py:239
|
|
608
|
+
#, python-format
|
|
609
|
+
msgid "Team “%(name)s” has been deleted"
|
|
610
|
+
msgstr ""
|
|
611
|
+
|
|
612
|
+
#: views.py:438
|
|
511
613
|
msgid "View the map"
|
|
512
614
|
msgstr "Zobacz mapę"
|
|
513
615
|
|
|
514
|
-
#: views.py:
|
|
616
|
+
#: views.py:824
|
|
515
617
|
msgid "See full screen"
|
|
516
618
|
msgstr ""
|
|
517
619
|
|
|
518
|
-
#: views.py:
|
|
620
|
+
#: views.py:953
|
|
519
621
|
msgid "Map editors updated with success!"
|
|
520
622
|
msgstr "Edytorzy mapy zaktualizowani pomyślnie!"
|
|
521
623
|
|
|
522
|
-
#: views.py:
|
|
624
|
+
#: views.py:989
|
|
523
625
|
#, python-format
|
|
524
626
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
525
627
|
msgstr "Link uMap do edytowania twojej mapy: %(map_name)s"
|
|
526
628
|
|
|
527
|
-
#: views.py:
|
|
629
|
+
#: views.py:992
|
|
528
630
|
#, python-format
|
|
529
631
|
msgid "Here is your secret edit link: %(link)s"
|
|
530
632
|
msgstr "Oto twój sekretny link do edycji: %(link)s"
|
|
531
633
|
|
|
532
|
-
#: views.py:
|
|
634
|
+
#: views.py:999
|
|
533
635
|
#, python-format
|
|
534
636
|
msgid "Can't send email to %(email)s"
|
|
535
637
|
msgstr "Nie można wysłać emaila do %(email)s"
|
|
536
638
|
|
|
537
|
-
#: views.py:
|
|
639
|
+
#: views.py:1002
|
|
538
640
|
#, python-format
|
|
539
641
|
msgid "Email sent to %(email)s"
|
|
540
642
|
msgstr "Email wysłany do %(email)s"
|
|
541
643
|
|
|
542
|
-
#: views.py:
|
|
644
|
+
#: views.py:1013
|
|
543
645
|
msgid "Only its owner can delete the map."
|
|
544
646
|
msgstr "Tylko właściciel może usunąć mapę."
|
|
545
647
|
|
|
546
|
-
#: views.py:
|
|
648
|
+
#: views.py:1016
|
|
649
|
+
msgid "Map successfully deleted."
|
|
650
|
+
msgstr "Pomyślnie usunięto mapę."
|
|
651
|
+
|
|
652
|
+
#: views.py:1042
|
|
547
653
|
#, python-format
|
|
548
654
|
msgid ""
|
|
549
655
|
"Your map has been cloned! If you want to edit this map from another "
|
|
550
656
|
"computer, please use this link: %(anonymous_url)s"
|
|
551
657
|
msgstr "Twoja mapa została skopiowana! Jeśli chcesz edytować ją z innego komputera, użyj odnośnika: %(anonymous_url)s"
|
|
552
658
|
|
|
553
|
-
#: views.py:
|
|
659
|
+
#: views.py:1047
|
|
554
660
|
msgid "Congratulations, your map has been cloned!"
|
|
555
661
|
msgstr "Gratulacje, twoja mapa została skopiowana!"
|
|
556
662
|
|
|
557
|
-
#: views.py:
|
|
663
|
+
#: views.py:1282
|
|
558
664
|
msgid "Layer successfully deleted."
|
|
559
665
|
msgstr "Warstwa usunięta pomyślnie."
|
|
560
666
|
|
|
561
|
-
#: views.py:
|
|
667
|
+
#: views.py:1304
|
|
562
668
|
msgid "Permissions updated with success!"
|
|
563
669
|
msgstr "Pomyślnie zaktualizowano uprawnienia!"
|