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