umap-project 2.3.0__py3-none-any.whl → 2.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.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/locale/en/LC_MESSAGES/django.po +81 -31
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +117 -66
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +83 -78
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +129 -123
- umap/management/commands/run_websocket_server.py +23 -0
- umap/models.py +6 -1
- umap/settings/base.py +11 -3
- umap/static/umap/base.css +68 -186
- umap/static/umap/content.css +3 -2
- umap/static/umap/css/dialog.css +18 -0
- umap/static/umap/css/icon.css +8 -0
- umap/static/umap/css/importers.css +51 -0
- umap/static/umap/css/panel.css +18 -57
- umap/static/umap/css/tooltip.css +59 -0
- umap/static/umap/css/window.css +35 -0
- umap/static/umap/img/16-white.svg +1 -3
- umap/static/umap/img/alert-icon-error.svg +8 -0
- umap/static/umap/img/alert-icon-info.svg +4 -0
- umap/static/umap/img/alert-icon-success.svg +3 -0
- umap/static/umap/img/icon-external-link.svg +3 -0
- umap/static/umap/img/importers/communesfr.svg +5 -0
- umap/static/umap/img/importers/datasets.svg +13 -0
- umap/static/umap/img/importers/geodatamine.svg +10 -0
- umap/static/umap/img/importers/overpass.svg +7 -0
- umap/static/umap/img/importers/random.svg +18 -0
- umap/static/umap/img/importers/random1.svg +4 -0
- umap/static/umap/img/importers/random2.svg +4 -0
- umap/static/umap/img/source/16-white.svg +2 -4
- umap/static/umap/js/components/alerts/alert.css +160 -0
- umap/static/umap/js/components/alerts/alert.js +169 -0
- umap/static/umap/js/components/base.js +54 -0
- umap/static/umap/js/modules/autocomplete.js +347 -0
- umap/static/umap/js/modules/browser.js +14 -21
- umap/static/umap/js/modules/caption.js +119 -0
- umap/static/umap/js/modules/global.js +37 -11
- umap/static/umap/js/modules/help.js +255 -0
- umap/static/umap/js/modules/importer.js +308 -0
- umap/static/umap/js/modules/importers/communesfr.js +44 -0
- umap/static/umap/js/modules/importers/datasets.js +42 -0
- umap/static/umap/js/modules/importers/geodatamine.js +95 -0
- umap/static/umap/js/modules/importers/overpass.js +84 -0
- umap/static/umap/js/modules/request.js +12 -14
- umap/static/umap/js/modules/rules.js +241 -0
- umap/static/umap/js/modules/schema.js +63 -14
- umap/static/umap/js/modules/sync/engine.js +93 -0
- umap/static/umap/js/modules/sync/updaters.js +109 -0
- umap/static/umap/js/modules/sync/websocket.js +25 -0
- umap/static/umap/js/modules/ui/dialog.js +52 -0
- umap/static/umap/js/modules/{panel.js → ui/panel.js} +37 -20
- umap/static/umap/js/modules/ui/tooltip.js +116 -0
- umap/static/umap/js/modules/utils.js +25 -18
- umap/static/umap/js/umap.controls.js +37 -112
- umap/static/umap/js/umap.core.js +1 -327
- umap/static/umap/js/umap.features.js +77 -29
- umap/static/umap/js/umap.forms.js +17 -19
- umap/static/umap/js/umap.js +265 -228
- umap/static/umap/js/umap.layer.js +154 -76
- umap/static/umap/js/umap.permissions.js +5 -9
- umap/static/umap/js/umap.popup.js +2 -1
- umap/static/umap/js/umap.tableeditor.js +8 -8
- umap/static/umap/locale/am_ET.js +51 -16
- umap/static/umap/locale/am_ET.json +51 -16
- umap/static/umap/locale/ar.js +51 -16
- umap/static/umap/locale/ar.json +51 -16
- umap/static/umap/locale/ast.js +51 -16
- umap/static/umap/locale/ast.json +51 -16
- umap/static/umap/locale/bg.js +51 -16
- umap/static/umap/locale/bg.json +51 -16
- umap/static/umap/locale/br.js +55 -20
- umap/static/umap/locale/br.json +55 -20
- umap/static/umap/locale/ca.js +51 -16
- umap/static/umap/locale/ca.json +51 -16
- umap/static/umap/locale/cs_CZ.js +93 -58
- umap/static/umap/locale/cs_CZ.json +93 -58
- umap/static/umap/locale/da.js +51 -16
- umap/static/umap/locale/da.json +51 -16
- umap/static/umap/locale/de.js +56 -21
- umap/static/umap/locale/de.json +56 -21
- umap/static/umap/locale/el.js +51 -16
- umap/static/umap/locale/el.json +51 -16
- umap/static/umap/locale/en.js +52 -16
- umap/static/umap/locale/en.json +52 -16
- umap/static/umap/locale/en_US.json +51 -16
- umap/static/umap/locale/es.js +51 -16
- umap/static/umap/locale/es.json +51 -16
- umap/static/umap/locale/et.js +51 -16
- umap/static/umap/locale/et.json +51 -16
- umap/static/umap/locale/eu.js +51 -16
- umap/static/umap/locale/eu.json +51 -16
- umap/static/umap/locale/fa_IR.js +51 -16
- umap/static/umap/locale/fa_IR.json +51 -16
- umap/static/umap/locale/fi.js +51 -16
- umap/static/umap/locale/fi.json +51 -16
- umap/static/umap/locale/fr.js +61 -25
- umap/static/umap/locale/fr.json +61 -25
- umap/static/umap/locale/gl.js +51 -16
- umap/static/umap/locale/gl.json +51 -16
- umap/static/umap/locale/he.js +51 -16
- umap/static/umap/locale/he.json +51 -16
- umap/static/umap/locale/hr.js +51 -16
- umap/static/umap/locale/hr.json +51 -16
- umap/static/umap/locale/hu.js +51 -16
- umap/static/umap/locale/hu.json +51 -16
- umap/static/umap/locale/id.js +51 -16
- umap/static/umap/locale/id.json +51 -16
- umap/static/umap/locale/is.js +51 -16
- umap/static/umap/locale/is.json +51 -16
- umap/static/umap/locale/it.js +51 -16
- umap/static/umap/locale/it.json +51 -16
- umap/static/umap/locale/ja.js +51 -16
- umap/static/umap/locale/ja.json +51 -16
- umap/static/umap/locale/ko.js +51 -16
- umap/static/umap/locale/ko.json +51 -16
- umap/static/umap/locale/lt.js +51 -16
- umap/static/umap/locale/lt.json +51 -16
- umap/static/umap/locale/ms.js +51 -16
- umap/static/umap/locale/ms.json +51 -16
- umap/static/umap/locale/nl.js +51 -16
- umap/static/umap/locale/nl.json +51 -16
- umap/static/umap/locale/no.js +51 -16
- umap/static/umap/locale/no.json +51 -16
- umap/static/umap/locale/pl.js +93 -58
- umap/static/umap/locale/pl.json +93 -58
- umap/static/umap/locale/pl_PL.json +51 -16
- umap/static/umap/locale/pt.js +215 -180
- umap/static/umap/locale/pt.json +215 -180
- umap/static/umap/locale/pt_BR.js +51 -16
- umap/static/umap/locale/pt_BR.json +51 -16
- umap/static/umap/locale/pt_PT.js +51 -16
- umap/static/umap/locale/pt_PT.json +51 -16
- umap/static/umap/locale/ro.js +51 -16
- umap/static/umap/locale/ro.json +51 -16
- umap/static/umap/locale/ru.js +51 -16
- umap/static/umap/locale/ru.json +51 -16
- umap/static/umap/locale/si.js +51 -16
- umap/static/umap/locale/si.json +51 -16
- umap/static/umap/locale/sk_SK.js +51 -16
- umap/static/umap/locale/sk_SK.json +51 -16
- umap/static/umap/locale/sl.js +51 -16
- umap/static/umap/locale/sl.json +51 -16
- umap/static/umap/locale/sr.js +51 -16
- umap/static/umap/locale/sr.json +51 -16
- umap/static/umap/locale/sv.js +51 -16
- umap/static/umap/locale/sv.json +51 -16
- umap/static/umap/locale/th_TH.js +51 -16
- umap/static/umap/locale/th_TH.json +51 -16
- umap/static/umap/locale/tr.js +51 -16
- umap/static/umap/locale/tr.json +51 -16
- umap/static/umap/locale/uk_UA.js +51 -16
- umap/static/umap/locale/uk_UA.json +51 -16
- umap/static/umap/locale/vi.js +51 -16
- umap/static/umap/locale/vi.json +51 -16
- umap/static/umap/locale/vi_VN.json +51 -16
- umap/static/umap/locale/zh.js +51 -16
- umap/static/umap/locale/zh.json +51 -16
- umap/static/umap/locale/zh_CN.json +51 -16
- umap/static/umap/locale/zh_TW.Big5.json +51 -16
- umap/static/umap/locale/zh_TW.js +51 -16
- umap/static/umap/locale/zh_TW.json +51 -16
- umap/static/umap/map.css +40 -53
- umap/static/umap/unittests/sync.js +105 -0
- umap/static/umap/unittests/utils.js +78 -36
- umap/static/umap/vars.css +19 -1
- umap/static/umap/vendors/dompurify/purify.es.js +50 -15
- umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +2 -2
- umap/templates/umap/components/alerts/alert.html +89 -0
- umap/templates/umap/content.html +4 -3
- umap/templates/umap/css.html +4 -0
- umap/templates/umap/home.html +3 -0
- umap/templates/umap/js.html +0 -3
- umap/templates/umap/map_init.html +2 -8
- umap/templates/umap/messages.html +9 -11
- umap/templates/umap/search.html +3 -0
- umap/tests/base.py +3 -0
- umap/tests/integration/conftest.py +30 -0
- umap/tests/integration/test_anonymous_owned_map.py +8 -13
- umap/tests/integration/test_browser.py +81 -6
- umap/tests/integration/test_caption.py +27 -0
- umap/tests/integration/test_conditional_rules.py +201 -0
- umap/tests/integration/test_dashboard.py +1 -1
- umap/tests/integration/test_datalayer.py +2 -3
- umap/tests/integration/test_edit_datalayer.py +32 -3
- umap/tests/integration/test_edit_map.py +1 -1
- umap/tests/integration/test_facets_browser.py +7 -4
- umap/tests/integration/test_import.py +185 -49
- umap/tests/integration/test_map.py +31 -17
- umap/tests/integration/{test_collaborative_editing.py → test_optimistic_merge.py} +7 -7
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_picto.py +2 -2
- umap/tests/integration/test_statics.py +1 -1
- umap/tests/integration/test_view_marker.py +19 -2
- umap/tests/integration/test_websocket_sync.py +283 -0
- umap/tests/settings.py +5 -0
- umap/tests/test_datalayer_views.py +0 -1
- umap/tests/test_views.py +53 -0
- umap/urls.py +5 -0
- umap/views.py +40 -11
- umap/websocket_server.py +92 -0
- {umap_project-2.3.0.dist-info → umap_project-2.4.0.dist-info}/METADATA +13 -11
- {umap_project-2.3.0.dist-info → umap_project-2.4.0.dist-info}/RECORD +208 -172
- umap/static/umap/js/umap.autocomplete.js +0 -341
- umap/static/umap/js/umap.importer.js +0 -187
- umap/static/umap/js/umap.ui.js +0 -190
- {umap_project-2.3.0.dist-info → umap_project-2.4.0.dist-info}/WHEEL +0 -0
- {umap_project-2.3.0.dist-info → umap_project-2.4.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.3.0.dist-info → umap_project-2.4.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# Daniel Koć <daniel@xn--ko-wla.pl>, 2015
|
|
8
8
|
# endro, 2016
|
|
9
9
|
# endro, 2015-2016
|
|
10
|
-
# Krzysztof Chorzempa, 2023
|
|
10
|
+
# Krzysztof Chorzempa, 2023-2024
|
|
11
11
|
# Maciej Kowalik <m.kowalik.79@gmail.com>, 2016
|
|
12
12
|
# maro21 OSM, 2020-2021
|
|
13
13
|
# Piotr Strębski <strebski@gmail.com>, 2020
|
|
@@ -17,9 +17,9 @@ 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-04-24 19:16+0000\n"
|
|
21
21
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
22
|
-
"Last-Translator:
|
|
22
|
+
"Last-Translator: Krzysztof Chorzempa, 2023-2024\n"
|
|
23
23
|
"Language-Team: Polish (http://app.transifex.com/openstreetmap/umap/language/pl/)\n"
|
|
24
24
|
"MIME-Version: 1.0\n"
|
|
25
25
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -35,115 +35,115 @@ 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:384
|
|
39
39
|
msgid "Inherit"
|
|
40
|
-
msgstr ""
|
|
40
|
+
msgstr "Odziedzicz"
|
|
41
41
|
|
|
42
42
|
#: middleware.py:13
|
|
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:53
|
|
47
47
|
msgid "name"
|
|
48
48
|
msgstr "nazwa"
|
|
49
49
|
|
|
50
|
-
#: models.py:
|
|
50
|
+
#: models.py:84
|
|
51
51
|
msgid "details"
|
|
52
52
|
msgstr "szczegóły"
|
|
53
53
|
|
|
54
|
-
#: models.py:
|
|
54
|
+
#: models.py:85
|
|
55
55
|
msgid "Link to a page where the licence is detailed."
|
|
56
56
|
msgstr "Odnośnik do strony ze szczegółowym opisem licencji."
|
|
57
57
|
|
|
58
|
-
#: models.py:
|
|
58
|
+
#: models.py:95
|
|
59
59
|
msgid "URL template using OSM tile format"
|
|
60
60
|
msgstr "Szablon URL używający formatu kafelków OSM"
|
|
61
61
|
|
|
62
|
-
#: models.py:
|
|
62
|
+
#: models.py:101
|
|
63
63
|
msgid "Order of the tilelayers in the edit box"
|
|
64
64
|
msgstr "Kolejność podkładów w oknie edycji"
|
|
65
65
|
|
|
66
|
-
#: models.py:
|
|
66
|
+
#: models.py:147 models.py:385
|
|
67
67
|
msgid "Everyone"
|
|
68
68
|
msgstr "Każdy"
|
|
69
69
|
|
|
70
|
-
#: models.py:
|
|
70
|
+
#: models.py:148 models.py:154 models.py:386
|
|
71
71
|
msgid "Editors only"
|
|
72
72
|
msgstr "Tylko edytorzy"
|
|
73
73
|
|
|
74
|
-
#: models.py:
|
|
74
|
+
#: models.py:149 models.py:387
|
|
75
75
|
msgid "Owner only"
|
|
76
76
|
msgstr "Tylko właściciel"
|
|
77
77
|
|
|
78
|
-
#: models.py:
|
|
78
|
+
#: models.py:152
|
|
79
79
|
msgid "Everyone (public)"
|
|
80
80
|
msgstr "Każdy (publiczne)"
|
|
81
81
|
|
|
82
|
-
#: models.py:
|
|
82
|
+
#: models.py:153
|
|
83
83
|
msgid "Anyone with link"
|
|
84
84
|
msgstr "Każdy z linkiem"
|
|
85
85
|
|
|
86
|
-
#: models.py:
|
|
86
|
+
#: models.py:155
|
|
87
87
|
msgid "Blocked"
|
|
88
88
|
msgstr "Zablokowane"
|
|
89
89
|
|
|
90
|
-
#: models.py:
|
|
91
|
-
msgid "description"
|
|
92
|
-
msgstr "opis"
|
|
93
|
-
|
|
94
|
-
#: models.py:156
|
|
90
|
+
#: models.py:158
|
|
95
91
|
msgid "center"
|
|
96
92
|
msgstr "środek"
|
|
97
93
|
|
|
98
|
-
#: models.py:
|
|
94
|
+
#: models.py:159
|
|
99
95
|
msgid "zoom"
|
|
100
96
|
msgstr "przybliżenie"
|
|
101
97
|
|
|
102
|
-
#: models.py:
|
|
98
|
+
#: models.py:161
|
|
103
99
|
msgid "locate"
|
|
104
100
|
msgstr "lokalizuj"
|
|
105
101
|
|
|
106
|
-
#: models.py:
|
|
102
|
+
#: models.py:161
|
|
107
103
|
msgid "Locate user on load?"
|
|
108
104
|
msgstr "Lokalizować użytkownika po załadowaniu?"
|
|
109
105
|
|
|
110
|
-
#: models.py:
|
|
106
|
+
#: models.py:165
|
|
111
107
|
msgid "Choose the map licence."
|
|
112
108
|
msgstr "Wybierz licencję mapy."
|
|
113
109
|
|
|
114
|
-
#: models.py:
|
|
110
|
+
#: models.py:166
|
|
115
111
|
msgid "licence"
|
|
116
112
|
msgstr "licencja"
|
|
117
113
|
|
|
118
|
-
#: models.py:
|
|
114
|
+
#: models.py:177
|
|
119
115
|
msgid "owner"
|
|
120
116
|
msgstr "właściciel"
|
|
121
117
|
|
|
122
|
-
#: models.py:
|
|
118
|
+
#: models.py:181
|
|
123
119
|
msgid "editors"
|
|
124
120
|
msgstr "edytorzy"
|
|
125
121
|
|
|
126
|
-
#: models.py:
|
|
122
|
+
#: models.py:186 models.py:408
|
|
127
123
|
msgid "edit status"
|
|
128
124
|
msgstr "status edycji"
|
|
129
125
|
|
|
130
|
-
#: models.py:
|
|
126
|
+
#: models.py:191
|
|
131
127
|
msgid "share status"
|
|
132
128
|
msgstr "udostępnij status"
|
|
133
129
|
|
|
134
|
-
#: models.py:
|
|
130
|
+
#: models.py:194 models.py:403
|
|
135
131
|
msgid "settings"
|
|
136
132
|
msgstr "ustawienia"
|
|
137
133
|
|
|
138
|
-
#: models.py:
|
|
134
|
+
#: models.py:325
|
|
139
135
|
msgid "Clone of"
|
|
140
136
|
msgstr "Kopia"
|
|
141
137
|
|
|
142
|
-
#: models.py:
|
|
138
|
+
#: models.py:394
|
|
139
|
+
msgid "description"
|
|
140
|
+
msgstr "opis"
|
|
141
|
+
|
|
142
|
+
#: models.py:398
|
|
143
143
|
msgid "display on load"
|
|
144
144
|
msgstr "wyświetl po załadowaniu"
|
|
145
145
|
|
|
146
|
-
#: models.py:
|
|
146
|
+
#: models.py:399
|
|
147
147
|
msgid "Display this layer on load."
|
|
148
148
|
msgstr "Wyświetl tę warstwę po załadowaniu."
|
|
149
149
|
|
|
@@ -163,7 +163,7 @@ msgstr "%(current_user)s nie posiada map."
|
|
|
163
163
|
|
|
164
164
|
#: templates/auth/user_form.html:6
|
|
165
165
|
msgid "My Maps"
|
|
166
|
-
msgstr ""
|
|
166
|
+
msgstr "Moje Mapy"
|
|
167
167
|
|
|
168
168
|
#: templates/auth/user_form.html:7
|
|
169
169
|
msgid "My Profile"
|
|
@@ -299,7 +299,7 @@ msgstr "Zainspiruj się, przejrzyj mapy"
|
|
|
299
299
|
msgid "You are logged in. Continuing..."
|
|
300
300
|
msgstr "Jesteś zalogowany. Kontynuowanie..."
|
|
301
301
|
|
|
302
|
-
#: templates/umap/map_list.html:9 views.py:
|
|
302
|
+
#: templates/umap/map_list.html:9 views.py:349
|
|
303
303
|
msgid "by"
|
|
304
304
|
msgstr "przez"
|
|
305
305
|
|
|
@@ -313,15 +313,15 @@ msgstr "Nazwa"
|
|
|
313
313
|
|
|
314
314
|
#: templates/umap/map_table.html:7
|
|
315
315
|
msgid "Preview"
|
|
316
|
-
msgstr ""
|
|
316
|
+
msgstr "Podgląd"
|
|
317
317
|
|
|
318
318
|
#: templates/umap/map_table.html:8
|
|
319
319
|
msgid "Who can see"
|
|
320
|
-
msgstr ""
|
|
320
|
+
msgstr "Kto może zobaczyć"
|
|
321
321
|
|
|
322
322
|
#: templates/umap/map_table.html:9
|
|
323
323
|
msgid "Who can edit"
|
|
324
|
-
msgstr ""
|
|
324
|
+
msgstr "Kto może edytować"
|
|
325
325
|
|
|
326
326
|
#: templates/umap/map_table.html:10
|
|
327
327
|
msgid "Last save"
|
|
@@ -335,60 +335,60 @@ msgstr "Właściciel"
|
|
|
335
335
|
msgid "Actions"
|
|
336
336
|
msgstr "Akcje"
|
|
337
337
|
|
|
338
|
-
#: templates/umap/map_table.html:
|
|
338
|
+
#: templates/umap/map_table.html:26 templates/umap/map_table.html:28
|
|
339
339
|
msgid "Open preview"
|
|
340
|
-
msgstr ""
|
|
340
|
+
msgstr "Otwórz podgląd"
|
|
341
341
|
|
|
342
|
-
#: templates/umap/map_table.html:
|
|
342
|
+
#: templates/umap/map_table.html:48 templates/umap/map_table.html:50
|
|
343
343
|
msgid "Share"
|
|
344
344
|
msgstr "Udostępnij"
|
|
345
345
|
|
|
346
|
-
#: templates/umap/map_table.html:
|
|
346
|
+
#: templates/umap/map_table.html:54 templates/umap/map_table.html:56
|
|
347
347
|
msgid "Edit"
|
|
348
348
|
msgstr "Edytuj"
|
|
349
349
|
|
|
350
|
-
#: templates/umap/map_table.html:
|
|
350
|
+
#: templates/umap/map_table.html:60 templates/umap/map_table.html:62
|
|
351
351
|
msgid "Download"
|
|
352
352
|
msgstr "Pobierz"
|
|
353
353
|
|
|
354
|
-
#: templates/umap/map_table.html:
|
|
354
|
+
#: templates/umap/map_table.html:66 templates/umap/map_table.html:68
|
|
355
355
|
msgid "Clone"
|
|
356
|
-
msgstr ""
|
|
356
|
+
msgstr "Skopiuj"
|
|
357
357
|
|
|
358
|
-
#: templates/umap/map_table.html:
|
|
358
|
+
#: templates/umap/map_table.html:77 templates/umap/map_table.html:79
|
|
359
359
|
msgid "Delete"
|
|
360
|
-
msgstr ""
|
|
360
|
+
msgstr "Usuń"
|
|
361
361
|
|
|
362
|
-
#: templates/umap/map_table.html:
|
|
362
|
+
#: templates/umap/map_table.html:93
|
|
363
363
|
msgid "first"
|
|
364
|
-
msgstr ""
|
|
364
|
+
msgstr "pierwszy"
|
|
365
365
|
|
|
366
|
-
#: templates/umap/map_table.html:
|
|
366
|
+
#: templates/umap/map_table.html:94
|
|
367
367
|
msgid "previous"
|
|
368
|
-
msgstr ""
|
|
368
|
+
msgstr "poprzedni"
|
|
369
369
|
|
|
370
|
-
#: templates/umap/map_table.html:
|
|
370
|
+
#: templates/umap/map_table.html:102
|
|
371
371
|
#, python-format
|
|
372
372
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
373
|
-
msgstr ""
|
|
373
|
+
msgstr "Strona %(maps_number)s. z %(num_pages)s"
|
|
374
374
|
|
|
375
|
-
#: templates/umap/map_table.html:
|
|
375
|
+
#: templates/umap/map_table.html:107
|
|
376
376
|
msgid "next"
|
|
377
377
|
msgstr ""
|
|
378
378
|
|
|
379
|
-
#: templates/umap/map_table.html:
|
|
379
|
+
#: templates/umap/map_table.html:108
|
|
380
380
|
msgid "last"
|
|
381
381
|
msgstr ""
|
|
382
382
|
|
|
383
|
-
#: templates/umap/map_table.html:
|
|
383
|
+
#: templates/umap/map_table.html:116
|
|
384
384
|
#, python-format
|
|
385
385
|
msgid "Lines per page: %(per_page)s"
|
|
386
386
|
msgstr ""
|
|
387
387
|
|
|
388
|
-
#: templates/umap/map_table.html:
|
|
388
|
+
#: templates/umap/map_table.html:121
|
|
389
389
|
#, python-format
|
|
390
390
|
msgid "%(count)s maps"
|
|
391
|
-
msgstr ""
|
|
391
|
+
msgstr "%(count)s map"
|
|
392
392
|
|
|
393
393
|
#: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
|
|
394
394
|
msgid "My Dashboard"
|
|
@@ -481,78 +481,83 @@ msgstr "Znajdź mapy"
|
|
|
481
481
|
msgid "Search"
|
|
482
482
|
msgstr "Szukaj"
|
|
483
483
|
|
|
484
|
-
#: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:
|
|
484
|
+
#: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
|
|
485
485
|
msgid "Search my maps"
|
|
486
486
|
msgstr "Przeszukaj moje mapy"
|
|
487
487
|
|
|
488
|
-
#: templates/umap/user_dashboard.html:
|
|
488
|
+
#: templates/umap/user_dashboard.html:10
|
|
489
489
|
#, python-format
|
|
490
490
|
msgid "My Maps (%(count)s)"
|
|
491
|
-
msgstr ""
|
|
491
|
+
msgstr "Moje Mapy (%(count)s)"
|
|
492
492
|
|
|
493
|
-
#: templates/umap/user_dashboard.html:
|
|
493
|
+
#: templates/umap/user_dashboard.html:12
|
|
494
494
|
msgid "My profile"
|
|
495
495
|
msgstr "Mój profil"
|
|
496
496
|
|
|
497
|
-
#: templates/umap/user_dashboard.html:
|
|
497
|
+
#: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
|
|
498
498
|
msgid "Map’s title"
|
|
499
|
-
msgstr ""
|
|
499
|
+
msgstr "Nazwa mapy"
|
|
500
500
|
|
|
501
501
|
#: templates/umap/user_dashboard.html:32
|
|
502
502
|
#, python-format
|
|
503
503
|
msgid "Download %(count)s maps"
|
|
504
|
-
msgstr ""
|
|
504
|
+
msgstr "Pobierz %(count)s map"
|
|
505
505
|
|
|
506
506
|
#: templates/umap/user_dashboard.html:42
|
|
507
507
|
msgid "You have no map yet."
|
|
508
508
|
msgstr "Nie masz jeszcze żadnej mapy."
|
|
509
509
|
|
|
510
|
-
#: views.py:
|
|
510
|
+
#: views.py:354
|
|
511
511
|
msgid "View the map"
|
|
512
512
|
msgstr "Zobacz mapę"
|
|
513
513
|
|
|
514
|
-
#: views.py:
|
|
514
|
+
#: views.py:716
|
|
515
515
|
msgid "See full screen"
|
|
516
516
|
msgstr ""
|
|
517
517
|
|
|
518
|
-
#: views.py:
|
|
518
|
+
#: views.py:817
|
|
519
519
|
msgid "Map editors updated with success!"
|
|
520
520
|
msgstr "Edytorzy mapy zaktualizowani pomyślnie!"
|
|
521
521
|
|
|
522
|
-
#: views.py:
|
|
522
|
+
#: views.py:854
|
|
523
523
|
#, python-format
|
|
524
524
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
525
525
|
msgstr "Link uMap do edytowania twojej mapy: %(map_name)s"
|
|
526
526
|
|
|
527
|
-
#: views.py:
|
|
527
|
+
#: views.py:857
|
|
528
528
|
#, python-format
|
|
529
529
|
msgid "Here is your secret edit link: %(link)s"
|
|
530
530
|
msgstr "Oto twój sekretny link do edycji: %(link)s"
|
|
531
531
|
|
|
532
|
-
#: views.py:
|
|
532
|
+
#: views.py:864
|
|
533
|
+
#, python-format
|
|
534
|
+
msgid "Can't send email to %(email)s"
|
|
535
|
+
msgstr "Nie można wysłać emaila do %(email)s"
|
|
536
|
+
|
|
537
|
+
#: views.py:867
|
|
533
538
|
#, python-format
|
|
534
539
|
msgid "Email sent to %(email)s"
|
|
535
540
|
msgstr "Email wysłany do %(email)s"
|
|
536
541
|
|
|
537
|
-
#: views.py:
|
|
542
|
+
#: views.py:878
|
|
538
543
|
msgid "Only its owner can delete the map."
|
|
539
544
|
msgstr "Tylko właściciel może usunąć mapę."
|
|
540
545
|
|
|
541
|
-
#: views.py:
|
|
546
|
+
#: views.py:906
|
|
542
547
|
#, python-format
|
|
543
548
|
msgid ""
|
|
544
549
|
"Your map has been cloned! If you want to edit this map from another "
|
|
545
550
|
"computer, please use this link: %(anonymous_url)s"
|
|
546
551
|
msgstr "Twoja mapa została skopiowana! Jeśli chcesz edytować ją z innego komputera, użyj odnośnika: %(anonymous_url)s"
|
|
547
552
|
|
|
548
|
-
#: views.py:
|
|
553
|
+
#: views.py:911
|
|
549
554
|
msgid "Congratulations, your map has been cloned!"
|
|
550
555
|
msgstr "Gratulacje, twoja mapa została skopiowana!"
|
|
551
556
|
|
|
552
|
-
#: views.py:
|
|
557
|
+
#: views.py:1146
|
|
553
558
|
msgid "Layer successfully deleted."
|
|
554
559
|
msgstr "Warstwa usunięta pomyślnie."
|
|
555
560
|
|
|
556
|
-
#: views.py:
|
|
561
|
+
#: views.py:1168
|
|
557
562
|
msgid "Permissions updated with success!"
|
|
558
|
-
msgstr ""
|
|
563
|
+
msgstr "Pomyślnie zaktualizowano uprawnienia!"
|
|
Binary file
|