geovisio 2.7.0__py3-none-any.whl → 2.8.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. geovisio/__init__.py +11 -3
  2. geovisio/admin_cli/__init__.py +3 -1
  3. geovisio/admin_cli/cleanup.py +2 -2
  4. geovisio/admin_cli/user.py +75 -0
  5. geovisio/config_app.py +87 -4
  6. geovisio/templates/main.html +2 -2
  7. geovisio/templates/viewer.html +3 -3
  8. geovisio/translations/da/LC_MESSAGES/messages.mo +0 -0
  9. geovisio/translations/da/LC_MESSAGES/messages.po +850 -0
  10. geovisio/translations/de/LC_MESSAGES/messages.mo +0 -0
  11. geovisio/translations/de/LC_MESSAGES/messages.po +235 -2
  12. geovisio/translations/el/LC_MESSAGES/messages.mo +0 -0
  13. geovisio/translations/el/LC_MESSAGES/messages.po +685 -0
  14. geovisio/translations/en/LC_MESSAGES/messages.mo +0 -0
  15. geovisio/translations/en/LC_MESSAGES/messages.po +244 -153
  16. geovisio/translations/eo/LC_MESSAGES/messages.mo +0 -0
  17. geovisio/translations/eo/LC_MESSAGES/messages.po +790 -0
  18. geovisio/translations/es/LC_MESSAGES/messages.mo +0 -0
  19. geovisio/translations/fi/LC_MESSAGES/messages.mo +0 -0
  20. geovisio/translations/fr/LC_MESSAGES/messages.mo +0 -0
  21. geovisio/translations/fr/LC_MESSAGES/messages.po +40 -3
  22. geovisio/translations/hu/LC_MESSAGES/messages.mo +0 -0
  23. geovisio/translations/hu/LC_MESSAGES/messages.po +773 -0
  24. geovisio/translations/it/LC_MESSAGES/messages.mo +0 -0
  25. geovisio/translations/it/LC_MESSAGES/messages.po +875 -0
  26. geovisio/translations/ja/LC_MESSAGES/messages.mo +0 -0
  27. geovisio/translations/ja/LC_MESSAGES/messages.po +719 -0
  28. geovisio/translations/ko/LC_MESSAGES/messages.mo +0 -0
  29. geovisio/translations/messages.pot +225 -148
  30. geovisio/translations/nl/LC_MESSAGES/messages.mo +0 -0
  31. geovisio/translations/nl/LC_MESSAGES/messages.po +24 -16
  32. geovisio/translations/pl/LC_MESSAGES/messages.mo +0 -0
  33. geovisio/translations/pl/LC_MESSAGES/messages.po +727 -0
  34. geovisio/translations/zh_Hant/LC_MESSAGES/messages.mo +0 -0
  35. geovisio/translations/zh_Hant/LC_MESSAGES/messages.po +719 -0
  36. geovisio/utils/auth.py +80 -8
  37. geovisio/utils/link.py +3 -2
  38. geovisio/utils/model_query.py +55 -0
  39. geovisio/utils/pictures.py +29 -62
  40. geovisio/utils/semantics.py +120 -0
  41. geovisio/utils/sequences.py +30 -23
  42. geovisio/utils/tokens.py +5 -3
  43. geovisio/utils/upload_set.py +87 -64
  44. geovisio/utils/website.py +50 -0
  45. geovisio/web/annotations.py +17 -0
  46. geovisio/web/auth.py +9 -5
  47. geovisio/web/collections.py +235 -63
  48. geovisio/web/configuration.py +17 -1
  49. geovisio/web/docs.py +99 -54
  50. geovisio/web/items.py +233 -100
  51. geovisio/web/map.py +129 -31
  52. geovisio/web/pages.py +240 -0
  53. geovisio/web/params.py +17 -0
  54. geovisio/web/prepare.py +165 -0
  55. geovisio/web/stac.py +17 -4
  56. geovisio/web/tokens.py +14 -4
  57. geovisio/web/upload_set.py +19 -10
  58. geovisio/web/users.py +176 -44
  59. geovisio/workers/runner_pictures.py +75 -50
  60. {geovisio-2.7.0.dist-info → geovisio-2.8.0.dist-info}/METADATA +6 -5
  61. geovisio-2.8.0.dist-info/RECORD +89 -0
  62. {geovisio-2.7.0.dist-info → geovisio-2.8.0.dist-info}/WHEEL +1 -1
  63. geovisio-2.7.0.dist-info/RECORD +0 -66
  64. {geovisio-2.7.0.dist-info → geovisio-2.8.0.dist-info}/LICENSE +0 -0
