geovisio 2.10.0__py3-none-any.whl → 2.11.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 (58) hide show
  1. geovisio/__init__.py +3 -1
  2. geovisio/admin_cli/user.py +7 -2
  3. geovisio/config_app.py +21 -7
  4. geovisio/translations/be/LC_MESSAGES/messages.mo +0 -0
  5. geovisio/translations/be/LC_MESSAGES/messages.po +886 -0
  6. geovisio/translations/da/LC_MESSAGES/messages.mo +0 -0
  7. geovisio/translations/da/LC_MESSAGES/messages.po +96 -5
  8. geovisio/translations/de/LC_MESSAGES/messages.mo +0 -0
  9. geovisio/translations/de/LC_MESSAGES/messages.po +171 -132
  10. geovisio/translations/en/LC_MESSAGES/messages.mo +0 -0
  11. geovisio/translations/en/LC_MESSAGES/messages.po +169 -146
  12. geovisio/translations/eo/LC_MESSAGES/messages.mo +0 -0
  13. geovisio/translations/eo/LC_MESSAGES/messages.po +3 -2
  14. geovisio/translations/fr/LC_MESSAGES/messages.mo +0 -0
  15. geovisio/translations/fr/LC_MESSAGES/messages.po +3 -2
  16. geovisio/translations/it/LC_MESSAGES/messages.mo +0 -0
  17. geovisio/translations/it/LC_MESSAGES/messages.po +1 -1
  18. geovisio/translations/messages.pot +159 -138
  19. geovisio/translations/nl/LC_MESSAGES/messages.mo +0 -0
  20. geovisio/translations/nl/LC_MESSAGES/messages.po +44 -2
  21. geovisio/translations/oc/LC_MESSAGES/messages.mo +0 -0
  22. geovisio/translations/oc/LC_MESSAGES/messages.po +9 -6
  23. geovisio/translations/pt/LC_MESSAGES/messages.mo +0 -0
  24. geovisio/translations/pt/LC_MESSAGES/messages.po +944 -0
  25. geovisio/translations/pt_BR/LC_MESSAGES/messages.mo +0 -0
  26. geovisio/translations/pt_BR/LC_MESSAGES/messages.po +942 -0
  27. geovisio/translations/sv/LC_MESSAGES/messages.mo +0 -0
  28. geovisio/translations/sv/LC_MESSAGES/messages.po +1 -1
  29. geovisio/translations/tr/LC_MESSAGES/messages.mo +0 -0
  30. geovisio/translations/tr/LC_MESSAGES/messages.po +927 -0
  31. geovisio/translations/uk/LC_MESSAGES/messages.mo +0 -0
  32. geovisio/translations/uk/LC_MESSAGES/messages.po +920 -0
  33. geovisio/utils/annotations.py +7 -4
  34. geovisio/utils/auth.py +33 -0
  35. geovisio/utils/cql2.py +20 -3
  36. geovisio/utils/pictures.py +16 -18
  37. geovisio/utils/sequences.py +104 -75
  38. geovisio/utils/upload_set.py +20 -10
  39. geovisio/utils/users.py +18 -0
  40. geovisio/web/annotations.py +96 -3
  41. geovisio/web/collections.py +169 -76
  42. geovisio/web/configuration.py +12 -0
  43. geovisio/web/docs.py +17 -3
  44. geovisio/web/items.py +129 -72
  45. geovisio/web/map.py +92 -54
  46. geovisio/web/pages.py +48 -4
  47. geovisio/web/params.py +56 -11
  48. geovisio/web/pictures.py +3 -3
  49. geovisio/web/prepare.py +4 -2
  50. geovisio/web/queryables.py +57 -0
  51. geovisio/web/stac.py +8 -2
  52. geovisio/web/upload_set.py +83 -26
  53. geovisio/web/users.py +85 -4
  54. geovisio/web/utils.py +24 -6
  55. {geovisio-2.10.0.dist-info → geovisio-2.11.0.dist-info}/METADATA +3 -2
  56. {geovisio-2.10.0.dist-info → geovisio-2.11.0.dist-info}/RECORD +58 -46
  57. {geovisio-2.10.0.dist-info → geovisio-2.11.0.dist-info}/WHEEL +0 -0
  58. {geovisio-2.10.0.dist-info → geovisio-2.11.0.dist-info}/licenses/LICENSE +0 -0
