wbcore 1.59.16__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/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.16.dist-info → wbcore-1.60.0.dist-info}/METADATA +1 -1
- {wbcore-1.59.16.dist-info → wbcore-1.60.0.dist-info}/RECORD +98 -98
- 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.16.dist-info → wbcore-1.60.0.dist-info}/WHEEL +0 -0
|
@@ -6,12 +6,11 @@
|
|
|
6
6
|
# Translators:
|
|
7
7
|
# Kevin Decoster, 2025
|
|
8
8
|
#
|
|
9
|
-
#, fuzzy
|
|
10
9
|
msgid ""
|
|
11
10
|
msgstr ""
|
|
12
11
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
13
12
|
"Report-Msgid-Bugs-To: \n"
|
|
14
|
-
"POT-Creation-Date:
|
|
13
|
+
"POT-Creation-Date: 2026-01-16 14:04+0100\n"
|
|
15
14
|
"PO-Revision-Date: 2025-05-30 09:40+0000\n"
|
|
16
15
|
"Last-Translator: Kevin Decoster, 2025\n"
|
|
17
16
|
"Language-Team: German (https://app.transifex.com/stainly/teams/171242/de/)\n"
|
|
@@ -100,7 +99,7 @@ msgid "Permissions"
|
|
|
100
99
|
msgstr "Berechtigungen"
|
|
101
100
|
|
|
102
101
|
#: contrib/workflow/filters/process.py:84
|
|
103
|
-
#: contrib/workflow/filters/process.py:118 contrib/workflow/models/step.py:
|
|
102
|
+
#: contrib/workflow/filters/process.py:118 contrib/workflow/models/step.py:210
|
|
104
103
|
#: contrib/workflow/viewsets/display/workflow.py:58
|
|
105
104
|
#: contrib/workflow/viewsets/display/workflow.py:62
|
|
106
105
|
#: contrib/workflow/viewsets/titles/step.py:8
|
|
@@ -115,8 +114,8 @@ msgstr "Schritte"
|
|
|
115
114
|
msgid "Processes"
|
|
116
115
|
msgstr "Prozesse"
|
|
117
116
|
|
|
118
|
-
#: contrib/workflow/filters/process.py:158 contrib/workflow/models/data.py:
|
|
119
|
-
#: contrib/workflow/models/process.py:34 contrib/workflow/models/step.py:
|
|
117
|
+
#: contrib/workflow/filters/process.py:158 contrib/workflow/models/data.py:50
|
|
118
|
+
#: contrib/workflow/models/process.py:34 contrib/workflow/models/step.py:44
|
|
120
119
|
#: contrib/workflow/models/workflow.py:274
|
|
121
120
|
#: contrib/workflow/serializers/data.py:15
|
|
122
121
|
#: contrib/workflow/serializers/process.py:146
|
|
@@ -144,7 +143,7 @@ msgid "Attached Model"
|
|
|
144
143
|
msgstr "Angeheftetes Model"
|
|
145
144
|
|
|
146
145
|
#: contrib/workflow/filters/step.py:25 contrib/workflow/filters/step.py:26
|
|
147
|
-
#: contrib/workflow/filters/step.py:27 contrib/workflow/models/step.py:
|
|
146
|
+
#: contrib/workflow/filters/step.py:27 contrib/workflow/models/step.py:48
|
|
148
147
|
#: contrib/workflow/viewsets/display/step.py:71
|
|
149
148
|
#: contrib/workflow/viewsets/display/step.py:414
|
|
150
149
|
msgid "Code"
|
|
@@ -162,22 +161,22 @@ msgstr "Schrittarten"
|
|
|
162
161
|
msgid "Assignee Methods"
|
|
163
162
|
msgstr "Verantwortlichen-Methoden"
|
|
164
163
|
|
|
165
|
-
#: contrib/workflow/filters/step.py:187 contrib/workflow/models/step.py:
|
|
164
|
+
#: contrib/workflow/filters/step.py:187 contrib/workflow/models/step.py:546
|
|
166
165
|
#: contrib/workflow/viewsets/display/step.py:314
|
|
167
166
|
msgid "Template"
|
|
168
167
|
msgstr "Vorlage"
|
|
169
168
|
|
|
170
|
-
#: contrib/workflow/filters/step.py:189 contrib/workflow/models/step.py:
|
|
169
|
+
#: contrib/workflow/filters/step.py:189 contrib/workflow/models/step.py:556
|
|
171
170
|
#: contrib/workflow/viewsets/display/step.py:311
|
|
172
171
|
msgctxt "Email context"
|
|
173
172
|
msgid "To"
|
|
174
173
|
msgstr "An"
|
|
175
174
|
|
|
176
|
-
#: contrib/workflow/filters/step.py:196 contrib/workflow/models/step.py:
|
|
175
|
+
#: contrib/workflow/filters/step.py:196 contrib/workflow/models/step.py:561
|
|
177
176
|
msgid "CC"
|
|
178
177
|
msgstr "CC"
|
|
179
178
|
|
|
180
|
-
#: contrib/workflow/filters/step.py:203 contrib/workflow/models/step.py:
|
|
179
|
+
#: contrib/workflow/filters/step.py:203 contrib/workflow/models/step.py:567
|
|
181
180
|
#: contrib/workflow/viewsets/display/step.py:316
|
|
182
181
|
msgid "BCC"
|
|
183
182
|
msgstr "BCC"
|
|
@@ -321,60 +320,60 @@ msgstr "Datum und Uhrzeit"
|
|
|
321
320
|
msgid "Boolean"
|
|
322
321
|
msgstr "Boolesch"
|
|
323
322
|
|
|
324
|
-
#: contrib/workflow/models/data.py:
|
|
323
|
+
#: contrib/workflow/models/data.py:53
|
|
325
324
|
#: contrib/workflow/viewsets/display/data.py:19
|
|
326
325
|
msgid "Label"
|
|
327
326
|
msgstr "Bezeichnung"
|
|
328
327
|
|
|
329
|
-
#: contrib/workflow/models/data.py:
|
|
328
|
+
#: contrib/workflow/models/data.py:54
|
|
330
329
|
#: contrib/workflow/viewsets/display/data.py:23
|
|
331
330
|
msgid "Help Text"
|
|
332
331
|
msgstr "Hilfe-Text"
|
|
333
332
|
|
|
334
|
-
#: contrib/workflow/models/data.py:
|
|
333
|
+
#: contrib/workflow/models/data.py:56
|
|
335
334
|
#: contrib/workflow/viewsets/display/data.py:21
|
|
336
335
|
msgid "Data Type"
|
|
337
336
|
msgstr "Datentyp"
|
|
338
337
|
|
|
339
|
-
#: contrib/workflow/models/data.py:
|
|
338
|
+
#: contrib/workflow/models/data.py:59
|
|
340
339
|
#: contrib/workflow/viewsets/display/data.py:22
|
|
341
340
|
msgid "Required"
|
|
342
341
|
msgstr "Pflichtfeld"
|
|
343
342
|
|
|
344
|
-
#: contrib/workflow/models/data.py:
|
|
343
|
+
#: contrib/workflow/models/data.py:63
|
|
345
344
|
#: contrib/workflow/viewsets/display/data.py:24
|
|
346
345
|
msgid "Default"
|
|
347
346
|
msgstr "Standardwert"
|
|
348
347
|
|
|
349
|
-
#: contrib/workflow/models/data.py:
|
|
348
|
+
#: contrib/workflow/models/data.py:118
|
|
350
349
|
msgid "Casting to bool failed."
|
|
351
350
|
msgstr "In Boolean Umwandeln fehlgeschlagen."
|
|
352
351
|
|
|
353
|
-
#: contrib/workflow/models/data.py:
|
|
352
|
+
#: contrib/workflow/models/data.py:153
|
|
354
353
|
msgid "Unsupported target type!"
|
|
355
354
|
msgstr "Zieltyp wird nicht unterstützt!"
|
|
356
355
|
|
|
357
|
-
#: contrib/workflow/models/data.py:
|
|
356
|
+
#: contrib/workflow/models/data.py:183
|
|
358
357
|
msgid "Date(time) type selected but no date(time) object provided!"
|
|
359
358
|
msgstr "Datumstyp ausgewählt aber kein Datumsobjekt mitgegeben!"
|
|
360
359
|
|
|
361
|
-
#: contrib/workflow/models/data.py:
|
|
360
|
+
#: contrib/workflow/models/data.py:191
|
|
362
361
|
msgid "Wrong boolean value!"
|
|
363
362
|
msgstr "Falscher Boolean-Wert!"
|
|
364
363
|
|
|
365
|
-
#: contrib/workflow/models/data.py:
|
|
366
|
-
#: contrib/workflow/models/data.py:
|
|
364
|
+
#: contrib/workflow/models/data.py:213 contrib/workflow/models/data.py:214
|
|
365
|
+
#: contrib/workflow/models/data.py:224
|
|
367
366
|
#: contrib/workflow/viewsets/menu/data.py:7
|
|
368
367
|
#: contrib/workflow/viewsets/titles/data.py:8
|
|
369
368
|
#: contrib/workflow/viewsets/titles/data.py:14
|
|
370
369
|
msgid "Data"
|
|
371
370
|
msgstr "Daten"
|
|
372
371
|
|
|
373
|
-
#: contrib/workflow/models/data.py:
|
|
372
|
+
#: contrib/workflow/models/data.py:223
|
|
374
373
|
msgid "Value"
|
|
375
374
|
msgstr "Wert"
|
|
376
375
|
|
|
377
|
-
#: contrib/workflow/models/data.py:
|
|
376
|
+
#: contrib/workflow/models/data.py:226 contrib/workflow/models/process.py:104
|
|
378
377
|
#: contrib/workflow/models/process.py:131
|
|
379
378
|
#: contrib/workflow/viewsets/display/process.py:66
|
|
380
379
|
#: contrib/workflow/viewsets/display/process.py:110
|
|
@@ -383,11 +382,11 @@ msgstr "Wert"
|
|
|
383
382
|
msgid "Process"
|
|
384
383
|
msgstr "Daten"
|
|
385
384
|
|
|
386
|
-
#: contrib/workflow/models/data.py:
|
|
385
|
+
#: contrib/workflow/models/data.py:241
|
|
387
386
|
msgid "Data Value"
|
|
388
387
|
msgstr "Datenwert"
|
|
389
388
|
|
|
390
|
-
#: contrib/workflow/models/data.py:
|
|
389
|
+
#: contrib/workflow/models/data.py:242
|
|
391
390
|
msgid "Data Values"
|
|
392
391
|
msgstr "Datenwerte"
|
|
393
392
|
|
|
@@ -395,7 +394,7 @@ msgstr "Datenwerte"
|
|
|
395
394
|
msgid "Grid Fields"
|
|
396
395
|
msgstr "Gitterfelder"
|
|
397
396
|
|
|
398
|
-
#: contrib/workflow/models/display.py:11 contrib/workflow/models/step.py:
|
|
397
|
+
#: contrib/workflow/models/display.py:11 contrib/workflow/models/step.py:41
|
|
399
398
|
#: contrib/workflow/models/transition.py:15
|
|
400
399
|
#: contrib/workflow/models/workflow.py:40
|
|
401
400
|
#: contrib/workflow/viewsets/display/step.py:67
|
|
@@ -405,7 +404,7 @@ msgstr "Gitterfelder"
|
|
|
405
404
|
msgid "Name"
|
|
406
405
|
msgstr "Name"
|
|
407
406
|
|
|
408
|
-
#: contrib/workflow/models/display.py:33 contrib/workflow/models/step.py:
|
|
407
|
+
#: contrib/workflow/models/display.py:33 contrib/workflow/models/step.py:264
|
|
409
408
|
msgid "Display"
|
|
410
409
|
msgstr "Darstellung"
|
|
411
410
|
|
|
@@ -477,27 +476,27 @@ msgstr "Wartend"
|
|
|
477
476
|
msgid "Canceled"
|
|
478
477
|
msgstr "Abgebrochen"
|
|
479
478
|
|
|
480
|
-
#: contrib/workflow/models/process.py:136 contrib/workflow/models/step.py:
|
|
479
|
+
#: contrib/workflow/models/process.py:136 contrib/workflow/models/step.py:209
|
|
481
480
|
#: contrib/workflow/viewsets/display/process.py:109
|
|
482
481
|
#: contrib/workflow/viewsets/display/process.py:177
|
|
483
482
|
#: contrib/workflow/viewsets/titles/step.py:14
|
|
484
483
|
msgid "Step"
|
|
485
484
|
msgstr "Schritt"
|
|
486
485
|
|
|
487
|
-
#: contrib/workflow/models/process.py:144 contrib/workflow/models/step.py:
|
|
486
|
+
#: contrib/workflow/models/process.py:144 contrib/workflow/models/step.py:241
|
|
488
487
|
#: contrib/workflow/viewsets/display/process.py:114
|
|
489
488
|
#: contrib/workflow/viewsets/display/step.py:122
|
|
490
489
|
msgid "Assignee"
|
|
491
490
|
msgstr "Verantwortliche*r"
|
|
492
491
|
|
|
493
|
-
#: contrib/workflow/models/process.py:153 contrib/workflow/models/step.py:
|
|
492
|
+
#: contrib/workflow/models/process.py:153 contrib/workflow/models/step.py:250
|
|
494
493
|
#: contrib/workflow/viewsets/display/process.py:115
|
|
495
494
|
#: contrib/workflow/viewsets/display/process.py:182
|
|
496
495
|
#: contrib/workflow/viewsets/display/step.py:123
|
|
497
496
|
msgid "Group"
|
|
498
497
|
msgstr "Gruppe"
|
|
499
498
|
|
|
500
|
-
#: contrib/workflow/models/process.py:162 contrib/workflow/models/step.py:
|
|
499
|
+
#: contrib/workflow/models/process.py:162 contrib/workflow/models/step.py:61
|
|
501
500
|
#: contrib/workflow/viewsets/display/process.py:116
|
|
502
501
|
#: contrib/workflow/viewsets/display/process.py:183
|
|
503
502
|
#: contrib/workflow/viewsets/display/step.py:72
|
|
@@ -518,7 +517,7 @@ msgstr ""
|
|
|
518
517
|
"Der derzeitige Status dieses Prozessschrittes. Kann 'Aktiv', 'Beendet', "
|
|
519
518
|
"Wartend', 'Fehlgeschlagen' oder 'Abgebrochen' sein"
|
|
520
519
|
|
|
521
|
-
#: contrib/workflow/models/process.py:182 contrib/workflow/models/step.py:
|
|
520
|
+
#: contrib/workflow/models/process.py:182 contrib/workflow/models/step.py:51
|
|
522
521
|
#: contrib/workflow/viewsets/display/process.py:117
|
|
523
522
|
#: contrib/workflow/viewsets/display/process.py:184
|
|
524
523
|
#: contrib/workflow/viewsets/display/step.py:70
|
|
@@ -563,66 +562,66 @@ msgstr "Prozessschritt"
|
|
|
563
562
|
msgid "Process Steps"
|
|
564
563
|
msgstr "Prozessschritte"
|
|
565
564
|
|
|
566
|
-
#: contrib/workflow/models/step.py:
|
|
565
|
+
#: contrib/workflow/models/step.py:32 contrib/workflow/models/step.py:232
|
|
567
566
|
#: contrib/workflow/viewsets/menu/step.py:7
|
|
568
567
|
#: contrib/workflow/viewsets/titles/step.py:47
|
|
569
568
|
msgid "Start Step"
|
|
570
569
|
msgstr "Startschritt"
|
|
571
570
|
|
|
572
|
-
#: contrib/workflow/models/step.py:
|
|
571
|
+
#: contrib/workflow/models/step.py:33 contrib/workflow/models/step.py:351
|
|
573
572
|
#: contrib/workflow/viewsets/menu/step.py:22
|
|
574
573
|
#: contrib/workflow/viewsets/titles/step.py:25
|
|
575
574
|
msgid "User Step"
|
|
576
575
|
msgstr "Benutzerschritt"
|
|
577
576
|
|
|
578
|
-
#: contrib/workflow/models/step.py:
|
|
577
|
+
#: contrib/workflow/models/step.py:34 contrib/workflow/models/step.py:404
|
|
579
578
|
#: contrib/workflow/viewsets/menu/step.py:37
|
|
580
579
|
#: contrib/workflow/viewsets/titles/step.py:36
|
|
581
580
|
msgid "Decision Step"
|
|
582
581
|
msgstr "Entscheidungsschritt"
|
|
583
582
|
|
|
584
|
-
#: contrib/workflow/models/step.py:
|
|
583
|
+
#: contrib/workflow/models/step.py:35 contrib/workflow/models/step.py:432
|
|
585
584
|
#: contrib/workflow/viewsets/menu/step.py:52
|
|
586
585
|
#: contrib/workflow/viewsets/titles/step.py:58
|
|
587
586
|
msgid "Split Step"
|
|
588
587
|
msgstr "Teilungsschritt"
|
|
589
588
|
|
|
590
|
-
#: contrib/workflow/models/step.py:
|
|
589
|
+
#: contrib/workflow/models/step.py:36 contrib/workflow/models/step.py:509
|
|
591
590
|
#: contrib/workflow/viewsets/menu/step.py:67
|
|
592
591
|
#: contrib/workflow/viewsets/titles/step.py:69
|
|
593
592
|
msgid "Join Step"
|
|
594
593
|
msgstr "Mündungsschritt"
|
|
595
594
|
|
|
596
|
-
#: contrib/workflow/models/step.py:
|
|
595
|
+
#: contrib/workflow/models/step.py:37 contrib/workflow/models/step.py:602
|
|
597
596
|
#: contrib/workflow/viewsets/menu/step.py:97
|
|
598
597
|
#: contrib/workflow/viewsets/titles/step.py:91
|
|
599
598
|
msgid "Email Step"
|
|
600
599
|
msgstr "Emailschritt"
|
|
601
600
|
|
|
602
|
-
#: contrib/workflow/models/step.py:
|
|
601
|
+
#: contrib/workflow/models/step.py:38 contrib/workflow/models/step.py:537
|
|
603
602
|
#: contrib/workflow/viewsets/menu/step.py:82
|
|
604
603
|
#: contrib/workflow/viewsets/titles/step.py:80
|
|
605
604
|
msgid "Script Step"
|
|
606
605
|
msgstr "Skriptschritt"
|
|
607
606
|
|
|
608
|
-
#: contrib/workflow/models/step.py:
|
|
607
|
+
#: contrib/workflow/models/step.py:39 contrib/workflow/models/step.py:661
|
|
609
608
|
#: contrib/workflow/viewsets/menu/step.py:112
|
|
610
609
|
#: contrib/workflow/viewsets/titles/step.py:102
|
|
611
610
|
msgid "Finish Step"
|
|
612
611
|
msgstr "Schlussschritt"
|
|
613
612
|
|
|
614
|
-
#: contrib/workflow/models/step.py:
|
|
613
|
+
#: contrib/workflow/models/step.py:53
|
|
615
614
|
msgid ""
|
|
616
615
|
"The status that will be set in the attached instance's status field upon "
|
|
617
616
|
"transitioning to this step. Only applicable if attached model is set."
|
|
618
617
|
msgstr ""
|
|
619
618
|
|
|
620
|
-
#: contrib/workflow/models/step.py:
|
|
619
|
+
#: contrib/workflow/models/step.py:58
|
|
621
620
|
#: contrib/workflow/viewsets/display/step.py:68
|
|
622
621
|
msgid "Step Type"
|
|
623
622
|
msgstr "Schrittart"
|
|
624
623
|
|
|
625
|
-
#: contrib/workflow/models/step.py:
|
|
624
|
+
#: contrib/workflow/models/step.py:66
|
|
626
625
|
msgid ""
|
|
627
626
|
"Define which permission is needed to be able to view this step being "
|
|
628
627
|
"executed."
|
|
@@ -630,44 +629,44 @@ msgstr ""
|
|
|
630
629
|
"Die Berechtigung, um diesen Schritt während er ausgeführt wird, sehen zu "
|
|
631
630
|
"können."
|
|
632
631
|
|
|
633
|
-
#: contrib/workflow/models/step.py:
|
|
634
|
-
#: contrib/workflow/models/step.py:
|
|
632
|
+
#: contrib/workflow/models/step.py:151 contrib/workflow/models/step.py:302
|
|
633
|
+
#: contrib/workflow/models/step.py:420
|
|
635
634
|
msgid "No valid outgoing transitions found for this step!"
|
|
636
635
|
msgstr "Keine validen ausgehenden Übergänge für diesen Schritt gefunden!"
|
|
637
636
|
|
|
638
|
-
#: contrib/workflow/models/step.py:
|
|
637
|
+
#: contrib/workflow/models/step.py:156
|
|
639
638
|
msgid "More than one possible outgoing transition found for this step!"
|
|
640
639
|
msgstr "Mehr als ein möglicher Übergang für diesen Schritt gefunden!"
|
|
641
640
|
|
|
642
|
-
#: contrib/workflow/models/step.py:
|
|
641
|
+
#: contrib/workflow/models/step.py:233
|
|
643
642
|
#: contrib/workflow/viewsets/titles/step.py:41
|
|
644
643
|
msgid "Start Steps"
|
|
645
644
|
msgstr "Startschritte"
|
|
646
645
|
|
|
647
|
-
#: contrib/workflow/models/step.py:
|
|
646
|
+
#: contrib/workflow/models/step.py:247
|
|
648
647
|
#: contrib/workflow/viewsets/display/step.py:125
|
|
649
648
|
msgid "Notify User"
|
|
650
649
|
msgstr "Benutzer*in Benachrichtigen"
|
|
651
650
|
|
|
652
|
-
#: contrib/workflow/models/step.py:
|
|
651
|
+
#: contrib/workflow/models/step.py:258
|
|
653
652
|
#: contrib/workflow/serializers/step.py:144
|
|
654
653
|
#: contrib/workflow/viewsets/display/step.py:124
|
|
655
654
|
msgid "Assignee Method"
|
|
656
655
|
msgstr "Verantwortlichen-Methode"
|
|
657
656
|
|
|
658
|
-
#: contrib/workflow/models/step.py:
|
|
657
|
+
#: contrib/workflow/models/step.py:270
|
|
659
658
|
msgid "Kwargs"
|
|
660
659
|
msgstr "Kwargs"
|
|
661
660
|
|
|
662
|
-
#: contrib/workflow/models/step.py:
|
|
661
|
+
#: contrib/workflow/models/step.py:298
|
|
663
662
|
msgid "No assignees selected!"
|
|
664
663
|
msgstr "Keine Verantwortlichen ausgewählt!"
|
|
665
664
|
|
|
666
|
-
#: contrib/workflow/models/step.py:
|
|
665
|
+
#: contrib/workflow/models/step.py:320
|
|
667
666
|
msgid "Assigned Workflow Step Failed"
|
|
668
667
|
msgstr "Zugewiesener Workflow Schritt Gescheitert"
|
|
669
668
|
|
|
670
|
-
#: contrib/workflow/models/step.py:
|
|
669
|
+
#: contrib/workflow/models/step.py:322
|
|
671
670
|
msgid ""
|
|
672
671
|
"A workflow step you were assigned to just failed with the error message "
|
|
673
672
|
"'{}'. Please take appropriate action."
|
|
@@ -675,26 +674,26 @@ msgstr ""
|
|
|
675
674
|
"Ein Workflow Schritt, dem Sie zugewiesen waren, ist gerade mit der "
|
|
676
675
|
"Fehlermeldung '{}' fehlgeschlagen. Bitte verfahren Sie angemessen."
|
|
677
676
|
|
|
678
|
-
#: contrib/workflow/models/step.py:
|
|
677
|
+
#: contrib/workflow/models/step.py:326
|
|
679
678
|
msgid "Workflow Step Awaiting Your Decision"
|
|
680
679
|
msgstr "Workflow Schritt Wartet auf Ihre Entscheidung"
|
|
681
680
|
|
|
682
|
-
#: contrib/workflow/models/step.py:
|
|
681
|
+
#: contrib/workflow/models/step.py:327
|
|
683
682
|
msgid "You were assigned to a workflow step. Please select the next step."
|
|
684
683
|
msgstr ""
|
|
685
684
|
"Sie wurden einem Workflow Schritt zugewiesen. Bitte wählen Sie den nächsten "
|
|
686
685
|
"Schritt."
|
|
687
686
|
|
|
688
|
-
#: contrib/workflow/models/step.py:
|
|
687
|
+
#: contrib/workflow/models/step.py:352
|
|
689
688
|
#: contrib/workflow/viewsets/titles/step.py:19
|
|
690
689
|
msgid "User Steps"
|
|
691
690
|
msgstr "Benutzerschritte"
|
|
692
691
|
|
|
693
|
-
#: contrib/workflow/models/step.py:
|
|
692
|
+
#: contrib/workflow/models/step.py:362
|
|
694
693
|
msgid "Workflow Step Assignment Notification"
|
|
695
694
|
msgstr "Workflow Schritt Zuweisungsbenachrichtigung"
|
|
696
695
|
|
|
697
|
-
#: contrib/workflow/models/step.py:
|
|
696
|
+
#: contrib/workflow/models/step.py:364
|
|
698
697
|
msgid ""
|
|
699
698
|
"Notification for all assigned users that can transition a workflow step to "
|
|
700
699
|
"the next step"
|
|
@@ -702,36 +701,36 @@ msgstr ""
|
|
|
702
701
|
"Benachrichtigung für alle zugewiesenen Benutzer*innen, die den nächsten "
|
|
703
702
|
"Workflow Schritt auswählen können"
|
|
704
703
|
|
|
705
|
-
#: contrib/workflow/models/step.py:
|
|
704
|
+
#: contrib/workflow/models/step.py:369
|
|
706
705
|
msgid "Failed Workflow Step Notification"
|
|
707
706
|
msgstr "Fehlgeschlagener Workflow Schritt Benachrichtigung"
|
|
708
707
|
|
|
709
|
-
#: contrib/workflow/models/step.py:
|
|
708
|
+
#: contrib/workflow/models/step.py:370
|
|
710
709
|
msgid "Notification for all assigned users of a failed workflow step"
|
|
711
710
|
msgstr ""
|
|
712
711
|
"Benachrichtigung für alle zugewiesenen Benutzer*innen eines fehlgeschlagenen"
|
|
713
712
|
" Workflow Schrittes"
|
|
714
713
|
|
|
715
|
-
#: contrib/workflow/models/step.py:
|
|
714
|
+
#: contrib/workflow/models/step.py:392
|
|
716
715
|
msgid "No valid outgoing transition found for this step!"
|
|
717
716
|
msgstr "Kein valider ausgehender Übergang für diesen Schritt gefunden!"
|
|
718
717
|
|
|
719
|
-
#: contrib/workflow/models/step.py:
|
|
718
|
+
#: contrib/workflow/models/step.py:405
|
|
720
719
|
#: contrib/workflow/viewsets/titles/step.py:30
|
|
721
720
|
msgid "Decision Steps"
|
|
722
721
|
msgstr "Entscheidungsschritte"
|
|
723
722
|
|
|
724
|
-
#: contrib/workflow/models/step.py:
|
|
723
|
+
#: contrib/workflow/models/step.py:433
|
|
725
724
|
#: contrib/workflow/viewsets/titles/step.py:52
|
|
726
725
|
msgid "Split Steps"
|
|
727
726
|
msgstr "Teilungsschritte"
|
|
728
727
|
|
|
729
|
-
#: contrib/workflow/models/step.py:
|
|
728
|
+
#: contrib/workflow/models/step.py:443
|
|
730
729
|
#: contrib/workflow/viewsets/display/step.py:217
|
|
731
730
|
msgid "Wait For All"
|
|
732
731
|
msgstr "Auf Alle Warten"
|
|
733
732
|
|
|
734
|
-
#: contrib/workflow/models/step.py:
|
|
733
|
+
#: contrib/workflow/models/step.py:444
|
|
735
734
|
msgid ""
|
|
736
735
|
"If False, will cancel all other incoming process steps as soon the first "
|
|
737
736
|
"reaches this step."
|
|
@@ -739,46 +738,46 @@ msgstr ""
|
|
|
739
738
|
"Wenn falsch, bricht alle anderen eingehenden Prozessschritte ab, sobald der "
|
|
740
739
|
"erste diesen Schritt erreicht."
|
|
741
740
|
|
|
742
|
-
#: contrib/workflow/models/step.py:
|
|
741
|
+
#: contrib/workflow/models/step.py:510
|
|
743
742
|
#: contrib/workflow/viewsets/titles/step.py:63
|
|
744
743
|
msgid "Join Steps"
|
|
745
744
|
msgstr "Mündungsschritte"
|
|
746
745
|
|
|
747
|
-
#: contrib/workflow/models/step.py:
|
|
746
|
+
#: contrib/workflow/models/step.py:516
|
|
748
747
|
#: contrib/workflow/serializers/step.py:279
|
|
749
748
|
#: contrib/workflow/viewsets/display/step.py:261
|
|
750
749
|
msgid "Script"
|
|
751
750
|
msgstr "Skript"
|
|
752
751
|
|
|
753
|
-
#: contrib/workflow/models/step.py:
|
|
752
|
+
#: contrib/workflow/models/step.py:523
|
|
754
753
|
msgid "Executing script failed: {}"
|
|
755
754
|
msgstr "Ausführung des Skripts fehlgeschlagen: {}"
|
|
756
755
|
|
|
757
|
-
#: contrib/workflow/models/step.py:
|
|
756
|
+
#: contrib/workflow/models/step.py:538
|
|
758
757
|
#: contrib/workflow/viewsets/titles/step.py:74
|
|
759
758
|
msgid "Script Steps"
|
|
760
759
|
msgstr "Skriptschritte"
|
|
761
760
|
|
|
762
|
-
#: contrib/workflow/models/step.py:
|
|
761
|
+
#: contrib/workflow/models/step.py:551
|
|
763
762
|
#: contrib/workflow/viewsets/display/step.py:313
|
|
764
763
|
msgid "Subject"
|
|
765
764
|
msgstr "Betreff"
|
|
766
765
|
|
|
767
|
-
#: contrib/workflow/models/step.py:
|
|
766
|
+
#: contrib/workflow/models/step.py:591
|
|
768
767
|
msgid "Error in template syntax!"
|
|
769
768
|
msgstr "Fehler in Syntax der Vorlage!"
|
|
770
769
|
|
|
771
|
-
#: contrib/workflow/models/step.py:
|
|
770
|
+
#: contrib/workflow/models/step.py:603
|
|
772
771
|
#: contrib/workflow/viewsets/titles/step.py:85
|
|
773
772
|
msgid "Email Steps"
|
|
774
773
|
msgstr "Emailschritte"
|
|
775
774
|
|
|
776
|
-
#: contrib/workflow/models/step.py:
|
|
775
|
+
#: contrib/workflow/models/step.py:611
|
|
777
776
|
#: contrib/workflow/viewsets/display/step.py:366
|
|
778
777
|
msgid "Write Preserved Instance"
|
|
779
778
|
msgstr "Geschützte Instanz Speichern"
|
|
780
779
|
|
|
781
|
-
#: contrib/workflow/models/step.py:
|
|
780
|
+
#: contrib/workflow/models/step.py:613
|
|
782
781
|
msgid ""
|
|
783
782
|
"Writes the instance data backup onto the instance restoring its state to the"
|
|
784
783
|
" beginning of the workflow."
|
|
@@ -786,12 +785,12 @@ msgstr ""
|
|
|
786
785
|
"Überschreibt die momentane Instanz mit den Daten der gesicherten Instanz, "
|
|
787
786
|
"sodass diese wieder in ihren Zustand zu Beginn des Workflows versetzt wird."
|
|
788
787
|
|
|
789
|
-
#: contrib/workflow/models/step.py:
|
|
788
|
+
#: contrib/workflow/models/step.py:629
|
|
790
789
|
#: contrib/workflow/tests/test_models/step/test_finish_step.py:55
|
|
791
790
|
msgid "There are process steps still running for this workflow!"
|
|
792
791
|
msgstr "Es gibt noch laufende Prozessschritte in diesem Workflow!"
|
|
793
792
|
|
|
794
|
-
#: contrib/workflow/models/step.py:
|
|
793
|
+
#: contrib/workflow/models/step.py:662
|
|
795
794
|
#: contrib/workflow/viewsets/titles/step.py:96
|
|
796
795
|
msgid "Finish Steps"
|
|
797
796
|
msgstr "Schlussschritte"
|