geovisio 2.7.0__py3-none-any.whl → 2.8.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.
- geovisio/__init__.py +11 -3
- geovisio/admin_cli/__init__.py +3 -1
- geovisio/admin_cli/cleanup.py +2 -2
- geovisio/admin_cli/user.py +75 -0
- geovisio/config_app.py +87 -4
- geovisio/templates/main.html +2 -2
- geovisio/templates/viewer.html +3 -3
- geovisio/translations/da/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/da/LC_MESSAGES/messages.po +850 -0
- geovisio/translations/de/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/de/LC_MESSAGES/messages.po +235 -2
- geovisio/translations/el/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/el/LC_MESSAGES/messages.po +685 -0
- geovisio/translations/en/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/en/LC_MESSAGES/messages.po +244 -153
- geovisio/translations/eo/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/eo/LC_MESSAGES/messages.po +790 -0
- geovisio/translations/es/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fi/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fr/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fr/LC_MESSAGES/messages.po +40 -3
- geovisio/translations/hu/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/hu/LC_MESSAGES/messages.po +773 -0
- geovisio/translations/it/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/it/LC_MESSAGES/messages.po +875 -0
- geovisio/translations/ja/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/ja/LC_MESSAGES/messages.po +719 -0
- geovisio/translations/ko/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/messages.pot +225 -148
- geovisio/translations/nl/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/nl/LC_MESSAGES/messages.po +24 -16
- geovisio/translations/pl/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/pl/LC_MESSAGES/messages.po +727 -0
- geovisio/translations/zh_Hant/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/zh_Hant/LC_MESSAGES/messages.po +719 -0
- geovisio/utils/auth.py +80 -8
- geovisio/utils/link.py +3 -2
- geovisio/utils/model_query.py +55 -0
- geovisio/utils/pictures.py +29 -62
- geovisio/utils/semantics.py +120 -0
- geovisio/utils/sequences.py +30 -23
- geovisio/utils/tokens.py +5 -3
- geovisio/utils/upload_set.py +87 -64
- geovisio/utils/website.py +50 -0
- geovisio/web/annotations.py +17 -0
- geovisio/web/auth.py +9 -5
- geovisio/web/collections.py +235 -63
- geovisio/web/configuration.py +17 -1
- geovisio/web/docs.py +99 -54
- geovisio/web/items.py +233 -100
- geovisio/web/map.py +129 -31
- geovisio/web/pages.py +240 -0
- geovisio/web/params.py +17 -0
- geovisio/web/prepare.py +165 -0
- geovisio/web/stac.py +17 -4
- geovisio/web/tokens.py +14 -4
- geovisio/web/upload_set.py +19 -10
- geovisio/web/users.py +176 -44
- geovisio/workers/runner_pictures.py +75 -50
- {geovisio-2.7.0.dist-info → geovisio-2.8.0.dist-info}/METADATA +6 -5
- geovisio-2.8.0.dist-info/RECORD +89 -0
- {geovisio-2.7.0.dist-info → geovisio-2.8.0.dist-info}/WHEEL +1 -1
- geovisio-2.7.0.dist-info/RECORD +0 -66
- {geovisio-2.7.0.dist-info → geovisio-2.8.0.dist-info}/LICENSE +0 -0
|
@@ -0,0 +1,727 @@
|
|
|
1
|
+
# Translations template for PROJECT.
|
|
2
|
+
# Copyright (C) 2024 ORGANIZATION
|
|
3
|
+
# This file is distributed under the same license as the PROJECT project.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
|
|
5
|
+
#
|
|
6
|
+
msgid ""
|
|
7
|
+
msgstr ""
|
|
8
|
+
"Project-Id-Version: PROJECT VERSION\n"
|
|
9
|
+
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
|
10
|
+
"POT-Creation-Date: 2024-10-28 10:15+0100\n"
|
|
11
|
+
"PO-Revision-Date: 2024-11-25 10:10+0000\n"
|
|
12
|
+
"Last-Translator: Filip Czaplicki <weblatepanoramax722252@starsep.com>\n"
|
|
13
|
+
"Language-Team: Polish <http://weblate.panoramax.xyz/projects/panoramax/api/"
|
|
14
|
+
"pl/>\n"
|
|
15
|
+
"Language: pl\n"
|
|
16
|
+
"MIME-Version: 1.0\n"
|
|
17
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
19
|
+
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
|
20
|
+
"|| n%100>=20) ? 1 : 2;\n"
|
|
21
|
+
"X-Generator: Weblate 5.4.3\n"
|
|
22
|
+
"Generated-By: Babel 2.15.0\n"
|
|
23
|
+
|
|
24
|
+
#: geovisio/templates/main.html:45
|
|
25
|
+
msgid "Simple 360° geolocated pictures hosting"
|
|
26
|
+
msgstr "Prosty hosting zdjęć 360° z geolokalizacją"
|
|
27
|
+
|
|
28
|
+
#: geovisio/templates/main.html:47
|
|
29
|
+
msgid "Full page version"
|
|
30
|
+
msgstr "Wersja pełnoekranowa"
|
|
31
|
+
|
|
32
|
+
#: geovisio/templates/main.html:51
|
|
33
|
+
msgid "Viewer"
|
|
34
|
+
msgstr "Przeglądarka"
|
|
35
|
+
|
|
36
|
+
#: geovisio/templates/main.html:52
|
|
37
|
+
msgid "Embed pre-configured viewer"
|
|
38
|
+
msgstr "Osadź pre-konfigurowaną przeglądarkę"
|
|
39
|
+
|
|
40
|
+
#: geovisio/templates/main.html:53
|
|
41
|
+
msgid "Easiest way to have a working GeoVisio viewer on your website"
|
|
42
|
+
msgstr ""
|
|
43
|
+
"Najłatwiejszy sposób, aby mieć działającą przeglądarkę GeoVisio na Twojej "
|
|
44
|
+
"stronie internetowej"
|
|
45
|
+
|
|
46
|
+
#: geovisio/templates/main.html:59
|
|
47
|
+
msgid "Use JS library"
|
|
48
|
+
msgstr "Użyć biblioteki w JavaScript"
|
|
49
|
+
|
|
50
|
+
#: geovisio/templates/main.html:60
|
|
51
|
+
msgid "A completely configurable viewer for your website"
|
|
52
|
+
msgstr "Całkowicie konfigurowalna przeglądarka dla Twojej strony internetowej"
|
|
53
|
+
|
|
54
|
+
#: geovisio/templates/main.html:82
|
|
55
|
+
msgid "Links"
|
|
56
|
+
msgstr "Linki"
|
|
57
|
+
|
|
58
|
+
#: geovisio/templates/main.html:84
|
|
59
|
+
msgid "Pictures viewer"
|
|
60
|
+
msgstr "Przeglądarka zdjęć"
|
|
61
|
+
|
|
62
|
+
#: geovisio/templates/main.html:86
|
|
63
|
+
msgid "API docs"
|
|
64
|
+
msgstr "Dokumentacja API"
|
|
65
|
+
|
|
66
|
+
#: geovisio/templates/main.html:88
|
|
67
|
+
msgid "JS library docs"
|
|
68
|
+
msgstr "Dokumentacja biblioteki w JavaScript"
|
|
69
|
+
|
|
70
|
+
#: geovisio/templates/main.html:90
|
|
71
|
+
msgid "Repositories"
|
|
72
|
+
msgstr "Repozytoria"
|
|
73
|
+
|
|
74
|
+
#: geovisio/templates/viewer.html:22
|
|
75
|
+
msgid "You need to enable JavaScript to run this app."
|
|
76
|
+
msgstr "Musisz włączyć JavaScript, aby uruchomić tę aplikację."
|
|
77
|
+
|
|
78
|
+
#: geovisio/utils/auth.py:201
|
|
79
|
+
msgid "Authentication is mandatory"
|
|
80
|
+
msgstr "Uwierzytelnienie jest obowiązkowe"
|
|
81
|
+
|
|
82
|
+
#: geovisio/utils/auth.py:330
|
|
83
|
+
msgid "Only Bearer token are supported"
|
|
84
|
+
msgstr "Tylko tokeny Bearer są obługiwane"
|
|
85
|
+
|
|
86
|
+
#: geovisio/utils/excluded_areas.py:82
|
|
87
|
+
msgid "Impossible to find excluded area"
|
|
88
|
+
msgstr "Znalezienie wykluczonej strefy jest niemożliwe"
|
|
89
|
+
|
|
90
|
+
#: geovisio/utils/pictures.py:303
|
|
91
|
+
#, python-format
|
|
92
|
+
msgid ""
|
|
93
|
+
"Invalid '%(format)s' format for image, only the following formats are "
|
|
94
|
+
"available: %(allowed_formats)s"
|
|
95
|
+
msgstr ""
|
|
96
|
+
"Niepoprawny '%(format)s' format zdjęcia, tylko te formaty są dozwolone: "
|
|
97
|
+
"%(allowed_formats)s"
|
|
98
|
+
|
|
99
|
+
#: geovisio/utils/pictures.py:417
|
|
100
|
+
msgid "Picture can't be found, you may check its ID"
|
|
101
|
+
msgstr "Zdjęcie nie może być odnalezione, sprawdź jego ID"
|
|
102
|
+
|
|
103
|
+
#: geovisio/utils/pictures.py:420
|
|
104
|
+
msgid "Picture is not available (either hidden by admin or processing)"
|
|
105
|
+
msgstr ""
|
|
106
|
+
"Zdjęcie nie jest dostępne (schowane przez admina lub w trakcie przetwarzania)"
|
|
107
|
+
|
|
108
|
+
#: geovisio/utils/pictures.py:428
|
|
109
|
+
msgid "HD Picture file is not available"
|
|
110
|
+
msgstr "Zdjęcie w wysokiej rozdzielczości nie jest dostępne"
|
|
111
|
+
|
|
112
|
+
#: geovisio/utils/pictures.py:447
|
|
113
|
+
msgid "Picture derivates file are not available"
|
|
114
|
+
msgstr "Pliki pochodne obrazu nie są dostępne"
|
|
115
|
+
|
|
116
|
+
#: geovisio/utils/pictures.py:464 geovisio/web/pictures.py:53
|
|
117
|
+
#: geovisio/web/pictures.py:98 geovisio/web/pictures.py:208
|
|
118
|
+
msgid "Unable to read picture on filesystem"
|
|
119
|
+
msgstr "Nie można odczytać zdjęcia z systemu plików"
|
|
120
|
+
|
|
121
|
+
#: geovisio/utils/reports.py:142 geovisio/utils/upload_set.py:352
|
|
122
|
+
#: geovisio/web/params.py:356
|
|
123
|
+
msgid "Unsupported filter parameter"
|
|
124
|
+
msgstr "Nieobługiwany argument filtrowania"
|
|
125
|
+
|
|
126
|
+
#: geovisio/utils/sequences.py:377
|
|
127
|
+
msgid ""
|
|
128
|
+
"Sort by file date is not possible on this sequence (no file date "
|
|
129
|
+
"information available on pictures)"
|
|
130
|
+
msgstr ""
|
|
131
|
+
"Sortowanie po dacie pliku nie jest możliwe dla tej sekwencji (brak "
|
|
132
|
+
"informacji o datach w zdjęciach)"
|
|
133
|
+
|
|
134
|
+
#: geovisio/utils/sequences.py:402
|
|
135
|
+
#, python-format
|
|
136
|
+
msgid ""
|
|
137
|
+
"Sort using %(sort)s is not possible on this sequence, picture %(pic)s is "
|
|
138
|
+
"missing mandatory metadata"
|
|
139
|
+
msgstr ""
|
|
140
|
+
"Sortowanie %(sort)s nie jest możliwe dla tej sekwencji, zdjęcie %(pic)s nie "
|
|
141
|
+
"zawiera wymagach metadanych"
|
|
142
|
+
|
|
143
|
+
#: geovisio/utils/sequences.py:590 geovisio/web/collections.py:618
|
|
144
|
+
#, python-format
|
|
145
|
+
msgid "Collection %(c)s wasn't found in database"
|
|
146
|
+
msgstr "Kolekcja %(c)s nie została odnaleziona w bazie danych"
|
|
147
|
+
|
|
148
|
+
#: geovisio/utils/tokens.py:42
|
|
149
|
+
msgid "JWT token signature does not match"
|
|
150
|
+
msgstr "Podpis tokena JWT nie zgadza się"
|
|
151
|
+
|
|
152
|
+
#: geovisio/utils/tokens.py:56
|
|
153
|
+
msgid "Token does not exist anymore"
|
|
154
|
+
msgstr "Token już nie istnieje"
|
|
155
|
+
|
|
156
|
+
#: geovisio/utils/tokens.py:60
|
|
157
|
+
msgid ""
|
|
158
|
+
"Token not yet claimed, this token cannot be used yet. Either claim this "
|
|
159
|
+
"token or generate a new one"
|
|
160
|
+
msgstr ""
|
|
161
|
+
"Token nie został jeszcze odebrany, tego tokena nie można jeszcze użyć. "
|
|
162
|
+
"Odbierz ten token lub wygeneruj nowy"
|
|
163
|
+
|
|
164
|
+
#: geovisio/utils/upload_set.py:158
|
|
165
|
+
msgid ""
|
|
166
|
+
"The picture is too similar to another one (nearby and taken almost at the"
|
|
167
|
+
" same time)"
|
|
168
|
+
msgstr ""
|
|
169
|
+
"To zdjęcie jest zbyt podobny do innego (w pobliżu albo zrobione niemalże w "
|
|
170
|
+
"tym samym czasie)"
|
|
171
|
+
|
|
172
|
+
#: geovisio/utils/upload_set.py:161
|
|
173
|
+
msgid "The sent file is not a valid JPEG"
|
|
174
|
+
msgstr "Przesłany plik nie jest poprawnym JPEG"
|
|
175
|
+
|
|
176
|
+
#: geovisio/utils/upload_set.py:164
|
|
177
|
+
msgid "The picture has invalid EXIF or XMP metadata, making it impossible to use"
|
|
178
|
+
msgstr ""
|
|
179
|
+
"Zdjęcie ma nieprawidłowe metadane EXIF lub XMP, przez co nie da się go użyć"
|
|
180
|
+
|
|
181
|
+
#: geovisio/utils/upload_set.py:167
|
|
182
|
+
msgid "Something went very wrong, but not due to the picture itself"
|
|
183
|
+
msgstr "Coś poszło bardzo nie tak, ale nie ze względu na zdjęcie"
|
|
184
|
+
|
|
185
|
+
#: geovisio/web/auth.py:60
|
|
186
|
+
msgid "Impossible to finish authentication flow"
|
|
187
|
+
msgstr "Niemożliwe jest dokończenie procesu uwierzytelnienia"
|
|
188
|
+
|
|
189
|
+
#: geovisio/web/auth.py:64
|
|
190
|
+
msgid ""
|
|
191
|
+
"You can try to clear your cookies and retry. If the problem persists, "
|
|
192
|
+
"contact your instance administrator."
|
|
193
|
+
msgstr ""
|
|
194
|
+
"Możesz spróbować wyczyścić ciasteczka i powtórzyć. Jeżeli problem się "
|
|
195
|
+
"powtarza, skontaktuj administratora swojej instancji."
|
|
196
|
+
|
|
197
|
+
#: geovisio/web/collections.py:288
|
|
198
|
+
#, python-format
|
|
199
|
+
msgid "There is no collection created after %(d)s"
|
|
200
|
+
msgstr "Nie ma kolekcji stworzonej po %(d)s"
|
|
201
|
+
|
|
202
|
+
#: geovisio/web/collections.py:290
|
|
203
|
+
#, python-format
|
|
204
|
+
msgid "There is no collection created before %(d)s"
|
|
205
|
+
msgstr "Nie ma kolekcji stworzonej przed %(d)s"
|
|
206
|
+
|
|
207
|
+
#: geovisio/web/collections.py:399 geovisio/web/items.py:397
|
|
208
|
+
msgid "Collection doesn't exist"
|
|
209
|
+
msgstr "Kolekcja nie istnieje"
|
|
210
|
+
|
|
211
|
+
#: geovisio/web/collections.py:458
|
|
212
|
+
msgid "Impossible to find a thumbnail for the collection"
|
|
213
|
+
msgstr "Niemożliwe jest odnalezienie miniaturki dla kolekcji"
|
|
214
|
+
|
|
215
|
+
#: geovisio/web/collections.py:578 geovisio/web/items.py:1174
|
|
216
|
+
msgid ""
|
|
217
|
+
"Picture visibility parameter (visible) should be either unset, true or "
|
|
218
|
+
"false"
|
|
219
|
+
msgstr ""
|
|
220
|
+
"Parametr widoczności zdjęcia (\"visible\") powinien być nieustawiony, \"true"
|
|
221
|
+
"\" lub \"false\""
|
|
222
|
+
|
|
223
|
+
#: geovisio/web/collections.py:584
|
|
224
|
+
msgid ""
|
|
225
|
+
"Sequence title is not valid, should be a string with a max of 250 "
|
|
226
|
+
"characters"
|
|
227
|
+
msgstr ""
|
|
228
|
+
"Tytuł sekwencji nie jest prawidłowy, powinien to być napis o maksymalnie 250 "
|
|
229
|
+
"znakach"
|
|
230
|
+
|
|
231
|
+
#: geovisio/web/collections.py:590
|
|
232
|
+
msgid "Sort order parameter is invalid"
|
|
233
|
+
msgstr "Parametr kolejności sortowania jest nieprawidłowy"
|
|
234
|
+
|
|
235
|
+
#: geovisio/web/collections.py:601
|
|
236
|
+
msgid ""
|
|
237
|
+
"Relative heading is not valid, should be an integer in degrees from -180 "
|
|
238
|
+
"to 180"
|
|
239
|
+
msgstr ""
|
|
240
|
+
"Względny nagłówek nie jest poprawny, powinien być liczbą całkowitą w "
|
|
241
|
+
"stopniach od -180 do 180"
|
|
242
|
+
|
|
243
|
+
#: geovisio/web/collections.py:622
|
|
244
|
+
msgid "You're not authorized to edit this sequence"
|
|
245
|
+
msgstr "Nie masz dostępu do edycji tej sekwencji"
|
|
246
|
+
|
|
247
|
+
#: geovisio/web/collections.py:631
|
|
248
|
+
#, python-format
|
|
249
|
+
msgid "Sequence %(c)s is in %(s)s state, its visibility can't be changed for now"
|
|
250
|
+
msgstr ""
|
|
251
|
+
|
|
252
|
+
#: geovisio/web/collections.py:766
|
|
253
|
+
msgid "Sequence doesn't exists"
|
|
254
|
+
msgstr "Sekwencja nie istnieje"
|
|
255
|
+
|
|
256
|
+
#: geovisio/web/collections.py:911 geovisio/web/stac.py:337
|
|
257
|
+
#, python-format
|
|
258
|
+
msgid "Impossible to find user %(u)s"
|
|
259
|
+
msgstr "Nie udało się znaleźć użytkownika %(u)s"
|
|
260
|
+
|
|
261
|
+
#: geovisio/web/collections.py:943 geovisio/web/stac.py:347
|
|
262
|
+
#, python-format
|
|
263
|
+
msgid "No data loaded for user %(u)s"
|
|
264
|
+
msgstr "Brak danych załadowanych dla użytkownika %(u)s"
|
|
265
|
+
|
|
266
|
+
#: geovisio/web/collections.py:945
|
|
267
|
+
msgid "No matching sequences found"
|
|
268
|
+
msgstr "Nie odnaleziono pasujących sekwencji"
|
|
269
|
+
|
|
270
|
+
#: geovisio/web/excluded_areas.py:133
|
|
271
|
+
msgid "You must be logged-in as admin to access all excluded areas"
|
|
272
|
+
msgstr ""
|
|
273
|
+
"Musisz być zalogowany jako administrator, aby mieć dostęp do obszarów "
|
|
274
|
+
"zastrzeżonych"
|
|
275
|
+
|
|
276
|
+
#: geovisio/web/excluded_areas.py:135
|
|
277
|
+
msgid "You're not authorized to access all excluded areas"
|
|
278
|
+
msgstr "Nie masz dostępu do obszarów zastrzeżonych"
|
|
279
|
+
|
|
280
|
+
#: geovisio/web/excluded_areas.py:172 geovisio/web/excluded_areas.py:182
|
|
281
|
+
#: geovisio/web/excluded_areas.py:336 geovisio/web/excluded_areas.py:343
|
|
282
|
+
msgid "Impossible to create an Excluded Area"
|
|
283
|
+
msgstr "Nie udało się stworzyć obszaru zastrzeżonego"
|
|
284
|
+
|
|
285
|
+
#: geovisio/web/excluded_areas.py:174 geovisio/web/excluded_areas.py:338
|
|
286
|
+
msgid "Parameter for creating an Excluded Area should be a valid JSON"
|
|
287
|
+
msgstr ""
|
|
288
|
+
"Parametr do stworzenia obszaru zastrzeżonego powinien być poprawnym JSONem"
|
|
289
|
+
|
|
290
|
+
#: geovisio/web/excluded_areas.py:177 geovisio/web/excluded_areas.py:235
|
|
291
|
+
msgid "You must be logged-in as admin to edit excluded areas"
|
|
292
|
+
msgstr ""
|
|
293
|
+
"Musisz być zalogowany jako administrator, aby edytować obszary zastrzeżone"
|
|
294
|
+
|
|
295
|
+
#: geovisio/web/excluded_areas.py:230 geovisio/web/excluded_areas.py:242
|
|
296
|
+
msgid "Impossible to replace all Excluded Areas"
|
|
297
|
+
msgstr ""
|
|
298
|
+
|
|
299
|
+
#: geovisio/web/excluded_areas.py:232
|
|
300
|
+
msgid "Parameter for replacing all Excluded Areas should be a valid JSON"
|
|
301
|
+
msgstr ""
|
|
302
|
+
|
|
303
|
+
#: geovisio/web/excluded_areas.py:272
|
|
304
|
+
msgid "You must be logged-in as admin to delete excluded areas"
|
|
305
|
+
msgstr ""
|
|
306
|
+
"Musisz być zalogowany jako administrator, aby usuwać obszary zastrzeżone"
|
|
307
|
+
|
|
308
|
+
#: geovisio/web/items.py:360
|
|
309
|
+
msgid "limit parameter should be an integer between 1 and 10000"
|
|
310
|
+
msgstr "parametr limit powinien być liczbą całkowitą pomiędzy 1 i 10000"
|
|
311
|
+
|
|
312
|
+
#: geovisio/web/items.py:362
|
|
313
|
+
msgid "limit parameter should be a valid, positive integer (between 1 and 10000)"
|
|
314
|
+
msgstr ""
|
|
315
|
+
"parametr limit powinien być poprawną liczbą naturalną pomiędzy 1 i 10000"
|
|
316
|
+
|
|
317
|
+
#: geovisio/web/items.py:367
|
|
318
|
+
msgid "`startAfterRank` and `withPicture` are mutually exclusive parameters"
|
|
319
|
+
msgstr ""
|
|
320
|
+
|
|
321
|
+
#: geovisio/web/items.py:374
|
|
322
|
+
msgid "startAfterRank parameter should be a positive integer (starting from 1)"
|
|
323
|
+
msgstr ""
|
|
324
|
+
|
|
325
|
+
#: geovisio/web/items.py:376
|
|
326
|
+
msgid "startAfterRank parameter should be a valid, positive integer"
|
|
327
|
+
msgstr ""
|
|
328
|
+
|
|
329
|
+
#: geovisio/web/items.py:403
|
|
330
|
+
#, python-format
|
|
331
|
+
msgid "No more items in this collection (last available rank is %(r)s)"
|
|
332
|
+
msgstr ""
|
|
333
|
+
|
|
334
|
+
#: geovisio/web/items.py:413
|
|
335
|
+
#, python-format
|
|
336
|
+
msgid "Picture with id %(p)s does not exists"
|
|
337
|
+
msgstr "Zdjęcie z id %(p)s nie istnieje"
|
|
338
|
+
|
|
339
|
+
#: geovisio/web/items.py:699
|
|
340
|
+
msgid "Item doesn't exist"
|
|
341
|
+
msgstr ""
|
|
342
|
+
|
|
343
|
+
#: geovisio/web/items.py:758
|
|
344
|
+
msgid "Search using POST method should have a JSON body"
|
|
345
|
+
msgstr ""
|
|
346
|
+
|
|
347
|
+
#: geovisio/web/items.py:767
|
|
348
|
+
msgid "Parameter limit must be either empty or a number between 1 and 10000"
|
|
349
|
+
msgstr ""
|
|
350
|
+
|
|
351
|
+
#: geovisio/web/items.py:823
|
|
352
|
+
msgid ""
|
|
353
|
+
"Parameter place_fov_tolerance must be either empty or a number between 2 "
|
|
354
|
+
"and 180"
|
|
355
|
+
msgstr ""
|
|
356
|
+
|
|
357
|
+
#: geovisio/web/items.py:845
|
|
358
|
+
msgid ""
|
|
359
|
+
"Parameter intersects should contain a valid GeoJSON Geometry (not a "
|
|
360
|
+
"Feature)"
|
|
361
|
+
msgstr ""
|
|
362
|
+
|
|
363
|
+
#: geovisio/web/items.py:861
|
|
364
|
+
msgid "Parameter ids should be a JSON array of strings"
|
|
365
|
+
msgstr ""
|
|
366
|
+
|
|
367
|
+
#: geovisio/web/items.py:873
|
|
368
|
+
msgid "Parameter collections should be a JSON array of strings"
|
|
369
|
+
msgstr ""
|
|
370
|
+
|
|
371
|
+
#: geovisio/web/items.py:884
|
|
372
|
+
msgid "Picture doesn't exist"
|
|
373
|
+
msgstr "Zdjęcie nie istnieje"
|
|
374
|
+
|
|
375
|
+
#: geovisio/web/items.py:987 geovisio/web/upload_set.py:527
|
|
376
|
+
msgid "Content type should be multipart/form-data"
|
|
377
|
+
msgstr "Nagłówek Content-Type powinien być multipart/form-data"
|
|
378
|
+
|
|
379
|
+
#: geovisio/web/items.py:991
|
|
380
|
+
msgid "Missing \"position\" parameter"
|
|
381
|
+
msgstr "Brakujący parametr \"position\""
|
|
382
|
+
|
|
383
|
+
#: geovisio/web/items.py:998
|
|
384
|
+
msgid "Position in sequence should be a positive integer"
|
|
385
|
+
msgstr "Pozycja w sekwencji powinna być dodatnią liczbą całkowitą"
|
|
386
|
+
|
|
387
|
+
#: geovisio/web/items.py:1012 geovisio/web/upload_set.py:336
|
|
388
|
+
msgid ""
|
|
389
|
+
"Longitude cannot be overridden alone, override_latitude also needs to be "
|
|
390
|
+
"set"
|
|
391
|
+
msgstr ""
|
|
392
|
+
|
|
393
|
+
#: geovisio/web/items.py:1014 geovisio/web/upload_set.py:338
|
|
394
|
+
msgid ""
|
|
395
|
+
"Latitude cannot be overridden alone, override_longitude also needs to be "
|
|
396
|
+
"set"
|
|
397
|
+
msgstr ""
|
|
398
|
+
|
|
399
|
+
#: geovisio/web/items.py:1015 geovisio/web/upload_set.py:311
|
|
400
|
+
#, python-format
|
|
401
|
+
msgid "For parameter `override_longitude`, `%(v)s` is not a valid longitude"
|
|
402
|
+
msgstr ""
|
|
403
|
+
|
|
404
|
+
#: geovisio/web/items.py:1016 geovisio/web/upload_set.py:316
|
|
405
|
+
#, python-format
|
|
406
|
+
msgid "For parameter `override_latitude`, `%(v)s` is not a valid latitude"
|
|
407
|
+
msgstr ""
|
|
408
|
+
|
|
409
|
+
#: geovisio/web/items.py:1035
|
|
410
|
+
msgid "Picture blur status should be either unset, true or false"
|
|
411
|
+
msgstr ""
|
|
412
|
+
|
|
413
|
+
#: geovisio/web/items.py:1039
|
|
414
|
+
msgid "No picture file was sent"
|
|
415
|
+
msgstr ""
|
|
416
|
+
|
|
417
|
+
#: geovisio/web/items.py:1045 geovisio/web/upload_set.py:377
|
|
418
|
+
msgid "Picture file is either missing or in an unsupported format (should be jpg)"
|
|
419
|
+
msgstr ""
|
|
420
|
+
|
|
421
|
+
#: geovisio/web/items.py:1052
|
|
422
|
+
#, python-format
|
|
423
|
+
msgid "Collection %(s)s wasn't found in database"
|
|
424
|
+
msgstr ""
|
|
425
|
+
|
|
426
|
+
#: geovisio/web/items.py:1056
|
|
427
|
+
msgid "You're not authorized to add picture to this collection"
|
|
428
|
+
msgstr ""
|
|
429
|
+
|
|
430
|
+
#: geovisio/web/items.py:1061
|
|
431
|
+
msgid "The collection has been deleted, impossible to add pictures to it"
|
|
432
|
+
msgstr ""
|
|
433
|
+
|
|
434
|
+
#: geovisio/web/items.py:1091
|
|
435
|
+
msgid "Picture at given position already exist"
|
|
436
|
+
msgstr "Zdjęcie w danej lokalizacji już istnieje"
|
|
437
|
+
|
|
438
|
+
#: geovisio/web/items.py:1093 geovisio/web/upload_set.py:613
|
|
439
|
+
msgid "Impossible to parse picture metadata"
|
|
440
|
+
msgstr ""
|
|
441
|
+
|
|
442
|
+
#: geovisio/web/items.py:1095 geovisio/web/upload_set.py:620
|
|
443
|
+
msgid "Picture has invalid metadata"
|
|
444
|
+
msgstr "Zdjęcie ma nieprawidłowe metadane"
|
|
445
|
+
|
|
446
|
+
#: geovisio/web/items.py:1103 geovisio/web/upload_set.py:646
|
|
447
|
+
msgid "Picture wasn't correctly saved in filesystem"
|
|
448
|
+
msgstr "Zdjęcie nie zostało poprawnie zapisane w systemie plików"
|
|
449
|
+
|
|
450
|
+
#: geovisio/web/items.py:1186
|
|
451
|
+
msgid ""
|
|
452
|
+
"Heading is not valid, should be an integer in degrees from 0° to 360°. "
|
|
453
|
+
"North is 0°, East = 90°, South = 180° and West = 270°."
|
|
454
|
+
msgstr ""
|
|
455
|
+
|
|
456
|
+
#: geovisio/web/items.py:1203 geovisio/web/items.py:1294
|
|
457
|
+
#, python-format
|
|
458
|
+
msgid "Picture %(p)s wasn't found in database"
|
|
459
|
+
msgstr "Zdjęcie %(p)s nie zostało znalezione w bazie danych"
|
|
460
|
+
|
|
461
|
+
#: geovisio/web/items.py:1207 geovisio/web/items.py:1298
|
|
462
|
+
msgid "You're not authorized to edit this picture"
|
|
463
|
+
msgstr "Nie masz uprawnień do edycji tego zdjęcia"
|
|
464
|
+
|
|
465
|
+
#: geovisio/web/items.py:1217
|
|
466
|
+
#, python-format
|
|
467
|
+
msgid "Picture %(p)s is in %(s)s state, its visibility can't be changed for now"
|
|
468
|
+
msgstr ""
|
|
469
|
+
|
|
470
|
+
#: geovisio/web/map.py:143
|
|
471
|
+
msgid "One of required parameter is empty"
|
|
472
|
+
msgstr "Jeden z wymaganych parametrów był pusty"
|
|
473
|
+
|
|
474
|
+
#: geovisio/web/map.py:145
|
|
475
|
+
msgid "Tile format is invalid, should be either pbf or mvt"
|
|
476
|
+
msgstr ""
|
|
477
|
+
|
|
478
|
+
#: geovisio/web/map.py:149 geovisio/web/map.py:151
|
|
479
|
+
msgid "X or Y parameter is out of bounds"
|
|
480
|
+
msgstr "Parametr X lub Y był poza zakresem"
|
|
481
|
+
|
|
482
|
+
#: geovisio/web/map.py:153
|
|
483
|
+
msgid "Z parameter is out of bounds (should be 0-15)"
|
|
484
|
+
msgstr "Parametr Z jest poza zakresem (powinien być pomiędzy 0-15)"
|
|
485
|
+
|
|
486
|
+
#: geovisio/web/map.py:164
|
|
487
|
+
msgid "Impossible to get tile"
|
|
488
|
+
msgstr "Nie udało się pobrać kafelka"
|
|
489
|
+
|
|
490
|
+
#: geovisio/web/params.py:98
|
|
491
|
+
msgid "Parameter datetime should contain one or two dates"
|
|
492
|
+
msgstr ""
|
|
493
|
+
|
|
494
|
+
#: geovisio/web/params.py:168
|
|
495
|
+
msgid ""
|
|
496
|
+
"Parameter bbox must contain valid longitude (-180 to 180) and latitude "
|
|
497
|
+
"(-90 to 90) values"
|
|
498
|
+
msgstr ""
|
|
499
|
+
|
|
500
|
+
#: geovisio/web/params.py:173
|
|
501
|
+
msgid "Parameter bbox must be in format [minX, minY, maxX, maxY]"
|
|
502
|
+
msgstr ""
|
|
503
|
+
|
|
504
|
+
#: geovisio/web/params.py:210
|
|
505
|
+
#, python-format
|
|
506
|
+
msgid "Parameter %(p)s must be coordinates in lat,lon format"
|
|
507
|
+
msgstr ""
|
|
508
|
+
|
|
509
|
+
#: geovisio/web/params.py:213
|
|
510
|
+
#, python-format
|
|
511
|
+
msgid "Longitude in parameter %(p)s is not valid (should be between -180 and 180)"
|
|
512
|
+
msgstr ""
|
|
513
|
+
|
|
514
|
+
#: geovisio/web/params.py:214
|
|
515
|
+
#, python-format
|
|
516
|
+
msgid "Latitude in parameter %(p)s is not valid (should be between -90 and 90)"
|
|
517
|
+
msgstr ""
|
|
518
|
+
|
|
519
|
+
#: geovisio/web/params.py:237 geovisio/web/params.py:250
|
|
520
|
+
#, python-format
|
|
521
|
+
msgid ""
|
|
522
|
+
"Parameter %(p)s is invalid (should be a distance range in meters like "
|
|
523
|
+
"\"5-15\")"
|
|
524
|
+
msgstr ""
|
|
525
|
+
|
|
526
|
+
#: geovisio/web/params.py:243
|
|
527
|
+
#, python-format
|
|
528
|
+
msgid "Parameter %(p)s has a min value greater than its max value"
|
|
529
|
+
msgstr ""
|
|
530
|
+
|
|
531
|
+
#: geovisio/web/params.py:317
|
|
532
|
+
#, python-format
|
|
533
|
+
msgid "Parameter %(p)s must be a valid list"
|
|
534
|
+
msgstr ""
|
|
535
|
+
|
|
536
|
+
#: geovisio/web/params.py:441
|
|
537
|
+
msgid "Unsupported sortby parameter: invalid column name"
|
|
538
|
+
msgstr ""
|
|
539
|
+
|
|
540
|
+
#: geovisio/web/params.py:449
|
|
541
|
+
msgid "Unsupported sortby parameter: syntax isn't correct"
|
|
542
|
+
msgstr ""
|
|
543
|
+
|
|
544
|
+
#: geovisio/web/params.py:475
|
|
545
|
+
#, python-format
|
|
546
|
+
msgid "limit parameter should be a valid, positive integer (between 1 and %(v)s)"
|
|
547
|
+
msgstr ""
|
|
548
|
+
|
|
549
|
+
#: geovisio/web/params.py:478
|
|
550
|
+
#, python-format
|
|
551
|
+
msgid "limit parameter should be an integer between 1 and %(v)s"
|
|
552
|
+
msgstr ""
|
|
553
|
+
|
|
554
|
+
#: geovisio/web/params.py:489
|
|
555
|
+
msgid "longitude needs to be between -180 and 180"
|
|
556
|
+
msgstr ""
|
|
557
|
+
|
|
558
|
+
#: geovisio/web/params.py:499
|
|
559
|
+
msgid "latitude needs to be between -90 and 90"
|
|
560
|
+
msgstr ""
|
|
561
|
+
|
|
562
|
+
#: geovisio/web/pictures.py:187
|
|
563
|
+
msgid "Tiles are not available for flat pictures"
|
|
564
|
+
msgstr ""
|
|
565
|
+
|
|
566
|
+
#: geovisio/web/pictures.py:192
|
|
567
|
+
msgid "Column parameter is invalid, should be an integer"
|
|
568
|
+
msgstr ""
|
|
569
|
+
|
|
570
|
+
#: geovisio/web/pictures.py:195
|
|
571
|
+
msgid "Column parameter is invalid"
|
|
572
|
+
msgstr ""
|
|
573
|
+
|
|
574
|
+
#: geovisio/web/pictures.py:200
|
|
575
|
+
msgid "Row parameter is invalid, should be an integer"
|
|
576
|
+
msgstr ""
|
|
577
|
+
|
|
578
|
+
#: geovisio/web/pictures.py:203
|
|
579
|
+
msgid "Row parameter is invalid"
|
|
580
|
+
msgstr ""
|
|
581
|
+
|
|
582
|
+
#: geovisio/web/reports.py:89 geovisio/web/reports.py:99
|
|
583
|
+
msgid "Impossible to create a Report"
|
|
584
|
+
msgstr "Nie udało się stworzyć zgłoszenia"
|
|
585
|
+
|
|
586
|
+
#: geovisio/web/reports.py:91
|
|
587
|
+
msgid "Parameter for creating a Report should be a valid JSON"
|
|
588
|
+
msgstr ""
|
|
589
|
+
|
|
590
|
+
#: geovisio/web/reports.py:144
|
|
591
|
+
msgid "Only authenticated users can access reports"
|
|
592
|
+
msgstr "Tylko zalogowani użytkownicy mogą tworzyć zgłoszenia"
|
|
593
|
+
|
|
594
|
+
#: geovisio/web/reports.py:148 geovisio/web/reports.py:266
|
|
595
|
+
msgid "Report doesn't exist"
|
|
596
|
+
msgstr "Zgłoszenie nie istnieje"
|
|
597
|
+
|
|
598
|
+
#: geovisio/web/reports.py:157
|
|
599
|
+
msgid "You're not authorized to access this report"
|
|
600
|
+
msgstr "Nie masz dostępu do tego zgłoszenia"
|
|
601
|
+
|
|
602
|
+
#: geovisio/web/reports.py:277
|
|
603
|
+
msgid "You're not authorized to edit this Report"
|
|
604
|
+
msgstr "Nie masz uprawnień do edycji tego zgłoszenia"
|
|
605
|
+
|
|
606
|
+
#: geovisio/web/reports.py:284
|
|
607
|
+
msgid "Impossible to edit the Report"
|
|
608
|
+
msgstr "Nie udało się edytować zgłoszenia"
|
|
609
|
+
|
|
610
|
+
#: geovisio/web/reports.py:286
|
|
611
|
+
msgid "Parameter for editing the Report should be a valid JSON"
|
|
612
|
+
msgstr ""
|
|
613
|
+
|
|
614
|
+
#: geovisio/web/reports.py:349 geovisio/web/reports.py:392
|
|
615
|
+
#: geovisio/web/upload_set.py:265 geovisio/web/upload_set.py:385
|
|
616
|
+
msgid "Impossible to parse parameters"
|
|
617
|
+
msgstr "Nie udało się sparsować parametrów"
|
|
618
|
+
|
|
619
|
+
#: geovisio/web/reports.py:352
|
|
620
|
+
msgid "You're not authorized to list reports"
|
|
621
|
+
msgstr ""
|
|
622
|
+
|
|
623
|
+
#: geovisio/web/rss.py:22
|
|
624
|
+
#, python-format
|
|
625
|
+
msgid "Sequence \"%(name)s\" by \"%(user)s\" was captured on %(date)s."
|
|
626
|
+
msgstr ""
|
|
627
|
+
|
|
628
|
+
#: geovisio/web/rss.py:40
|
|
629
|
+
msgid "View on the map"
|
|
630
|
+
msgstr "Zobacz na mapie"
|
|
631
|
+
|
|
632
|
+
#: geovisio/web/rss.py:40
|
|
633
|
+
msgid "JSON metadata"
|
|
634
|
+
msgstr "Metadane JSON"
|
|
635
|
+
|
|
636
|
+
#: geovisio/web/rss.py:49
|
|
637
|
+
msgid "GeoVisio collections"
|
|
638
|
+
msgstr "Kolekcje GeoVisio"
|
|
639
|
+
|
|
640
|
+
#: geovisio/web/rss.py:51
|
|
641
|
+
msgid "List of collections from this GeoVisio server"
|
|
642
|
+
msgstr "Lista kolekcji na tym serwerze GeoVisio"
|
|
643
|
+
|
|
644
|
+
#: geovisio/web/tokens.py:100 geovisio/web/tokens.py:143
|
|
645
|
+
#: geovisio/web/tokens.py:231
|
|
646
|
+
msgid "Impossible to find token"
|
|
647
|
+
msgstr "Nie udało się znaleźć tokenu"
|
|
648
|
+
|
|
649
|
+
#: geovisio/web/tokens.py:181
|
|
650
|
+
msgid "Impossible to generate a new token"
|
|
651
|
+
msgstr "Nie udało się wygenerować nowego tokenu"
|
|
652
|
+
|
|
653
|
+
#: geovisio/web/tokens.py:236
|
|
654
|
+
msgid "Token already claimed by another account"
|
|
655
|
+
msgstr "Token został już odebrany przez inne konto"
|
|
656
|
+
|
|
657
|
+
#: geovisio/web/upload_set.py:133
|
|
658
|
+
msgid "Impossible to create an UploadSet"
|
|
659
|
+
msgstr ""
|
|
660
|
+
|
|
661
|
+
#: geovisio/web/upload_set.py:135
|
|
662
|
+
msgid "Parameter for creating an UploadSet should be a valid JSON"
|
|
663
|
+
msgstr ""
|
|
664
|
+
|
|
665
|
+
#: geovisio/web/upload_set.py:181 geovisio/web/upload_set.py:214
|
|
666
|
+
#: geovisio/web/upload_set.py:724
|
|
667
|
+
msgid "UploadSet doesn't exist"
|
|
668
|
+
msgstr ""
|
|
669
|
+
|
|
670
|
+
#: geovisio/web/upload_set.py:216
|
|
671
|
+
msgid "You're not authorized to list pictures in this upload set"
|
|
672
|
+
msgstr ""
|
|
673
|
+
|
|
674
|
+
#: geovisio/web/upload_set.py:303
|
|
675
|
+
msgid ""
|
|
676
|
+
"Parameter `override_capture_time` is not a valid datetime, it should be "
|
|
677
|
+
"an iso formated datetime (like '2017-07-21T17:32:28Z')."
|
|
678
|
+
msgstr ""
|
|
679
|
+
|
|
680
|
+
#: geovisio/web/upload_set.py:370
|
|
681
|
+
msgid "No file was sent"
|
|
682
|
+
msgstr "Żaden plik nie został przesłany"
|
|
683
|
+
|
|
684
|
+
#: geovisio/web/upload_set.py:534 geovisio/web/upload_set.py:710
|
|
685
|
+
#, python-format
|
|
686
|
+
msgid "UploadSet %(u)s does not exist"
|
|
687
|
+
msgstr ""
|
|
688
|
+
|
|
689
|
+
#: geovisio/web/upload_set.py:538
|
|
690
|
+
msgid "You're not authorized to add picture to this upload set"
|
|
691
|
+
msgstr ""
|
|
692
|
+
|
|
693
|
+
#: geovisio/web/upload_set.py:578
|
|
694
|
+
msgid "The item has already been added to this upload set"
|
|
695
|
+
msgstr ""
|
|
696
|
+
|
|
697
|
+
#: geovisio/web/upload_set.py:585
|
|
698
|
+
msgid "The same picture has already been sent in a past upload"
|
|
699
|
+
msgstr ""
|
|
700
|
+
|
|
701
|
+
#: geovisio/web/upload_set.py:628
|
|
702
|
+
msgid "Impossible to open file as image. The only supported image format is jpg."
|
|
703
|
+
msgstr ""
|
|
704
|
+
|
|
705
|
+
#: geovisio/web/upload_set.py:714
|
|
706
|
+
msgid "You're not authorized to complete this upload set"
|
|
707
|
+
msgstr ""
|
|
708
|
+
|
|
709
|
+
#: geovisio/web/upload_set.py:759
|
|
710
|
+
msgid "You're not authorized to delete this upload set"
|
|
711
|
+
msgstr ""
|
|
712
|
+
|
|
713
|
+
#: geovisio/web/users.py:84
|
|
714
|
+
msgid "Impossible to find user"
|
|
715
|
+
msgstr "Nie udało się znaleźć użytkownika"
|
|
716
|
+
|
|
717
|
+
#: geovisio/web/users.py:160
|
|
718
|
+
msgid ""
|
|
719
|
+
"No search parameter given, you should provide `q=<pattern>` as query "
|
|
720
|
+
"parameter"
|
|
721
|
+
msgstr ""
|
|
722
|
+
|
|
723
|
+
#: geovisio/web/utils.py:51
|
|
724
|
+
msgid "No default account defined, please contact your instance administrator"
|
|
725
|
+
msgstr ""
|
|
726
|
+
"Brak domyślnego konta zdefiniowanego, proszę skontaktuj się z "
|
|
727
|
+
"administratorem Twojej instancji"
|