wbcore 2.2.1__py2.py3-none-any.whl → 2.2.4__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/contrib/agenda/locale/de/LC_MESSAGES/django.po +113 -0
- wbcore/contrib/agenda/static/agenda/markdown/documentation/building.md +11 -0
- wbcore/contrib/agenda/static/agenda/markdown/documentation/conferenceroom.md +20 -0
- wbcore/contrib/authentication/fixtures/authentication.json +62 -0
- wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po +610 -0
- wbcore/contrib/authentication/templates/activate_confirm.html +12 -0
- wbcore/contrib/authentication/templates/base.html +135 -0
- wbcore/contrib/authentication/templates/email_base_template.html +335 -0
- wbcore/contrib/authentication/templates/password_reset_done.html +13 -0
- wbcore/contrib/authentication/templates/password_reset_email.html +11 -0
- wbcore/contrib/authentication/templates/password_reset_email_html.html +43 -0
- wbcore/contrib/authentication/templates/password_reset_form.html +23 -0
- wbcore/contrib/authentication/templates/password_reset_sent.html +11 -0
- wbcore/contrib/authentication/templates/reset_password.html +15 -0
- wbcore/contrib/authentication/templates/user_registration_email.html +37 -0
- wbcore/contrib/color/admin.py +28 -0
- wbcore/contrib/color/apps.py +5 -0
- wbcore/contrib/color/enums.py +17 -0
- wbcore/contrib/color/factories.py +10 -0
- wbcore/contrib/color/fields.py +29 -0
- wbcore/contrib/color/forms.py +13 -0
- wbcore/contrib/color/models.py +62 -0
- wbcore/contrib/color/tests/conftest.py +10 -0
- wbcore/contrib/color/tests/test_color_models.py +61 -0
- wbcore/contrib/color/tests/test_fields.py +25 -0
- wbcore/contrib/currency/fixtures/currency.yaml +1014 -0
- wbcore/contrib/currency/fixtures/currency_fx_rate.yaml +73585 -0
- wbcore/contrib/directory/fixtures/directory.json +3924 -0
- wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po +1686 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/address.md +38 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/banking.md +54 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/bankingentry.md +38 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/clientmanagerrelationship.md +42 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/company.md +52 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/companytype.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/customerstatus.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/email.md +20 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/employeecompany.md +34 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/employerperson.md +43 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/person.md +61 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/position.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/relationshiptype.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/socialmedia.md +23 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/specialization.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/systememployee.md +31 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/telephone.md +23 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/telephonesearch.md +26 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/userisclient.md +14 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/userismanager.md +28 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/website.md +20 -0
- wbcore/contrib/documents/fixtures/docments.json +135 -0
- wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po +272 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/document_types.md +21 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/documents.md +18 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/shareablelink.md +28 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/shareablelinkaccess.md +20 -0
- wbcore/contrib/documents/tests/conftest.py +30 -0
- wbcore/contrib/documents/tests/test_models.py +144 -0
- wbcore/contrib/example_app/fixtures/example_app.json +7425 -0
- wbcore/contrib/example_app/tests/test_models/test_event.py +87 -0
- wbcore/contrib/example_app/tests/test_models/test_match.py +210 -0
- wbcore/contrib/example_app/tests/test_models/test_others.py +159 -0
- wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py +34 -0
- wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py +134 -0
- wbcore/contrib/example_app/tests/test_serializers/test_role_serializer.py +13 -0
- wbcore/contrib/example_app/tests/test_serializers/test_sport_serializer.py +14 -0
- wbcore/contrib/example_app/tests/test_serializers/test_stadium_serializer.py +14 -0
- wbcore/contrib/example_app/tests/test_serializers/test_team_result_serializer.py +30 -0
- wbcore/contrib/example_app/tests/test_serializers/test_team_serializer.py +70 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_event_viewset.py +162 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_league_viewset.py +84 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_match_viewset.py +65 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_person_viewset.py +166 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_role_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_sport_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_stadium_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_team_viewset.py +92 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_teamresult_viewset.py +58 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_utils_viewsets.py +124 -0
- wbcore/contrib/geography/fixtures/geography.json +13454 -0
- wbcore/contrib/geography/static/geography/markdown/documentation/geography.md +16 -0
- wbcore/contrib/guardian/apps.py +6 -0
- wbcore/contrib/guardian/configurations.py +3 -0
- wbcore/contrib/guardian/filters.py +21 -0
- wbcore/contrib/guardian/tasks.py +10 -0
- wbcore/contrib/guardian/urls.py +12 -0
- wbcore/contrib/guardian/utils.py +124 -0
- wbcore/contrib/io/fixtures/io.json +145 -0
- wbcore/contrib/io/locale/de/LC_MESSAGES/django.po +52 -0
- wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po +60 -0
- wbcore/contrib/notifications/static/notifications/service-worker.js +1 -0
- wbcore/contrib/notifications/templates/notifications/notification_template.html +43 -0
- wbcore/contrib/notifications/viewsets/configs/notification_types.py +27 -0
- wbcore/contrib/notifications/viewsets/configs/notifications.py +85 -0
- wbcore/contrib/workflow/fixtures/workflow.json +612 -0
- wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po +1289 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/assignedprocessstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/condition.md +24 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/decisionstep.md +30 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/emailstep.md +45 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/finishstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/joinstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/process.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/processstep.md +51 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/scriptstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/splitstep.md +30 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/startstep.md +27 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/transition.md +27 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/userstep.md +42 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/workflow.md +32 -0
- wbcore/contrib/workflow/templates/Test_Templates.txt +25 -0
- wbcore/contrib/workflow/tests/test_models/step/test_decision_step.py +79 -0
- wbcore/contrib/workflow/tests/test_models/step/test_email_step.py +45 -0
- wbcore/contrib/workflow/tests/test_models/step/test_finish_step.py +105 -0
- wbcore/contrib/workflow/tests/test_models/step/test_join_step.py +127 -0
- wbcore/contrib/workflow/tests/test_models/step/test_script_step.py +24 -0
- wbcore/contrib/workflow/tests/test_models/step/test_split_step.py +49 -0
- wbcore/contrib/workflow/tests/test_models/step/test_step.py +621 -0
- wbcore/contrib/workflow/tests/test_models/step/test_user_step.py +225 -0
- wbcore/contrib/workflow/tests/test_models/test_condition.py +103 -0
- wbcore/contrib/workflow/tests/test_models/test_data.py +134 -0
- wbcore/contrib/workflow/tests/test_models/test_process.py +98 -0
- wbcore/contrib/workflow/tests/test_models/test_transition.py +128 -0
- wbcore/contrib/workflow/tests/test_models/test_workflow.py +358 -0
- wbcore/locale/de/LC_MESSAGES/django.po +667 -0
- wbcore/templates/errors/404.html +134 -0
- wbcore/templates/errors/500.html +138 -0
- wbcore/templates/errors/503.html +132 -0
- wbcore/templates/errors/custom.html +132 -0
- wbcore/templates/forms.py +0 -0
- wbcore/templates/notifications/email_template.html +43 -0
- wbcore/templates/wbcore/admin/change_list.html +8 -0
- wbcore/templates/wbcore/admin/csv_form.html +15 -0
- wbcore/templates/wbcore/dynamic_color_array.html +29 -0
- wbcore/templates/wbcore/email_base_template.html +335 -0
- wbcore/templates/wbcore/email_notification_template.html +10 -0
- wbcore/templates/wbcore/frontend.html +51 -0
- wbcore/test/e2e_helpers_methods/e2e_checks.py +121 -0
- wbcore/test/e2e_helpers_methods/e2e_helper_methods.py +395 -0
- wbcore/tests/test_permissions/test_backend.py +29 -0
- {wbcore-2.2.1.dist-info → wbcore-2.2.4.dist-info}/METADATA +1 -1
- {wbcore-2.2.1.dist-info → wbcore-2.2.4.dist-info}/RECORD +143 -3
- {wbcore-2.2.1.dist-info → wbcore-2.2.4.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,1289 @@
|
|
|
1
|
+
# WORKFLOW GERMAN TRANSLATIONS.
|
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
+
# This file is distributed under the same license as the PACKAGE package.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
|
+
#
|
|
6
|
+
msgid ""
|
|
7
|
+
msgstr ""
|
|
8
|
+
"Project-Id-Version: \n"
|
|
9
|
+
"Report-Msgid-Bugs-To: \n"
|
|
10
|
+
"POT-Creation-Date: 2023-08-17 15:31+0200\n"
|
|
11
|
+
"PO-Revision-Date: 2023-08-17 15:34+0200\n"
|
|
12
|
+
"Last-Translator: \n"
|
|
13
|
+
"Language-Team: \n"
|
|
14
|
+
"Language: de\n"
|
|
15
|
+
"MIME-Version: 1.0\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
19
|
+
"X-Generator: Poedit 3.3.2\n"
|
|
20
|
+
|
|
21
|
+
#: wbcore/contrib/workflow/dispatch.py:18
|
|
22
|
+
msgid "Invalid status detected!"
|
|
23
|
+
msgstr "Invalider Status erkannt!"
|
|
24
|
+
|
|
25
|
+
#: wbcore/contrib/workflow/filters/condition.py:8
|
|
26
|
+
#: wbcore/contrib/workflow/models/transition.py:65
|
|
27
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:20
|
|
28
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:24
|
|
29
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:77
|
|
30
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:81
|
|
31
|
+
#: wbcore/contrib/workflow/viewsets/titles/transition.py:7
|
|
32
|
+
msgid "Transitions"
|
|
33
|
+
msgstr "Übergänge"
|
|
34
|
+
|
|
35
|
+
#: wbcore/contrib/workflow/filters/condition.py:15
|
|
36
|
+
msgid "Operators"
|
|
37
|
+
msgstr "Operator"
|
|
38
|
+
|
|
39
|
+
#: wbcore/contrib/workflow/filters/data.py:8
|
|
40
|
+
#: wbcore/contrib/workflow/filters/process.py:38
|
|
41
|
+
#: wbcore/contrib/workflow/filters/step.py:66
|
|
42
|
+
#: wbcore/contrib/workflow/filters/step.py:87
|
|
43
|
+
#: wbcore/contrib/workflow/filters/step.py:137
|
|
44
|
+
#: wbcore/contrib/workflow/filters/step.py:157
|
|
45
|
+
#: wbcore/contrib/workflow/models/workflow.py:266
|
|
46
|
+
#: wbcore/contrib/workflow/viewsets/titles/workflow.py:7
|
|
47
|
+
msgid "Workflows"
|
|
48
|
+
msgstr "Workflows"
|
|
49
|
+
|
|
50
|
+
#: wbcore/contrib/workflow/filters/data.py:15
|
|
51
|
+
msgid "Data Types"
|
|
52
|
+
msgstr "Datentypen"
|
|
53
|
+
|
|
54
|
+
#: wbcore/contrib/workflow/filters/process.py:9
|
|
55
|
+
#: wbcore/contrib/workflow/filters/process.py:124
|
|
56
|
+
msgid "Started Before/On"
|
|
57
|
+
msgstr "Gestartet Vor/Um"
|
|
58
|
+
|
|
59
|
+
#: wbcore/contrib/workflow/filters/process.py:14
|
|
60
|
+
#: wbcore/contrib/workflow/filters/process.py:129
|
|
61
|
+
msgid "Started After/On"
|
|
62
|
+
msgstr "Gestartet Nach/Um"
|
|
63
|
+
|
|
64
|
+
#: wbcore/contrib/workflow/filters/process.py:19
|
|
65
|
+
#: wbcore/contrib/workflow/filters/process.py:134
|
|
66
|
+
msgid "Finished Before/On"
|
|
67
|
+
msgstr "Abgeschlossen Vor/Um"
|
|
68
|
+
|
|
69
|
+
#: wbcore/contrib/workflow/filters/process.py:24
|
|
70
|
+
#: wbcore/contrib/workflow/filters/process.py:139
|
|
71
|
+
msgid "Finished After/On"
|
|
72
|
+
msgstr "Abgeschlossen Nach/Um"
|
|
73
|
+
|
|
74
|
+
#: wbcore/contrib/workflow/filters/process.py:28
|
|
75
|
+
#: wbcore/contrib/workflow/models/process.py:30
|
|
76
|
+
#: wbcore/contrib/workflow/models/process.py:127
|
|
77
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:22
|
|
78
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:107
|
|
79
|
+
msgid "UUID"
|
|
80
|
+
msgstr "UUID"
|
|
81
|
+
|
|
82
|
+
#: wbcore/contrib/workflow/filters/process.py:29
|
|
83
|
+
msgid "States"
|
|
84
|
+
msgstr "Statusse"
|
|
85
|
+
|
|
86
|
+
#: wbcore/contrib/workflow/filters/process.py:52
|
|
87
|
+
#: wbcore/contrib/workflow/filters/process.py:144
|
|
88
|
+
#: wbcore/contrib/workflow/filters/step.py:94
|
|
89
|
+
msgid "Assignees"
|
|
90
|
+
msgstr "Verantwortliche"
|
|
91
|
+
|
|
92
|
+
#: wbcore/contrib/workflow/filters/process.py:59
|
|
93
|
+
#: wbcore/contrib/workflow/filters/process.py:151
|
|
94
|
+
#: wbcore/contrib/workflow/filters/step.py:102
|
|
95
|
+
msgid "Groups"
|
|
96
|
+
msgstr "Gruppen"
|
|
97
|
+
|
|
98
|
+
#: wbcore/contrib/workflow/filters/process.py:66
|
|
99
|
+
#: wbcore/contrib/workflow/filters/process.py:158
|
|
100
|
+
#: wbcore/contrib/workflow/filters/step.py:51
|
|
101
|
+
#: wbcore/contrib/workflow/filters/step.py:80
|
|
102
|
+
#: wbcore/contrib/workflow/filters/step.py:130
|
|
103
|
+
msgid "Permissions"
|
|
104
|
+
msgstr "Berechtigungen"
|
|
105
|
+
|
|
106
|
+
#: wbcore/contrib/workflow/filters/process.py:83
|
|
107
|
+
#: wbcore/contrib/workflow/filters/process.py:117
|
|
108
|
+
#: wbcore/contrib/workflow/models/step.py:191
|
|
109
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:57
|
|
110
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:61
|
|
111
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:7
|
|
112
|
+
msgid "Steps"
|
|
113
|
+
msgstr "Schritte"
|
|
114
|
+
|
|
115
|
+
#: wbcore/contrib/workflow/filters/process.py:97
|
|
116
|
+
#: wbcore/contrib/workflow/models/process.py:103
|
|
117
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:97
|
|
118
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:101
|
|
119
|
+
#: wbcore/contrib/workflow/viewsets/titles/process.py:7
|
|
120
|
+
msgid "Processes"
|
|
121
|
+
msgstr "Prozesse"
|
|
122
|
+
|
|
123
|
+
#: wbcore/contrib/workflow/filters/process.py:164
|
|
124
|
+
#: wbcore/contrib/workflow/models/data.py:45
|
|
125
|
+
#: wbcore/contrib/workflow/models/process.py:32
|
|
126
|
+
#: wbcore/contrib/workflow/models/step.py:41
|
|
127
|
+
#: wbcore/contrib/workflow/models/workflow.py:265
|
|
128
|
+
#: wbcore/contrib/workflow/serializers/data.py:14
|
|
129
|
+
#: wbcore/contrib/workflow/serializers/process.py:143
|
|
130
|
+
#: wbcore/contrib/workflow/serializers/step.py:35
|
|
131
|
+
#: wbcore/contrib/workflow/viewsets/display/data.py:14
|
|
132
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:21
|
|
133
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:178
|
|
134
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:68
|
|
135
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:411
|
|
136
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:149
|
|
137
|
+
#: wbcore/contrib/workflow/viewsets/menu/workflow.py:6
|
|
138
|
+
#: wbcore/contrib/workflow/viewsets/titles/workflow.py:13
|
|
139
|
+
msgid "Workflow"
|
|
140
|
+
msgstr "Workflow"
|
|
141
|
+
|
|
142
|
+
#: wbcore/contrib/workflow/filters/process.py:165
|
|
143
|
+
#: wbcore/contrib/workflow/filters/workflow.py:8
|
|
144
|
+
#: wbcore/contrib/workflow/serializers/process.py:149
|
|
145
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:177
|
|
146
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:23
|
|
147
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:33
|
|
148
|
+
msgid "Attached Model"
|
|
149
|
+
msgstr "Angeheftetes Model"
|
|
150
|
+
|
|
151
|
+
#: wbcore/contrib/workflow/filters/step.py:24
|
|
152
|
+
#: wbcore/contrib/workflow/filters/step.py:25
|
|
153
|
+
#: wbcore/contrib/workflow/filters/step.py:26
|
|
154
|
+
#: wbcore/contrib/workflow/models/step.py:43
|
|
155
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:70
|
|
156
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:413
|
|
157
|
+
msgid "Code"
|
|
158
|
+
msgstr "Code"
|
|
159
|
+
|
|
160
|
+
#: wbcore/contrib/workflow/filters/step.py:28
|
|
161
|
+
msgid "Associated Transition"
|
|
162
|
+
msgstr "Zugehöriger Übergang"
|
|
163
|
+
|
|
164
|
+
#: wbcore/contrib/workflow/filters/step.py:57
|
|
165
|
+
msgid "Step Types"
|
|
166
|
+
msgstr "Schrittarten"
|
|
167
|
+
|
|
168
|
+
#: wbcore/contrib/workflow/filters/step.py:110
|
|
169
|
+
msgid "Assignee Methods"
|
|
170
|
+
msgstr "Verantwortlichen-Methoden"
|
|
171
|
+
|
|
172
|
+
#: wbcore/contrib/workflow/filters/step.py:186
|
|
173
|
+
#: wbcore/contrib/workflow/models/step.py:515
|
|
174
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:313
|
|
175
|
+
msgid "Template"
|
|
176
|
+
msgstr "Vorlage"
|
|
177
|
+
|
|
178
|
+
#: wbcore/contrib/workflow/filters/step.py:188
|
|
179
|
+
#: wbcore/contrib/workflow/models/step.py:525
|
|
180
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:310
|
|
181
|
+
msgctxt "Email context"
|
|
182
|
+
msgid "To"
|
|
183
|
+
msgstr "An"
|
|
184
|
+
|
|
185
|
+
#: wbcore/contrib/workflow/filters/step.py:195
|
|
186
|
+
#: wbcore/contrib/workflow/models/step.py:528
|
|
187
|
+
msgid "CC"
|
|
188
|
+
msgstr "CC"
|
|
189
|
+
|
|
190
|
+
#: wbcore/contrib/workflow/filters/step.py:202
|
|
191
|
+
#: wbcore/contrib/workflow/models/step.py:531
|
|
192
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:315
|
|
193
|
+
msgid "BCC"
|
|
194
|
+
msgstr "BCC"
|
|
195
|
+
|
|
196
|
+
#: wbcore/contrib/workflow/filters/transition.py:9
|
|
197
|
+
#: wbcore/contrib/workflow/models/transition.py:16
|
|
198
|
+
#: wbcore/contrib/workflow/viewsets/display/transition.py:22
|
|
199
|
+
#: wbcore/contrib/workflow/viewsets/transition.py:51
|
|
200
|
+
msgid "From"
|
|
201
|
+
msgstr "Von"
|
|
202
|
+
|
|
203
|
+
#: wbcore/contrib/workflow/filters/transition.py:16
|
|
204
|
+
#: wbcore/contrib/workflow/models/transition.py:20
|
|
205
|
+
#: wbcore/contrib/workflow/viewsets/display/transition.py:23
|
|
206
|
+
#: wbcore/contrib/workflow/viewsets/transition.py:54
|
|
207
|
+
msgid "To"
|
|
208
|
+
msgstr "Zu"
|
|
209
|
+
|
|
210
|
+
#: wbcore/contrib/workflow/filters/transition.py:23
|
|
211
|
+
msgid "Associated Condition"
|
|
212
|
+
msgstr "Zugehörige Bedingung"
|
|
213
|
+
|
|
214
|
+
#: wbcore/contrib/workflow/filters/workflow.py:10
|
|
215
|
+
msgid "Associated Step"
|
|
216
|
+
msgstr "Zugehöriger Schritt"
|
|
217
|
+
|
|
218
|
+
#: wbcore/contrib/workflow/filters/workflow.py:18
|
|
219
|
+
msgid "Associated Data"
|
|
220
|
+
msgstr "Zugehöriger Datensatz"
|
|
221
|
+
|
|
222
|
+
#: wbcore/contrib/workflow/models/condition.py:12
|
|
223
|
+
msgid "Less Than"
|
|
224
|
+
msgstr "Weniger"
|
|
225
|
+
|
|
226
|
+
#: wbcore/contrib/workflow/models/condition.py:13
|
|
227
|
+
msgid "Less Than or Equal"
|
|
228
|
+
msgstr "Weniger Gleich"
|
|
229
|
+
|
|
230
|
+
#: wbcore/contrib/workflow/models/condition.py:14
|
|
231
|
+
msgid "Equal"
|
|
232
|
+
msgstr "Gleich"
|
|
233
|
+
|
|
234
|
+
#: wbcore/contrib/workflow/models/condition.py:15
|
|
235
|
+
msgid "Greater Than or Equal"
|
|
236
|
+
msgstr "Größer Gleich"
|
|
237
|
+
|
|
238
|
+
#: wbcore/contrib/workflow/models/condition.py:16
|
|
239
|
+
msgid "Greater Than"
|
|
240
|
+
msgstr "Größer"
|
|
241
|
+
|
|
242
|
+
#: wbcore/contrib/workflow/models/condition.py:20
|
|
243
|
+
#: wbcore/contrib/workflow/models/transition.py:64
|
|
244
|
+
#: wbcore/contrib/workflow/serializers/condition.py:14
|
|
245
|
+
#: wbcore/contrib/workflow/viewsets/display/condition.py:13
|
|
246
|
+
#: wbcore/contrib/workflow/viewsets/menu/transition.py:6
|
|
247
|
+
#: wbcore/contrib/workflow/viewsets/titles/transition.py:13
|
|
248
|
+
msgid "Transition"
|
|
249
|
+
msgstr "Übergang"
|
|
250
|
+
|
|
251
|
+
#: wbcore/contrib/workflow/models/condition.py:26
|
|
252
|
+
#: wbcore/contrib/workflow/viewsets/display/condition.py:14
|
|
253
|
+
msgid "Attribute Name"
|
|
254
|
+
msgstr "Name des Feldes"
|
|
255
|
+
|
|
256
|
+
#: wbcore/contrib/workflow/models/condition.py:27
|
|
257
|
+
msgid ""
|
|
258
|
+
"The name of the workflow data or attached model field whose value should be "
|
|
259
|
+
"checked"
|
|
260
|
+
msgstr ""
|
|
261
|
+
"Der Name des Feldes aus dem angehefteten Model oder Datensatz, dessen Wert "
|
|
262
|
+
"überprüft werden soll"
|
|
263
|
+
|
|
264
|
+
#: wbcore/contrib/workflow/models/condition.py:29
|
|
265
|
+
#: wbcore/contrib/workflow/viewsets/display/condition.py:15
|
|
266
|
+
msgid "Operator"
|
|
267
|
+
msgstr "Operator"
|
|
268
|
+
|
|
269
|
+
#: wbcore/contrib/workflow/models/condition.py:32
|
|
270
|
+
#: wbcore/contrib/workflow/viewsets/display/condition.py:17
|
|
271
|
+
msgid "Expected Value"
|
|
272
|
+
msgstr "Erwarteter Wert"
|
|
273
|
+
|
|
274
|
+
#: wbcore/contrib/workflow/models/condition.py:33
|
|
275
|
+
msgid "The expected attribute's value"
|
|
276
|
+
msgstr "Der erwartete Wert des Feldes"
|
|
277
|
+
|
|
278
|
+
#: wbcore/contrib/workflow/models/condition.py:35
|
|
279
|
+
#: wbcore/contrib/workflow/viewsets/display/condition.py:16
|
|
280
|
+
msgid "Negate Operator"
|
|
281
|
+
msgstr "Operator Negieren"
|
|
282
|
+
|
|
283
|
+
#: wbcore/contrib/workflow/models/condition.py:40
|
|
284
|
+
msgid "Please call \"satisfied\" before accessing errors"
|
|
285
|
+
msgstr ""
|
|
286
|
+
"Bitte rufen Sie \"satisfied\" auf bevor Sie versuchen, auf die Fehler "
|
|
287
|
+
"zuzugreifen"
|
|
288
|
+
|
|
289
|
+
#: wbcore/contrib/workflow/models/condition.py:80
|
|
290
|
+
msgid ""
|
|
291
|
+
"Condition error: Type of attribute ({}) and expected value ({}) uncompatible "
|
|
292
|
+
"or wrong datetime format!"
|
|
293
|
+
msgstr ""
|
|
294
|
+
"Fehler in Bedingung: Typ des Attributs ({}) und erwarteter Wert ({}) "
|
|
295
|
+
"inkompatibel oder falsches Datums- bzw. Zeitformat benutzt!"
|
|
296
|
+
|
|
297
|
+
#: wbcore/contrib/workflow/models/condition.py:86
|
|
298
|
+
msgid ""
|
|
299
|
+
"Condition error: No attribute called {} found in attached instance or data!"
|
|
300
|
+
msgstr ""
|
|
301
|
+
"Fehler in der Bedingung: Kein Feld namens {} in angehefteter Instanz oder "
|
|
302
|
+
"Datensatz gefunden!"
|
|
303
|
+
|
|
304
|
+
#: wbcore/contrib/workflow/models/condition.py:94
|
|
305
|
+
msgid "{} not {} {}"
|
|
306
|
+
msgstr "{} nicht {} {}"
|
|
307
|
+
|
|
308
|
+
#: wbcore/contrib/workflow/models/condition.py:114
|
|
309
|
+
#: wbcore/contrib/workflow/viewsets/menu/condition.py:6
|
|
310
|
+
#: wbcore/contrib/workflow/viewsets/titles/condition.py:13
|
|
311
|
+
msgid "Condition"
|
|
312
|
+
msgstr "Bedingung"
|
|
313
|
+
|
|
314
|
+
#: wbcore/contrib/workflow/models/condition.py:115
|
|
315
|
+
#: wbcore/contrib/workflow/viewsets/display/transition.py:32
|
|
316
|
+
#: wbcore/contrib/workflow/viewsets/display/transition.py:36
|
|
317
|
+
#: wbcore/contrib/workflow/viewsets/titles/condition.py:7
|
|
318
|
+
msgid "Conditions"
|
|
319
|
+
msgstr "Bedingungen"
|
|
320
|
+
|
|
321
|
+
#: wbcore/contrib/workflow/models/data.py:14
|
|
322
|
+
msgid "Text"
|
|
323
|
+
msgstr "Text"
|
|
324
|
+
|
|
325
|
+
#: wbcore/contrib/workflow/models/data.py:15
|
|
326
|
+
msgid "Number"
|
|
327
|
+
msgstr "Zahl"
|
|
328
|
+
|
|
329
|
+
#: wbcore/contrib/workflow/models/data.py:16
|
|
330
|
+
msgid "Date"
|
|
331
|
+
msgstr "Datum"
|
|
332
|
+
|
|
333
|
+
#: wbcore/contrib/workflow/models/data.py:17
|
|
334
|
+
msgid "Date Time"
|
|
335
|
+
msgstr "Datum und Uhrzeit"
|
|
336
|
+
|
|
337
|
+
#: wbcore/contrib/workflow/models/data.py:18
|
|
338
|
+
msgid "Boolean"
|
|
339
|
+
msgstr "Boolesch"
|
|
340
|
+
|
|
341
|
+
#: wbcore/contrib/workflow/models/data.py:48
|
|
342
|
+
#: wbcore/contrib/workflow/viewsets/display/data.py:13
|
|
343
|
+
msgid "Label"
|
|
344
|
+
msgstr "Bezeichnung"
|
|
345
|
+
|
|
346
|
+
#: wbcore/contrib/workflow/models/data.py:49
|
|
347
|
+
#: wbcore/contrib/workflow/viewsets/display/data.py:17
|
|
348
|
+
msgid "Help Text"
|
|
349
|
+
msgstr "Hilfe-Text"
|
|
350
|
+
|
|
351
|
+
#: wbcore/contrib/workflow/models/data.py:51
|
|
352
|
+
#: wbcore/contrib/workflow/viewsets/display/data.py:15
|
|
353
|
+
msgid "Data Type"
|
|
354
|
+
msgstr "Datentyp"
|
|
355
|
+
|
|
356
|
+
#: wbcore/contrib/workflow/models/data.py:54
|
|
357
|
+
#: wbcore/contrib/workflow/viewsets/display/data.py:16
|
|
358
|
+
msgid "Required"
|
|
359
|
+
msgstr "Pflichtfeld"
|
|
360
|
+
|
|
361
|
+
#: wbcore/contrib/workflow/models/data.py:58
|
|
362
|
+
#: wbcore/contrib/workflow/viewsets/display/data.py:18
|
|
363
|
+
msgid "Default"
|
|
364
|
+
msgstr "Standardwert"
|
|
365
|
+
|
|
366
|
+
#: wbcore/contrib/workflow/models/data.py:113
|
|
367
|
+
msgid "Casting to bool failed."
|
|
368
|
+
msgstr "In Boolean Umwandeln fehlgeschlagen."
|
|
369
|
+
|
|
370
|
+
#: wbcore/contrib/workflow/models/data.py:148
|
|
371
|
+
msgid "Unsupported target type!"
|
|
372
|
+
msgstr "Zieltyp wird nicht unterstützt!"
|
|
373
|
+
|
|
374
|
+
#: wbcore/contrib/workflow/models/data.py:178
|
|
375
|
+
msgid "Date(time) type selected but no date(time) object provided!"
|
|
376
|
+
msgstr "Datumstyp ausgewählt aber kein Datumsobjekt mitgegeben!"
|
|
377
|
+
|
|
378
|
+
#: wbcore/contrib/workflow/models/data.py:186
|
|
379
|
+
msgid "Wrong boolean value!"
|
|
380
|
+
msgstr "Falscher Boolean-Wert!"
|
|
381
|
+
|
|
382
|
+
#: wbcore/contrib/workflow/models/data.py:208
|
|
383
|
+
#: wbcore/contrib/workflow/models/data.py:209
|
|
384
|
+
#: wbcore/contrib/workflow/models/data.py:219
|
|
385
|
+
#: wbcore/contrib/workflow/viewsets/menu/data.py:6
|
|
386
|
+
#: wbcore/contrib/workflow/viewsets/titles/data.py:7
|
|
387
|
+
#: wbcore/contrib/workflow/viewsets/titles/data.py:13
|
|
388
|
+
msgid "Data"
|
|
389
|
+
msgstr "Daten"
|
|
390
|
+
|
|
391
|
+
#: wbcore/contrib/workflow/models/data.py:218
|
|
392
|
+
msgid "Value"
|
|
393
|
+
msgstr "Wert"
|
|
394
|
+
|
|
395
|
+
#: wbcore/contrib/workflow/models/data.py:221
|
|
396
|
+
#: wbcore/contrib/workflow/models/process.py:102
|
|
397
|
+
#: wbcore/contrib/workflow/models/process.py:129
|
|
398
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:65
|
|
399
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:109
|
|
400
|
+
#: wbcore/contrib/workflow/viewsets/menu/process.py:6
|
|
401
|
+
#: wbcore/contrib/workflow/viewsets/titles/process.py:10
|
|
402
|
+
msgid "Process"
|
|
403
|
+
msgstr "Daten"
|
|
404
|
+
|
|
405
|
+
#: wbcore/contrib/workflow/models/data.py:236
|
|
406
|
+
msgid "Data Value"
|
|
407
|
+
msgstr "Datenwert"
|
|
408
|
+
|
|
409
|
+
#: wbcore/contrib/workflow/models/data.py:237
|
|
410
|
+
msgid "Data Values"
|
|
411
|
+
msgstr "Datenwerte"
|
|
412
|
+
|
|
413
|
+
#: wbcore/contrib/workflow/models/display.py:8
|
|
414
|
+
msgid "Grid Fields"
|
|
415
|
+
msgstr "Gitterfelder"
|
|
416
|
+
|
|
417
|
+
#: wbcore/contrib/workflow/models/display.py:9
|
|
418
|
+
#: wbcore/contrib/workflow/models/step.py:39
|
|
419
|
+
#: wbcore/contrib/workflow/models/transition.py:12
|
|
420
|
+
#: wbcore/contrib/workflow/models/workflow.py:31
|
|
421
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:66
|
|
422
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:410
|
|
423
|
+
#: wbcore/contrib/workflow/viewsets/display/transition.py:21
|
|
424
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:21
|
|
425
|
+
msgid "Name"
|
|
426
|
+
msgstr "Name"
|
|
427
|
+
|
|
428
|
+
#: wbcore/contrib/workflow/models/display.py:31
|
|
429
|
+
#: wbcore/contrib/workflow/models/step.py:246
|
|
430
|
+
msgid "Display"
|
|
431
|
+
msgstr "Darstellung"
|
|
432
|
+
|
|
433
|
+
#: wbcore/contrib/workflow/models/display.py:32
|
|
434
|
+
msgid "Displays"
|
|
435
|
+
msgstr "Darstellungen"
|
|
436
|
+
|
|
437
|
+
#: wbcore/contrib/workflow/models/process.py:17
|
|
438
|
+
#: wbcore/contrib/workflow/models/process.py:110
|
|
439
|
+
msgid "Active"
|
|
440
|
+
msgstr "Aktiv"
|
|
441
|
+
|
|
442
|
+
#: wbcore/contrib/workflow/models/process.py:18
|
|
443
|
+
#: wbcore/contrib/workflow/models/process.py:35
|
|
444
|
+
#: wbcore/contrib/workflow/models/process.py:111
|
|
445
|
+
#: wbcore/contrib/workflow/models/process.py:139
|
|
446
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:24
|
|
447
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:111
|
|
448
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:180
|
|
449
|
+
msgid "Finished"
|
|
450
|
+
msgstr "Beendet"
|
|
451
|
+
|
|
452
|
+
#: wbcore/contrib/workflow/models/process.py:19
|
|
453
|
+
#: wbcore/contrib/workflow/models/process.py:113
|
|
454
|
+
msgid "Failed"
|
|
455
|
+
msgstr "Fehlgeschlagen"
|
|
456
|
+
|
|
457
|
+
#: wbcore/contrib/workflow/models/process.py:34
|
|
458
|
+
#: wbcore/contrib/workflow/models/process.py:138
|
|
459
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:23
|
|
460
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:110
|
|
461
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:179
|
|
462
|
+
msgid "Started"
|
|
463
|
+
msgstr "Gestartet"
|
|
464
|
+
|
|
465
|
+
#: wbcore/contrib/workflow/models/process.py:36
|
|
466
|
+
msgid "Instance"
|
|
467
|
+
msgstr "Instanz"
|
|
468
|
+
|
|
469
|
+
#: wbcore/contrib/workflow/models/process.py:42
|
|
470
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:25
|
|
471
|
+
msgid "Content Type"
|
|
472
|
+
msgstr "Inhaltsart"
|
|
473
|
+
|
|
474
|
+
#: wbcore/contrib/workflow/models/process.py:47
|
|
475
|
+
msgid "Preserved Instance"
|
|
476
|
+
msgstr "Geschützte Instanz"
|
|
477
|
+
|
|
478
|
+
#: wbcore/contrib/workflow/models/process.py:52
|
|
479
|
+
#: wbcore/contrib/workflow/models/process.py:171
|
|
480
|
+
msgid "State"
|
|
481
|
+
msgstr "Status"
|
|
482
|
+
|
|
483
|
+
#: wbcore/contrib/workflow/models/process.py:53
|
|
484
|
+
msgid ""
|
|
485
|
+
"The current state of this process. Can be one of: 'Active', 'Finished' or "
|
|
486
|
+
"'Failed'"
|
|
487
|
+
msgstr ""
|
|
488
|
+
"Der derzeitige Status dieses Prozesses. Kann 'Aktiv', 'Beendet' oder "
|
|
489
|
+
"'Fehlgeschlagen' sein"
|
|
490
|
+
|
|
491
|
+
#: wbcore/contrib/workflow/models/process.py:68
|
|
492
|
+
msgid "Entire process failed due to unreachable steps"
|
|
493
|
+
msgstr "Gesamter Prozess wegen unerreichbaren Schritten fehlgeschlagen"
|
|
494
|
+
|
|
495
|
+
#: wbcore/contrib/workflow/models/process.py:83
|
|
496
|
+
msgid "Process {} for workflow {}"
|
|
497
|
+
msgstr "Prozess {} für Workflow {}"
|
|
498
|
+
|
|
499
|
+
#: wbcore/contrib/workflow/models/process.py:112
|
|
500
|
+
msgid "Waiting"
|
|
501
|
+
msgstr "Wartend"
|
|
502
|
+
|
|
503
|
+
#: wbcore/contrib/workflow/models/process.py:114
|
|
504
|
+
msgid "Canceled"
|
|
505
|
+
msgstr "Abgebrochen"
|
|
506
|
+
|
|
507
|
+
#: wbcore/contrib/workflow/models/process.py:134
|
|
508
|
+
#: wbcore/contrib/workflow/models/step.py:190
|
|
509
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:108
|
|
510
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:176
|
|
511
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:13
|
|
512
|
+
msgid "Step"
|
|
513
|
+
msgstr "Schritt"
|
|
514
|
+
|
|
515
|
+
#: wbcore/contrib/workflow/models/process.py:142
|
|
516
|
+
#: wbcore/contrib/workflow/models/step.py:222
|
|
517
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:113
|
|
518
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:181
|
|
519
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:121
|
|
520
|
+
msgid "Assignee"
|
|
521
|
+
msgstr "Verantwortliche*r"
|
|
522
|
+
|
|
523
|
+
#: wbcore/contrib/workflow/models/process.py:151
|
|
524
|
+
#: wbcore/contrib/workflow/models/step.py:231
|
|
525
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:114
|
|
526
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:182
|
|
527
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:122
|
|
528
|
+
msgid "Group"
|
|
529
|
+
msgstr "Gruppe"
|
|
530
|
+
|
|
531
|
+
#: wbcore/contrib/workflow/models/process.py:160
|
|
532
|
+
#: wbcore/contrib/workflow/models/step.py:54
|
|
533
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:115
|
|
534
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:183
|
|
535
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:71
|
|
536
|
+
msgid "Permission"
|
|
537
|
+
msgstr "Berechtigung"
|
|
538
|
+
|
|
539
|
+
#: wbcore/contrib/workflow/models/process.py:166
|
|
540
|
+
msgid "The permission needed to be able to view this step being executed."
|
|
541
|
+
msgstr ""
|
|
542
|
+
"Die Berechtigung, die benötigt wird, um diesen Schritt während seiner "
|
|
543
|
+
"Ausführung sehen zu können."
|
|
544
|
+
|
|
545
|
+
#: wbcore/contrib/workflow/models/process.py:173
|
|
546
|
+
msgid ""
|
|
547
|
+
"The current state of this process step. Can be one of: 'Active', 'Finished', "
|
|
548
|
+
"'Waiting', 'Failed' or 'Canceled'"
|
|
549
|
+
msgstr ""
|
|
550
|
+
"Der derzeitige Status dieses Prozessschrittes. Kann 'Aktiv', 'Beendet', "
|
|
551
|
+
"Wartend', 'Fehlgeschlagen' oder 'Abgebrochen' sein"
|
|
552
|
+
|
|
553
|
+
#: wbcore/contrib/workflow/models/process.py:180
|
|
554
|
+
#: wbcore/contrib/workflow/models/step.py:46
|
|
555
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:116
|
|
556
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:184
|
|
557
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:69
|
|
558
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:412
|
|
559
|
+
msgid "Status"
|
|
560
|
+
msgstr "Statuswert"
|
|
561
|
+
|
|
562
|
+
#: wbcore/contrib/workflow/models/process.py:181
|
|
563
|
+
#: wbcore/contrib/workflow/models/step.py:47
|
|
564
|
+
msgid ""
|
|
565
|
+
"The status that will be set in the attached model upon transitioning to this "
|
|
566
|
+
"step"
|
|
567
|
+
msgstr ""
|
|
568
|
+
"Der Status, der im angehefteten Model gesetzt wird, sobald zu diesem Schritt "
|
|
569
|
+
"gewechselt wird"
|
|
570
|
+
|
|
571
|
+
#: wbcore/contrib/workflow/models/process.py:188
|
|
572
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:112
|
|
573
|
+
msgid "Error Message"
|
|
574
|
+
msgstr "Fehlermeldung"
|
|
575
|
+
|
|
576
|
+
#: wbcore/contrib/workflow/models/process.py:189
|
|
577
|
+
msgid "An error message will be displayed when this step fails"
|
|
578
|
+
msgstr "Eine Fehlermeldung wird dargestellt, wenn dieser Schritt fehlschlägt"
|
|
579
|
+
|
|
580
|
+
#: wbcore/contrib/workflow/models/process.py:222
|
|
581
|
+
msgid "Process step {} for step {}"
|
|
582
|
+
msgstr "Prozessschritt {} für Schritt {}"
|
|
583
|
+
|
|
584
|
+
#: wbcore/contrib/workflow/models/process.py:241
|
|
585
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:158
|
|
586
|
+
#: wbcore/contrib/workflow/viewsets/menu/process.py:11
|
|
587
|
+
#: wbcore/contrib/workflow/viewsets/titles/process.py:18
|
|
588
|
+
msgid "Process Step"
|
|
589
|
+
msgstr "Prozessschritt"
|
|
590
|
+
|
|
591
|
+
#: wbcore/contrib/workflow/models/process.py:242
|
|
592
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:43
|
|
593
|
+
#: wbcore/contrib/workflow/viewsets/display/process.py:47
|
|
594
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:42
|
|
595
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:46
|
|
596
|
+
#: wbcore/contrib/workflow/viewsets/titles/process.py:15
|
|
597
|
+
msgid "Process Steps"
|
|
598
|
+
msgstr "Prozessschritte"
|
|
599
|
+
|
|
600
|
+
#: wbcore/contrib/workflow/models/step.py:30
|
|
601
|
+
#: wbcore/contrib/workflow/models/step.py:213
|
|
602
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:6
|
|
603
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:46
|
|
604
|
+
msgid "Start Step"
|
|
605
|
+
msgstr "Startschritt"
|
|
606
|
+
|
|
607
|
+
#: wbcore/contrib/workflow/models/step.py:31
|
|
608
|
+
#: wbcore/contrib/workflow/models/step.py:327
|
|
609
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:17
|
|
610
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:24
|
|
611
|
+
msgid "User Step"
|
|
612
|
+
msgstr "Benutzerschritt"
|
|
613
|
+
|
|
614
|
+
#: wbcore/contrib/workflow/models/step.py:32
|
|
615
|
+
#: wbcore/contrib/workflow/models/step.py:377
|
|
616
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:28
|
|
617
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:35
|
|
618
|
+
msgid "Decision Step"
|
|
619
|
+
msgstr "Entscheidungsschritt"
|
|
620
|
+
|
|
621
|
+
#: wbcore/contrib/workflow/models/step.py:33
|
|
622
|
+
#: wbcore/contrib/workflow/models/step.py:402
|
|
623
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:39
|
|
624
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:57
|
|
625
|
+
msgid "Split Step"
|
|
626
|
+
msgstr "Teilungsschritt"
|
|
627
|
+
|
|
628
|
+
#: wbcore/contrib/workflow/models/step.py:34
|
|
629
|
+
#: wbcore/contrib/workflow/models/step.py:478
|
|
630
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:50
|
|
631
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:68
|
|
632
|
+
msgid "Join Step"
|
|
633
|
+
msgstr "Mündungsschritt"
|
|
634
|
+
|
|
635
|
+
#: wbcore/contrib/workflow/models/step.py:35
|
|
636
|
+
#: wbcore/contrib/workflow/models/step.py:565
|
|
637
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:72
|
|
638
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:90
|
|
639
|
+
msgid "Email Step"
|
|
640
|
+
msgstr "Emailschritt"
|
|
641
|
+
|
|
642
|
+
#: wbcore/contrib/workflow/models/step.py:36
|
|
643
|
+
#: wbcore/contrib/workflow/models/step.py:506
|
|
644
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:61
|
|
645
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:79
|
|
646
|
+
msgid "Script Step"
|
|
647
|
+
msgstr "Skriptschritt"
|
|
648
|
+
|
|
649
|
+
#: wbcore/contrib/workflow/models/step.py:37
|
|
650
|
+
#: wbcore/contrib/workflow/models/step.py:620
|
|
651
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:83
|
|
652
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:101
|
|
653
|
+
msgid "Finish Step"
|
|
654
|
+
msgstr "Schlussschritt"
|
|
655
|
+
|
|
656
|
+
#: wbcore/contrib/workflow/models/step.py:51
|
|
657
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:67
|
|
658
|
+
msgid "Step Type"
|
|
659
|
+
msgstr "Schrittart"
|
|
660
|
+
|
|
661
|
+
#: wbcore/contrib/workflow/models/step.py:59
|
|
662
|
+
msgid ""
|
|
663
|
+
"Define which permission is needed to be able to view this step being "
|
|
664
|
+
"executed."
|
|
665
|
+
msgstr ""
|
|
666
|
+
"Die Berechtigung, um diesen Schritt während er ausgeführt wird, sehen zu "
|
|
667
|
+
"können."
|
|
668
|
+
|
|
669
|
+
#: wbcore/contrib/workflow/models/step.py:139
|
|
670
|
+
#: wbcore/contrib/workflow/models/step.py:282
|
|
671
|
+
#: wbcore/contrib/workflow/models/step.py:391
|
|
672
|
+
msgid "No valid outgoing transitions found for this step!"
|
|
673
|
+
msgstr "Keine validen ausgehenden Übergänge für diesen Schritt gefunden!"
|
|
674
|
+
|
|
675
|
+
#: wbcore/contrib/workflow/models/step.py:141
|
|
676
|
+
msgid "More than one possible outgoing transition found for this step!"
|
|
677
|
+
msgstr "Mehr als ein möglicher Übergang für diesen Schritt gefunden!"
|
|
678
|
+
|
|
679
|
+
#: wbcore/contrib/workflow/models/step.py:214
|
|
680
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:40
|
|
681
|
+
msgid "Start Steps"
|
|
682
|
+
msgstr "Startschritte"
|
|
683
|
+
|
|
684
|
+
#: wbcore/contrib/workflow/models/step.py:228
|
|
685
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:124
|
|
686
|
+
msgid "Notify User"
|
|
687
|
+
msgstr "Benutzer*in Benachrichtigen"
|
|
688
|
+
|
|
689
|
+
#: wbcore/contrib/workflow/models/step.py:239
|
|
690
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:123
|
|
691
|
+
msgid "Assignee Method"
|
|
692
|
+
msgstr "Verantwortlichen-Methode"
|
|
693
|
+
|
|
694
|
+
#: wbcore/contrib/workflow/models/step.py:252
|
|
695
|
+
msgid "Kwargs"
|
|
696
|
+
msgstr "Kwargs"
|
|
697
|
+
|
|
698
|
+
#: wbcore/contrib/workflow/models/step.py:280
|
|
699
|
+
msgid "No assignees selected!"
|
|
700
|
+
msgstr "Keine Verantwortlichen ausgewählt!"
|
|
701
|
+
|
|
702
|
+
#: wbcore/contrib/workflow/models/step.py:299
|
|
703
|
+
msgid "Assigned Workflow Step Failed"
|
|
704
|
+
msgstr "Zugewiesener Workflow Schritt Gescheitert"
|
|
705
|
+
|
|
706
|
+
#: wbcore/contrib/workflow/models/step.py:301
|
|
707
|
+
msgid ""
|
|
708
|
+
"A workflow step you were assigned to just failed with the error message "
|
|
709
|
+
"'{}'. Please take appropriate action."
|
|
710
|
+
msgstr ""
|
|
711
|
+
"Ein Workflow Schritt, dem Sie zugewiesen waren, ist gerade mit der "
|
|
712
|
+
"Fehlermeldung '{}' fehlgeschlagen. Bitte verfahren Sie angemessen."
|
|
713
|
+
|
|
714
|
+
#: wbcore/contrib/workflow/models/step.py:305
|
|
715
|
+
msgid "Workflow Step Awaiting Your Decision"
|
|
716
|
+
msgstr "Workflow Schritt Wartet auf Ihre Entscheidung"
|
|
717
|
+
|
|
718
|
+
#: wbcore/contrib/workflow/models/step.py:306
|
|
719
|
+
msgid "You were assigned to a workflow step. Please select the next step."
|
|
720
|
+
msgstr ""
|
|
721
|
+
"Sie wurden einem Workflow Schritt zugewiesen. Bitte wählen Sie den nächsten "
|
|
722
|
+
"Schritt."
|
|
723
|
+
|
|
724
|
+
#: wbcore/contrib/workflow/models/step.py:328
|
|
725
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:18
|
|
726
|
+
msgid "User Steps"
|
|
727
|
+
msgstr "Benutzerschritte"
|
|
728
|
+
|
|
729
|
+
#: wbcore/contrib/workflow/models/step.py:338
|
|
730
|
+
msgid "Workflow Step Assignment Notification"
|
|
731
|
+
msgstr "Workflow Schritt Zuweisungsbenachrichtigung"
|
|
732
|
+
|
|
733
|
+
#: wbcore/contrib/workflow/models/step.py:340
|
|
734
|
+
msgid ""
|
|
735
|
+
"Notification for all assigned users that can transition a workflow step to "
|
|
736
|
+
"the next step"
|
|
737
|
+
msgstr ""
|
|
738
|
+
"Benachrichtigung für alle zugewiesenen Benutzer*innen, die den nächsten "
|
|
739
|
+
"Workflow Schritt auswählen können"
|
|
740
|
+
|
|
741
|
+
#: wbcore/contrib/workflow/models/step.py:345
|
|
742
|
+
msgid "Failed Workflow Step Notification"
|
|
743
|
+
msgstr "Fehlgeschlagener Workflow Schritt Benachrichtigung"
|
|
744
|
+
|
|
745
|
+
#: wbcore/contrib/workflow/models/step.py:346
|
|
746
|
+
msgid "Notification for all assigned users of a failed workflow step"
|
|
747
|
+
msgstr ""
|
|
748
|
+
"Benachrichtigung für alle zugewiesenen Benutzer*innen eines fehlgeschlagenen "
|
|
749
|
+
"Workflow Schrittes"
|
|
750
|
+
|
|
751
|
+
#: wbcore/contrib/workflow/models/step.py:366
|
|
752
|
+
msgid "No valid outgoing transition found for this step!"
|
|
753
|
+
msgstr "Kein valider ausgehender Übergang für diesen Schritt gefunden!"
|
|
754
|
+
|
|
755
|
+
#: wbcore/contrib/workflow/models/step.py:378
|
|
756
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:29
|
|
757
|
+
msgid "Decision Steps"
|
|
758
|
+
msgstr "Entscheidungsschritte"
|
|
759
|
+
|
|
760
|
+
#: wbcore/contrib/workflow/models/step.py:403
|
|
761
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:51
|
|
762
|
+
msgid "Split Steps"
|
|
763
|
+
msgstr "Teilungsschritte"
|
|
764
|
+
|
|
765
|
+
#: wbcore/contrib/workflow/models/step.py:411
|
|
766
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:216
|
|
767
|
+
msgid "Wait For All"
|
|
768
|
+
msgstr "Auf Alle Warten"
|
|
769
|
+
|
|
770
|
+
#: wbcore/contrib/workflow/models/step.py:412
|
|
771
|
+
msgid ""
|
|
772
|
+
"If False, will cancel all other incoming process steps as soon the first "
|
|
773
|
+
"reaches this step."
|
|
774
|
+
msgstr ""
|
|
775
|
+
"Wenn falsch, bricht alle anderen eingehenden Prozessschritte ab, sobald der "
|
|
776
|
+
"erste diesen Schritt erreicht."
|
|
777
|
+
|
|
778
|
+
#: wbcore/contrib/workflow/models/step.py:479
|
|
779
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:62
|
|
780
|
+
msgid "Join Steps"
|
|
781
|
+
msgstr "Mündungsschritte"
|
|
782
|
+
|
|
783
|
+
#: wbcore/contrib/workflow/models/step.py:485
|
|
784
|
+
#: wbcore/contrib/workflow/serializers/step.py:267
|
|
785
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:260
|
|
786
|
+
msgid "Script"
|
|
787
|
+
msgstr "Skript"
|
|
788
|
+
|
|
789
|
+
#: wbcore/contrib/workflow/models/step.py:492
|
|
790
|
+
msgid "Executing script failed: {}"
|
|
791
|
+
msgstr "Ausführung des Skripts fehlgeschlagen: {}"
|
|
792
|
+
|
|
793
|
+
#: wbcore/contrib/workflow/models/step.py:507
|
|
794
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:73
|
|
795
|
+
msgid "Script Steps"
|
|
796
|
+
msgstr "Skriptschritte"
|
|
797
|
+
|
|
798
|
+
#: wbcore/contrib/workflow/models/step.py:520
|
|
799
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:312
|
|
800
|
+
msgid "Subject"
|
|
801
|
+
msgstr "Betreff"
|
|
802
|
+
|
|
803
|
+
#: wbcore/contrib/workflow/models/step.py:554
|
|
804
|
+
msgid "Error in template syntax!"
|
|
805
|
+
msgstr "Fehler in Syntax der Vorlage!"
|
|
806
|
+
|
|
807
|
+
#: wbcore/contrib/workflow/models/step.py:566
|
|
808
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:84
|
|
809
|
+
msgid "Email Steps"
|
|
810
|
+
msgstr "Emailschritte"
|
|
811
|
+
|
|
812
|
+
#: wbcore/contrib/workflow/models/step.py:574
|
|
813
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:365
|
|
814
|
+
msgid "Write Preserved Instance"
|
|
815
|
+
msgstr "Geschützte Instanz Speichern"
|
|
816
|
+
|
|
817
|
+
#: wbcore/contrib/workflow/models/step.py:576
|
|
818
|
+
msgid ""
|
|
819
|
+
"Writes the instance data backup onto the instance restoring its state to the "
|
|
820
|
+
"beginning of the workflow."
|
|
821
|
+
msgstr ""
|
|
822
|
+
"Überschreibt die momentane Instanz mit den Daten der gesicherten Instanz, "
|
|
823
|
+
"sodass diese wieder in ihren Zustand zu Beginn des Workflows versetzt wird."
|
|
824
|
+
|
|
825
|
+
#: wbcore/contrib/workflow/models/step.py:589
|
|
826
|
+
msgid "There are process steps still running for this workflow!"
|
|
827
|
+
msgstr "Es gibt noch laufende Prozessschritte in diesem Workflow!"
|
|
828
|
+
|
|
829
|
+
#: wbcore/contrib/workflow/models/step.py:621
|
|
830
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:95
|
|
831
|
+
msgid "Finish Steps"
|
|
832
|
+
msgstr "Schlussschritte"
|
|
833
|
+
|
|
834
|
+
#: wbcore/contrib/workflow/models/transition.py:25
|
|
835
|
+
#: wbcore/contrib/workflow/viewsets/display/transition.py:24
|
|
836
|
+
msgid "Icon"
|
|
837
|
+
msgstr "Symbol"
|
|
838
|
+
|
|
839
|
+
#: wbcore/contrib/workflow/models/transition.py:40
|
|
840
|
+
msgid "No instance or data attached!"
|
|
841
|
+
msgstr "Keine Instanz oder Daten angehängt!"
|
|
842
|
+
|
|
843
|
+
#: wbcore/contrib/workflow/models/workflow.py:34
|
|
844
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:22
|
|
845
|
+
msgid "Single Instance Execution"
|
|
846
|
+
msgstr "Einzelausführung der Instanz"
|
|
847
|
+
|
|
848
|
+
#: wbcore/contrib/workflow/models/workflow.py:36
|
|
849
|
+
msgid ""
|
|
850
|
+
"Indicates wether the workflow is restricted to only one running process per "
|
|
851
|
+
"workflow or attached model instance"
|
|
852
|
+
msgstr ""
|
|
853
|
+
"Gibt an, ob der Workflow beschränkt ist auf nur einen laufenden Prozess pro "
|
|
854
|
+
"Workflow oder angehefteter Model-Instanz"
|
|
855
|
+
|
|
856
|
+
#: wbcore/contrib/workflow/models/workflow.py:39
|
|
857
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:37
|
|
858
|
+
msgid "Model"
|
|
859
|
+
msgstr "Model"
|
|
860
|
+
|
|
861
|
+
#: wbcore/contrib/workflow/models/workflow.py:42
|
|
862
|
+
msgid "Status Field"
|
|
863
|
+
msgstr "Status-Feld"
|
|
864
|
+
|
|
865
|
+
#: wbcore/contrib/workflow/models/workflow.py:43
|
|
866
|
+
msgid ""
|
|
867
|
+
"The status field name in the corresponding model that needs to be updated by "
|
|
868
|
+
"the workflow"
|
|
869
|
+
msgstr ""
|
|
870
|
+
"Der Name des Status-Feldes im angehefteten Model, das vom Workflow "
|
|
871
|
+
"aktualisiert werden soll"
|
|
872
|
+
|
|
873
|
+
#: wbcore/contrib/workflow/models/workflow.py:49
|
|
874
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:25
|
|
875
|
+
msgid "Preserve Instance"
|
|
876
|
+
msgstr "Instanz Schützen"
|
|
877
|
+
|
|
878
|
+
#: wbcore/contrib/workflow/models/workflow.py:51
|
|
879
|
+
msgid ""
|
|
880
|
+
"This will preserve the attached instance's state in a JSON field when "
|
|
881
|
+
"starting the workflow. You then have the option to write this data back onto "
|
|
882
|
+
"the instance in a finish step, effectively preserving the instance's state "
|
|
883
|
+
"throughout the workflow."
|
|
884
|
+
msgstr ""
|
|
885
|
+
"Dies würde alle Daten der angehefteten Instanz in einem JSON-Feld speichern, "
|
|
886
|
+
"sobald der Workflow gestartet wird. Der*Die Benutzer*in hat dann die "
|
|
887
|
+
"Möglichkeit, diese Daten in einem Schlussschritt wieder in der Instanz zu "
|
|
888
|
+
"speichern, wodurch die Instanz vor Änderungen durch den Workflow geschützt "
|
|
889
|
+
"wird."
|
|
890
|
+
|
|
891
|
+
#: wbcore/contrib/workflow/models/workflow.py:54
|
|
892
|
+
#: wbcore/contrib/workflow/serializers/workflow.py:16
|
|
893
|
+
msgid "Graph"
|
|
894
|
+
msgstr "Graph"
|
|
895
|
+
|
|
896
|
+
#: wbcore/contrib/workflow/models/workflow.py:157
|
|
897
|
+
msgid "if {} {} {}"
|
|
898
|
+
msgstr "wenn {} {} {}"
|
|
899
|
+
|
|
900
|
+
#: wbcore/contrib/workflow/serializers/condition.py:35
|
|
901
|
+
msgid "This condition for the selected transition already exists."
|
|
902
|
+
msgstr "Diese Bedingung existiert bereits für den ausgewählten Übergang."
|
|
903
|
+
|
|
904
|
+
#: wbcore/contrib/workflow/serializers/condition.py:39
|
|
905
|
+
msgid "Related workflow needs to have a model or data attached."
|
|
906
|
+
msgstr "Zugehöriger Workflow muss ein Model oder Datensatz angeheftet haben."
|
|
907
|
+
|
|
908
|
+
#: wbcore/contrib/workflow/serializers/data.py:29
|
|
909
|
+
msgid "A field with this name already exists in the process step model."
|
|
910
|
+
msgstr "Ein Feld mit diesem Namen existiert bereits im Prozessschritt Model."
|
|
911
|
+
|
|
912
|
+
#: wbcore/contrib/workflow/serializers/data.py:36
|
|
913
|
+
msgid ""
|
|
914
|
+
"A data object with this label was already created for the selected workflow."
|
|
915
|
+
msgstr ""
|
|
916
|
+
"Ein Datenobjekt mit dieser Bezeichnung wurde bereits für den ausgewählten "
|
|
917
|
+
"Workflow erstellt."
|
|
918
|
+
|
|
919
|
+
#: wbcore/contrib/workflow/serializers/data.py:41
|
|
920
|
+
msgid "Cannot set both required and a default value."
|
|
921
|
+
msgstr ""
|
|
922
|
+
"Kann nicht gleichzeitig als Pflichtfeld deklariert und ein Standardwert "
|
|
923
|
+
"angegeben werden."
|
|
924
|
+
|
|
925
|
+
#: wbcore/contrib/workflow/serializers/data.py:50
|
|
926
|
+
msgid ""
|
|
927
|
+
"Invalid default value for this data type. Please use a date formatted to "
|
|
928
|
+
"'day.month.year'."
|
|
929
|
+
msgstr ""
|
|
930
|
+
"Ungültiger Standardwert für diesen Datentyp. Bitte nutzen Sie ein Datum mit "
|
|
931
|
+
"der Formatierung 'Tag.Monat.Jahr'."
|
|
932
|
+
|
|
933
|
+
#: wbcore/contrib/workflow/serializers/data.py:58
|
|
934
|
+
msgid ""
|
|
935
|
+
"Invalid default value for this data type. Please use a datetime formatted to "
|
|
936
|
+
"'day.month.year hour:minute:second' in the 24h format."
|
|
937
|
+
msgstr ""
|
|
938
|
+
"Ungültiger Standardwert für diesen Datentyp. Bitte nutzen Sie eine Datum- "
|
|
939
|
+
"und Zeitangabe mit der Formatierung 'Tag.Monat.Jahr Stunde:Minute:Sekunde' "
|
|
940
|
+
"im 24h-Format."
|
|
941
|
+
|
|
942
|
+
#: wbcore/contrib/workflow/serializers/data.py:62
|
|
943
|
+
msgid "Invalid default value for this data type."
|
|
944
|
+
msgstr "Ungültiger Standardwert für diesen Datentyp."
|
|
945
|
+
|
|
946
|
+
#: wbcore/contrib/workflow/serializers/data.py:106
|
|
947
|
+
msgid ""
|
|
948
|
+
"Invalid value for this data type. Please use a date formatted to 'day.month."
|
|
949
|
+
"year'."
|
|
950
|
+
msgstr ""
|
|
951
|
+
"Ungültiger Wert für diesen Datentyp. Bitte nutzen Sie ein Datum mit der "
|
|
952
|
+
"Formatierung 'Tag.Monat.Jahr'."
|
|
953
|
+
|
|
954
|
+
#: wbcore/contrib/workflow/serializers/data.py:114
|
|
955
|
+
msgid ""
|
|
956
|
+
"Invalid value for this data type. Please use a datetime formatted to 'day."
|
|
957
|
+
"month.year hour:minute:second' in the 24h format."
|
|
958
|
+
msgstr ""
|
|
959
|
+
"Ungültiger Wert für diesen Datentyp. Bitte nutzen Sie eine Datum- und "
|
|
960
|
+
"Zeitangabe mit der Formatierung 'Tag.Monat.Jahr Stunde:Minute:Sekunde' im "
|
|
961
|
+
"24h-Format."
|
|
962
|
+
|
|
963
|
+
#: wbcore/contrib/workflow/serializers/data.py:118
|
|
964
|
+
msgid "Invalid value for this data type."
|
|
965
|
+
msgstr "Ungültiger Wert für diesen Datentyp."
|
|
966
|
+
|
|
967
|
+
#: wbcore/contrib/workflow/serializers/process.py:100
|
|
968
|
+
#: wbcore/contrib/workflow/serializers/signals.py:20
|
|
969
|
+
msgid "Are you sure you want to activate {}?"
|
|
970
|
+
msgstr "Sind Sie sich sicher, dass Sie {} aktivieren wollen?"
|
|
971
|
+
|
|
972
|
+
#: wbcore/contrib/workflow/serializers/process.py:102
|
|
973
|
+
#: wbcore/contrib/workflow/serializers/signals.py:22
|
|
974
|
+
msgid "Activating {}"
|
|
975
|
+
msgstr "Aktiviere {}"
|
|
976
|
+
|
|
977
|
+
#: wbcore/contrib/workflow/serializers/step.py:78
|
|
978
|
+
msgid "You need to set a workflow."
|
|
979
|
+
msgstr "Sie müssen einen Workflow setzen."
|
|
980
|
+
|
|
981
|
+
#: wbcore/contrib/workflow/serializers/step.py:84
|
|
982
|
+
msgid "Name has to be unique for the specified workflow."
|
|
983
|
+
msgstr "Name muss einzigartig für den Workflow sein."
|
|
984
|
+
|
|
985
|
+
#: wbcore/contrib/workflow/serializers/step.py:90
|
|
986
|
+
msgid "Code has to be unique for the specified workflow."
|
|
987
|
+
msgstr "Code muss einzigartig für diesen Workflow sein."
|
|
988
|
+
|
|
989
|
+
#: wbcore/contrib/workflow/serializers/step.py:96
|
|
990
|
+
msgid ""
|
|
991
|
+
"You need to specify a status for a workflow with an attached model. If no "
|
|
992
|
+
"model is attached, do not specify a status."
|
|
993
|
+
msgstr ""
|
|
994
|
+
"Bei einem Workflow mit angehefteter Instanz müssen Sie ein Status-Feld "
|
|
995
|
+
"angeben."
|
|
996
|
+
|
|
997
|
+
#: wbcore/contrib/workflow/serializers/step.py:158
|
|
998
|
+
msgid "Please select either an assignee or a group. Do not select both."
|
|
999
|
+
msgstr ""
|
|
1000
|
+
"Bitte wählen Sie entweder eine*n Verantwortliche*n oder eine Gruppe, aber "
|
|
1001
|
+
"nicht beides beides."
|
|
1002
|
+
|
|
1003
|
+
#: wbcore/contrib/workflow/serializers/step.py:160
|
|
1004
|
+
msgid "Please do not select both an assignee and a method."
|
|
1005
|
+
msgstr ""
|
|
1006
|
+
"Bitte wählen Sie nicht gleichzeitig eine*n Verantwortliche*n und eine "
|
|
1007
|
+
"Methode aus."
|
|
1008
|
+
|
|
1009
|
+
#: wbcore/contrib/workflow/serializers/step.py:176
|
|
1010
|
+
msgid ""
|
|
1011
|
+
"None of the selected assignees/group members has this permission. Please "
|
|
1012
|
+
"assign the permission to one of the users or choose a different one."
|
|
1013
|
+
msgstr ""
|
|
1014
|
+
"Keiner der ausgewählten verantwortlichen Personen/Gruppen hat diese "
|
|
1015
|
+
"Erlaubnis. Bitte weisen Sie diese Erlaubnis einem der Nutzerprofile zu oder "
|
|
1016
|
+
"wählen Sie eine andere."
|
|
1017
|
+
|
|
1018
|
+
#: wbcore/contrib/workflow/serializers/step.py:304
|
|
1019
|
+
msgid "Duplicate E-Mails in 'To' and 'CC'."
|
|
1020
|
+
msgstr "Duplikate E-Mail-Adressen in 'An' und 'CC'."
|
|
1021
|
+
|
|
1022
|
+
#: wbcore/contrib/workflow/serializers/step.py:306
|
|
1023
|
+
msgid "Duplicate E-Mails in 'To' and 'BCC'."
|
|
1024
|
+
msgstr "Doppelte E-Mail-Adressen in 'An' und 'BCC'."
|
|
1025
|
+
|
|
1026
|
+
#: wbcore/contrib/workflow/serializers/step.py:308
|
|
1027
|
+
msgid "Duplicate E-Mails in 'CC' and 'BCC'."
|
|
1028
|
+
msgstr "Doppelte E-Mail-Adressen in 'CC' und 'BCC'."
|
|
1029
|
+
|
|
1030
|
+
#: wbcore/contrib/workflow/serializers/step.py:336
|
|
1031
|
+
msgid ""
|
|
1032
|
+
"Cannot write preserved instance without picking the option to preserve it "
|
|
1033
|
+
"when creating the workflow."
|
|
1034
|
+
msgstr ""
|
|
1035
|
+
"Kann die geschützte Instanz nicht speichern ohne vorher im Workflow die "
|
|
1036
|
+
"Option, die Instanz zu schützen, ausgewählt zu haben."
|
|
1037
|
+
|
|
1038
|
+
#: wbcore/contrib/workflow/serializers/transition.py:31
|
|
1039
|
+
msgid "All steps need to belong to the same workflow."
|
|
1040
|
+
msgstr "Alle Schritte müssen zu demselben Workflow gehören."
|
|
1041
|
+
|
|
1042
|
+
#: wbcore/contrib/workflow/serializers/transition.py:36
|
|
1043
|
+
msgid ""
|
|
1044
|
+
"Cannot transition to the same step. Please set different preceding and "
|
|
1045
|
+
"succeeding steps."
|
|
1046
|
+
msgstr ""
|
|
1047
|
+
"Kann nicht zum selben Schritt übergehen. Bitte setzen Sie unterschiedliche "
|
|
1048
|
+
"vorangegangene und nachfolgende Schritte."
|
|
1049
|
+
|
|
1050
|
+
#: wbcore/contrib/workflow/serializers/transition.py:42
|
|
1051
|
+
msgid "Cannot set a finishing step at the start of a transition."
|
|
1052
|
+
msgstr "Kann keinen Schlussschritt für den Anfang eines Übergangs benutzen."
|
|
1053
|
+
|
|
1054
|
+
#: wbcore/contrib/workflow/serializers/transition.py:50
|
|
1055
|
+
msgid "A transition with this name to the same succeeding step already exists."
|
|
1056
|
+
msgstr "Ein Übergang mit diesem Namen zum selben Schritt existiert bereits."
|
|
1057
|
+
|
|
1058
|
+
#: wbcore/contrib/workflow/serializers/workflow.py:63
|
|
1059
|
+
#: wbcore/contrib/workflow/serializers/workflow.py:66
|
|
1060
|
+
msgid "Start {}"
|
|
1061
|
+
msgstr "{} Starten"
|
|
1062
|
+
|
|
1063
|
+
#: wbcore/contrib/workflow/serializers/workflow.py:65
|
|
1064
|
+
msgid "Are you sure you want to start workflow {}?"
|
|
1065
|
+
msgstr "Sind Sie sich sicher, dass Sie den Workflow {} starten wollen?"
|
|
1066
|
+
|
|
1067
|
+
#: wbcore/contrib/workflow/serializers/workflow.py:67
|
|
1068
|
+
msgid "Starting {}"
|
|
1069
|
+
msgstr "Starte {}"
|
|
1070
|
+
|
|
1071
|
+
#: wbcore/contrib/workflow/serializers/workflow.py:86
|
|
1072
|
+
msgid "Can only preserve the instance when a model is attached."
|
|
1073
|
+
msgstr "Instanz nicht zum Schützen verfügbar wenn kein Model angeheftet ist."
|
|
1074
|
+
|
|
1075
|
+
#: wbcore/contrib/workflow/serializers/workflow.py:90
|
|
1076
|
+
msgid "Model not found."
|
|
1077
|
+
msgstr "Model nicht gefunden."
|
|
1078
|
+
|
|
1079
|
+
#: wbcore/contrib/workflow/serializers/workflow.py:92
|
|
1080
|
+
msgid "This model does not implement the specified status field."
|
|
1081
|
+
msgstr "Dieses Model implementiert das spezifizierte Status-Feld nicht."
|
|
1082
|
+
|
|
1083
|
+
#: wbcore/contrib/workflow/viewsets/buttons/step.py:13
|
|
1084
|
+
msgid "New Step"
|
|
1085
|
+
msgstr "Neuer Schritt"
|
|
1086
|
+
|
|
1087
|
+
#: wbcore/contrib/workflow/viewsets/buttons/step.py:18
|
|
1088
|
+
msgid "New Start Step"
|
|
1089
|
+
msgstr "Neuer Startschritt"
|
|
1090
|
+
|
|
1091
|
+
#: wbcore/contrib/workflow/viewsets/buttons/step.py:24
|
|
1092
|
+
msgid "New User Step"
|
|
1093
|
+
msgstr "Neuer Benutzerschritt"
|
|
1094
|
+
|
|
1095
|
+
#: wbcore/contrib/workflow/viewsets/buttons/step.py:30
|
|
1096
|
+
msgid "New Decision Step"
|
|
1097
|
+
msgstr "Neuer Entscheidungsschritt"
|
|
1098
|
+
|
|
1099
|
+
#: wbcore/contrib/workflow/viewsets/buttons/step.py:36
|
|
1100
|
+
msgid "New Split Step"
|
|
1101
|
+
msgstr "Neuer Teilungsschritt"
|
|
1102
|
+
|
|
1103
|
+
#: wbcore/contrib/workflow/viewsets/buttons/step.py:42
|
|
1104
|
+
msgid "New Join Step"
|
|
1105
|
+
msgstr "Neuer Mündungsschritt"
|
|
1106
|
+
|
|
1107
|
+
#: wbcore/contrib/workflow/viewsets/buttons/step.py:48
|
|
1108
|
+
msgid "New Script Step"
|
|
1109
|
+
msgstr "Neuer Skriptschritt"
|
|
1110
|
+
|
|
1111
|
+
#: wbcore/contrib/workflow/viewsets/buttons/step.py:54
|
|
1112
|
+
msgid "New Email Step"
|
|
1113
|
+
msgstr "Neuer E-Mail-Schritt"
|
|
1114
|
+
|
|
1115
|
+
#: wbcore/contrib/workflow/viewsets/buttons/step.py:60
|
|
1116
|
+
msgid "New Finish Step"
|
|
1117
|
+
msgstr "Neuer Schlussschritt"
|
|
1118
|
+
|
|
1119
|
+
#: wbcore/contrib/workflow/viewsets/display/step.py:314
|
|
1120
|
+
msgid "Cc"
|
|
1121
|
+
msgstr "CC"
|
|
1122
|
+
|
|
1123
|
+
#: wbcore/contrib/workflow/viewsets/display/workflow.py:24
|
|
1124
|
+
msgid "Model Status Field"
|
|
1125
|
+
msgstr "Model Status-Feld"
|
|
1126
|
+
|
|
1127
|
+
#: wbcore/contrib/workflow/viewsets/menu/condition.py:10
|
|
1128
|
+
#: wbcore/contrib/workflow/viewsets/titles/condition.py:10
|
|
1129
|
+
msgid "Create Condition"
|
|
1130
|
+
msgstr "Bedingung Erstellen"
|
|
1131
|
+
|
|
1132
|
+
#: wbcore/contrib/workflow/viewsets/menu/data.py:10
|
|
1133
|
+
#: wbcore/contrib/workflow/viewsets/titles/data.py:10
|
|
1134
|
+
msgid "Create Data"
|
|
1135
|
+
msgstr "Daten Erstellen"
|
|
1136
|
+
|
|
1137
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:10
|
|
1138
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:43
|
|
1139
|
+
msgid "Create Start Step"
|
|
1140
|
+
msgstr "Startschritt Erstellen"
|
|
1141
|
+
|
|
1142
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:21
|
|
1143
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:21
|
|
1144
|
+
msgid "Create User Step"
|
|
1145
|
+
msgstr "Benutzerschritt Erstellen"
|
|
1146
|
+
|
|
1147
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:32
|
|
1148
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:32
|
|
1149
|
+
msgid "Create Decision Step"
|
|
1150
|
+
msgstr "Entscheidungsschritt Erstellen"
|
|
1151
|
+
|
|
1152
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:43
|
|
1153
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:54
|
|
1154
|
+
msgid "Create Split Step"
|
|
1155
|
+
msgstr "Teilungsschritt Erstellen"
|
|
1156
|
+
|
|
1157
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:54
|
|
1158
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:65
|
|
1159
|
+
msgid "Create Join Step"
|
|
1160
|
+
msgstr "Mündungsschritt Erstellen"
|
|
1161
|
+
|
|
1162
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:65
|
|
1163
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:76
|
|
1164
|
+
msgid "Create Script Step"
|
|
1165
|
+
msgstr "Skriptschritt Erstellen"
|
|
1166
|
+
|
|
1167
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:76
|
|
1168
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:87
|
|
1169
|
+
msgid "Create Email Step"
|
|
1170
|
+
msgstr "Emailschritt Erstellen"
|
|
1171
|
+
|
|
1172
|
+
#: wbcore/contrib/workflow/viewsets/menu/step.py:87
|
|
1173
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:98
|
|
1174
|
+
msgid "Create Finish Step"
|
|
1175
|
+
msgstr "Schlussschritt Erstellen"
|
|
1176
|
+
|
|
1177
|
+
#: wbcore/contrib/workflow/viewsets/menu/transition.py:10
|
|
1178
|
+
#: wbcore/contrib/workflow/viewsets/titles/transition.py:10
|
|
1179
|
+
msgid "Create Transition"
|
|
1180
|
+
msgstr "Übergang Erstellen"
|
|
1181
|
+
|
|
1182
|
+
#: wbcore/contrib/workflow/viewsets/menu/workflow.py:10
|
|
1183
|
+
#: wbcore/contrib/workflow/viewsets/titles/workflow.py:10
|
|
1184
|
+
msgid "Create Workflow"
|
|
1185
|
+
msgstr "Workflow Erstellen"
|
|
1186
|
+
|
|
1187
|
+
#: wbcore/contrib/workflow/viewsets/titles/process.py:23
|
|
1188
|
+
msgid "Assigned Process Steps"
|
|
1189
|
+
msgstr "Zugewiesene Prozessschritte"
|
|
1190
|
+
|
|
1191
|
+
#: wbcore/contrib/workflow/viewsets/titles/process.py:26
|
|
1192
|
+
msgid "Assigned Process Step"
|
|
1193
|
+
msgstr "Zugewiesener Prozessschritt"
|
|
1194
|
+
|
|
1195
|
+
#: wbcore/contrib/workflow/viewsets/titles/step.py:10
|
|
1196
|
+
msgid "Create Step"
|
|
1197
|
+
msgstr "Schritt Erstellen"
|
|
1198
|
+
|
|
1199
|
+
#: wbcore/contrib/workflow/workflows/assignees.py:30
|
|
1200
|
+
msgid "Error in assignee method: Incorrect input in kwargs field!"
|
|
1201
|
+
msgstr "Fehler in Verantwortlichen-Methode: Inkorrekter Input im Kwargs-Feld!"
|
|
1202
|
+
|
|
1203
|
+
#: wbcore/contrib/workflow/workflows/assignees.py:69
|
|
1204
|
+
#: wbcore/contrib/workflow/workflows/assignees.py:80
|
|
1205
|
+
msgid ""
|
|
1206
|
+
"Error in assignee method: No populated group to pick assignee from selected!"
|
|
1207
|
+
msgstr ""
|
|
1208
|
+
"Fehler in Verantwortlichen-Methode: Keine Gruppe mit Benutzer*innen, aus "
|
|
1209
|
+
"denen der*die Verantwortliche gezogen werden kann, wurde ausgewählt!"
|
|
1210
|
+
|
|
1211
|
+
#~ msgid "You need to either provide a process step or a model instance."
|
|
1212
|
+
#~ msgstr ""
|
|
1213
|
+
#~ "Sie müssen entweder einen Prozessschritt oder eine Model-Instanz angeben."
|
|
1214
|
+
|
|
1215
|
+
#, fuzzy
|
|
1216
|
+
#~| msgid "Workflow"
|
|
1217
|
+
#~ msgid "Worklflow"
|
|
1218
|
+
#~ msgstr "Workflow"
|
|
1219
|
+
|
|
1220
|
+
#~ msgid "Is Start Transition"
|
|
1221
|
+
#~ msgstr "Ist Startübergang"
|
|
1222
|
+
|
|
1223
|
+
#~ msgid "Indicates wether this transition can start a workflow"
|
|
1224
|
+
#~ msgstr "Gibt an, ob dieser Übergang einen Workflow starten darf"
|
|
1225
|
+
|
|
1226
|
+
#~ msgid "Auto Trigger"
|
|
1227
|
+
#~ msgstr "Auto Trigger"
|
|
1228
|
+
|
|
1229
|
+
#~ msgid ""
|
|
1230
|
+
#~ "Indicates wether this transition can be automatically triggered by the "
|
|
1231
|
+
#~ "system if all conditions are met"
|
|
1232
|
+
#~ msgstr ""
|
|
1233
|
+
#~ "Gibt an, ob dieser Übergang automatisch vom System gestartet werden darf, "
|
|
1234
|
+
#~ "sofern alle Bedingungen erfüllt sind"
|
|
1235
|
+
|
|
1236
|
+
#~ msgid ""
|
|
1237
|
+
#~ "Either set this transition as a starting transition or set a preceding "
|
|
1238
|
+
#~ "step. Do not set both or none."
|
|
1239
|
+
#~ msgstr ""
|
|
1240
|
+
#~ "Wählen Sie diesen Übergang entweder als Startübergang aus oder setzen Sie "
|
|
1241
|
+
#~ "einen vorangegangenen Schritt. Setzen Sie nicht beides oder keines."
|
|
1242
|
+
|
|
1243
|
+
#~ msgid ""
|
|
1244
|
+
#~ "Cannot set an automatic trigger on start transitions with an attached "
|
|
1245
|
+
#~ "instance."
|
|
1246
|
+
#~ msgstr ""
|
|
1247
|
+
#~ "Kann keinen automatischen Trigger auf Start-Übergänge mit einem "
|
|
1248
|
+
#~ "angehefteten Modell legen."
|
|
1249
|
+
|
|
1250
|
+
#~ msgid "A start transition cannot end in a finishing step."
|
|
1251
|
+
#~ msgstr "Ein Startübergang kann nicht in einem Schlussschritt enden."
|
|
1252
|
+
|
|
1253
|
+
#~ msgid "Not equal"
|
|
1254
|
+
#~ msgstr "Ungleich"
|
|
1255
|
+
|
|
1256
|
+
#~ msgid ""
|
|
1257
|
+
#~ "Could not find the specified serializer for this model. Please contact an "
|
|
1258
|
+
#~ "administrator."
|
|
1259
|
+
#~ msgstr ""
|
|
1260
|
+
#~ "Konnte den angegebenen Serializer für dieses Model nicht finden. Bitte "
|
|
1261
|
+
#~ "kontaktieren Sie einen Administrator."
|
|
1262
|
+
|
|
1263
|
+
#~ msgid ""
|
|
1264
|
+
#~ "The model needs to implement the 'get_model_serializer' method to be able "
|
|
1265
|
+
#~ "to be used. Please contact an administrator."
|
|
1266
|
+
#~ msgstr ""
|
|
1267
|
+
#~ "Das Model muss die 'get_model_serializer' Methode implementieren, um im "
|
|
1268
|
+
#~ "Workflow genutzt werden zu können. Bitte kontaktieren Sie einen "
|
|
1269
|
+
#~ "Administrator."
|
|
1270
|
+
|
|
1271
|
+
#~ msgid ""
|
|
1272
|
+
#~ "Cannot add a condition to a start transition as it has no data or "
|
|
1273
|
+
#~ "instance attached yet."
|
|
1274
|
+
#~ msgstr ""
|
|
1275
|
+
#~ "Kann keine Bedingung zu einem Start-Übergang hinzufügen, da diese noch "
|
|
1276
|
+
#~ "keine Daten oder Instanz angeheftet haben kann."
|
|
1277
|
+
|
|
1278
|
+
#~ msgid "View Workflow Graph"
|
|
1279
|
+
#~ msgstr "Workflow Graph Anzeigen"
|
|
1280
|
+
|
|
1281
|
+
#~ msgid "Viewing Workflow Graph"
|
|
1282
|
+
#~ msgstr "Anzeigen des Workflow Graphs"
|
|
1283
|
+
|
|
1284
|
+
#~ msgid ""
|
|
1285
|
+
#~ "You need to either set the model, its status field and single instance "
|
|
1286
|
+
#~ "execution or set neither."
|
|
1287
|
+
#~ msgstr ""
|
|
1288
|
+
#~ "Sie müssen entweder Model, Status-Feld und Einzelausführung der Instanz "
|
|
1289
|
+
#~ "angeben oder keins der Felder."
|