geovisio 2.6.0__py3-none-any.whl → 2.7.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 +36 -7
- geovisio/admin_cli/cleanup.py +2 -2
- geovisio/admin_cli/db.py +1 -4
- geovisio/config_app.py +40 -1
- geovisio/db_migrations.py +24 -3
- geovisio/templates/main.html +13 -13
- geovisio/templates/viewer.html +3 -3
- geovisio/translations/de/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/de/LC_MESSAGES/messages.po +804 -0
- 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 +738 -0
- geovisio/translations/es/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/es/LC_MESSAGES/messages.po +778 -0
- geovisio/translations/fi/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fi/LC_MESSAGES/messages.po +589 -0
- geovisio/translations/fr/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fr/LC_MESSAGES/messages.po +814 -0
- geovisio/translations/hu/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/hu/LC_MESSAGES/messages.po +773 -0
- geovisio/translations/ko/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/ko/LC_MESSAGES/messages.po +685 -0
- geovisio/translations/messages.pot +694 -0
- geovisio/translations/nl/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/nl/LC_MESSAGES/messages.po +602 -0
- geovisio/utils/__init__.py +1 -1
- geovisio/utils/auth.py +50 -11
- geovisio/utils/db.py +65 -0
- geovisio/utils/excluded_areas.py +83 -0
- geovisio/utils/extent.py +30 -0
- geovisio/utils/fields.py +1 -1
- geovisio/utils/filesystems.py +0 -1
- geovisio/utils/link.py +14 -0
- geovisio/utils/params.py +20 -0
- geovisio/utils/pictures.py +110 -88
- geovisio/utils/reports.py +171 -0
- geovisio/utils/sequences.py +262 -126
- geovisio/utils/tokens.py +37 -42
- geovisio/utils/upload_set.py +642 -0
- geovisio/web/auth.py +37 -37
- geovisio/web/collections.py +304 -304
- geovisio/web/configuration.py +14 -0
- geovisio/web/docs.py +276 -15
- geovisio/web/excluded_areas.py +377 -0
- geovisio/web/items.py +169 -112
- geovisio/web/map.py +104 -36
- geovisio/web/params.py +69 -26
- geovisio/web/pictures.py +14 -31
- geovisio/web/reports.py +399 -0
- geovisio/web/rss.py +13 -7
- geovisio/web/stac.py +129 -134
- geovisio/web/tokens.py +98 -109
- geovisio/web/upload_set.py +771 -0
- geovisio/web/users.py +100 -73
- geovisio/web/utils.py +28 -9
- geovisio/workers/runner_pictures.py +241 -207
- {geovisio-2.6.0.dist-info → geovisio-2.7.1.dist-info}/METADATA +17 -14
- geovisio-2.7.1.dist-info/RECORD +70 -0
- {geovisio-2.6.0.dist-info → geovisio-2.7.1.dist-info}/WHEEL +1 -1
- geovisio-2.6.0.dist-info/RECORD +0 -41
- {geovisio-2.6.0.dist-info → geovisio-2.7.1.dist-info}/LICENSE +0 -0
|
@@ -0,0 +1,694 @@
|
|
|
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
|
+
#, fuzzy
|
|
7
|
+
msgid ""
|
|
8
|
+
msgstr ""
|
|
9
|
+
"Project-Id-Version: PROJECT VERSION\n"
|
|
10
|
+
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
|
11
|
+
"POT-Creation-Date: 2024-10-28 10:15+0100\n"
|
|
12
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
|
+
"Language-Team: LANGUAGE <LL@li.org>\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.15.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:201
|
|
73
|
+
msgid "Authentication is mandatory"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#: geovisio/utils/auth.py:330
|
|
77
|
+
msgid "Only Bearer token are supported"
|
|
78
|
+
msgstr ""
|
|
79
|
+
|
|
80
|
+
#: geovisio/utils/excluded_areas.py:82
|
|
81
|
+
msgid "Impossible to find excluded area"
|
|
82
|
+
msgstr ""
|
|
83
|
+
|
|
84
|
+
#: geovisio/utils/pictures.py:303
|
|
85
|
+
#, python-format
|
|
86
|
+
msgid ""
|
|
87
|
+
"Invalid '%(format)s' format for image, only the following formats are "
|
|
88
|
+
"available: %(allowed_formats)s"
|
|
89
|
+
msgstr ""
|
|
90
|
+
|
|
91
|
+
#: geovisio/utils/pictures.py:417
|
|
92
|
+
msgid "Picture can't be found, you may check its ID"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
#: geovisio/utils/pictures.py:420
|
|
96
|
+
msgid "Picture is not available (either hidden by admin or processing)"
|
|
97
|
+
msgstr ""
|
|
98
|
+
|
|
99
|
+
#: geovisio/utils/pictures.py:428
|
|
100
|
+
msgid "HD Picture file is not available"
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
103
|
+
#: geovisio/utils/pictures.py:447
|
|
104
|
+
msgid "Picture derivates file are not available"
|
|
105
|
+
msgstr ""
|
|
106
|
+
|
|
107
|
+
#: geovisio/utils/pictures.py:464 geovisio/web/pictures.py:53
|
|
108
|
+
#: geovisio/web/pictures.py:98 geovisio/web/pictures.py:208
|
|
109
|
+
msgid "Unable to read picture on filesystem"
|
|
110
|
+
msgstr ""
|
|
111
|
+
|
|
112
|
+
#: geovisio/utils/reports.py:142 geovisio/utils/upload_set.py:352
|
|
113
|
+
#: geovisio/web/params.py:356
|
|
114
|
+
msgid "Unsupported filter parameter"
|
|
115
|
+
msgstr ""
|
|
116
|
+
|
|
117
|
+
#: geovisio/utils/sequences.py:377
|
|
118
|
+
msgid ""
|
|
119
|
+
"Sort by file date is not possible on this sequence (no file date "
|
|
120
|
+
"information available on pictures)"
|
|
121
|
+
msgstr ""
|
|
122
|
+
|
|
123
|
+
#: geovisio/utils/sequences.py:402
|
|
124
|
+
#, python-format
|
|
125
|
+
msgid ""
|
|
126
|
+
"Sort using %(sort)s is not possible on this sequence, picture %(pic)s is "
|
|
127
|
+
"missing mandatory metadata"
|
|
128
|
+
msgstr ""
|
|
129
|
+
|
|
130
|
+
#: geovisio/utils/sequences.py:590 geovisio/web/collections.py:618
|
|
131
|
+
#, python-format
|
|
132
|
+
msgid "Collection %(c)s wasn't found in database"
|
|
133
|
+
msgstr ""
|
|
134
|
+
|
|
135
|
+
#: geovisio/utils/tokens.py:42
|
|
136
|
+
msgid "JWT token signature does not match"
|
|
137
|
+
msgstr ""
|
|
138
|
+
|
|
139
|
+
#: geovisio/utils/tokens.py:56
|
|
140
|
+
msgid "Token does not exist anymore"
|
|
141
|
+
msgstr ""
|
|
142
|
+
|
|
143
|
+
#: geovisio/utils/tokens.py:60
|
|
144
|
+
msgid ""
|
|
145
|
+
"Token not yet claimed, this token cannot be used yet. Either claim this "
|
|
146
|
+
"token or generate a new one"
|
|
147
|
+
msgstr ""
|
|
148
|
+
|
|
149
|
+
#: geovisio/utils/upload_set.py:158
|
|
150
|
+
msgid ""
|
|
151
|
+
"The picture is too similar to another one (nearby and taken almost at the"
|
|
152
|
+
" same time)"
|
|
153
|
+
msgstr ""
|
|
154
|
+
|
|
155
|
+
#: geovisio/utils/upload_set.py:161
|
|
156
|
+
msgid "The sent file is not a valid JPEG"
|
|
157
|
+
msgstr ""
|
|
158
|
+
|
|
159
|
+
#: geovisio/utils/upload_set.py:164
|
|
160
|
+
msgid "The picture has invalid EXIF or XMP metadata, making it impossible to use"
|
|
161
|
+
msgstr ""
|
|
162
|
+
|
|
163
|
+
#: geovisio/utils/upload_set.py:167
|
|
164
|
+
msgid "Something went very wrong, but not due to the picture itself"
|
|
165
|
+
msgstr ""
|
|
166
|
+
|
|
167
|
+
#: geovisio/web/auth.py:60
|
|
168
|
+
msgid "Impossible to finish authentication flow"
|
|
169
|
+
msgstr ""
|
|
170
|
+
|
|
171
|
+
#: geovisio/web/auth.py:64
|
|
172
|
+
msgid ""
|
|
173
|
+
"You can try to clear your cookies and retry. If the problem persists, "
|
|
174
|
+
"contact your instance administrator."
|
|
175
|
+
msgstr ""
|
|
176
|
+
|
|
177
|
+
#: geovisio/web/collections.py:288
|
|
178
|
+
#, python-format
|
|
179
|
+
msgid "There is no collection created after %(d)s"
|
|
180
|
+
msgstr ""
|
|
181
|
+
|
|
182
|
+
#: geovisio/web/collections.py:290
|
|
183
|
+
#, python-format
|
|
184
|
+
msgid "There is no collection created before %(d)s"
|
|
185
|
+
msgstr ""
|
|
186
|
+
|
|
187
|
+
#: geovisio/web/collections.py:399 geovisio/web/items.py:397
|
|
188
|
+
msgid "Collection doesn't exist"
|
|
189
|
+
msgstr ""
|
|
190
|
+
|
|
191
|
+
#: geovisio/web/collections.py:458
|
|
192
|
+
msgid "Impossible to find a thumbnail for the collection"
|
|
193
|
+
msgstr ""
|
|
194
|
+
|
|
195
|
+
#: geovisio/web/collections.py:578 geovisio/web/items.py:1174
|
|
196
|
+
msgid ""
|
|
197
|
+
"Picture visibility parameter (visible) should be either unset, true or "
|
|
198
|
+
"false"
|
|
199
|
+
msgstr ""
|
|
200
|
+
|
|
201
|
+
#: geovisio/web/collections.py:584
|
|
202
|
+
msgid ""
|
|
203
|
+
"Sequence title is not valid, should be a string with a max of 250 "
|
|
204
|
+
"characters"
|
|
205
|
+
msgstr ""
|
|
206
|
+
|
|
207
|
+
#: geovisio/web/collections.py:590
|
|
208
|
+
msgid "Sort order parameter is invalid"
|
|
209
|
+
msgstr ""
|
|
210
|
+
|
|
211
|
+
#: geovisio/web/collections.py:601
|
|
212
|
+
msgid ""
|
|
213
|
+
"Relative heading is not valid, should be an integer in degrees from -180 "
|
|
214
|
+
"to 180"
|
|
215
|
+
msgstr ""
|
|
216
|
+
|
|
217
|
+
#: geovisio/web/collections.py:622
|
|
218
|
+
msgid "You're not authorized to edit this sequence"
|
|
219
|
+
msgstr ""
|
|
220
|
+
|
|
221
|
+
#: geovisio/web/collections.py:631
|
|
222
|
+
#, python-format
|
|
223
|
+
msgid "Sequence %(c)s is in %(s)s state, its visibility can't be changed for now"
|
|
224
|
+
msgstr ""
|
|
225
|
+
|
|
226
|
+
#: geovisio/web/collections.py:766
|
|
227
|
+
msgid "Sequence doesn't exists"
|
|
228
|
+
msgstr ""
|
|
229
|
+
|
|
230
|
+
#: geovisio/web/collections.py:911 geovisio/web/stac.py:337
|
|
231
|
+
#, python-format
|
|
232
|
+
msgid "Impossible to find user %(u)s"
|
|
233
|
+
msgstr ""
|
|
234
|
+
|
|
235
|
+
#: geovisio/web/collections.py:943 geovisio/web/stac.py:347
|
|
236
|
+
#, python-format
|
|
237
|
+
msgid "No data loaded for user %(u)s"
|
|
238
|
+
msgstr ""
|
|
239
|
+
|
|
240
|
+
#: geovisio/web/collections.py:945
|
|
241
|
+
msgid "No matching sequences found"
|
|
242
|
+
msgstr ""
|
|
243
|
+
|
|
244
|
+
#: geovisio/web/excluded_areas.py:133
|
|
245
|
+
msgid "You must be logged-in as admin to access all excluded areas"
|
|
246
|
+
msgstr ""
|
|
247
|
+
|
|
248
|
+
#: geovisio/web/excluded_areas.py:135
|
|
249
|
+
msgid "You're not authorized to access all excluded areas"
|
|
250
|
+
msgstr ""
|
|
251
|
+
|
|
252
|
+
#: geovisio/web/excluded_areas.py:172 geovisio/web/excluded_areas.py:182
|
|
253
|
+
#: geovisio/web/excluded_areas.py:336 geovisio/web/excluded_areas.py:343
|
|
254
|
+
msgid "Impossible to create an Excluded Area"
|
|
255
|
+
msgstr ""
|
|
256
|
+
|
|
257
|
+
#: geovisio/web/excluded_areas.py:174 geovisio/web/excluded_areas.py:338
|
|
258
|
+
msgid "Parameter for creating an Excluded Area should be a valid JSON"
|
|
259
|
+
msgstr ""
|
|
260
|
+
|
|
261
|
+
#: geovisio/web/excluded_areas.py:177 geovisio/web/excluded_areas.py:235
|
|
262
|
+
msgid "You must be logged-in as admin to edit excluded areas"
|
|
263
|
+
msgstr ""
|
|
264
|
+
|
|
265
|
+
#: geovisio/web/excluded_areas.py:230 geovisio/web/excluded_areas.py:242
|
|
266
|
+
msgid "Impossible to replace all Excluded Areas"
|
|
267
|
+
msgstr ""
|
|
268
|
+
|
|
269
|
+
#: geovisio/web/excluded_areas.py:232
|
|
270
|
+
msgid "Parameter for replacing all Excluded Areas should be a valid JSON"
|
|
271
|
+
msgstr ""
|
|
272
|
+
|
|
273
|
+
#: geovisio/web/excluded_areas.py:272
|
|
274
|
+
msgid "You must be logged-in as admin to delete excluded areas"
|
|
275
|
+
msgstr ""
|
|
276
|
+
|
|
277
|
+
#: geovisio/web/items.py:360
|
|
278
|
+
msgid "limit parameter should be an integer between 1 and 10000"
|
|
279
|
+
msgstr ""
|
|
280
|
+
|
|
281
|
+
#: geovisio/web/items.py:362
|
|
282
|
+
msgid "limit parameter should be a valid, positive integer (between 1 and 10000)"
|
|
283
|
+
msgstr ""
|
|
284
|
+
|
|
285
|
+
#: geovisio/web/items.py:367
|
|
286
|
+
msgid "`startAfterRank` and `withPicture` are mutually exclusive parameters"
|
|
287
|
+
msgstr ""
|
|
288
|
+
|
|
289
|
+
#: geovisio/web/items.py:374
|
|
290
|
+
msgid "startAfterRank parameter should be a positive integer (starting from 1)"
|
|
291
|
+
msgstr ""
|
|
292
|
+
|
|
293
|
+
#: geovisio/web/items.py:376
|
|
294
|
+
msgid "startAfterRank parameter should be a valid, positive integer"
|
|
295
|
+
msgstr ""
|
|
296
|
+
|
|
297
|
+
#: geovisio/web/items.py:403
|
|
298
|
+
#, python-format
|
|
299
|
+
msgid "No more items in this collection (last available rank is %(r)s)"
|
|
300
|
+
msgstr ""
|
|
301
|
+
|
|
302
|
+
#: geovisio/web/items.py:413
|
|
303
|
+
#, python-format
|
|
304
|
+
msgid "Picture with id %(p)s does not exists"
|
|
305
|
+
msgstr ""
|
|
306
|
+
|
|
307
|
+
#: geovisio/web/items.py:699
|
|
308
|
+
msgid "Item doesn't exist"
|
|
309
|
+
msgstr ""
|
|
310
|
+
|
|
311
|
+
#: geovisio/web/items.py:758
|
|
312
|
+
msgid "Search using POST method should have a JSON body"
|
|
313
|
+
msgstr ""
|
|
314
|
+
|
|
315
|
+
#: geovisio/web/items.py:767
|
|
316
|
+
msgid "Parameter limit must be either empty or a number between 1 and 10000"
|
|
317
|
+
msgstr ""
|
|
318
|
+
|
|
319
|
+
#: geovisio/web/items.py:823
|
|
320
|
+
msgid ""
|
|
321
|
+
"Parameter place_fov_tolerance must be either empty or a number between 2 "
|
|
322
|
+
"and 180"
|
|
323
|
+
msgstr ""
|
|
324
|
+
|
|
325
|
+
#: geovisio/web/items.py:845
|
|
326
|
+
msgid ""
|
|
327
|
+
"Parameter intersects should contain a valid GeoJSON Geometry (not a "
|
|
328
|
+
"Feature)"
|
|
329
|
+
msgstr ""
|
|
330
|
+
|
|
331
|
+
#: geovisio/web/items.py:861
|
|
332
|
+
msgid "Parameter ids should be a JSON array of strings"
|
|
333
|
+
msgstr ""
|
|
334
|
+
|
|
335
|
+
#: geovisio/web/items.py:873
|
|
336
|
+
msgid "Parameter collections should be a JSON array of strings"
|
|
337
|
+
msgstr ""
|
|
338
|
+
|
|
339
|
+
#: geovisio/web/items.py:884
|
|
340
|
+
msgid "Picture doesn't exist"
|
|
341
|
+
msgstr ""
|
|
342
|
+
|
|
343
|
+
#: geovisio/web/items.py:987 geovisio/web/upload_set.py:527
|
|
344
|
+
msgid "Content type should be multipart/form-data"
|
|
345
|
+
msgstr ""
|
|
346
|
+
|
|
347
|
+
#: geovisio/web/items.py:991
|
|
348
|
+
msgid "Missing \"position\" parameter"
|
|
349
|
+
msgstr ""
|
|
350
|
+
|
|
351
|
+
#: geovisio/web/items.py:998
|
|
352
|
+
msgid "Position in sequence should be a positive integer"
|
|
353
|
+
msgstr ""
|
|
354
|
+
|
|
355
|
+
#: geovisio/web/items.py:1012 geovisio/web/upload_set.py:336
|
|
356
|
+
msgid ""
|
|
357
|
+
"Longitude cannot be overridden alone, override_latitude also needs to be "
|
|
358
|
+
"set"
|
|
359
|
+
msgstr ""
|
|
360
|
+
|
|
361
|
+
#: geovisio/web/items.py:1014 geovisio/web/upload_set.py:338
|
|
362
|
+
msgid ""
|
|
363
|
+
"Latitude cannot be overridden alone, override_longitude also needs to be "
|
|
364
|
+
"set"
|
|
365
|
+
msgstr ""
|
|
366
|
+
|
|
367
|
+
#: geovisio/web/items.py:1015 geovisio/web/upload_set.py:311
|
|
368
|
+
#, python-format
|
|
369
|
+
msgid "For parameter `override_longitude`, `%(v)s` is not a valid longitude"
|
|
370
|
+
msgstr ""
|
|
371
|
+
|
|
372
|
+
#: geovisio/web/items.py:1016 geovisio/web/upload_set.py:316
|
|
373
|
+
#, python-format
|
|
374
|
+
msgid "For parameter `override_latitude`, `%(v)s` is not a valid latitude"
|
|
375
|
+
msgstr ""
|
|
376
|
+
|
|
377
|
+
#: geovisio/web/items.py:1035
|
|
378
|
+
msgid "Picture blur status should be either unset, true or false"
|
|
379
|
+
msgstr ""
|
|
380
|
+
|
|
381
|
+
#: geovisio/web/items.py:1039
|
|
382
|
+
msgid "No picture file was sent"
|
|
383
|
+
msgstr ""
|
|
384
|
+
|
|
385
|
+
#: geovisio/web/items.py:1045 geovisio/web/upload_set.py:377
|
|
386
|
+
msgid "Picture file is either missing or in an unsupported format (should be jpg)"
|
|
387
|
+
msgstr ""
|
|
388
|
+
|
|
389
|
+
#: geovisio/web/items.py:1052
|
|
390
|
+
#, python-format
|
|
391
|
+
msgid "Collection %(s)s wasn't found in database"
|
|
392
|
+
msgstr ""
|
|
393
|
+
|
|
394
|
+
#: geovisio/web/items.py:1056
|
|
395
|
+
msgid "You're not authorized to add picture to this collection"
|
|
396
|
+
msgstr ""
|
|
397
|
+
|
|
398
|
+
#: geovisio/web/items.py:1061
|
|
399
|
+
msgid "The collection has been deleted, impossible to add pictures to it"
|
|
400
|
+
msgstr ""
|
|
401
|
+
|
|
402
|
+
#: geovisio/web/items.py:1091
|
|
403
|
+
msgid "Picture at given position already exist"
|
|
404
|
+
msgstr ""
|
|
405
|
+
|
|
406
|
+
#: geovisio/web/items.py:1093 geovisio/web/upload_set.py:613
|
|
407
|
+
msgid "Impossible to parse picture metadata"
|
|
408
|
+
msgstr ""
|
|
409
|
+
|
|
410
|
+
#: geovisio/web/items.py:1095 geovisio/web/upload_set.py:620
|
|
411
|
+
msgid "Picture has invalid metadata"
|
|
412
|
+
msgstr ""
|
|
413
|
+
|
|
414
|
+
#: geovisio/web/items.py:1103 geovisio/web/upload_set.py:646
|
|
415
|
+
msgid "Picture wasn't correctly saved in filesystem"
|
|
416
|
+
msgstr ""
|
|
417
|
+
|
|
418
|
+
#: geovisio/web/items.py:1186
|
|
419
|
+
msgid ""
|
|
420
|
+
"Heading is not valid, should be an integer in degrees from 0° to 360°. "
|
|
421
|
+
"North is 0°, East = 90°, South = 180° and West = 270°."
|
|
422
|
+
msgstr ""
|
|
423
|
+
|
|
424
|
+
#: geovisio/web/items.py:1203 geovisio/web/items.py:1294
|
|
425
|
+
#, python-format
|
|
426
|
+
msgid "Picture %(p)s wasn't found in database"
|
|
427
|
+
msgstr ""
|
|
428
|
+
|
|
429
|
+
#: geovisio/web/items.py:1207 geovisio/web/items.py:1298
|
|
430
|
+
msgid "You're not authorized to edit this picture"
|
|
431
|
+
msgstr ""
|
|
432
|
+
|
|
433
|
+
#: geovisio/web/items.py:1217
|
|
434
|
+
#, python-format
|
|
435
|
+
msgid "Picture %(p)s is in %(s)s state, its visibility can't be changed for now"
|
|
436
|
+
msgstr ""
|
|
437
|
+
|
|
438
|
+
#: geovisio/web/map.py:143
|
|
439
|
+
msgid "One of required parameter is empty"
|
|
440
|
+
msgstr ""
|
|
441
|
+
|
|
442
|
+
#: geovisio/web/map.py:145
|
|
443
|
+
msgid "Tile format is invalid, should be either pbf or mvt"
|
|
444
|
+
msgstr ""
|
|
445
|
+
|
|
446
|
+
#: geovisio/web/map.py:149 geovisio/web/map.py:151
|
|
447
|
+
msgid "X or Y parameter is out of bounds"
|
|
448
|
+
msgstr ""
|
|
449
|
+
|
|
450
|
+
#: geovisio/web/map.py:153
|
|
451
|
+
msgid "Z parameter is out of bounds (should be 0-15)"
|
|
452
|
+
msgstr ""
|
|
453
|
+
|
|
454
|
+
#: geovisio/web/map.py:164
|
|
455
|
+
msgid "Impossible to get tile"
|
|
456
|
+
msgstr ""
|
|
457
|
+
|
|
458
|
+
#: geovisio/web/params.py:98
|
|
459
|
+
msgid "Parameter datetime should contain one or two dates"
|
|
460
|
+
msgstr ""
|
|
461
|
+
|
|
462
|
+
#: geovisio/web/params.py:168
|
|
463
|
+
msgid ""
|
|
464
|
+
"Parameter bbox must contain valid longitude (-180 to 180) and latitude "
|
|
465
|
+
"(-90 to 90) values"
|
|
466
|
+
msgstr ""
|
|
467
|
+
|
|
468
|
+
#: geovisio/web/params.py:173
|
|
469
|
+
msgid "Parameter bbox must be in format [minX, minY, maxX, maxY]"
|
|
470
|
+
msgstr ""
|
|
471
|
+
|
|
472
|
+
#: geovisio/web/params.py:210
|
|
473
|
+
#, python-format
|
|
474
|
+
msgid "Parameter %(p)s must be coordinates in lat,lon format"
|
|
475
|
+
msgstr ""
|
|
476
|
+
|
|
477
|
+
#: geovisio/web/params.py:213
|
|
478
|
+
#, python-format
|
|
479
|
+
msgid "Longitude in parameter %(p)s is not valid (should be between -180 and 180)"
|
|
480
|
+
msgstr ""
|
|
481
|
+
|
|
482
|
+
#: geovisio/web/params.py:214
|
|
483
|
+
#, python-format
|
|
484
|
+
msgid "Latitude in parameter %(p)s is not valid (should be between -90 and 90)"
|
|
485
|
+
msgstr ""
|
|
486
|
+
|
|
487
|
+
#: geovisio/web/params.py:237 geovisio/web/params.py:250
|
|
488
|
+
#, python-format
|
|
489
|
+
msgid ""
|
|
490
|
+
"Parameter %(p)s is invalid (should be a distance range in meters like "
|
|
491
|
+
"\"5-15\")"
|
|
492
|
+
msgstr ""
|
|
493
|
+
|
|
494
|
+
#: geovisio/web/params.py:243
|
|
495
|
+
#, python-format
|
|
496
|
+
msgid "Parameter %(p)s has a min value greater than its max value"
|
|
497
|
+
msgstr ""
|
|
498
|
+
|
|
499
|
+
#: geovisio/web/params.py:317
|
|
500
|
+
#, python-format
|
|
501
|
+
msgid "Parameter %(p)s must be a valid list"
|
|
502
|
+
msgstr ""
|
|
503
|
+
|
|
504
|
+
#: geovisio/web/params.py:441
|
|
505
|
+
msgid "Unsupported sortby parameter: invalid column name"
|
|
506
|
+
msgstr ""
|
|
507
|
+
|
|
508
|
+
#: geovisio/web/params.py:449
|
|
509
|
+
msgid "Unsupported sortby parameter: syntax isn't correct"
|
|
510
|
+
msgstr ""
|
|
511
|
+
|
|
512
|
+
#: geovisio/web/params.py:475
|
|
513
|
+
#, python-format
|
|
514
|
+
msgid "limit parameter should be a valid, positive integer (between 1 and %(v)s)"
|
|
515
|
+
msgstr ""
|
|
516
|
+
|
|
517
|
+
#: geovisio/web/params.py:478
|
|
518
|
+
#, python-format
|
|
519
|
+
msgid "limit parameter should be an integer between 1 and %(v)s"
|
|
520
|
+
msgstr ""
|
|
521
|
+
|
|
522
|
+
#: geovisio/web/params.py:489
|
|
523
|
+
msgid "longitude needs to be between -180 and 180"
|
|
524
|
+
msgstr ""
|
|
525
|
+
|
|
526
|
+
#: geovisio/web/params.py:499
|
|
527
|
+
msgid "latitude needs to be between -90 and 90"
|
|
528
|
+
msgstr ""
|
|
529
|
+
|
|
530
|
+
#: geovisio/web/pictures.py:187
|
|
531
|
+
msgid "Tiles are not available for flat pictures"
|
|
532
|
+
msgstr ""
|
|
533
|
+
|
|
534
|
+
#: geovisio/web/pictures.py:192
|
|
535
|
+
msgid "Column parameter is invalid, should be an integer"
|
|
536
|
+
msgstr ""
|
|
537
|
+
|
|
538
|
+
#: geovisio/web/pictures.py:195
|
|
539
|
+
msgid "Column parameter is invalid"
|
|
540
|
+
msgstr ""
|
|
541
|
+
|
|
542
|
+
#: geovisio/web/pictures.py:200
|
|
543
|
+
msgid "Row parameter is invalid, should be an integer"
|
|
544
|
+
msgstr ""
|
|
545
|
+
|
|
546
|
+
#: geovisio/web/pictures.py:203
|
|
547
|
+
msgid "Row parameter is invalid"
|
|
548
|
+
msgstr ""
|
|
549
|
+
|
|
550
|
+
#: geovisio/web/reports.py:89 geovisio/web/reports.py:99
|
|
551
|
+
msgid "Impossible to create a Report"
|
|
552
|
+
msgstr ""
|
|
553
|
+
|
|
554
|
+
#: geovisio/web/reports.py:91
|
|
555
|
+
msgid "Parameter for creating a Report should be a valid JSON"
|
|
556
|
+
msgstr ""
|
|
557
|
+
|
|
558
|
+
#: geovisio/web/reports.py:144
|
|
559
|
+
msgid "Only authenticated users can access reports"
|
|
560
|
+
msgstr ""
|
|
561
|
+
|
|
562
|
+
#: geovisio/web/reports.py:148 geovisio/web/reports.py:266
|
|
563
|
+
msgid "Report doesn't exist"
|
|
564
|
+
msgstr ""
|
|
565
|
+
|
|
566
|
+
#: geovisio/web/reports.py:157
|
|
567
|
+
msgid "You're not authorized to access this report"
|
|
568
|
+
msgstr ""
|
|
569
|
+
|
|
570
|
+
#: geovisio/web/reports.py:277
|
|
571
|
+
msgid "You're not authorized to edit this Report"
|
|
572
|
+
msgstr ""
|
|
573
|
+
|
|
574
|
+
#: geovisio/web/reports.py:284
|
|
575
|
+
msgid "Impossible to edit the Report"
|
|
576
|
+
msgstr ""
|
|
577
|
+
|
|
578
|
+
#: geovisio/web/reports.py:286
|
|
579
|
+
msgid "Parameter for editing the Report should be a valid JSON"
|
|
580
|
+
msgstr ""
|
|
581
|
+
|
|
582
|
+
#: geovisio/web/reports.py:349 geovisio/web/reports.py:392
|
|
583
|
+
#: geovisio/web/upload_set.py:265 geovisio/web/upload_set.py:385
|
|
584
|
+
msgid "Impossible to parse parameters"
|
|
585
|
+
msgstr ""
|
|
586
|
+
|
|
587
|
+
#: geovisio/web/reports.py:352
|
|
588
|
+
msgid "You're not authorized to list reports"
|
|
589
|
+
msgstr ""
|
|
590
|
+
|
|
591
|
+
#: geovisio/web/rss.py:22
|
|
592
|
+
#, python-format
|
|
593
|
+
msgid "Sequence \"%(name)s\" by \"%(user)s\" was captured on %(date)s."
|
|
594
|
+
msgstr ""
|
|
595
|
+
|
|
596
|
+
#: geovisio/web/rss.py:40
|
|
597
|
+
msgid "View on the map"
|
|
598
|
+
msgstr ""
|
|
599
|
+
|
|
600
|
+
#: geovisio/web/rss.py:40
|
|
601
|
+
msgid "JSON metadata"
|
|
602
|
+
msgstr ""
|
|
603
|
+
|
|
604
|
+
#: geovisio/web/rss.py:49
|
|
605
|
+
msgid "GeoVisio collections"
|
|
606
|
+
msgstr ""
|
|
607
|
+
|
|
608
|
+
#: geovisio/web/rss.py:51
|
|
609
|
+
msgid "List of collections from this GeoVisio server"
|
|
610
|
+
msgstr ""
|
|
611
|
+
|
|
612
|
+
#: geovisio/web/tokens.py:100 geovisio/web/tokens.py:143
|
|
613
|
+
#: geovisio/web/tokens.py:231
|
|
614
|
+
msgid "Impossible to find token"
|
|
615
|
+
msgstr ""
|
|
616
|
+
|
|
617
|
+
#: geovisio/web/tokens.py:181
|
|
618
|
+
msgid "Impossible to generate a new token"
|
|
619
|
+
msgstr ""
|
|
620
|
+
|
|
621
|
+
#: geovisio/web/tokens.py:236
|
|
622
|
+
msgid "Token already claimed by another account"
|
|
623
|
+
msgstr ""
|
|
624
|
+
|
|
625
|
+
#: geovisio/web/upload_set.py:133
|
|
626
|
+
msgid "Impossible to create an UploadSet"
|
|
627
|
+
msgstr ""
|
|
628
|
+
|
|
629
|
+
#: geovisio/web/upload_set.py:135
|
|
630
|
+
msgid "Parameter for creating an UploadSet should be a valid JSON"
|
|
631
|
+
msgstr ""
|
|
632
|
+
|
|
633
|
+
#: geovisio/web/upload_set.py:181 geovisio/web/upload_set.py:214
|
|
634
|
+
#: geovisio/web/upload_set.py:724
|
|
635
|
+
msgid "UploadSet doesn't exist"
|
|
636
|
+
msgstr ""
|
|
637
|
+
|
|
638
|
+
#: geovisio/web/upload_set.py:216
|
|
639
|
+
msgid "You're not authorized to list pictures in this upload set"
|
|
640
|
+
msgstr ""
|
|
641
|
+
|
|
642
|
+
#: geovisio/web/upload_set.py:303
|
|
643
|
+
msgid ""
|
|
644
|
+
"Parameter `override_capture_time` is not a valid datetime, it should be "
|
|
645
|
+
"an iso formated datetime (like '2017-07-21T17:32:28Z')."
|
|
646
|
+
msgstr ""
|
|
647
|
+
|
|
648
|
+
#: geovisio/web/upload_set.py:370
|
|
649
|
+
msgid "No file was sent"
|
|
650
|
+
msgstr ""
|
|
651
|
+
|
|
652
|
+
#: geovisio/web/upload_set.py:534 geovisio/web/upload_set.py:710
|
|
653
|
+
#, python-format
|
|
654
|
+
msgid "UploadSet %(u)s does not exist"
|
|
655
|
+
msgstr ""
|
|
656
|
+
|
|
657
|
+
#: geovisio/web/upload_set.py:538
|
|
658
|
+
msgid "You're not authorized to add picture to this upload set"
|
|
659
|
+
msgstr ""
|
|
660
|
+
|
|
661
|
+
#: geovisio/web/upload_set.py:578
|
|
662
|
+
msgid "The item has already been added to this upload set"
|
|
663
|
+
msgstr ""
|
|
664
|
+
|
|
665
|
+
#: geovisio/web/upload_set.py:585
|
|
666
|
+
msgid "The same picture has already been sent in a past upload"
|
|
667
|
+
msgstr ""
|
|
668
|
+
|
|
669
|
+
#: geovisio/web/upload_set.py:628
|
|
670
|
+
msgid "Impossible to open file as image. The only supported image format is jpg."
|
|
671
|
+
msgstr ""
|
|
672
|
+
|
|
673
|
+
#: geovisio/web/upload_set.py:714
|
|
674
|
+
msgid "You're not authorized to complete this upload set"
|
|
675
|
+
msgstr ""
|
|
676
|
+
|
|
677
|
+
#: geovisio/web/upload_set.py:759
|
|
678
|
+
msgid "You're not authorized to delete this upload set"
|
|
679
|
+
msgstr ""
|
|
680
|
+
|
|
681
|
+
#: geovisio/web/users.py:84
|
|
682
|
+
msgid "Impossible to find user"
|
|
683
|
+
msgstr ""
|
|
684
|
+
|
|
685
|
+
#: geovisio/web/users.py:160
|
|
686
|
+
msgid ""
|
|
687
|
+
"No search parameter given, you should provide `q=<pattern>` as query "
|
|
688
|
+
"parameter"
|
|
689
|
+
msgstr ""
|
|
690
|
+
|
|
691
|
+
#: geovisio/web/utils.py:51
|
|
692
|
+
msgid "No default account defined, please contact your instance administrator"
|
|
693
|
+
msgstr ""
|
|
694
|
+
|
|
Binary file
|