geovisio 2.7.1__py3-none-any.whl → 2.8.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- geovisio/__init__.py +25 -4
- geovisio/admin_cli/__init__.py +3 -1
- geovisio/admin_cli/user.py +75 -0
- geovisio/config_app.py +86 -4
- geovisio/templates/main.html +2 -2
- geovisio/templates/viewer.html +3 -3
- geovisio/translations/br/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/br/LC_MESSAGES/messages.po +762 -0
- geovisio/translations/da/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/da/LC_MESSAGES/messages.po +859 -0
- geovisio/translations/de/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/de/LC_MESSAGES/messages.po +106 -1
- geovisio/translations/el/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/en/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/en/LC_MESSAGES/messages.po +218 -133
- geovisio/translations/eo/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/eo/LC_MESSAGES/messages.po +856 -0
- geovisio/translations/es/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/es/LC_MESSAGES/messages.po +4 -3
- 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 +66 -3
- geovisio/translations/hu/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/hu/LC_MESSAGES/messages.po +4 -3
- geovisio/translations/it/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/it/LC_MESSAGES/messages.po +884 -0
- geovisio/translations/ja/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/ja/LC_MESSAGES/messages.po +807 -0
- geovisio/translations/ko/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/messages.pot +191 -122
- geovisio/translations/nl/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/pl/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/pl/LC_MESSAGES/messages.po +728 -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/loggers.py +14 -0
- geovisio/utils/model_query.py +55 -0
- geovisio/utils/params.py +7 -4
- geovisio/utils/pictures.py +12 -43
- geovisio/utils/semantics.py +120 -0
- geovisio/utils/sequences.py +10 -1
- geovisio/utils/tokens.py +5 -3
- geovisio/utils/upload_set.py +71 -22
- geovisio/utils/website.py +53 -0
- geovisio/web/annotations.py +17 -0
- geovisio/web/auth.py +11 -6
- geovisio/web/collections.py +217 -61
- geovisio/web/configuration.py +17 -1
- geovisio/web/docs.py +67 -67
- geovisio/web/items.py +220 -96
- geovisio/web/map.py +48 -18
- 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 +108 -14
- geovisio/web/users.py +203 -44
- geovisio/workers/runner_pictures.py +61 -22
- {geovisio-2.7.1.dist-info → geovisio-2.8.1.dist-info}/METADATA +8 -6
- geovisio-2.8.1.dist-info/RECORD +92 -0
- {geovisio-2.7.1.dist-info → geovisio-2.8.1.dist-info}/WHEEL +1 -1
- geovisio-2.7.1.dist-info/RECORD +0 -70
- {geovisio-2.7.1.dist-info → geovisio-2.8.1.dist-info/licenses}/LICENSE +0 -0
|
@@ -0,0 +1,762 @@
|
|
|
1
|
+
# Translations template for PROJECT.
|
|
2
|
+
# Copyright (C) 2025 ORGANIZATION
|
|
3
|
+
# This file is distributed under the same license as the PROJECT project.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
|
|
5
|
+
#
|
|
6
|
+
msgid ""
|
|
7
|
+
msgstr ""
|
|
8
|
+
"Project-Id-Version: PROJECT VERSION\n"
|
|
9
|
+
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
|
10
|
+
"POT-Creation-Date: 2025-01-28 15:02+0100\n"
|
|
11
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
12
|
+
"Last-Translator: Automatically generated\n"
|
|
13
|
+
"Language-Team: none\n"
|
|
14
|
+
"Language: br\n"
|
|
15
|
+
"MIME-Version: 1.0\n"
|
|
16
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
"Generated-By: Babel 2.16.0\n"
|
|
19
|
+
|
|
20
|
+
#: geovisio/templates/main.html:45
|
|
21
|
+
msgid "Simple 360° geolocated pictures hosting"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
#: geovisio/templates/main.html:47
|
|
25
|
+
msgid "Full page version"
|
|
26
|
+
msgstr ""
|
|
27
|
+
|
|
28
|
+
#: geovisio/templates/main.html:51
|
|
29
|
+
msgid "Viewer"
|
|
30
|
+
msgstr ""
|
|
31
|
+
|
|
32
|
+
#: geovisio/templates/main.html:52
|
|
33
|
+
msgid "Embed pre-configured viewer"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
#: geovisio/templates/main.html:53
|
|
37
|
+
msgid "Easiest way to have a working GeoVisio viewer on your website"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#: geovisio/templates/main.html:59
|
|
41
|
+
msgid "Use JS library"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: geovisio/templates/main.html:60
|
|
45
|
+
msgid "A completely configurable viewer for your website"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: geovisio/templates/main.html:82
|
|
49
|
+
msgid "Links"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: geovisio/templates/main.html:84
|
|
53
|
+
msgid "Pictures viewer"
|
|
54
|
+
msgstr ""
|
|
55
|
+
|
|
56
|
+
#: geovisio/templates/main.html:86
|
|
57
|
+
msgid "API docs"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
#: geovisio/templates/main.html:88
|
|
61
|
+
msgid "JS library docs"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#: geovisio/templates/main.html:90
|
|
65
|
+
msgid "Repositories"
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
68
|
+
#: geovisio/templates/viewer.html:22
|
|
69
|
+
msgid "You need to enable JavaScript to run this app."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
#: geovisio/utils/auth.py:257
|
|
73
|
+
msgid "Authentication is mandatory"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#: geovisio/utils/auth.py:283
|
|
77
|
+
#, python-format
|
|
78
|
+
msgid ""
|
|
79
|
+
"You need to accept the terms of service before uploading any pictures. "
|
|
80
|
+
"You can do so by validating them here: %(url)s"
|
|
81
|
+
msgstr ""
|
|
82
|
+
|
|
83
|
+
#: geovisio/utils/auth.py:400
|
|
84
|
+
msgid "Only Bearer token are supported"
|
|
85
|
+
msgstr ""
|
|
86
|
+
|
|
87
|
+
#: geovisio/utils/excluded_areas.py:82
|
|
88
|
+
msgid "Impossible to find excluded area"
|
|
89
|
+
msgstr ""
|
|
90
|
+
|
|
91
|
+
#: geovisio/utils/pictures.py:304
|
|
92
|
+
#, python-format
|
|
93
|
+
msgid ""
|
|
94
|
+
"Invalid '%(format)s' format for image, only the following formats are "
|
|
95
|
+
"available: %(allowed_formats)s"
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
#: geovisio/utils/pictures.py:418
|
|
99
|
+
msgid "Picture can't be found, you may check its ID"
|
|
100
|
+
msgstr ""
|
|
101
|
+
|
|
102
|
+
#: geovisio/utils/pictures.py:421
|
|
103
|
+
msgid "Picture is not available (either hidden by admin or processing)"
|
|
104
|
+
msgstr ""
|
|
105
|
+
|
|
106
|
+
#: geovisio/utils/pictures.py:429
|
|
107
|
+
msgid "HD Picture file is not available"
|
|
108
|
+
msgstr ""
|
|
109
|
+
|
|
110
|
+
#: geovisio/utils/pictures.py:448
|
|
111
|
+
msgid "Picture derivates file are not available"
|
|
112
|
+
msgstr ""
|
|
113
|
+
|
|
114
|
+
#: geovisio/utils/pictures.py:465 geovisio/web/pictures.py:53
|
|
115
|
+
#: geovisio/web/pictures.py:98 geovisio/web/pictures.py:208
|
|
116
|
+
msgid "Unable to read picture on filesystem"
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
#: geovisio/utils/reports.py:142 geovisio/utils/upload_set.py:367
|
|
120
|
+
#: geovisio/web/params.py:356
|
|
121
|
+
msgid "Unsupported filter parameter"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
#: geovisio/utils/sequences.py:388
|
|
125
|
+
msgid ""
|
|
126
|
+
"Sort by file date is not possible on this sequence (no file date "
|
|
127
|
+
"information available on pictures)"
|
|
128
|
+
msgstr ""
|
|
129
|
+
|
|
130
|
+
#: geovisio/utils/sequences.py:413
|
|
131
|
+
#, python-format
|
|
132
|
+
msgid ""
|
|
133
|
+
"Sort using %(sort)s is not possible on this sequence, picture %(pic)s is "
|
|
134
|
+
"missing mandatory metadata"
|
|
135
|
+
msgstr ""
|
|
136
|
+
|
|
137
|
+
#: geovisio/utils/sequences.py:605 geovisio/web/collections.py:690
|
|
138
|
+
#: geovisio/web/prepare.py:148
|
|
139
|
+
#, python-format
|
|
140
|
+
msgid "Collection %(c)s wasn't found in database"
|
|
141
|
+
msgstr ""
|
|
142
|
+
|
|
143
|
+
#: geovisio/utils/tokens.py:42
|
|
144
|
+
msgid "JWT token signature does not match"
|
|
145
|
+
msgstr ""
|
|
146
|
+
|
|
147
|
+
#: geovisio/utils/tokens.py:56
|
|
148
|
+
msgid "Token does not exist anymore"
|
|
149
|
+
msgstr ""
|
|
150
|
+
|
|
151
|
+
#: geovisio/utils/tokens.py:60
|
|
152
|
+
msgid ""
|
|
153
|
+
"Token not yet claimed, this token cannot be used yet. Either claim this "
|
|
154
|
+
"token or generate a new one"
|
|
155
|
+
msgstr ""
|
|
156
|
+
|
|
157
|
+
#: geovisio/utils/upload_set.py:177
|
|
158
|
+
msgid ""
|
|
159
|
+
"The picture is too similar to another one (nearby and taken almost at the"
|
|
160
|
+
" same time)"
|
|
161
|
+
msgstr ""
|
|
162
|
+
|
|
163
|
+
#: geovisio/utils/upload_set.py:180
|
|
164
|
+
msgid "The sent file is not a valid JPEG"
|
|
165
|
+
msgstr ""
|
|
166
|
+
|
|
167
|
+
#: geovisio/utils/upload_set.py:183
|
|
168
|
+
msgid "The picture has invalid EXIF or XMP metadata, making it impossible to use"
|
|
169
|
+
msgstr ""
|
|
170
|
+
|
|
171
|
+
#: geovisio/utils/upload_set.py:186
|
|
172
|
+
msgid "Something went very wrong, but not due to the picture itself"
|
|
173
|
+
msgstr ""
|
|
174
|
+
|
|
175
|
+
#: geovisio/utils/upload_set.py:600
|
|
176
|
+
msgid ""
|
|
177
|
+
"A different picture with the same name has already been added to this "
|
|
178
|
+
"uploadset"
|
|
179
|
+
msgstr ""
|
|
180
|
+
|
|
181
|
+
#: geovisio/web/auth.py:60
|
|
182
|
+
msgid "Impossible to finish authentication flow"
|
|
183
|
+
msgstr ""
|
|
184
|
+
|
|
185
|
+
#: geovisio/web/auth.py:64
|
|
186
|
+
msgid ""
|
|
187
|
+
"You can try to clear your cookies and retry. If the problem persists, "
|
|
188
|
+
"contact your instance administrator."
|
|
189
|
+
msgstr ""
|
|
190
|
+
|
|
191
|
+
#: geovisio/web/collections.py:309
|
|
192
|
+
#, python-format
|
|
193
|
+
msgid "There is no collection created after %(d)s"
|
|
194
|
+
msgstr ""
|
|
195
|
+
|
|
196
|
+
#: geovisio/web/collections.py:311
|
|
197
|
+
#, python-format
|
|
198
|
+
msgid "There is no collection created before %(d)s"
|
|
199
|
+
msgstr ""
|
|
200
|
+
|
|
201
|
+
#: geovisio/web/collections.py:431 geovisio/web/items.py:406
|
|
202
|
+
msgid "Collection doesn't exist"
|
|
203
|
+
msgstr ""
|
|
204
|
+
|
|
205
|
+
#: geovisio/web/collections.py:490
|
|
206
|
+
msgid "Impossible to find a thumbnail for the collection"
|
|
207
|
+
msgstr ""
|
|
208
|
+
|
|
209
|
+
#: geovisio/web/collections.py:594 geovisio/web/items.py:1198
|
|
210
|
+
msgid ""
|
|
211
|
+
"Picture visibility parameter (visible) should be either unset, true or "
|
|
212
|
+
"false"
|
|
213
|
+
msgstr ""
|
|
214
|
+
|
|
215
|
+
#: geovisio/web/collections.py:601
|
|
216
|
+
msgid "Sort order parameter is invalid"
|
|
217
|
+
msgstr ""
|
|
218
|
+
|
|
219
|
+
#: geovisio/web/collections.py:614
|
|
220
|
+
msgid ""
|
|
221
|
+
"Relative heading is not valid, should be an integer in degrees from -180 "
|
|
222
|
+
"to 180"
|
|
223
|
+
msgstr ""
|
|
224
|
+
|
|
225
|
+
#: geovisio/web/collections.py:674 geovisio/web/items.py:1298
|
|
226
|
+
#: geovisio/web/prepare.py:62 geovisio/web/prepare.py:128
|
|
227
|
+
#: geovisio/web/reports.py:349 geovisio/web/reports.py:392
|
|
228
|
+
#: geovisio/web/upload_set.py:272 geovisio/web/upload_set.py:392
|
|
229
|
+
#: geovisio/web/users.py:369
|
|
230
|
+
msgid "Impossible to parse parameters"
|
|
231
|
+
msgstr ""
|
|
232
|
+
|
|
233
|
+
#: geovisio/web/collections.py:697
|
|
234
|
+
msgid ""
|
|
235
|
+
"You're not authorized to edit those fields for this sequence. Only the "
|
|
236
|
+
"owner can change the visibility and the title"
|
|
237
|
+
msgstr ""
|
|
238
|
+
|
|
239
|
+
#: geovisio/web/collections.py:707
|
|
240
|
+
msgid ""
|
|
241
|
+
"You're not authorized to edit this sequence, collaborative editing is not"
|
|
242
|
+
" allowed"
|
|
243
|
+
msgstr ""
|
|
244
|
+
|
|
245
|
+
#: geovisio/web/collections.py:719
|
|
246
|
+
#, python-format
|
|
247
|
+
msgid "Sequence %(c)s is in %(s)s state, its visibility can't be changed for now"
|
|
248
|
+
msgstr ""
|
|
249
|
+
|
|
250
|
+
#: geovisio/web/collections.py:858
|
|
251
|
+
msgid "Sequence doesn't exists"
|
|
252
|
+
msgstr ""
|
|
253
|
+
|
|
254
|
+
#: geovisio/web/collections.py:1027 geovisio/web/stac.py:347
|
|
255
|
+
#, python-format
|
|
256
|
+
msgid "Impossible to find user %(u)s"
|
|
257
|
+
msgstr ""
|
|
258
|
+
|
|
259
|
+
#: geovisio/web/collections.py:1062 geovisio/web/stac.py:357
|
|
260
|
+
#, python-format
|
|
261
|
+
msgid "No data loaded for user %(u)s"
|
|
262
|
+
msgstr ""
|
|
263
|
+
|
|
264
|
+
#: geovisio/web/collections.py:1064
|
|
265
|
+
msgid "No matching sequences found"
|
|
266
|
+
msgstr ""
|
|
267
|
+
|
|
268
|
+
#: geovisio/web/excluded_areas.py:133
|
|
269
|
+
msgid "You must be logged-in as admin to access all excluded areas"
|
|
270
|
+
msgstr ""
|
|
271
|
+
|
|
272
|
+
#: geovisio/web/excluded_areas.py:135
|
|
273
|
+
msgid "You're not authorized to access all excluded areas"
|
|
274
|
+
msgstr ""
|
|
275
|
+
|
|
276
|
+
#: geovisio/web/excluded_areas.py:172 geovisio/web/excluded_areas.py:182
|
|
277
|
+
#: geovisio/web/excluded_areas.py:336 geovisio/web/excluded_areas.py:343
|
|
278
|
+
msgid "Impossible to create an Excluded Area"
|
|
279
|
+
msgstr ""
|
|
280
|
+
|
|
281
|
+
#: geovisio/web/excluded_areas.py:174 geovisio/web/excluded_areas.py:338
|
|
282
|
+
msgid "Parameter for creating an Excluded Area should be a valid JSON"
|
|
283
|
+
msgstr ""
|
|
284
|
+
|
|
285
|
+
#: geovisio/web/excluded_areas.py:177 geovisio/web/excluded_areas.py:235
|
|
286
|
+
msgid "You must be logged-in as admin to edit excluded areas"
|
|
287
|
+
msgstr ""
|
|
288
|
+
|
|
289
|
+
#: geovisio/web/excluded_areas.py:230 geovisio/web/excluded_areas.py:242
|
|
290
|
+
msgid "Impossible to replace all Excluded Areas"
|
|
291
|
+
msgstr ""
|
|
292
|
+
|
|
293
|
+
#: geovisio/web/excluded_areas.py:232
|
|
294
|
+
msgid "Parameter for replacing all Excluded Areas should be a valid JSON"
|
|
295
|
+
msgstr ""
|
|
296
|
+
|
|
297
|
+
#: geovisio/web/excluded_areas.py:272
|
|
298
|
+
msgid "You must be logged-in as admin to delete excluded areas"
|
|
299
|
+
msgstr ""
|
|
300
|
+
|
|
301
|
+
#: geovisio/web/items.py:369
|
|
302
|
+
msgid "limit parameter should be an integer between 1 and 10000"
|
|
303
|
+
msgstr ""
|
|
304
|
+
|
|
305
|
+
#: geovisio/web/items.py:371
|
|
306
|
+
msgid "limit parameter should be a valid, positive integer (between 1 and 10000)"
|
|
307
|
+
msgstr ""
|
|
308
|
+
|
|
309
|
+
#: geovisio/web/items.py:376
|
|
310
|
+
msgid "`startAfterRank` and `withPicture` are mutually exclusive parameters"
|
|
311
|
+
msgstr ""
|
|
312
|
+
|
|
313
|
+
#: geovisio/web/items.py:383
|
|
314
|
+
msgid "startAfterRank parameter should be a positive integer (starting from 1)"
|
|
315
|
+
msgstr ""
|
|
316
|
+
|
|
317
|
+
#: geovisio/web/items.py:385
|
|
318
|
+
msgid "startAfterRank parameter should be a valid, positive integer"
|
|
319
|
+
msgstr ""
|
|
320
|
+
|
|
321
|
+
#: geovisio/web/items.py:412
|
|
322
|
+
#, python-format
|
|
323
|
+
msgid "No more items in this collection (last available rank is %(r)s)"
|
|
324
|
+
msgstr ""
|
|
325
|
+
|
|
326
|
+
#: geovisio/web/items.py:422
|
|
327
|
+
#, python-format
|
|
328
|
+
msgid "Picture with id %(p)s does not exists"
|
|
329
|
+
msgstr ""
|
|
330
|
+
|
|
331
|
+
#: geovisio/web/items.py:726
|
|
332
|
+
msgid "Item doesn't exist"
|
|
333
|
+
msgstr ""
|
|
334
|
+
|
|
335
|
+
#: geovisio/web/items.py:785
|
|
336
|
+
msgid "Search using POST method should have a JSON body"
|
|
337
|
+
msgstr ""
|
|
338
|
+
|
|
339
|
+
#: geovisio/web/items.py:794
|
|
340
|
+
msgid "Parameter limit must be either empty or a number between 1 and 10000"
|
|
341
|
+
msgstr ""
|
|
342
|
+
|
|
343
|
+
#: geovisio/web/items.py:850
|
|
344
|
+
msgid ""
|
|
345
|
+
"Parameter place_fov_tolerance must be either empty or a number between 2 "
|
|
346
|
+
"and 180"
|
|
347
|
+
msgstr ""
|
|
348
|
+
|
|
349
|
+
#: geovisio/web/items.py:872
|
|
350
|
+
msgid ""
|
|
351
|
+
"Parameter intersects should contain a valid GeoJSON Geometry (not a "
|
|
352
|
+
"Feature)"
|
|
353
|
+
msgstr ""
|
|
354
|
+
|
|
355
|
+
#: geovisio/web/items.py:888
|
|
356
|
+
msgid "Parameter ids should be a JSON array of strings"
|
|
357
|
+
msgstr ""
|
|
358
|
+
|
|
359
|
+
#: geovisio/web/items.py:900
|
|
360
|
+
msgid "Parameter collections should be a JSON array of strings"
|
|
361
|
+
msgstr ""
|
|
362
|
+
|
|
363
|
+
#: geovisio/web/items.py:911
|
|
364
|
+
msgid "Picture doesn't exist"
|
|
365
|
+
msgstr ""
|
|
366
|
+
|
|
367
|
+
#: geovisio/web/items.py:1023 geovisio/web/upload_set.py:534
|
|
368
|
+
msgid "Content type should be multipart/form-data"
|
|
369
|
+
msgstr ""
|
|
370
|
+
|
|
371
|
+
#: geovisio/web/items.py:1027
|
|
372
|
+
msgid "Missing \"position\" parameter"
|
|
373
|
+
msgstr ""
|
|
374
|
+
|
|
375
|
+
#: geovisio/web/items.py:1034
|
|
376
|
+
msgid "Position in sequence should be a positive integer"
|
|
377
|
+
msgstr ""
|
|
378
|
+
|
|
379
|
+
#: geovisio/web/items.py:1048 geovisio/web/upload_set.py:343
|
|
380
|
+
msgid ""
|
|
381
|
+
"Longitude cannot be overridden alone, override_latitude also needs to be "
|
|
382
|
+
"set"
|
|
383
|
+
msgstr ""
|
|
384
|
+
|
|
385
|
+
#: geovisio/web/items.py:1050 geovisio/web/upload_set.py:345
|
|
386
|
+
msgid ""
|
|
387
|
+
"Latitude cannot be overridden alone, override_longitude also needs to be "
|
|
388
|
+
"set"
|
|
389
|
+
msgstr ""
|
|
390
|
+
|
|
391
|
+
#: geovisio/web/items.py:1051 geovisio/web/upload_set.py:318
|
|
392
|
+
#, python-format
|
|
393
|
+
msgid "For parameter `override_longitude`, `%(v)s` is not a valid longitude"
|
|
394
|
+
msgstr ""
|
|
395
|
+
|
|
396
|
+
#: geovisio/web/items.py:1052 geovisio/web/upload_set.py:323
|
|
397
|
+
#, python-format
|
|
398
|
+
msgid "For parameter `override_latitude`, `%(v)s` is not a valid latitude"
|
|
399
|
+
msgstr ""
|
|
400
|
+
|
|
401
|
+
#: geovisio/web/items.py:1071
|
|
402
|
+
msgid "Picture blur status should be either unset, true or false"
|
|
403
|
+
msgstr ""
|
|
404
|
+
|
|
405
|
+
#: geovisio/web/items.py:1075
|
|
406
|
+
msgid "No picture file was sent"
|
|
407
|
+
msgstr ""
|
|
408
|
+
|
|
409
|
+
#: geovisio/web/items.py:1081 geovisio/web/upload_set.py:384
|
|
410
|
+
msgid "Picture file is either missing or in an unsupported format (should be jpg)"
|
|
411
|
+
msgstr ""
|
|
412
|
+
|
|
413
|
+
#: geovisio/web/items.py:1088
|
|
414
|
+
#, python-format
|
|
415
|
+
msgid "Collection %(s)s wasn't found in database"
|
|
416
|
+
msgstr ""
|
|
417
|
+
|
|
418
|
+
#: geovisio/web/items.py:1092
|
|
419
|
+
msgid "You're not authorized to add picture to this collection"
|
|
420
|
+
msgstr ""
|
|
421
|
+
|
|
422
|
+
#: geovisio/web/items.py:1097
|
|
423
|
+
msgid "The collection has been deleted, impossible to add pictures to it"
|
|
424
|
+
msgstr ""
|
|
425
|
+
|
|
426
|
+
#: geovisio/web/items.py:1127
|
|
427
|
+
msgid "Picture at given position already exist"
|
|
428
|
+
msgstr ""
|
|
429
|
+
|
|
430
|
+
#: geovisio/web/items.py:1129 geovisio/web/upload_set.py:620
|
|
431
|
+
msgid "Impossible to parse picture metadata"
|
|
432
|
+
msgstr ""
|
|
433
|
+
|
|
434
|
+
#: geovisio/web/items.py:1131 geovisio/web/upload_set.py:627
|
|
435
|
+
msgid "Picture has invalid metadata"
|
|
436
|
+
msgstr ""
|
|
437
|
+
|
|
438
|
+
#: geovisio/web/items.py:1139 geovisio/web/upload_set.py:653
|
|
439
|
+
msgid "Picture wasn't correctly saved in filesystem"
|
|
440
|
+
msgstr ""
|
|
441
|
+
|
|
442
|
+
#: geovisio/web/items.py:1208
|
|
443
|
+
msgid ""
|
|
444
|
+
"Parameter `capture_time` is not a valid datetime, it should be an iso "
|
|
445
|
+
"formated datetime (like '2017-07-21T17:32:28Z')."
|
|
446
|
+
msgstr ""
|
|
447
|
+
|
|
448
|
+
#: geovisio/web/items.py:1216
|
|
449
|
+
#, python-format
|
|
450
|
+
msgid "For parameter `longitude`, `%(v)s` is not a valid longitude"
|
|
451
|
+
msgstr ""
|
|
452
|
+
|
|
453
|
+
#: geovisio/web/items.py:1221
|
|
454
|
+
#, python-format
|
|
455
|
+
msgid "For parameter `latitude`, `%(v)s` is not a valid latitude"
|
|
456
|
+
msgstr ""
|
|
457
|
+
|
|
458
|
+
#: geovisio/web/items.py:1226
|
|
459
|
+
msgid "Longitude cannot be overridden alone, latitude also needs to be set"
|
|
460
|
+
msgstr ""
|
|
461
|
+
|
|
462
|
+
#: geovisio/web/items.py:1228
|
|
463
|
+
msgid "Latitude cannot be overridden alone, longitude also needs to be set"
|
|
464
|
+
msgstr ""
|
|
465
|
+
|
|
466
|
+
#: geovisio/web/items.py:1311 geovisio/web/items.py:1421
|
|
467
|
+
#: geovisio/web/prepare.py:84
|
|
468
|
+
#, python-format
|
|
469
|
+
msgid "Picture %(p)s wasn't found in database"
|
|
470
|
+
msgstr ""
|
|
471
|
+
|
|
472
|
+
#: geovisio/web/items.py:1318
|
|
473
|
+
msgid ""
|
|
474
|
+
"You're not authorized to edit the visibility of this picture. Only the "
|
|
475
|
+
"owner can change this."
|
|
476
|
+
msgstr ""
|
|
477
|
+
|
|
478
|
+
#: geovisio/web/items.py:1325
|
|
479
|
+
msgid ""
|
|
480
|
+
"You're not authorized to edit this picture, collaborative editing is not "
|
|
481
|
+
"allowed"
|
|
482
|
+
msgstr ""
|
|
483
|
+
|
|
484
|
+
#: geovisio/web/items.py:1336
|
|
485
|
+
#, python-format
|
|
486
|
+
msgid "Picture %(p)s is in %(s)s state, its visibility can't be changed for now"
|
|
487
|
+
msgstr ""
|
|
488
|
+
|
|
489
|
+
#: geovisio/web/items.py:1425
|
|
490
|
+
msgid "You're not authorized to edit this picture"
|
|
491
|
+
msgstr ""
|
|
492
|
+
|
|
493
|
+
#: geovisio/web/map.py:165
|
|
494
|
+
msgid "One of required parameter is empty"
|
|
495
|
+
msgstr ""
|
|
496
|
+
|
|
497
|
+
#: geovisio/web/map.py:167
|
|
498
|
+
msgid "Tile format is invalid, should be either pbf or mvt"
|
|
499
|
+
msgstr ""
|
|
500
|
+
|
|
501
|
+
#: geovisio/web/map.py:171 geovisio/web/map.py:173
|
|
502
|
+
msgid "X or Y parameter is out of bounds"
|
|
503
|
+
msgstr ""
|
|
504
|
+
|
|
505
|
+
#: geovisio/web/map.py:175
|
|
506
|
+
msgid "Z parameter is out of bounds (should be 0-15)"
|
|
507
|
+
msgstr ""
|
|
508
|
+
|
|
509
|
+
#: geovisio/web/map.py:186
|
|
510
|
+
msgid "Impossible to get tile"
|
|
511
|
+
msgstr ""
|
|
512
|
+
|
|
513
|
+
#: geovisio/web/pages.py:44
|
|
514
|
+
msgid "Page name is not recognized"
|
|
515
|
+
msgstr ""
|
|
516
|
+
|
|
517
|
+
#: geovisio/web/pages.py:126 geovisio/web/pages.py:235
|
|
518
|
+
#, python-format
|
|
519
|
+
msgid "Page not available in language %(l)s"
|
|
520
|
+
msgstr ""
|
|
521
|
+
|
|
522
|
+
#: geovisio/web/pages.py:175 geovisio/web/pages.py:229
|
|
523
|
+
msgid "You must be logged-in as admin to edit pages"
|
|
524
|
+
msgstr ""
|
|
525
|
+
|
|
526
|
+
#: geovisio/web/pages.py:177
|
|
527
|
+
msgid "Page content must be HTML (with Content-Type: text/html header set)"
|
|
528
|
+
msgstr ""
|
|
529
|
+
|
|
530
|
+
#: geovisio/web/pages.py:191
|
|
531
|
+
msgid "Could not update page content"
|
|
532
|
+
msgstr ""
|
|
533
|
+
|
|
534
|
+
#: geovisio/web/pages.py:237
|
|
535
|
+
msgid "Could not delete page content"
|
|
536
|
+
msgstr ""
|
|
537
|
+
|
|
538
|
+
#: geovisio/web/params.py:98
|
|
539
|
+
msgid "Parameter datetime should contain one or two dates"
|
|
540
|
+
msgstr ""
|
|
541
|
+
|
|
542
|
+
#: geovisio/web/params.py:168
|
|
543
|
+
msgid ""
|
|
544
|
+
"Parameter bbox must contain valid longitude (-180 to 180) and latitude "
|
|
545
|
+
"(-90 to 90) values"
|
|
546
|
+
msgstr ""
|
|
547
|
+
|
|
548
|
+
#: geovisio/web/params.py:173
|
|
549
|
+
msgid "Parameter bbox must be in format [minX, minY, maxX, maxY]"
|
|
550
|
+
msgstr ""
|
|
551
|
+
|
|
552
|
+
#: geovisio/web/params.py:210
|
|
553
|
+
#, python-format
|
|
554
|
+
msgid "Parameter %(p)s must be coordinates in lat,lon format"
|
|
555
|
+
msgstr ""
|
|
556
|
+
|
|
557
|
+
#: geovisio/web/params.py:213
|
|
558
|
+
#, python-format
|
|
559
|
+
msgid "Longitude in parameter %(p)s is not valid (should be between -180 and 180)"
|
|
560
|
+
msgstr ""
|
|
561
|
+
|
|
562
|
+
#: geovisio/web/params.py:214
|
|
563
|
+
#, python-format
|
|
564
|
+
msgid "Latitude in parameter %(p)s is not valid (should be between -90 and 90)"
|
|
565
|
+
msgstr ""
|
|
566
|
+
|
|
567
|
+
#: geovisio/web/params.py:237 geovisio/web/params.py:250
|
|
568
|
+
#, python-format
|
|
569
|
+
msgid ""
|
|
570
|
+
"Parameter %(p)s is invalid (should be a distance range in meters like "
|
|
571
|
+
"\"5-15\")"
|
|
572
|
+
msgstr ""
|
|
573
|
+
|
|
574
|
+
#: geovisio/web/params.py:243
|
|
575
|
+
#, python-format
|
|
576
|
+
msgid "Parameter %(p)s has a min value greater than its max value"
|
|
577
|
+
msgstr ""
|
|
578
|
+
|
|
579
|
+
#: geovisio/web/params.py:317
|
|
580
|
+
#, python-format
|
|
581
|
+
msgid "Parameter %(p)s must be a valid list"
|
|
582
|
+
msgstr ""
|
|
583
|
+
|
|
584
|
+
#: geovisio/web/params.py:371
|
|
585
|
+
msgid ""
|
|
586
|
+
"Heading is not valid, should be an integer in degrees from 0° to 360°. "
|
|
587
|
+
"North is 0°, East = 90°, South = 180° and West = 270°."
|
|
588
|
+
msgstr ""
|
|
589
|
+
|
|
590
|
+
#: geovisio/web/params.py:458
|
|
591
|
+
msgid "Unsupported sortby parameter: invalid column name"
|
|
592
|
+
msgstr ""
|
|
593
|
+
|
|
594
|
+
#: geovisio/web/params.py:466
|
|
595
|
+
msgid "Unsupported sortby parameter: syntax isn't correct"
|
|
596
|
+
msgstr ""
|
|
597
|
+
|
|
598
|
+
#: geovisio/web/params.py:492
|
|
599
|
+
#, python-format
|
|
600
|
+
msgid "limit parameter should be a valid, positive integer (between 1 and %(v)s)"
|
|
601
|
+
msgstr ""
|
|
602
|
+
|
|
603
|
+
#: geovisio/web/params.py:495
|
|
604
|
+
#, python-format
|
|
605
|
+
msgid "limit parameter should be an integer between 1 and %(v)s"
|
|
606
|
+
msgstr ""
|
|
607
|
+
|
|
608
|
+
#: geovisio/web/params.py:506
|
|
609
|
+
msgid "longitude needs to be between -180 and 180"
|
|
610
|
+
msgstr ""
|
|
611
|
+
|
|
612
|
+
#: geovisio/web/params.py:516
|
|
613
|
+
msgid "latitude needs to be between -90 and 90"
|
|
614
|
+
msgstr ""
|
|
615
|
+
|
|
616
|
+
#: geovisio/web/pictures.py:187
|
|
617
|
+
msgid "Tiles are not available for flat pictures"
|
|
618
|
+
msgstr ""
|
|
619
|
+
|
|
620
|
+
#: geovisio/web/pictures.py:192
|
|
621
|
+
msgid "Column parameter is invalid, should be an integer"
|
|
622
|
+
msgstr ""
|
|
623
|
+
|
|
624
|
+
#: geovisio/web/pictures.py:195
|
|
625
|
+
msgid "Column parameter is invalid"
|
|
626
|
+
msgstr ""
|
|
627
|
+
|
|
628
|
+
#: geovisio/web/pictures.py:200
|
|
629
|
+
msgid "Row parameter is invalid, should be an integer"
|
|
630
|
+
msgstr ""
|
|
631
|
+
|
|
632
|
+
#: geovisio/web/pictures.py:203
|
|
633
|
+
msgid "Row parameter is invalid"
|
|
634
|
+
msgstr ""
|
|
635
|
+
|
|
636
|
+
#: geovisio/web/reports.py:89 geovisio/web/reports.py:99
|
|
637
|
+
msgid "Impossible to create a Report"
|
|
638
|
+
msgstr ""
|
|
639
|
+
|
|
640
|
+
#: geovisio/web/reports.py:91
|
|
641
|
+
msgid "Parameter for creating a Report should be a valid JSON"
|
|
642
|
+
msgstr ""
|
|
643
|
+
|
|
644
|
+
#: geovisio/web/reports.py:144
|
|
645
|
+
msgid "Only authenticated users can access reports"
|
|
646
|
+
msgstr ""
|
|
647
|
+
|
|
648
|
+
#: geovisio/web/reports.py:148 geovisio/web/reports.py:266
|
|
649
|
+
msgid "Report doesn't exist"
|
|
650
|
+
msgstr ""
|
|
651
|
+
|
|
652
|
+
#: geovisio/web/reports.py:157
|
|
653
|
+
msgid "You're not authorized to access this report"
|
|
654
|
+
msgstr ""
|
|
655
|
+
|
|
656
|
+
#: geovisio/web/reports.py:277
|
|
657
|
+
msgid "You're not authorized to edit this Report"
|
|
658
|
+
msgstr ""
|
|
659
|
+
|
|
660
|
+
#: geovisio/web/reports.py:284
|
|
661
|
+
msgid "Impossible to edit the Report"
|
|
662
|
+
msgstr ""
|
|
663
|
+
|
|
664
|
+
#: geovisio/web/reports.py:286
|
|
665
|
+
msgid "Parameter for editing the Report should be a valid JSON"
|
|
666
|
+
msgstr ""
|
|
667
|
+
|
|
668
|
+
#: geovisio/web/reports.py:352
|
|
669
|
+
msgid "You're not authorized to list reports"
|
|
670
|
+
msgstr ""
|
|
671
|
+
|
|
672
|
+
#: geovisio/web/rss.py:22
|
|
673
|
+
#, python-format
|
|
674
|
+
msgid "Sequence \"%(name)s\" by \"%(user)s\" was captured on %(date)s."
|
|
675
|
+
msgstr ""
|
|
676
|
+
|
|
677
|
+
#: geovisio/web/rss.py:49
|
|
678
|
+
msgid "GeoVisio collections"
|
|
679
|
+
msgstr ""
|
|
680
|
+
|
|
681
|
+
#: geovisio/web/rss.py:51
|
|
682
|
+
msgid "List of collections from this GeoVisio server"
|
|
683
|
+
msgstr ""
|
|
684
|
+
|
|
685
|
+
#: geovisio/web/tokens.py:100 geovisio/web/tokens.py:143
|
|
686
|
+
#: geovisio/web/tokens.py:231
|
|
687
|
+
msgid "Impossible to find token"
|
|
688
|
+
msgstr ""
|
|
689
|
+
|
|
690
|
+
#: geovisio/web/tokens.py:181
|
|
691
|
+
msgid "Impossible to generate a new token"
|
|
692
|
+
msgstr ""
|
|
693
|
+
|
|
694
|
+
#: geovisio/web/tokens.py:236
|
|
695
|
+
msgid "Token already claimed by another account"
|
|
696
|
+
msgstr ""
|
|
697
|
+
|
|
698
|
+
#: geovisio/web/upload_set.py:134
|
|
699
|
+
msgid "Impossible to create an UploadSet"
|
|
700
|
+
msgstr ""
|
|
701
|
+
|
|
702
|
+
#: geovisio/web/upload_set.py:136
|
|
703
|
+
msgid "Parameter for creating an UploadSet should be a valid JSON"
|
|
704
|
+
msgstr ""
|
|
705
|
+
|
|
706
|
+
#: geovisio/web/upload_set.py:182 geovisio/web/upload_set.py:216
|
|
707
|
+
#: geovisio/web/upload_set.py:735
|
|
708
|
+
msgid "UploadSet doesn't exist"
|
|
709
|
+
msgstr ""
|
|
710
|
+
|
|
711
|
+
#: geovisio/web/upload_set.py:310
|
|
712
|
+
msgid ""
|
|
713
|
+
"Parameter `override_capture_time` is not a valid datetime, it should be "
|
|
714
|
+
"an iso formated datetime (like '2017-07-21T17:32:28Z')."
|
|
715
|
+
msgstr ""
|
|
716
|
+
|
|
717
|
+
#: geovisio/web/upload_set.py:377
|
|
718
|
+
msgid "No file was sent"
|
|
719
|
+
msgstr ""
|
|
720
|
+
|
|
721
|
+
#: geovisio/web/upload_set.py:541 geovisio/web/upload_set.py:721
|
|
722
|
+
#, python-format
|
|
723
|
+
msgid "UploadSet %(u)s does not exist"
|
|
724
|
+
msgstr ""
|
|
725
|
+
|
|
726
|
+
#: geovisio/web/upload_set.py:545
|
|
727
|
+
msgid "You're not authorized to add picture to this upload set"
|
|
728
|
+
msgstr ""
|
|
729
|
+
|
|
730
|
+
#: geovisio/web/upload_set.py:585
|
|
731
|
+
msgid "The item has already been added to this upload set"
|
|
732
|
+
msgstr ""
|
|
733
|
+
|
|
734
|
+
#: geovisio/web/upload_set.py:592
|
|
735
|
+
msgid "The same picture has already been sent in a past upload"
|
|
736
|
+
msgstr ""
|
|
737
|
+
|
|
738
|
+
#: geovisio/web/upload_set.py:635
|
|
739
|
+
msgid "Impossible to open file as image. The only supported image format is jpg."
|
|
740
|
+
msgstr ""
|
|
741
|
+
|
|
742
|
+
#: geovisio/web/upload_set.py:725
|
|
743
|
+
msgid "You're not authorized to complete this upload set"
|
|
744
|
+
msgstr ""
|
|
745
|
+
|
|
746
|
+
#: geovisio/web/upload_set.py:770
|
|
747
|
+
msgid "You're not authorized to delete this upload set"
|
|
748
|
+
msgstr ""
|
|
749
|
+
|
|
750
|
+
#: geovisio/web/users.py:110
|
|
751
|
+
msgid "Impossible to find user"
|
|
752
|
+
msgstr ""
|
|
753
|
+
|
|
754
|
+
#: geovisio/web/users.py:213
|
|
755
|
+
msgid ""
|
|
756
|
+
"No search parameter given, you should provide `q=<pattern>` as query "
|
|
757
|
+
"parameter"
|
|
758
|
+
msgstr ""
|
|
759
|
+
|
|
760
|
+
#: geovisio/web/utils.py:51
|
|
761
|
+
msgid "No default account defined, please contact your instance administrator"
|
|
762
|
+
msgstr ""
|