@@ -8,7 +8,7 @@ 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: 2025-06-20 16:17+0000\n"
11
+ "PO-Revision-Date: 2025-11-25 18:15+0000\n"
12
12
  "Last-Translator: Luna <luna@queerthoughts.org>\n"
13
13
  "Language-Team: Dutch <http://weblate.panoramax.xyz/projects/panoramax/api/nl/"
14
14
  ">\n"
@@ -227,7 +227,7 @@ msgstr "Sequentie %(c)s werd niet gevonden in de database"
227
227
 
228
228
  #: geovisio/web/collections.py:792
229
229
  msgid "Sequence doesn't exists"
230
- msgstr "Reeks bestaat niet"
230
+ msgstr "Sequentie bestaat niet"
231
231
 
232
232
  #: geovisio/web/collections.py:937 geovisio/web/stac.py:340
233
233
  #, python-format
@@ -935,3 +935,45 @@ msgstr ""
935
935
  #: geovisio/web/items.py:1163
936
936
  msgid "There is already a picture with the same index in the sequence"
937
937
  msgstr "Er is al een foto met dezelfde index in de sequentie"
938
+
939
+ #: geovisio/web/params.py:359
940
+ msgid ""
941
+ "The status filter is not supported anymore, use the `show_deleted` parameter "
942
+ "instead if you need to query deleted collections"
943
+ msgstr ""
944
+ "De statusfilter wordt niet meer ondersteund, gebruik in de plaats de "
945
+ "`toon_verwijderd`-parameter indien je verwijderde collecties moet doorzoeken"
946
+
947
+ #: geovisio/web/params.py:354
948
+ msgid ""
949
+ "The status filter is not supported anymore, use the `visibility` filter "
950
+ "instead"
951
+ msgstr ""
952
+ "De statusfilter wordt niet meer ondersteund, gebruik in de plaats de "
953
+ "`zichtbaarheid`-filter"
954
+
955
+ #: geovisio/web/collections.py:704 geovisio/web/items.py:1350
956
+ msgid "Visibility and visible parameters are mutually exclusive parameters"
957
+ msgstr "Zichtbaarheid en zichtbare parameters kunnen niet samen gebruikt worden"
958
+
959
+ #: geovisio/web/collections.py:718 geovisio/web/items.py:1364
960
+ #: geovisio/web/upload_set.py:104 geovisio/web/upload_set.py:171
961
+ #: geovisio/web/users.py:364
962
+ msgid ""
963
+ "The logged-only visibility is not allowed on this instance since anybody can "
964
+ "create an account"
965
+ msgstr ""
966
+ "De “alleen ingelogd”-zichtbaarheid is niet toegelaten op deze instantie, "
967
+ "aangezien iedereen een account kan aanmaken"
968
+
969
+ #: geovisio/utils/pictures.py:464
970
+ msgid "Picture is not available (currently in processing)"
971
+ msgstr "Afbeelding is niet beschikbaar (momenteel in verwerking)"
972
+
973
+ #: geovisio/utils/upload_set.py:730
974
+ msgid "Impossible to add the picture to this uploadset"
975
+ msgstr "Afbeelding kan niet worden toegevoegd aan deze uploadset"
976
+
977
+ #: geovisio/web/collections.py:316
978
+ msgid "RSS format does not support deleted sequences"
979
+ msgstr "Het RSS-formaat ondersteund geen verwijderde sequenties"
@@ -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: 2025-06-16 14:08+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: 2025-08-27 17:13+0000\n"
12
+ "Last-Translator: amelie crepin <amel.crepin@laposte.net>\n"
13
+ "Language-Team: Occitan <http://weblate.panoramax.xyz/projects/panoramax/api/"
14
+ "oc/>\n"
14
15
  "Language: oc\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.17.0\n"
19
22
 
20
23
  #: geovisio/templates/main.html:45
21
24
  msgid "Simple 360° geolocated pictures hosting"
22
- msgstr ""
25
+ msgstr "Estocatge simple de fòtos 360° geolocalizadas"
23
26
 
24
27
  #: geovisio/templates/main.html:47
25
28
  msgid "Full page version"
26
- msgstr ""
29
+ msgstr "Version de pagina plena"
27
30
 
28
31
  #: geovisio/templates/main.html:51
29
32
  msgid "Viewer"
30
- msgstr ""
33
+ msgstr "Visionària"
31
34
 
32
35
  #: geovisio/templates/main.html:52
33
36
  msgid "Embed pre-configured viewer"