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