wbcore 1.59.15__py2.py3-none-any.whl → 1.60.0__py2.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.
- wbcore/admin.py +0 -1
- wbcore/configurations/configurations/apps.py +1 -0
- wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po +17 -18
- wbcore/contrib/agenda/locale/en/LC_MESSAGES/django.po +17 -17
- wbcore/contrib/agenda/locale/fr/LC_MESSAGES/django.po +17 -18
- wbcore/contrib/agenda/models/calendar_item.py +9 -0
- wbcore/contrib/authentication/authentication.py +1 -3
- wbcore/contrib/authentication/configurations.py +0 -1
- wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po +47 -48
- wbcore/contrib/authentication/locale/en/LC_MESSAGES/django.po +47 -47
- wbcore/contrib/authentication/locale/fr/LC_MESSAGES/django.po +47 -48
- wbcore/contrib/authentication/models/users.py +18 -0
- wbcore/contrib/color/admin.py +1 -0
- wbcore/contrib/color/factories.py +1 -0
- wbcore/contrib/content_type/__init__.py +0 -0
- wbcore/contrib/content_type/apps.py +5 -0
- wbcore/{filters/fields/content_type.py → contrib/content_type/filters.py} +18 -0
- wbcore/{content_type → contrib/content_type}/serializers.py +2 -2
- wbcore/contrib/content_type/urls.py +15 -0
- wbcore/contrib/directory/factories/contacts.py +1 -0
- wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po +307 -271
- wbcore/contrib/directory/locale/en/LC_MESSAGES/django.po +305 -268
- wbcore/contrib/directory/locale/fr/LC_MESSAGES/django.po +305 -269
- wbcore/contrib/directory/migrations/0015_alter_emailcontact_address_and_more.py +47 -0
- wbcore/contrib/directory/models/contacts.py +15 -22
- wbcore/contrib/directory/models/entries.py +82 -2
- wbcore/contrib/directory/models/relationships.py +5 -9
- wbcore/contrib/directory/tests/test_models.py +5 -3
- wbcore/contrib/directory/viewsets/endpoints/__init__.py +2 -0
- wbcore/contrib/directory/viewsets/endpoints/entries.py +10 -0
- wbcore/contrib/directory/viewsets/entries.py +9 -2
- wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po +26 -23
- wbcore/contrib/documents/locale/en/LC_MESSAGES/django.po +26 -22
- wbcore/contrib/documents/locale/fr/LC_MESSAGES/django.po +26 -23
- wbcore/contrib/documents/serializers/document_model_relationships.py +1 -1
- wbcore/contrib/documents/viewsets/documents.py +1 -1
- wbcore/contrib/guardian/__init__.py +0 -0
- wbcore/contrib/guardian/filters.py +1 -0
- wbcore/contrib/guardian/models/mixins.py +1 -0
- wbcore/contrib/guardian/tasks.py +1 -0
- wbcore/contrib/guardian/tests/test_model_mixins.py +1 -0
- wbcore/contrib/guardian/tests/test_tasks.py +1 -0
- wbcore/contrib/guardian/tests/test_utils.py +1 -0
- wbcore/contrib/guardian/tests/test_viewsets.py +1 -0
- wbcore/contrib/guardian/urls.py +1 -0
- wbcore/contrib/guardian/utils.py +1 -0
- wbcore/contrib/guardian/viewsets/configs/buttons.py +1 -0
- wbcore/contrib/guardian/viewsets/configs/endpoints.py +1 -0
- wbcore/contrib/guardian/viewsets/viewsets.py +1 -0
- wbcore/contrib/io/locale/de/LC_MESSAGES/django.po +28 -28
- wbcore/contrib/io/locale/en/LC_MESSAGES/django.po +28 -28
- wbcore/contrib/io/locale/fr/LC_MESSAGES/django.po +28 -28
- wbcore/contrib/notifications/backends/firebase/backends.py +2 -2
- wbcore/contrib/notifications/dispatch.py +1 -3
- wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po +2 -3
- wbcore/contrib/notifications/locale/en/LC_MESSAGES/django.po +2 -2
- wbcore/contrib/notifications/locale/fr/LC_MESSAGES/django.po +2 -3
- wbcore/contrib/notifications/models/notification_types.py +5 -7
- wbcore/contrib/notifications/models/notifications.py +2 -2
- wbcore/contrib/notifications/models/tokens.py +2 -2
- wbcore/contrib/tags/filters.py +1 -1
- wbcore/contrib/tags/serializers.py +2 -2
- wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po +75 -76
- wbcore/contrib/workflow/locale/en/LC_MESSAGES/django.po +75 -75
- wbcore/contrib/workflow/locale/fr/LC_MESSAGES/django.po +75 -76
- wbcore/contrib/workflow/serializers/process.py +4 -4
- wbcore/contrib/workflow/serializers/workflow.py +1 -1
- wbcore/filters/__init__.py +0 -1
- wbcore/filters/fields/__init__.py +0 -1
- wbcore/frontend_user_configuration.py +3 -2
- wbcore/locale/de/LC_MESSAGES/django.po +159 -129
- wbcore/locale/en/LC_MESSAGES/django.po +158 -129
- wbcore/locale/fr/LC_MESSAGES/django.po +159 -129
- wbcore/menus/menus.py +8 -5
- wbcore/metadata/configs/buttons/view_config.py +4 -1
- wbcore/metadata/configs/display/models.py +4 -5
- wbcore/metadata/configs/endpoints.py +7 -5
- wbcore/migrations/0015_delete_genericmodel.py +16 -0
- wbcore/models/base.py +0 -11
- wbcore/release_notes/models.py +2 -4
- wbcore/serializers/fields/fields.py +4 -2
- wbcore/serializers/fields/number.py +9 -0
- wbcore/shares/config.py +2 -2
- wbcore/signals/merge.py +1 -0
- wbcore/test/utils.py +3 -1
- wbcore/tests/test_permissions/test_backend.py +1 -3
- wbcore/tests/test_something.py +2 -2
- wbcore/urls.py +5 -10
- wbcore/utils/models.py +73 -4
- wbcore/utils/views.py +54 -53
- wbcore/viewsets/mixins.py +1 -1
- wbcore/viewsets/viewsets.py +1 -1
- {wbcore-1.59.15.dist-info → wbcore-1.60.0.dist-info}/METADATA +1 -1
- {wbcore-1.59.15.dist-info → wbcore-1.60.0.dist-info}/RECORD +99 -99
- wbcore/content_type/filters.py +0 -20
- wbcore/pandas/__init__.py +0 -53
- wbcore/pandas/fields.py +0 -25
- wbcore/pandas/filterset.py +0 -9
- wbcore/pandas/utils.py +0 -25
- wbcore/pandas/views.py +0 -9
- /wbcore/{content_type → contrib/color}/__init__.py +0 -0
- /wbcore/{content_type → contrib/content_type}/admin.py +0 -0
- /wbcore/{content_type → contrib/content_type}/utils.py +0 -0
- /wbcore/{content_type → contrib/content_type}/viewsets.py +0 -0
- {wbcore-1.59.15.dist-info → wbcore-1.60.0.dist-info}/WHEEL +0 -0
|
@@ -3,12 +3,11 @@
|
|
|
3
3
|
# This file is distributed under the same license as the PACKAGE package.
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
|
-
#, fuzzy
|
|
7
6
|
msgid ""
|
|
8
7
|
msgstr ""
|
|
9
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
9
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date:
|
|
10
|
+
"POT-Creation-Date: 2026-01-16 14:04+0100\n"
|
|
12
11
|
"PO-Revision-Date: 2025-05-30 09:40+0000\n"
|
|
13
12
|
"Language-Team: French (https://app.transifex.com/stainly/teams/171242/fr/)\n"
|
|
14
13
|
"MIME-Version: 1.0\n"
|
|
@@ -23,19 +22,19 @@ msgstr ""
|
|
|
23
22
|
msgid "Valid"
|
|
24
23
|
msgstr ""
|
|
25
24
|
|
|
26
|
-
#: contrib/documents/filters.py:
|
|
25
|
+
#: contrib/documents/filters.py:18
|
|
27
26
|
#: contrib/documents/viewsets/display/shareable_links.py:22
|
|
28
27
|
msgid "Link"
|
|
29
28
|
msgstr ""
|
|
30
29
|
|
|
31
|
-
#: contrib/documents/filters.py:
|
|
30
|
+
#: contrib/documents/filters.py:48
|
|
32
31
|
#: contrib/documents/models/document_types.py:36
|
|
33
32
|
#: contrib/documents/viewsets/menu/documents.py:17
|
|
34
33
|
#: contrib/documents/viewsets/titles/document_types.py:8
|
|
35
34
|
msgid "Document Types"
|
|
36
35
|
msgstr ""
|
|
37
36
|
|
|
38
|
-
#: contrib/documents/filters.py:
|
|
37
|
+
#: contrib/documents/filters.py:68 contrib/documents/filters.py:74
|
|
39
38
|
msgid "Document Count"
|
|
40
39
|
msgstr ""
|
|
41
40
|
|
|
@@ -53,63 +52,63 @@ msgid "Parent"
|
|
|
53
52
|
msgstr ""
|
|
54
53
|
|
|
55
54
|
#: contrib/documents/models/document_types.py:35
|
|
56
|
-
#: contrib/documents/models/documents.py:
|
|
55
|
+
#: contrib/documents/models/documents.py:64
|
|
57
56
|
msgid "Document Type"
|
|
58
57
|
msgstr ""
|
|
59
58
|
|
|
60
|
-
#: contrib/documents/models/documents.py:
|
|
59
|
+
#: contrib/documents/models/documents.py:58
|
|
61
60
|
msgid "Description"
|
|
62
61
|
msgstr ""
|
|
63
62
|
|
|
64
|
-
#: contrib/documents/models/documents.py:
|
|
63
|
+
#: contrib/documents/models/documents.py:59
|
|
65
64
|
msgid "File"
|
|
66
65
|
msgstr ""
|
|
67
66
|
|
|
68
|
-
#: contrib/documents/models/documents.py:
|
|
67
|
+
#: contrib/documents/models/documents.py:66
|
|
69
68
|
#: contrib/documents/serializers/documents.py:11
|
|
70
69
|
msgid "System Created"
|
|
71
70
|
msgstr ""
|
|
72
71
|
|
|
73
|
-
#: contrib/documents/models/documents.py:
|
|
72
|
+
#: contrib/documents/models/documents.py:67
|
|
74
73
|
msgid "System Key"
|
|
75
74
|
msgstr ""
|
|
76
75
|
|
|
77
|
-
#: contrib/documents/models/documents.py:
|
|
78
|
-
#: contrib/documents/viewsets/display/documents.py:
|
|
76
|
+
#: contrib/documents/models/documents.py:69
|
|
77
|
+
#: contrib/documents/viewsets/display/documents.py:19
|
|
79
78
|
msgid "Valid From"
|
|
80
79
|
msgstr ""
|
|
81
80
|
|
|
82
|
-
#: contrib/documents/models/documents.py:
|
|
81
|
+
#: contrib/documents/models/documents.py:70
|
|
83
82
|
#: contrib/documents/models/shareable_links.py:16
|
|
84
|
-
#: contrib/documents/viewsets/display/documents.py:
|
|
83
|
+
#: contrib/documents/viewsets/display/documents.py:20
|
|
85
84
|
#: contrib/documents/viewsets/display/shareable_links.py:20
|
|
86
85
|
msgid "Valid Until"
|
|
87
86
|
msgstr ""
|
|
88
87
|
|
|
89
|
-
#: contrib/documents/models/documents.py:
|
|
88
|
+
#: contrib/documents/models/documents.py:72
|
|
90
89
|
msgid "Created"
|
|
91
90
|
msgstr ""
|
|
92
91
|
|
|
93
|
-
#: contrib/documents/models/documents.py:
|
|
94
|
-
#: contrib/documents/viewsets/display/documents.py:
|
|
92
|
+
#: contrib/documents/models/documents.py:73
|
|
93
|
+
#: contrib/documents/viewsets/display/documents.py:21
|
|
95
94
|
msgid "Updated"
|
|
96
95
|
msgstr ""
|
|
97
96
|
|
|
98
|
-
#: contrib/documents/models/documents.py:
|
|
97
|
+
#: contrib/documents/models/documents.py:238
|
|
99
98
|
msgid "Document"
|
|
100
99
|
msgstr ""
|
|
101
100
|
|
|
102
|
-
#: contrib/documents/models/documents.py:
|
|
101
|
+
#: contrib/documents/models/documents.py:239
|
|
103
102
|
#: contrib/documents/viewsets/menu/documents.py:6
|
|
104
103
|
#: contrib/documents/viewsets/titles/documents.py:17
|
|
105
104
|
msgid "Documents"
|
|
106
105
|
msgstr ""
|
|
107
106
|
|
|
108
|
-
#: contrib/documents/models/documents.py:
|
|
107
|
+
#: contrib/documents/models/documents.py:271
|
|
109
108
|
msgid "A file was shared with you"
|
|
110
109
|
msgstr ""
|
|
111
110
|
|
|
112
|
-
#: contrib/documents/models/documents.py:
|
|
111
|
+
#: contrib/documents/models/documents.py:276
|
|
113
112
|
#, python-brace-format
|
|
114
113
|
msgid ""
|
|
115
114
|
"\n"
|
|
@@ -117,7 +116,7 @@ msgid ""
|
|
|
117
116
|
" "
|
|
118
117
|
msgstr ""
|
|
119
118
|
|
|
120
|
-
#: contrib/documents/models/documents.py:
|
|
119
|
+
#: contrib/documents/models/documents.py:282
|
|
121
120
|
#, python-brace-format
|
|
122
121
|
msgid ""
|
|
123
122
|
"\n"
|
|
@@ -211,7 +210,11 @@ msgstr ""
|
|
|
211
210
|
msgid "Number of Documents"
|
|
212
211
|
msgstr ""
|
|
213
212
|
|
|
214
|
-
#: contrib/documents/viewsets/display/documents.py:
|
|
213
|
+
#: contrib/documents/viewsets/display/documents.py:18
|
|
214
|
+
msgid "Permission"
|
|
215
|
+
msgstr ""
|
|
216
|
+
|
|
217
|
+
#: contrib/documents/viewsets/display/documents.py:29
|
|
215
218
|
msgid "Created By System"
|
|
216
219
|
msgstr ""
|
|
217
220
|
|
|
@@ -10,8 +10,8 @@ from rest_framework.decorators import action
|
|
|
10
10
|
from rest_framework.response import Response
|
|
11
11
|
|
|
12
12
|
from wbcore import viewsets
|
|
13
|
-
from wbcore.content_type.utils import get_ancestors_content_type
|
|
14
13
|
from wbcore.contrib.authentication.authentication import JWTCookieAuthentication
|
|
14
|
+
from wbcore.contrib.content_type.utils import get_ancestors_content_type
|
|
15
15
|
from wbcore.contrib.documents.filters import DocumentFilter
|
|
16
16
|
from wbcore.contrib.documents.models import Document, DocumentModelRelationship
|
|
17
17
|
from wbcore.contrib.documents.serializers import (
|
|
File without changes
|
|
@@ -10,6 +10,7 @@ class ObjectPermissionsFilter(BaseFilterBackend):
|
|
|
10
10
|
|
|
11
11
|
def filter_queryset(self, request, queryset, view):
|
|
12
12
|
from guardian.shortcuts import get_objects_for_user
|
|
13
|
+
|
|
13
14
|
from wbcore.contrib.guardian.models.mixins import PermissionObjectModelMixin
|
|
14
15
|
|
|
15
16
|
model_class = queryset.model
|
|
@@ -7,6 +7,7 @@ from django.db import models, transaction
|
|
|
7
7
|
from django.db.models.signals import post_save
|
|
8
8
|
from django.dispatch import receiver
|
|
9
9
|
from django.utils.translation import gettext_lazy as _
|
|
10
|
+
|
|
10
11
|
from wbcore.contrib.authentication.models.users import User
|
|
11
12
|
from wbcore.contrib.guardian.utils import reload_permissions
|
|
12
13
|
from wbcore.permissions.mixins import PermissionMixin
|
wbcore/contrib/guardian/tasks.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import pytest
|
|
2
2
|
from django.contrib.contenttypes.models import ContentType
|
|
3
|
+
|
|
3
4
|
from wbcore.contrib.authentication.models.users import Permission
|
|
4
5
|
from wbcore.contrib.guardian.models import UserObjectPermission
|
|
5
6
|
from wbcore.contrib.guardian.models.mixins import PermissionObjectModelMixin
|
|
@@ -2,6 +2,7 @@ import pytest
|
|
|
2
2
|
from django.contrib.contenttypes.models import ContentType
|
|
3
3
|
from django.db.models import Q
|
|
4
4
|
from guardian.shortcuts import assign_perm
|
|
5
|
+
|
|
5
6
|
from wbcore.contrib.authentication.models.users import Permission
|
|
6
7
|
from wbcore.contrib.guardian.viewsets import PivotUserObjectPermissionModelViewSet
|
|
7
8
|
|
wbcore/contrib/guardian/urls.py
CHANGED
wbcore/contrib/guardian/utils.py
CHANGED
|
@@ -8,6 +8,7 @@ from django.db.models import Model, Q, QuerySet
|
|
|
8
8
|
from django.utils import timezone
|
|
9
9
|
from guardian.shortcuts import assign_perm, get_anonymous_user
|
|
10
10
|
from psycopg.errors import InvalidCursorName
|
|
11
|
+
|
|
11
12
|
from wbcore.contrib.authentication.models import User
|
|
12
13
|
from wbcore.contrib.guardian.models import UserObjectPermission
|
|
13
14
|
from wbcore.permissions.shortcuts import get_internal_users
|
|
@@ -2,6 +2,7 @@ from contextlib import suppress
|
|
|
2
2
|
|
|
3
3
|
from django.dispatch import receiver
|
|
4
4
|
from rest_framework.reverse import reverse
|
|
5
|
+
|
|
5
6
|
from wbcore.contrib.guardian.models.mixins import PermissionObjectModelMixin
|
|
6
7
|
from wbcore.contrib.icons.icons import WBIcon
|
|
7
8
|
from wbcore.metadata.configs.buttons import ButtonViewConfig
|
|
@@ -3,6 +3,7 @@ from django.db.models import Count, Exists, F, Model, OuterRef, Q, QuerySet
|
|
|
3
3
|
from django.utils.functional import cached_property
|
|
4
4
|
from guardian.shortcuts import assign_perm, remove_perm
|
|
5
5
|
from rest_framework.exceptions import ValidationError
|
|
6
|
+
|
|
6
7
|
from wbcore import serializers, viewsets
|
|
7
8
|
from wbcore.contrib.authentication.models.users import Permission, User
|
|
8
9
|
from wbcore.contrib.authentication.serializers import UserRepresentationSerializer
|
|
@@ -10,7 +10,7 @@ msgid ""
|
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date:
|
|
13
|
+
"POT-Creation-Date: 2026-01-16 14:04+0100\n"
|
|
14
14
|
"PO-Revision-Date: 2025-05-30 09:40+0000\n"
|
|
15
15
|
"Last-Translator: Kevin Decoster, 2025\n"
|
|
16
16
|
"Language-Team: German (https://app.transifex.com/stainly/teams/171242/de/)\n"
|
|
@@ -36,27 +36,27 @@ msgstr ""
|
|
|
36
36
|
msgid "Content object Provider Identifier relationships"
|
|
37
37
|
msgstr ""
|
|
38
38
|
|
|
39
|
-
#: contrib/io/models.py:
|
|
39
|
+
#: contrib/io/models.py:167 contrib/io/models.py:193
|
|
40
40
|
msgid "Provider"
|
|
41
41
|
msgstr "Anbieter"
|
|
42
42
|
|
|
43
|
-
#: contrib/io/models.py:
|
|
43
|
+
#: contrib/io/models.py:168
|
|
44
44
|
msgid "Providers"
|
|
45
45
|
msgstr ""
|
|
46
46
|
|
|
47
|
-
#: contrib/io/models.py:
|
|
47
|
+
#: contrib/io/models.py:212 contrib/io/models.py:256
|
|
48
48
|
msgid "Data Backend"
|
|
49
49
|
msgstr "Daten-Backend"
|
|
50
50
|
|
|
51
|
-
#: contrib/io/models.py:
|
|
51
|
+
#: contrib/io/models.py:213
|
|
52
52
|
msgid "Data Backends"
|
|
53
53
|
msgstr ""
|
|
54
54
|
|
|
55
|
-
#: contrib/io/models.py:
|
|
55
|
+
#: contrib/io/models.py:263
|
|
56
56
|
msgid "Crontab Schedule"
|
|
57
57
|
msgstr "Crontab Schedule"
|
|
58
58
|
|
|
59
|
-
#: contrib/io/models.py:
|
|
59
|
+
#: contrib/io/models.py:264
|
|
60
60
|
msgid ""
|
|
61
61
|
"Crontab Schedule to run the task on. Set only one schedule type, leave the "
|
|
62
62
|
"others null."
|
|
@@ -64,81 +64,81 @@ msgstr ""
|
|
|
64
64
|
"Crontab Schedule mit der die Aufgabe ausgeführt werden soll. Setzen Sie nur "
|
|
65
65
|
"einen Schedule Typen, lassen Sie die anderen leer."
|
|
66
66
|
|
|
67
|
-
#: contrib/io/models.py:
|
|
67
|
+
#: contrib/io/models.py:305
|
|
68
68
|
msgid "Source"
|
|
69
69
|
msgstr ""
|
|
70
70
|
|
|
71
|
-
#: contrib/io/models.py:
|
|
71
|
+
#: contrib/io/models.py:306
|
|
72
72
|
msgid "Sources"
|
|
73
73
|
msgstr ""
|
|
74
74
|
|
|
75
|
-
#: contrib/io/models.py:
|
|
75
|
+
#: contrib/io/models.py:690
|
|
76
76
|
msgid "Format of file to be exported"
|
|
77
77
|
msgstr ""
|
|
78
78
|
|
|
79
|
-
#: contrib/io/models.py:
|
|
79
|
+
#: contrib/io/models.py:693
|
|
80
80
|
msgid "Export job Content Type"
|
|
81
81
|
msgstr ""
|
|
82
82
|
|
|
83
|
-
#: contrib/io/models.py:
|
|
83
|
+
#: contrib/io/models.py:696
|
|
84
84
|
msgid "Resource path to use when exporting"
|
|
85
85
|
msgstr ""
|
|
86
86
|
|
|
87
|
-
#: contrib/io/models.py:
|
|
87
|
+
#: contrib/io/models.py:699
|
|
88
88
|
msgid "SQL query to be executed"
|
|
89
89
|
msgstr ""
|
|
90
90
|
|
|
91
|
-
#: contrib/io/models.py:
|
|
91
|
+
#: contrib/io/models.py:701
|
|
92
92
|
msgid "SQL query parameters to be used with the sql query"
|
|
93
93
|
msgstr ""
|
|
94
94
|
|
|
95
|
-
#: contrib/io/models.py:
|
|
95
|
+
#: contrib/io/models.py:705
|
|
96
96
|
msgid "Export Source"
|
|
97
97
|
msgstr ""
|
|
98
98
|
|
|
99
|
-
#: contrib/io/models.py:
|
|
99
|
+
#: contrib/io/models.py:706
|
|
100
100
|
msgid "Export Sources"
|
|
101
101
|
msgstr ""
|
|
102
102
|
|
|
103
|
-
#: contrib/io/models.py:
|
|
103
|
+
#: contrib/io/models.py:766
|
|
104
104
|
msgid "Your export file is available"
|
|
105
105
|
msgstr ""
|
|
106
106
|
|
|
107
|
-
#: contrib/io/models.py:
|
|
107
|
+
#: contrib/io/models.py:767
|
|
108
108
|
msgid ""
|
|
109
109
|
"<p>The export job you requested is finished and available for one hour.</p>"
|
|
110
110
|
msgstr ""
|
|
111
111
|
|
|
112
|
-
#: contrib/io/models.py:
|
|
112
|
+
#: contrib/io/models.py:822
|
|
113
113
|
msgid "Import Source"
|
|
114
114
|
msgstr ""
|
|
115
115
|
|
|
116
|
-
#: contrib/io/models.py:
|
|
116
|
+
#: contrib/io/models.py:823
|
|
117
117
|
msgid "Import Sources"
|
|
118
118
|
msgstr ""
|
|
119
119
|
|
|
120
|
-
#: contrib/io/models.py:
|
|
120
|
+
#: contrib/io/models.py:1038
|
|
121
121
|
msgid "Import Credential"
|
|
122
122
|
msgstr ""
|
|
123
123
|
|
|
124
|
-
#: contrib/io/models.py:
|
|
124
|
+
#: contrib/io/models.py:1039
|
|
125
125
|
msgid "Import Credentials"
|
|
126
126
|
msgstr ""
|
|
127
127
|
|
|
128
|
-
#: contrib/io/viewset_mixins.py:
|
|
129
|
-
#: contrib/io/viewset_mixins.py:
|
|
128
|
+
#: contrib/io/viewset_mixins.py:246 contrib/io/viewset_mixins.py:247
|
|
129
|
+
#: contrib/io/viewset_mixins.py:248
|
|
130
130
|
msgid "Import"
|
|
131
131
|
msgstr "Importieren"
|
|
132
132
|
|
|
133
|
-
#: contrib/io/viewset_mixins.py:
|
|
133
|
+
#: contrib/io/viewset_mixins.py:249
|
|
134
134
|
msgid "Please provide a valid CSV file (Coma Separated Value)"
|
|
135
135
|
msgstr ""
|
|
136
136
|
|
|
137
|
-
#: contrib/io/viewset_mixins.py:
|
|
138
|
-
#: contrib/io/viewset_mixins.py:
|
|
137
|
+
#: contrib/io/viewset_mixins.py:264 contrib/io/viewset_mixins.py:265
|
|
138
|
+
#: contrib/io/viewset_mixins.py:266
|
|
139
139
|
msgid "Export"
|
|
140
140
|
msgstr "Exportieren"
|
|
141
141
|
|
|
142
|
-
#: contrib/io/viewset_mixins.py:
|
|
142
|
+
#: contrib/io/viewset_mixins.py:267
|
|
143
143
|
msgid "Select the export format"
|
|
144
144
|
msgstr ""
|
|
@@ -7,7 +7,7 @@ msgid ""
|
|
|
7
7
|
msgstr ""
|
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
|
-
"POT-Creation-Date:
|
|
10
|
+
"POT-Creation-Date: 2026-01-16 14:04+0100\n"
|
|
11
11
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
12
12
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
13
13
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -32,107 +32,107 @@ msgstr ""
|
|
|
32
32
|
msgid "Content object Provider Identifier relationships"
|
|
33
33
|
msgstr ""
|
|
34
34
|
|
|
35
|
-
#: contrib/io/models.py:
|
|
35
|
+
#: contrib/io/models.py:167 contrib/io/models.py:193
|
|
36
36
|
msgid "Provider"
|
|
37
37
|
msgstr ""
|
|
38
38
|
|
|
39
|
-
#: contrib/io/models.py:
|
|
39
|
+
#: contrib/io/models.py:168
|
|
40
40
|
msgid "Providers"
|
|
41
41
|
msgstr ""
|
|
42
42
|
|
|
43
|
-
#: contrib/io/models.py:
|
|
43
|
+
#: contrib/io/models.py:212 contrib/io/models.py:256
|
|
44
44
|
msgid "Data Backend"
|
|
45
45
|
msgstr ""
|
|
46
46
|
|
|
47
|
-
#: contrib/io/models.py:
|
|
47
|
+
#: contrib/io/models.py:213
|
|
48
48
|
msgid "Data Backends"
|
|
49
49
|
msgstr ""
|
|
50
50
|
|
|
51
|
-
#: contrib/io/models.py:
|
|
51
|
+
#: contrib/io/models.py:263
|
|
52
52
|
msgid "Crontab Schedule"
|
|
53
53
|
msgstr ""
|
|
54
54
|
|
|
55
|
-
#: contrib/io/models.py:
|
|
55
|
+
#: contrib/io/models.py:264
|
|
56
56
|
msgid ""
|
|
57
57
|
"Crontab Schedule to run the task on. Set only one schedule type, leave the "
|
|
58
58
|
"others null."
|
|
59
59
|
msgstr ""
|
|
60
60
|
|
|
61
|
-
#: contrib/io/models.py:
|
|
61
|
+
#: contrib/io/models.py:305
|
|
62
62
|
msgid "Source"
|
|
63
63
|
msgstr ""
|
|
64
64
|
|
|
65
|
-
#: contrib/io/models.py:
|
|
65
|
+
#: contrib/io/models.py:306
|
|
66
66
|
msgid "Sources"
|
|
67
67
|
msgstr ""
|
|
68
68
|
|
|
69
|
-
#: contrib/io/models.py:
|
|
69
|
+
#: contrib/io/models.py:690
|
|
70
70
|
msgid "Format of file to be exported"
|
|
71
71
|
msgstr ""
|
|
72
72
|
|
|
73
|
-
#: contrib/io/models.py:
|
|
73
|
+
#: contrib/io/models.py:693
|
|
74
74
|
msgid "Export job Content Type"
|
|
75
75
|
msgstr ""
|
|
76
76
|
|
|
77
|
-
#: contrib/io/models.py:
|
|
77
|
+
#: contrib/io/models.py:696
|
|
78
78
|
msgid "Resource path to use when exporting"
|
|
79
79
|
msgstr ""
|
|
80
80
|
|
|
81
|
-
#: contrib/io/models.py:
|
|
81
|
+
#: contrib/io/models.py:699
|
|
82
82
|
msgid "SQL query to be executed"
|
|
83
83
|
msgstr ""
|
|
84
84
|
|
|
85
|
-
#: contrib/io/models.py:
|
|
85
|
+
#: contrib/io/models.py:701
|
|
86
86
|
msgid "SQL query parameters to be used with the sql query"
|
|
87
87
|
msgstr ""
|
|
88
88
|
|
|
89
|
-
#: contrib/io/models.py:
|
|
89
|
+
#: contrib/io/models.py:705
|
|
90
90
|
msgid "Export Source"
|
|
91
91
|
msgstr ""
|
|
92
92
|
|
|
93
|
-
#: contrib/io/models.py:
|
|
93
|
+
#: contrib/io/models.py:706
|
|
94
94
|
msgid "Export Sources"
|
|
95
95
|
msgstr ""
|
|
96
96
|
|
|
97
|
-
#: contrib/io/models.py:
|
|
97
|
+
#: contrib/io/models.py:766
|
|
98
98
|
msgid "Your export file is available"
|
|
99
99
|
msgstr ""
|
|
100
100
|
|
|
101
|
-
#: contrib/io/models.py:
|
|
101
|
+
#: contrib/io/models.py:767
|
|
102
102
|
msgid ""
|
|
103
103
|
"<p>The export job you requested is finished and available for one hour.</p>"
|
|
104
104
|
msgstr ""
|
|
105
105
|
|
|
106
|
-
#: contrib/io/models.py:
|
|
106
|
+
#: contrib/io/models.py:822
|
|
107
107
|
msgid "Import Source"
|
|
108
108
|
msgstr ""
|
|
109
109
|
|
|
110
|
-
#: contrib/io/models.py:
|
|
110
|
+
#: contrib/io/models.py:823
|
|
111
111
|
msgid "Import Sources"
|
|
112
112
|
msgstr ""
|
|
113
113
|
|
|
114
|
-
#: contrib/io/models.py:
|
|
114
|
+
#: contrib/io/models.py:1038
|
|
115
115
|
msgid "Import Credential"
|
|
116
116
|
msgstr ""
|
|
117
117
|
|
|
118
|
-
#: contrib/io/models.py:
|
|
118
|
+
#: contrib/io/models.py:1039
|
|
119
119
|
msgid "Import Credentials"
|
|
120
120
|
msgstr ""
|
|
121
121
|
|
|
122
|
-
#: contrib/io/viewset_mixins.py:
|
|
123
|
-
#: contrib/io/viewset_mixins.py:
|
|
122
|
+
#: contrib/io/viewset_mixins.py:246 contrib/io/viewset_mixins.py:247
|
|
123
|
+
#: contrib/io/viewset_mixins.py:248
|
|
124
124
|
msgid "Import"
|
|
125
125
|
msgstr ""
|
|
126
126
|
|
|
127
|
-
#: contrib/io/viewset_mixins.py:
|
|
127
|
+
#: contrib/io/viewset_mixins.py:249
|
|
128
128
|
msgid "Please provide a valid CSV file (Coma Separated Value)"
|
|
129
129
|
msgstr ""
|
|
130
130
|
|
|
131
|
-
#: contrib/io/viewset_mixins.py:
|
|
132
|
-
#: contrib/io/viewset_mixins.py:
|
|
131
|
+
#: contrib/io/viewset_mixins.py:264 contrib/io/viewset_mixins.py:265
|
|
132
|
+
#: contrib/io/viewset_mixins.py:266
|
|
133
133
|
msgid "Export"
|
|
134
134
|
msgstr ""
|
|
135
135
|
|
|
136
|
-
#: contrib/io/viewset_mixins.py:
|
|
136
|
+
#: contrib/io/viewset_mixins.py:267
|
|
137
137
|
msgid "Select the export format"
|
|
138
138
|
msgstr ""
|