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.
Files changed (59) hide show
  1. geovisio/__init__.py +38 -8
  2. geovisio/admin_cli/__init__.py +2 -2
  3. geovisio/admin_cli/db.py +8 -0
  4. geovisio/config_app.py +64 -0
  5. geovisio/db_migrations.py +24 -3
  6. geovisio/templates/main.html +14 -14
  7. geovisio/templates/viewer.html +3 -3
  8. geovisio/translations/de/LC_MESSAGES/messages.mo +0 -0
  9. geovisio/translations/de/LC_MESSAGES/messages.po +667 -0
  10. geovisio/translations/en/LC_MESSAGES/messages.mo +0 -0
  11. geovisio/translations/en/LC_MESSAGES/messages.po +730 -0
  12. geovisio/translations/es/LC_MESSAGES/messages.mo +0 -0
  13. geovisio/translations/es/LC_MESSAGES/messages.po +778 -0
  14. geovisio/translations/fi/LC_MESSAGES/messages.mo +0 -0
  15. geovisio/translations/fi/LC_MESSAGES/messages.po +589 -0
  16. geovisio/translations/fr/LC_MESSAGES/messages.mo +0 -0
  17. geovisio/translations/fr/LC_MESSAGES/messages.po +814 -0
  18. geovisio/translations/ko/LC_MESSAGES/messages.mo +0 -0
  19. geovisio/translations/ko/LC_MESSAGES/messages.po +685 -0
  20. geovisio/translations/messages.pot +686 -0
  21. geovisio/translations/nl/LC_MESSAGES/messages.mo +0 -0
  22. geovisio/translations/nl/LC_MESSAGES/messages.po +594 -0
  23. geovisio/utils/__init__.py +1 -1
  24. geovisio/utils/auth.py +50 -11
  25. geovisio/utils/db.py +65 -0
  26. geovisio/utils/excluded_areas.py +83 -0
  27. geovisio/utils/extent.py +30 -0
  28. geovisio/utils/fields.py +1 -1
  29. geovisio/utils/filesystems.py +0 -1
  30. geovisio/utils/link.py +14 -0
  31. geovisio/utils/params.py +20 -0
  32. geovisio/utils/pictures.py +94 -69
  33. geovisio/utils/reports.py +171 -0
  34. geovisio/utils/sequences.py +288 -126
  35. geovisio/utils/tokens.py +37 -42
  36. geovisio/utils/upload_set.py +654 -0
  37. geovisio/web/auth.py +50 -37
  38. geovisio/web/collections.py +305 -319
  39. geovisio/web/configuration.py +14 -0
  40. geovisio/web/docs.py +288 -12
  41. geovisio/web/excluded_areas.py +377 -0
  42. geovisio/web/items.py +203 -151
  43. geovisio/web/map.py +322 -106
  44. geovisio/web/params.py +69 -26
  45. geovisio/web/pictures.py +14 -31
  46. geovisio/web/reports.py +399 -0
  47. geovisio/web/rss.py +13 -7
  48. geovisio/web/stac.py +129 -121
  49. geovisio/web/tokens.py +105 -112
  50. geovisio/web/upload_set.py +768 -0
  51. geovisio/web/users.py +100 -73
  52. geovisio/web/utils.py +38 -9
  53. geovisio/workers/runner_pictures.py +278 -183
  54. geovisio-2.7.0.dist-info/METADATA +95 -0
  55. geovisio-2.7.0.dist-info/RECORD +66 -0
  56. geovisio-2.5.0.dist-info/METADATA +0 -115
  57. geovisio-2.5.0.dist-info/RECORD +0 -41
  58. {geovisio-2.5.0.dist-info → geovisio-2.7.0.dist-info}/LICENSE +0 -0
  59. {geovisio-2.5.0.dist-info → geovisio-2.7.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,594 @@
1
+ # Translations template for PROJECT.
2
+ # Copyright (C) 2024 ORGANIZATION
3
+ # This file is distributed under the same license as the PROJECT project.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: PROJECT VERSION\n"
9
+ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10
+ "POT-Creation-Date: 2024-07-10 14:10+0200\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: nl\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:164
73
+ msgid "Authentication is mandatory"
74
+ msgstr ""
75
+
76
+ #: geovisio/utils/auth.py:292
77
+ msgid "Only Bearer token are supported"
78
+ msgstr ""
79
+
80
+ #: geovisio/utils/pictures.py:304
81
+ #, python-format
82
+ msgid ""
83
+ "Invalid '%(format)s' format for image, only the following formats are "
84
+ "available: %(allowed_formats)s"
85
+ msgstr ""
86
+
87
+ #: geovisio/utils/pictures.py:420
88
+ msgid "Picture can't be found, you may check its ID"
89
+ msgstr ""
90
+
91
+ #: geovisio/utils/pictures.py:423
92
+ msgid "Picture is not available (either hidden by admin or processing)"
93
+ msgstr ""
94
+
95
+ #: geovisio/utils/pictures.py:431
96
+ msgid "HD Picture file is not available"
97
+ msgstr ""
98
+
99
+ #: geovisio/utils/pictures.py:450
100
+ msgid "Picture derivates file are not available"
101
+ msgstr ""
102
+
103
+ #: geovisio/utils/pictures.py:467 geovisio/web/pictures.py:59
104
+ #: geovisio/web/pictures.py:108 geovisio/web/pictures.py:226
105
+ msgid "Unable to read picture on filesystem"
106
+ msgstr ""
107
+
108
+ #: geovisio/utils/sequences.py:372
109
+ msgid ""
110
+ "Sort by file date is not possible on this sequence (no file date "
111
+ "information available on pictures)"
112
+ msgstr ""
113
+
114
+ #: geovisio/utils/sequences.py:391
115
+ #, python-format
116
+ msgid ""
117
+ "Sort using %(sort)s is not possible on this sequence, picture %(pic)s is "
118
+ "missing mandatory metadata"
119
+ msgstr ""
120
+
121
+ #: geovisio/utils/tokens.py:43
122
+ msgid "JWT token signature does not match"
123
+ msgstr ""
124
+
125
+ #: geovisio/utils/tokens.py:59
126
+ msgid "Token does not exist anymore"
127
+ msgstr ""
128
+
129
+ #: geovisio/utils/tokens.py:63
130
+ msgid ""
131
+ "Token not yet claimed, this token cannot be used yet. Either claim this "
132
+ "token or generate a new one"
133
+ msgstr ""
134
+
135
+ #: geovisio/utils/upload_set.py:143 geovisio/web/params.py:359
136
+ msgid "Unsupported filter parameter"
137
+ msgstr ""
138
+
139
+ #: geovisio/web/auth.py:62
140
+ msgid "Impossible to finish authentication flow"
141
+ msgstr ""
142
+
143
+ #: geovisio/web/auth.py:66
144
+ msgid ""
145
+ "You can try to clear your cookies and retry. If the problem persists, "
146
+ "contact your instance administrator."
147
+ msgstr ""
148
+
149
+ #: geovisio/web/collections.py:263
150
+ #, python-format
151
+ msgid "There is no collection created after %(d)s"
152
+ msgstr ""
153
+
154
+ #: geovisio/web/collections.py:265
155
+ #, python-format
156
+ msgid "There is no collection created before %(d)s"
157
+ msgstr ""
158
+
159
+ #: geovisio/web/collections.py:372 geovisio/web/items.py:372
160
+ msgid "Collection doesn't exist"
161
+ msgstr ""
162
+
163
+ #: geovisio/web/collections.py:432
164
+ msgid "Impossible to find a thumbnail for the collection"
165
+ msgstr ""
166
+
167
+ #: geovisio/web/collections.py:545 geovisio/web/items.py:1142
168
+ msgid ""
169
+ "Picture visibility parameter (visible) should be either unset, true or "
170
+ "false"
171
+ msgstr ""
172
+
173
+ #: geovisio/web/collections.py:551
174
+ msgid ""
175
+ "Sequence title is not valid, should be a string with a max of 250 "
176
+ "characters"
177
+ msgstr ""
178
+
179
+ #: geovisio/web/collections.py:557
180
+ msgid "Sort order parameter is invalid"
181
+ msgstr ""
182
+
183
+ #: geovisio/web/collections.py:568
184
+ msgid ""
185
+ "Relative heading is not valid, should be an integer in degrees from -180 "
186
+ "to 180"
187
+ msgstr ""
188
+
189
+ #: geovisio/web/collections.py:585
190
+ #, python-format
191
+ msgid "Sequence %(c)s wasn't found in database"
192
+ msgstr ""
193
+
194
+ #: geovisio/web/collections.py:589
195
+ msgid "You're not authorized to edit this sequence"
196
+ msgstr ""
197
+
198
+ #: geovisio/web/collections.py:598
199
+ #, python-format
200
+ msgid "Sequence %(c)s is in %(s)s state, its visibility can't be changed for now"
201
+ msgstr ""
202
+
203
+ #: geovisio/web/collections.py:697
204
+ #, python-format
205
+ msgid "Collection %(c)s wasn't found in database"
206
+ msgstr ""
207
+
208
+ #: geovisio/web/collections.py:792
209
+ msgid "Sequence doesn't exists"
210
+ msgstr ""
211
+
212
+ #: geovisio/web/collections.py:937 geovisio/web/stac.py:340
213
+ #, python-format
214
+ msgid "Impossible to find user %(u)s"
215
+ msgstr ""
216
+
217
+ #: geovisio/web/collections.py:968 geovisio/web/stac.py:350
218
+ #, python-format
219
+ msgid "No data loaded for user %(u)s"
220
+ msgstr ""
221
+
222
+ #: geovisio/web/collections.py:970
223
+ msgid "No matching sequences found"
224
+ msgstr ""
225
+
226
+ #: geovisio/web/items.py:335
227
+ msgid "limit parameter should be an integer between 1 and 10000"
228
+ msgstr ""
229
+
230
+ #: geovisio/web/items.py:337
231
+ msgid "limit parameter should be a valid, positive integer (between 1 and 10000)"
232
+ msgstr ""
233
+
234
+ #: geovisio/web/items.py:342
235
+ msgid "`startAfterRank` and `withPicture` are mutually exclusive parameters"
236
+ msgstr ""
237
+
238
+ #: geovisio/web/items.py:349
239
+ msgid "startAfterRank parameter should be a positive integer (starting from 1)"
240
+ msgstr ""
241
+
242
+ #: geovisio/web/items.py:351
243
+ msgid "startAfterRank parameter should be a valid, positive integer"
244
+ msgstr ""
245
+
246
+ #: geovisio/web/items.py:378
247
+ #, python-format
248
+ msgid "No more items in this collection (last available rank is %(r)s)"
249
+ msgstr ""
250
+
251
+ #: geovisio/web/items.py:388
252
+ #, python-format
253
+ msgid "Picture with id %(p)s does not exists"
254
+ msgstr ""
255
+
256
+ #: geovisio/web/items.py:674
257
+ msgid "Item doesn't exist"
258
+ msgstr ""
259
+
260
+ #: geovisio/web/items.py:733
261
+ msgid "Search using POST method should have a JSON body"
262
+ msgstr ""
263
+
264
+ #: geovisio/web/items.py:742
265
+ msgid "Parameter limit must be either empty or a number between 1 and 10000"
266
+ msgstr ""
267
+
268
+ #: geovisio/web/items.py:798
269
+ msgid ""
270
+ "Parameter place_fov_tolerance must be either empty or a number between 2 "
271
+ "and 180"
272
+ msgstr ""
273
+
274
+ #: geovisio/web/items.py:820
275
+ msgid ""
276
+ "Parameter intersects should contain a valid GeoJSON Geometry (not a "
277
+ "Feature)"
278
+ msgstr ""
279
+
280
+ #: geovisio/web/items.py:836
281
+ msgid "Parameter ids should be a JSON array of strings"
282
+ msgstr ""
283
+
284
+ #: geovisio/web/items.py:848
285
+ msgid "Parameter collections should be a JSON array of strings"
286
+ msgstr ""
287
+
288
+ #: geovisio/web/items.py:859
289
+ msgid "Picture doesn't exist"
290
+ msgstr ""
291
+
292
+ #: geovisio/web/items.py:962 geovisio/web/upload_set.py:419
293
+ msgid "Content type should be multipart/form-data"
294
+ msgstr ""
295
+
296
+ #: geovisio/web/items.py:966
297
+ msgid "Missing \"position\" parameter"
298
+ msgstr ""
299
+
300
+ #: geovisio/web/items.py:973
301
+ msgid "Position in sequence should be a positive integer"
302
+ msgstr ""
303
+
304
+ #: geovisio/web/items.py:987 geovisio/web/upload_set.py:312
305
+ msgid ""
306
+ "Longitude cannot be overridden alone, override_latitude also needs to be "
307
+ "set"
308
+ msgstr ""
309
+
310
+ #: geovisio/web/items.py:989 geovisio/web/upload_set.py:314
311
+ msgid ""
312
+ "Latitude cannot be overridden alone, override_longitude also needs to be "
313
+ "set"
314
+ msgstr ""
315
+
316
+ #: geovisio/web/items.py:990 geovisio/web/upload_set.py:287
317
+ #, python-format
318
+ msgid "For parameter `override_longitude`, `%(v)s` is not a valid longitude"
319
+ msgstr ""
320
+
321
+ #: geovisio/web/items.py:991 geovisio/web/upload_set.py:292
322
+ #, python-format
323
+ msgid "For parameter `override_latitude`, `%(v)s` is not a valid latitude"
324
+ msgstr ""
325
+
326
+ #: geovisio/web/items.py:1010
327
+ msgid "Picture blur status should be either unset, true or false"
328
+ msgstr ""
329
+
330
+ #: geovisio/web/items.py:1014
331
+ msgid "No picture file was sent"
332
+ msgstr ""
333
+
334
+ #: geovisio/web/items.py:1020 geovisio/web/upload_set.py:337
335
+ msgid "Picture file is either missing or in an unsupported format (should be jpg)"
336
+ msgstr ""
337
+
338
+ #: geovisio/web/items.py:1027
339
+ #, python-format
340
+ msgid "Sequence %(s)s wasn't found in database"
341
+ msgstr ""
342
+
343
+ #: geovisio/web/items.py:1061
344
+ msgid "Picture at given position already exist"
345
+ msgstr ""
346
+
347
+ #: geovisio/web/items.py:1063 geovisio/web/upload_set.py:492
348
+ msgid "Impossible to parse picture metadata"
349
+ msgstr ""
350
+
351
+ #: geovisio/web/items.py:1071 geovisio/web/upload_set.py:500
352
+ msgid "Picture wasn't correctly saved in filesystem"
353
+ msgstr ""
354
+
355
+ #: geovisio/web/items.py:1154
356
+ msgid ""
357
+ "Heading is not valid, should be an integer in degrees from 0° to 360°. "
358
+ "North is 0°, East = 90°, South = 180° and West = 270°."
359
+ msgstr ""
360
+
361
+ #: geovisio/web/items.py:1171 geovisio/web/items.py:1262
362
+ #, python-format
363
+ msgid "Picture %(p)s wasn't found in database"
364
+ msgstr ""
365
+
366
+ #: geovisio/web/items.py:1175 geovisio/web/items.py:1266
367
+ msgid "You're not authorized to edit this picture"
368
+ msgstr ""
369
+
370
+ #: geovisio/web/items.py:1185
371
+ #, python-format
372
+ msgid "Picture %(p)s is in %(s)s state, its visibility can't be changed for now"
373
+ msgstr ""
374
+
375
+ #: geovisio/web/map.py:124
376
+ msgid "One of required parameter is empty"
377
+ msgstr ""
378
+
379
+ #: geovisio/web/map.py:126
380
+ msgid "Tile format is invalid, should be either pbf or mvt"
381
+ msgstr ""
382
+
383
+ #: geovisio/web/map.py:130 geovisio/web/map.py:132
384
+ msgid "X or Y parameter is out of bounds"
385
+ msgstr ""
386
+
387
+ #: geovisio/web/map.py:134
388
+ msgid "Z parameter is out of bounds (should be 0-15)"
389
+ msgstr ""
390
+
391
+ #: geovisio/web/map.py:145
392
+ msgid "Impossible to get tile"
393
+ msgstr ""
394
+
395
+ #: geovisio/web/params.py:101
396
+ msgid "Parameter datetime should contain one or two dates"
397
+ msgstr ""
398
+
399
+ #: geovisio/web/params.py:171
400
+ msgid ""
401
+ "Parameter bbox must contain valid longitude (-180 to 180) and latitude "
402
+ "(-90 to 90) values"
403
+ msgstr ""
404
+
405
+ #: geovisio/web/params.py:176
406
+ msgid "Parameter bbox must be in format [minX, minY, maxX, maxY]"
407
+ msgstr ""
408
+
409
+ #: geovisio/web/params.py:213
410
+ #, python-format
411
+ msgid "Parameter %(p)s must be coordinates in lat,lon format"
412
+ msgstr ""
413
+
414
+ #: geovisio/web/params.py:216
415
+ #, python-format
416
+ msgid "Longitude in parameter %(p)s is not valid (should be between -180 and 180)"
417
+ msgstr ""
418
+
419
+ #: geovisio/web/params.py:217
420
+ #, python-format
421
+ msgid "Latitude in parameter %(p)s is not valid (should be between -90 and 90)"
422
+ msgstr ""
423
+
424
+ #: geovisio/web/params.py:240 geovisio/web/params.py:253
425
+ #, python-format
426
+ msgid ""
427
+ "Parameter %(p)s is invalid (should be a distance range in meters like "
428
+ "\"5-15\")"
429
+ msgstr ""
430
+
431
+ #: geovisio/web/params.py:246
432
+ #, python-format
433
+ msgid "Parameter %(p)s has a min value greater than its max value"
434
+ msgstr ""
435
+
436
+ #: geovisio/web/params.py:320
437
+ #, python-format
438
+ msgid "Parameter %(p)s must be a valid list"
439
+ msgstr ""
440
+
441
+ #: geovisio/web/params.py:444
442
+ msgid "Unsupported sortby parameter: invalid column name"
443
+ msgstr ""
444
+
445
+ #: geovisio/web/params.py:452
446
+ msgid "Unsupported sortby parameter: syntax isn't correct"
447
+ msgstr ""
448
+
449
+ #: geovisio/web/params.py:478
450
+ #, python-format
451
+ msgid "limit parameter should be a valid, positive integer (between 1 and %(v)s)"
452
+ msgstr ""
453
+
454
+ #: geovisio/web/params.py:481
455
+ #, python-format
456
+ msgid "limit parameter should be an integer between 1 and %(v)s"
457
+ msgstr ""
458
+
459
+ #: geovisio/web/params.py:492
460
+ msgid "longitude needs to be between -180 and 180"
461
+ msgstr ""
462
+
463
+ #: geovisio/web/params.py:502
464
+ msgid "latitude needs to be between -90 and 90"
465
+ msgstr ""
466
+
467
+ #: geovisio/web/pictures.py:205
468
+ msgid "Tiles are not available for flat pictures"
469
+ msgstr ""
470
+
471
+ #: geovisio/web/pictures.py:210
472
+ msgid "Column parameter is invalid, should be an integer"
473
+ msgstr ""
474
+
475
+ #: geovisio/web/pictures.py:213
476
+ msgid "Column parameter is invalid"
477
+ msgstr ""
478
+
479
+ #: geovisio/web/pictures.py:218
480
+ msgid "Row parameter is invalid, should be an integer"
481
+ msgstr ""
482
+
483
+ #: geovisio/web/pictures.py:221
484
+ msgid "Row parameter is invalid"
485
+ msgstr ""
486
+
487
+ #: geovisio/web/rss.py:22
488
+ #, python-format
489
+ msgid "Sequence \"%(name)s\" by \"%(user)s\" was captured on %(date)s."
490
+ msgstr ""
491
+
492
+ #: geovisio/web/rss.py:40
493
+ msgid "View on the map"
494
+ msgstr ""
495
+
496
+ #: geovisio/web/rss.py:40
497
+ msgid "JSON metadata"
498
+ msgstr ""
499
+
500
+ #: geovisio/web/rss.py:49
501
+ msgid "GeoVisio collections"
502
+ msgstr ""
503
+
504
+ #: geovisio/web/rss.py:51
505
+ msgid "List of collections from this GeoVisio server"
506
+ msgstr ""
507
+
508
+ #: geovisio/web/tokens.py:101 geovisio/web/tokens.py:144
509
+ #: geovisio/web/tokens.py:232
510
+ msgid "Impossible to find token"
511
+ msgstr ""
512
+
513
+ #: geovisio/web/tokens.py:182
514
+ msgid "Impossible to generate a new token"
515
+ msgstr ""
516
+
517
+ #: geovisio/web/tokens.py:237
518
+ msgid "Token already claimed by another account"
519
+ msgstr ""
520
+
521
+ #: geovisio/web/upload_set.py:145
522
+ msgid "Impossible to create an UploadSet"
523
+ msgstr ""
524
+
525
+ #: geovisio/web/upload_set.py:147
526
+ msgid "Parameter for creating an UploadSet should be a valid JSON"
527
+ msgstr ""
528
+
529
+ #: geovisio/web/upload_set.py:193 geovisio/web/upload_set.py:676
530
+ msgid "UploadSet doesn't exist"
531
+ msgstr ""
532
+
533
+ #: geovisio/web/upload_set.py:241 geovisio/web/upload_set.py:342
534
+ msgid "Impossible to parse parameters"
535
+ msgstr ""
536
+
537
+ #: geovisio/web/upload_set.py:279
538
+ msgid ""
539
+ "Parameter `override_capture_time` is not a valid datetime, it should be "
540
+ "an iso formated datetime (like '2017-07-21T17:32:28Z')."
541
+ msgstr ""
542
+
543
+ #: geovisio/web/upload_set.py:331
544
+ msgid "No file was sent"
545
+ msgstr ""
546
+
547
+ #: geovisio/web/upload_set.py:428 geovisio/web/upload_set.py:653
548
+ #, python-format
549
+ msgid "UploadSet %(u)s does not exist"
550
+ msgstr ""
551
+
552
+ #: geovisio/web/upload_set.py:432
553
+ msgid "You're not authorized to add picture to this collection"
554
+ msgstr ""
555
+
556
+ #: geovisio/web/upload_set.py:436
557
+ msgid "The upload set is already completed, files cannot be pushed to it"
558
+ msgstr ""
559
+
560
+ #: geovisio/web/upload_set.py:463
561
+ msgid "The item has already been added to this upload set"
562
+ msgstr ""
563
+
564
+ #: geovisio/web/upload_set.py:468
565
+ msgid "The same picture has already been sent in a past upload"
566
+ msgstr ""
567
+
568
+ #: geovisio/web/upload_set.py:556
569
+ msgid "UploadSet doesn't exists"
570
+ msgstr ""
571
+
572
+ #: geovisio/web/upload_set.py:657
573
+ msgid "You're not authorized to complete this upload set"
574
+ msgstr ""
575
+
576
+ #: geovisio/web/upload_set.py:662
577
+ msgid ""
578
+ "The upload set is already completed, cannot complete it several times for"
579
+ " the moment"
580
+ msgstr ""
581
+
582
+ #: geovisio/web/users.py:82
583
+ msgid "Impossible to find user"
584
+ msgstr ""
585
+
586
+ #: geovisio/web/users.py:158
587
+ msgid ""
588
+ "No search parameter given, you should provide `q=<pattern>` as query "
589
+ "parameter"
590
+ msgstr ""
591
+
592
+ #: geovisio/web/utils.py:51
593
+ msgid "No default account defined, please contact your instance administrator"
594
+ msgstr ""
@@ -1 +1 @@
1
- from . import pictures, auth, time, tokens, filesystems, sequences
1
+ from . import db, pictures, auth, time, tokens, filesystems, sequences