@@ -8,26 +8,29 @@ msgstr ""
8
8
  "Project-Id-Version: PROJECT VERSION\n"
9
9
  "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10
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"
11
+ "PO-Revision-Date: 2024-11-14 23:10+0000\n"
12
+ "Last-Translator: BrechtD <brecht.devriese92@gmail.com>\n"
13
+ "Language-Team: Dutch <http://weblate.panoramax.xyz/projects/panoramax/api/nl/"
14
+ ">\n"
14
15
  "Language: nl\n"
15
16
  "MIME-Version: 1.0\n"
16
17
  "Content-Type: text/plain; charset=utf-8\n"
17
18
  "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
+ "X-Generator: Weblate 5.4.3\n"
18
21
  "Generated-By: Babel 2.15.0\n"
19
22
 
20
23
  #: geovisio/templates/main.html:45
21
24
  msgid "Simple 360° geolocated pictures hosting"
22
- msgstr ""
25
+ msgstr "Eenvoudige hosting van 360°-geolokaliseerde foto's"
23
26
 
24
27
  #: geovisio/templates/main.html:47
25
28
  msgid "Full page version"
26
- msgstr ""
29
+ msgstr "Volledige pagina"
27
30
 
28
31
  #: geovisio/templates/main.html:51
29
32
  msgid "Viewer"
30
- msgstr ""
33
+ msgstr "Viewee"
31
34
 
32
35
  #: geovisio/templates/main.html:52
33
36
  msgid "Embed pre-configured viewer"
@@ -36,42 +39,43 @@ msgstr ""
36
39
  #: geovisio/templates/main.html:53
37
40
  msgid "Easiest way to have a working GeoVisio viewer on your website"
38
41
  msgstr ""
42
+ "Gemakkelijkste manier om een GeoVisio viewer op uw webpagina te plaatsen"
39
43
 
40
44
  #: geovisio/templates/main.html:59
41
45
  msgid "Use JS library"
42
- msgstr ""
46
+ msgstr "Gebruik JS bibliotheek"
43
47
 
44
48
  #: geovisio/templates/main.html:60
45
49
  msgid "A completely configurable viewer for your website"
46
- msgstr ""
50
+ msgstr "Een compleet configureerbare viewer voor uw website"
47
51
 
48
52
  #: geovisio/templates/main.html:82
49
53
  msgid "Links"
50
- msgstr ""
54
+ msgstr "Links"
51
55
 
52
56
  #: geovisio/templates/main.html:84
53
57
  msgid "Pictures viewer"
54
- msgstr ""
58
+ msgstr "Foto viewer"
55
59
 
56
60
  #: geovisio/templates/main.html:86
57
61
  msgid "API docs"
58
- msgstr ""
62
+ msgstr "API documentatie"
59
63
 
60
64
  #: geovisio/templates/main.html:88
61
65
  msgid "JS library docs"
62
- msgstr ""
66
+ msgstr "JS bibliotheek documentatie"
63
67
 
64
68
  #: geovisio/templates/main.html:90
65
69
  msgid "Repositories"
66
- msgstr ""
70
+ msgstr "Archief"
67
71
 
68
72
  #: geovisio/templates/viewer.html:22
69
73
  msgid "You need to enable JavaScript to run this app."
70
- msgstr ""
74
+ msgstr "U moet JavaScript toestaan om deze te kunnen gebruiken."
71
75
 
72
76
  #: geovisio/utils/auth.py:164
73
77
  msgid "Authentication is mandatory"
74
- msgstr ""
78
+ msgstr "Authenticatie is verplicht"
75
79
 
76
80
  #: geovisio/utils/auth.py:292
77
81
  msgid "Only Bearer token are supported"
@@ -134,7 +138,7 @@ msgstr ""
134
138
 
135
139
  #: geovisio/utils/upload_set.py:143 geovisio/web/params.py:359
136
140
  msgid "Unsupported filter parameter"
137
- msgstr ""
141
+ msgstr "Filter parameter is niet ondersteund"
138
142
 
139
143
  #: geovisio/web/auth.py:62
140
144
  msgid "Impossible to finish authentication flow"
@@ -592,3 +596,7 @@ msgstr ""
592
596
  #: geovisio/web/utils.py:51
593
597
  msgid "No default account defined, please contact your instance administrator"
594
598
  msgstr ""
599
+
600
+ #: geovisio/utils/excluded_areas.py:82
601
+ msgid "Impossible to find excluded area"
602
+ msgstr "Onmogelijk om uitgesloten gebied te vinden"