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,72 +1,78 @@
|
|
|
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
|
|
6
8
|
#
|
|
9
|
+
#, fuzzy
|
|
7
10
|
msgid ""
|
|
8
11
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: \n"
|
|
12
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
13
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date:
|
|
12
|
-
"PO-Revision-Date:
|
|
13
|
-
"Last-Translator: \n"
|
|
14
|
-
"Language-Team: \n"
|
|
15
|
-
"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"
|
|
16
18
|
"MIME-Version: 1.0\n"
|
|
17
19
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
20
|
"Content-Transfer-Encoding: 8bit\n"
|
|
21
|
+
"Language: de\n"
|
|
19
22
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
20
|
-
"X-Generator: Poedit 3.2.2\n"
|
|
21
23
|
|
|
22
|
-
#:
|
|
24
|
+
#: contrib/authentication/admin.py:75
|
|
23
25
|
msgid "Main information"
|
|
24
26
|
msgstr "Hauptinformationen"
|
|
25
27
|
|
|
26
|
-
#:
|
|
27
|
-
|
|
28
|
+
#: contrib/authentication/admin.py:76
|
|
29
|
+
msgid "Synchronization"
|
|
30
|
+
msgstr ""
|
|
31
|
+
|
|
32
|
+
#: contrib/authentication/admin.py:78
|
|
33
|
+
#: contrib/authentication/viewsets/display/users.py:68
|
|
28
34
|
msgid "Permissions"
|
|
29
35
|
msgstr "Berechtigungen"
|
|
30
36
|
|
|
31
|
-
#:
|
|
37
|
+
#: contrib/authentication/admin.py:151
|
|
32
38
|
msgid ""
|
|
33
39
|
"Your user does not have the \"Change user\" permission. In order to add "
|
|
34
|
-
"users, Django requires that your user account have both the \"Add user\" and
|
|
35
|
-
"\"Change user\" permissions set."
|
|
40
|
+
"users, Django requires that your user account have both the \"Add user\" and"
|
|
41
|
+
" \"Change user\" permissions set."
|
|
36
42
|
msgstr ""
|
|
37
43
|
"Ihr Benutzerkonto besitzt die \"Change user\" Berechtigung nicht. Um "
|
|
38
|
-
"Benutzer*innen hinzufügen zu können benötigt Ihr Konto sowohl die \"Add
|
|
39
|
-
"\" als auch die \"Change user\" Berechtigung."
|
|
44
|
+
"Benutzer*innen hinzufügen zu können benötigt Ihr Konto sowohl die \"Add "
|
|
45
|
+
"user\" als auch die \"Change user\" Berechtigung."
|
|
40
46
|
|
|
41
|
-
#:
|
|
47
|
+
#: contrib/authentication/admin.py:175
|
|
42
48
|
#, python-format
|
|
43
49
|
msgid "%(name)s object with primary key %(key)r does not exist."
|
|
44
50
|
msgstr "%(name)s Objekt mit Primärschlüssel %(key)r existiert nicht."
|
|
45
51
|
|
|
46
|
-
#:
|
|
52
|
+
#: contrib/authentication/admin.py:187
|
|
47
53
|
msgid "Password changed successfully."
|
|
48
54
|
msgstr "Passwort erfolgreich geändert."
|
|
49
55
|
|
|
50
|
-
#:
|
|
56
|
+
#: contrib/authentication/admin.py:208
|
|
51
57
|
#, python-format
|
|
52
58
|
msgid "Change password: %s"
|
|
53
59
|
msgstr "Passwort ändern: %s"
|
|
54
60
|
|
|
55
|
-
#:
|
|
61
|
+
#: contrib/authentication/dynamic_preferences_registry.py:15
|
|
56
62
|
msgid "Immunity Period"
|
|
57
63
|
msgstr "Immunitätszeitraum für Unregistrierte Nutzer*innen"
|
|
58
64
|
|
|
59
|
-
#:
|
|
65
|
+
#: contrib/authentication/dynamic_preferences_registry.py:16
|
|
60
66
|
msgid "Set the maximum number of hours a user can remain without registration"
|
|
61
67
|
msgstr ""
|
|
62
68
|
"Legt die maximale Anzahl an Stunden, die ein*e Nutzer*in ohne Registrierung "
|
|
63
69
|
"sein darf, fest"
|
|
64
70
|
|
|
65
|
-
#:
|
|
71
|
+
#: contrib/authentication/dynamic_preferences_registry.py:25
|
|
66
72
|
msgid "Default Token Validity (in Hours)"
|
|
67
73
|
msgstr "Standard Verfallsdauer für Token (h)"
|
|
68
74
|
|
|
69
|
-
#:
|
|
75
|
+
#: contrib/authentication/dynamic_preferences_registry.py:26
|
|
70
76
|
msgid ""
|
|
71
77
|
"If not specified, a newly created token will be valid for that amount of "
|
|
72
78
|
"hours"
|
|
@@ -74,73 +80,65 @@ msgstr ""
|
|
|
74
80
|
"Falls nicht spezifiziert, wird ein neues Token für diese Anzahl an Stunden "
|
|
75
81
|
"gültig sein"
|
|
76
82
|
|
|
77
|
-
#:
|
|
78
|
-
msgid "Start"
|
|
79
|
-
msgstr "Start"
|
|
80
|
-
|
|
81
|
-
#: wbcore/contrib/authentication/filters.py:19
|
|
82
|
-
msgid "End"
|
|
83
|
-
msgstr "Ende"
|
|
84
|
-
|
|
85
|
-
#: wbcore/contrib/authentication/models/tokens.py:21
|
|
83
|
+
#: contrib/authentication/models/tokens.py:21
|
|
86
84
|
msgid "Valid Until"
|
|
87
85
|
msgstr "Gültig Bis"
|
|
88
86
|
|
|
89
|
-
#:
|
|
87
|
+
#: contrib/authentication/models/tokens.py:29
|
|
90
88
|
msgid "Number of allowed usage"
|
|
91
89
|
msgstr "Erlaubte Anzahl an Nutzungen"
|
|
92
90
|
|
|
93
|
-
#:
|
|
91
|
+
#: contrib/authentication/models/tokens.py:30
|
|
94
92
|
msgid "Is Valid"
|
|
95
93
|
msgstr "Ist Gültig"
|
|
96
94
|
|
|
97
|
-
#:
|
|
98
|
-
#:
|
|
99
|
-
#:
|
|
100
|
-
#:
|
|
95
|
+
#: contrib/authentication/models/tokens.py:32
|
|
96
|
+
#: contrib/authentication/viewsets/display/user_activities.py:18
|
|
97
|
+
#: contrib/authentication/viewsets/display/user_activities.py:64
|
|
98
|
+
#: contrib/authentication/viewsets/display/user_activities.py:80
|
|
101
99
|
msgid "User"
|
|
102
100
|
msgstr "Benutzer*in"
|
|
103
101
|
|
|
104
|
-
#:
|
|
102
|
+
#: contrib/authentication/models/tokens.py:138
|
|
105
103
|
msgid "Token"
|
|
106
104
|
msgstr "Token"
|
|
107
105
|
|
|
108
|
-
#:
|
|
106
|
+
#: contrib/authentication/models/tokens.py:139
|
|
109
107
|
msgid "Tokens"
|
|
110
108
|
msgstr "Token"
|
|
111
109
|
|
|
112
|
-
#:
|
|
110
|
+
#: contrib/authentication/models/users.py:25
|
|
113
111
|
msgid "No E-Mail provided"
|
|
114
112
|
msgstr "Keine E-Mail-Adresse angegeben"
|
|
115
113
|
|
|
116
|
-
#:
|
|
114
|
+
#: contrib/authentication/models/users.py:28
|
|
117
115
|
msgid "No Username provided"
|
|
118
116
|
msgstr "Kein Benutzername angegeben"
|
|
119
117
|
|
|
120
|
-
#:
|
|
121
|
-
#:
|
|
118
|
+
#: contrib/authentication/models/users.py:57
|
|
119
|
+
#: contrib/authentication/serializers/users.py:144
|
|
122
120
|
msgid "E-Mail"
|
|
123
121
|
msgstr "E-Mail"
|
|
124
122
|
|
|
125
|
-
#:
|
|
123
|
+
#: contrib/authentication/models/users.py:58
|
|
126
124
|
msgid "username"
|
|
127
125
|
msgstr "benutzername"
|
|
128
126
|
|
|
129
|
-
#:
|
|
127
|
+
#: contrib/authentication/models/users.py:61
|
|
130
128
|
msgid "staff status"
|
|
131
129
|
msgstr "Personal"
|
|
132
130
|
|
|
133
|
-
#:
|
|
131
|
+
#: contrib/authentication/models/users.py:63
|
|
134
132
|
msgid "Specifies whether the user can log into this admin site."
|
|
135
133
|
msgstr ""
|
|
136
134
|
"Gibt an, ob ein*e Nutzer*in sich auf dieser Administrator-Seite einloggen "
|
|
137
135
|
"kann."
|
|
138
136
|
|
|
139
|
-
#:
|
|
137
|
+
#: contrib/authentication/models/users.py:66
|
|
140
138
|
msgid "active"
|
|
141
139
|
msgstr "Aktiv"
|
|
142
140
|
|
|
143
|
-
#:
|
|
141
|
+
#: contrib/authentication/models/users.py:69
|
|
144
142
|
msgid ""
|
|
145
143
|
"Specifies whether this user should be treated as active. Unselect this "
|
|
146
144
|
"instead of deleting accounts."
|
|
@@ -148,129 +146,134 @@ msgstr ""
|
|
|
148
146
|
"Gibt an, ob ein*e Nutzer*in als aktiv betrachtet werden sollte. Wählen Sie "
|
|
149
147
|
"diese Option ab anstatt Konten zu löschen."
|
|
150
148
|
|
|
151
|
-
#:
|
|
149
|
+
#: contrib/authentication/models/users.py:73
|
|
152
150
|
msgid "register"
|
|
153
151
|
msgstr "registrieren"
|
|
154
152
|
|
|
155
|
-
#:
|
|
153
|
+
#: contrib/authentication/models/users.py:73
|
|
156
154
|
msgid "Specifies whether this user has registered its email. "
|
|
157
155
|
msgstr "Gibt an, ob ein*e Nutzer*in seine E-Mail-Adresse registriert hat. "
|
|
158
156
|
|
|
159
|
-
#:
|
|
157
|
+
#: contrib/authentication/models/users.py:75
|
|
160
158
|
msgid "date joined"
|
|
161
159
|
msgstr "beitrittsdatum"
|
|
162
160
|
|
|
163
|
-
#:
|
|
161
|
+
#: contrib/authentication/models/users.py:84
|
|
164
162
|
msgid "user"
|
|
165
163
|
msgstr "benutzer*in"
|
|
166
164
|
|
|
167
|
-
#:
|
|
165
|
+
#: contrib/authentication/models/users.py:85
|
|
168
166
|
msgid "users"
|
|
169
167
|
msgstr "benutzer*innen"
|
|
170
168
|
|
|
171
|
-
#:
|
|
169
|
+
#: contrib/authentication/models/users.py:140
|
|
172
170
|
msgid "You need to specify a username or a pair of first and last name"
|
|
173
171
|
msgstr "Sie müssen einen Benutzernamen oder einen Vor- und Nachnamen angeben"
|
|
174
172
|
|
|
175
|
-
#:
|
|
176
|
-
#:
|
|
173
|
+
#: contrib/authentication/models/users_activities.py:18
|
|
174
|
+
#: contrib/authentication/models/users_activities.py:21
|
|
177
175
|
msgid "Success"
|
|
178
176
|
msgstr "Erfolg"
|
|
179
177
|
|
|
180
|
-
#:
|
|
181
|
-
#:
|
|
178
|
+
#: contrib/authentication/models/users_activities.py:19
|
|
179
|
+
#: contrib/authentication/models/users_activities.py:21
|
|
182
180
|
msgid "Failed"
|
|
183
181
|
msgstr "Fehlgeschlagen"
|
|
184
182
|
|
|
185
|
-
#:
|
|
186
|
-
#:
|
|
187
|
-
#:
|
|
183
|
+
#: contrib/authentication/models/users_activities.py:24
|
|
184
|
+
#: contrib/authentication/templates/password_reset_done.html:11
|
|
185
|
+
#: contrib/authentication/viewsets/users.py:172
|
|
188
186
|
msgid "Login"
|
|
189
187
|
msgstr "Einloggen"
|
|
190
188
|
|
|
191
|
-
#:
|
|
189
|
+
#: contrib/authentication/models/users_activities.py:38
|
|
192
190
|
#, python-brace-format
|
|
193
191
|
msgid "Activity of {user} at {date}"
|
|
194
192
|
msgstr "Aktivität von {user} an {date}"
|
|
195
193
|
|
|
196
|
-
#:
|
|
194
|
+
#: contrib/authentication/models/users_activities.py:41
|
|
197
195
|
msgid "User Login Activity"
|
|
198
196
|
msgstr "Anmeldeaktivität des*der Nutzer*innen"
|
|
199
197
|
|
|
200
|
-
#:
|
|
198
|
+
#: contrib/authentication/models/users_activities.py:42
|
|
201
199
|
msgid "User Login Activities"
|
|
202
200
|
msgstr "Anmeldeaktivitäten des*der Nutzer*innen"
|
|
203
201
|
|
|
204
|
-
#:
|
|
202
|
+
#: contrib/authentication/serializers/users.py:30
|
|
205
203
|
msgid "Old password"
|
|
206
204
|
msgstr "Altes Passwort"
|
|
207
205
|
|
|
208
|
-
#:
|
|
206
|
+
#: contrib/authentication/serializers/users.py:31
|
|
209
207
|
msgid "New Password"
|
|
210
208
|
msgstr "Neues Passwort"
|
|
211
209
|
|
|
212
|
-
#:
|
|
210
|
+
#: contrib/authentication/serializers/users.py:32
|
|
213
211
|
msgid "Confirm new Password"
|
|
214
212
|
msgstr "Neues Passwort bestätigen"
|
|
215
213
|
|
|
216
|
-
#:
|
|
214
|
+
#: contrib/authentication/serializers/users.py:36
|
|
215
|
+
msgid "No request found"
|
|
216
|
+
msgstr ""
|
|
217
|
+
|
|
218
|
+
#: contrib/authentication/serializers/users.py:41
|
|
217
219
|
msgid "Wrong password"
|
|
218
220
|
msgstr "Falsches Passwort"
|
|
219
221
|
|
|
220
|
-
#:
|
|
222
|
+
#: contrib/authentication/serializers/users.py:47
|
|
221
223
|
msgid "Password don't match"
|
|
222
224
|
msgstr "Passwörter stimmen nicht überein"
|
|
223
225
|
|
|
224
|
-
#:
|
|
225
|
-
#:
|
|
226
|
+
#: contrib/authentication/serializers/users.py:53
|
|
227
|
+
#: contrib/authentication/serializers/users.py:54
|
|
226
228
|
msgid "New and old password cannot be the same"
|
|
227
229
|
msgstr "Neues und altes Passwort dürfen nicht gleich sein"
|
|
228
230
|
|
|
229
|
-
#:
|
|
230
|
-
#:
|
|
231
|
+
#: contrib/authentication/serializers/users.py:141
|
|
232
|
+
#: contrib/authentication/viewsets/display/users.py:50
|
|
231
233
|
msgid "Is Active"
|
|
232
234
|
msgstr "Ist Aktiv"
|
|
233
235
|
|
|
234
|
-
#:
|
|
236
|
+
#: contrib/authentication/serializers/users.py:143
|
|
235
237
|
msgid "Last Connection"
|
|
236
238
|
msgstr "Letzte Verbindung"
|
|
237
239
|
|
|
238
|
-
#:
|
|
240
|
+
#: contrib/authentication/serializers/users.py:145
|
|
239
241
|
msgid "Username"
|
|
240
242
|
msgstr "Benutzername"
|
|
241
243
|
|
|
242
|
-
#:
|
|
243
|
-
#:
|
|
244
|
+
#: contrib/authentication/serializers/users.py:146
|
|
245
|
+
#: contrib/authentication/viewsets/buttons/users.py:55
|
|
244
246
|
msgid "Profile"
|
|
245
247
|
msgstr "Profil"
|
|
246
248
|
|
|
247
|
-
#:
|
|
249
|
+
#: contrib/authentication/serializers/users.py:208
|
|
248
250
|
msgid "You need to assign a profile or add a valid email address"
|
|
249
|
-
msgstr "
|
|
251
|
+
msgstr ""
|
|
252
|
+
"Sie müssen ein Profil zuweisen oder eine valide E-Mail-Adresse angeben"
|
|
250
253
|
|
|
251
|
-
#:
|
|
254
|
+
#: contrib/authentication/serializers/users.py:210
|
|
252
255
|
msgid "You need to assign a profile or add a valid last name"
|
|
253
256
|
msgstr "Sie müssen ein Profil zuweisen oder einen validen Nachnamen angeben"
|
|
254
257
|
|
|
255
|
-
#:
|
|
258
|
+
#: contrib/authentication/templates/activate_confirm.html:5
|
|
256
259
|
msgid "Register Account"
|
|
257
260
|
msgstr "Konto Registrieren"
|
|
258
261
|
|
|
259
|
-
#:
|
|
260
|
-
#:
|
|
261
|
-
#:
|
|
262
|
-
#:
|
|
263
|
-
#:
|
|
264
|
-
#:
|
|
262
|
+
#: contrib/authentication/templates/base.html:12
|
|
263
|
+
#: contrib/authentication/templates/password_reset_done.html:6
|
|
264
|
+
#: contrib/authentication/templates/password_reset_form.html:6
|
|
265
|
+
#: contrib/authentication/templates/password_reset_form.html:18
|
|
266
|
+
#: contrib/authentication/templates/password_reset_sent.html:5
|
|
267
|
+
#: contrib/authentication/templates/reset_password.html:5
|
|
265
268
|
msgid "Password Reset"
|
|
266
269
|
msgstr "Passwort Zurücksetzen"
|
|
267
270
|
|
|
268
|
-
#:
|
|
271
|
+
#: contrib/authentication/templates/base.html:128
|
|
269
272
|
msgid "if you see this, something is wrong!"
|
|
270
273
|
msgstr "Falls Sie dies sehen, ist etwas schief gelaufen!"
|
|
271
274
|
|
|
272
|
-
#:
|
|
273
|
-
#:
|
|
275
|
+
#: contrib/authentication/templates/email_base_template.html:325
|
|
276
|
+
#: contrib/authentication/templates/password_reset_email.html:10
|
|
274
277
|
msgid ""
|
|
275
278
|
"This E-Mail is autogenerated by Stainly. If you need more information, "
|
|
276
279
|
"please visit the Stainly-Bench."
|
|
@@ -278,15 +281,15 @@ msgstr ""
|
|
|
278
281
|
"Diese E-Mail wurde automatisch von Stainly generiert. Falls Sie mehr "
|
|
279
282
|
"Informationen benötigen, besuchen Sie bitte die Stainly-Bench."
|
|
280
283
|
|
|
281
|
-
#:
|
|
284
|
+
#: contrib/authentication/templates/password_reset_done.html:8
|
|
282
285
|
msgid "Password reset complete"
|
|
283
286
|
msgstr "Zurücksetzen des Passworts Erfolgreich"
|
|
284
287
|
|
|
285
|
-
#:
|
|
288
|
+
#: contrib/authentication/templates/password_reset_done.html:9
|
|
286
289
|
msgid "Your Password has been set. You may go ahead and login."
|
|
287
290
|
msgstr "Ihr Passwort wurde gespeichert. Sie können sich nun anmelden."
|
|
288
291
|
|
|
289
|
-
#:
|
|
292
|
+
#: contrib/authentication/templates/password_reset_email.html:3
|
|
290
293
|
#, python-format
|
|
291
294
|
msgid ""
|
|
292
295
|
"Reset Password You're receiving this email because you requested a password "
|
|
@@ -294,18 +297,18 @@ msgid ""
|
|
|
294
297
|
"password"
|
|
295
298
|
msgstr ""
|
|
296
299
|
"Passwort Zurücksetzen Sie bekommen diese E-Mail, weil Sie das Zurücksetzen "
|
|
297
|
-
"Ihres Passworts bei %(site_name)s beantragt haben. Bitte Klicken Sie auf den
|
|
298
|
-
"Link und wählen ein neues Passwort aus"
|
|
299
|
-
|
|
300
|
-
#:
|
|
301
|
-
#:
|
|
302
|
-
#:
|
|
303
|
-
#:
|
|
304
|
-
#:
|
|
300
|
+
"Ihres Passworts bei %(site_name)s beantragt haben. Bitte Klicken Sie auf den"
|
|
301
|
+
" Link und wählen ein neues Passwort aus"
|
|
302
|
+
|
|
303
|
+
#: contrib/authentication/templates/password_reset_email.html:8
|
|
304
|
+
#: contrib/authentication/templates/password_reset_email_html.html:8
|
|
305
|
+
#: contrib/authentication/templates/password_reset_email_html.html:29
|
|
306
|
+
#: contrib/authentication/viewsets/buttons/users.py:51
|
|
307
|
+
#: contrib/authentication/viewsets/buttons/users.py:52
|
|
305
308
|
msgid "Reset Password"
|
|
306
309
|
msgstr "Passwort Zurücksetzen"
|
|
307
310
|
|
|
308
|
-
#:
|
|
311
|
+
#: contrib/authentication/templates/password_reset_email_html.html:16
|
|
309
312
|
#, python-format
|
|
310
313
|
msgid ""
|
|
311
314
|
"You're receiving this email because you requested a password reset for your "
|
|
@@ -314,23 +317,23 @@ msgstr ""
|
|
|
314
317
|
"Sie bekommen diese E-Mail, weil Sie das Zurücksetzen des Passworts für Ihr "
|
|
315
318
|
"Konto bei %(site_name)s beantragt haben."
|
|
316
319
|
|
|
317
|
-
#:
|
|
320
|
+
#: contrib/authentication/templates/password_reset_email_html.html:17
|
|
318
321
|
msgid "Please click and choose a new password"
|
|
319
322
|
msgstr "Bitte Klicken Sie auf den Link und wählen Sie ein neues Passwort aus"
|
|
320
323
|
|
|
321
|
-
#:
|
|
324
|
+
#: contrib/authentication/templates/password_reset_form.html:8
|
|
322
325
|
msgid "Password Reset Form"
|
|
323
326
|
msgstr "Formular für das Zurücksetzen des Passworts"
|
|
324
327
|
|
|
325
|
-
#:
|
|
328
|
+
#: contrib/authentication/templates/password_reset_form.html:9
|
|
326
329
|
msgid "Please enter your new password."
|
|
327
330
|
msgstr "Bitte geben Sie Ihr neues Passwort ein."
|
|
328
331
|
|
|
329
|
-
#:
|
|
332
|
+
#: contrib/authentication/templates/password_reset_form.html:20
|
|
330
333
|
msgid "Password reset failed"
|
|
331
334
|
msgstr "Passwort Zurücksetzen Fehlgeschlagen"
|
|
332
335
|
|
|
333
|
-
#:
|
|
336
|
+
#: contrib/authentication/templates/password_reset_form.html:21
|
|
334
337
|
msgid ""
|
|
335
338
|
"The password reset link was invalid, possibly because it has already been "
|
|
336
339
|
"used. Please request a new password reset."
|
|
@@ -338,250 +341,269 @@ msgstr ""
|
|
|
338
341
|
"Der Link für das Zurücksetzen des Passworts war ungültig, möglicherweise "
|
|
339
342
|
"weil er bereits benutzt wurde. Bitte versuchen Sie es erneut."
|
|
340
343
|
|
|
341
|
-
#:
|
|
344
|
+
#: contrib/authentication/templates/password_reset_sent.html:7
|
|
342
345
|
msgid "Password reset sent"
|
|
343
346
|
msgstr "Passwortzurücksetzung Gesendet"
|
|
344
347
|
|
|
345
|
-
#:
|
|
348
|
+
#: contrib/authentication/templates/password_reset_sent.html:8
|
|
346
349
|
msgid ""
|
|
347
350
|
"We’ve emailed you instructions for setting your password, if an account "
|
|
348
351
|
"exists with the email you entered. You should receive them shortly."
|
|
349
352
|
msgstr ""
|
|
350
|
-
"Falls ein Konto für die angegebene E-Mail-Adresse existiert, haben wir Ihnen
|
|
351
|
-
"Anweisungen zum Zurücksetzen Ihres Passworts geschickt. Sie sollten diese
|
|
352
|
-
"Kürze bekommen."
|
|
353
|
+
"Falls ein Konto für die angegebene E-Mail-Adresse existiert, haben wir Ihnen"
|
|
354
|
+
" Anweisungen zum Zurücksetzen Ihres Passworts geschickt. Sie sollten diese "
|
|
355
|
+
"in Kürze bekommen."
|
|
353
356
|
|
|
354
|
-
#:
|
|
357
|
+
#: contrib/authentication/templates/password_reset_sent.html:9
|
|
355
358
|
msgid ""
|
|
356
359
|
"If you don’t receive an email, please make sure you’ve entered the address "
|
|
357
360
|
"you registered with, and check your spam folder."
|
|
358
361
|
msgstr ""
|
|
359
|
-
"Falls Sie keine E-Mail erhalten, stellen Sie bitte sicher, dass Sie die
|
|
360
|
-
"Mail-Adresse angegeben haben, mit der Sie sich registriert haben und "
|
|
362
|
+
"Falls Sie keine E-Mail erhalten, stellen Sie bitte sicher, dass Sie die "
|
|
363
|
+
"E-Mail-Adresse angegeben haben, mit der Sie sich registriert haben und "
|
|
361
364
|
"kontrollieren Sie Ihren Spam-Ordner."
|
|
362
365
|
|
|
363
|
-
#:
|
|
366
|
+
#: contrib/authentication/templates/user_registration_email.html:8
|
|
364
367
|
msgid "Confirm Your Email"
|
|
365
368
|
msgstr "E-Mail-Adresse Bestätigen"
|
|
366
369
|
|
|
367
|
-
#:
|
|
370
|
+
#: contrib/authentication/templates/user_registration_email.html:16
|
|
368
371
|
msgid "Please click on the link to confirm your registration."
|
|
369
372
|
msgstr "Bitte klicken Sie auf den Link um Ihre Registrierung zu bestätigen."
|
|
370
373
|
|
|
371
|
-
#:
|
|
374
|
+
#: contrib/authentication/templates/user_registration_email.html:28
|
|
372
375
|
msgid "Confirm Email"
|
|
373
376
|
msgstr "E-Mail-Adresse Bestätigen"
|
|
374
377
|
|
|
375
|
-
#:
|
|
378
|
+
#: contrib/authentication/viewsets/buttons/users.py:15
|
|
376
379
|
msgid "See Profile"
|
|
377
380
|
msgstr "Profil Anschauen"
|
|
378
381
|
|
|
379
|
-
#:
|
|
382
|
+
#: contrib/authentication/viewsets/buttons/users.py:19
|
|
380
383
|
msgid "Resetting Settings"
|
|
381
384
|
msgstr "Zurücksetzen der Einstellungen"
|
|
382
385
|
|
|
383
|
-
#:
|
|
386
|
+
#: contrib/authentication/viewsets/buttons/users.py:21
|
|
384
387
|
msgid "<p>This will reset all widgets on all pages.</p>"
|
|
385
388
|
msgstr "<p>Dies wird alle Fenster auf allen Seiten zurücksetzen.</p>"
|
|
386
389
|
|
|
387
|
-
#:
|
|
388
|
-
#:
|
|
390
|
+
#: contrib/authentication/viewsets/buttons/users.py:23
|
|
391
|
+
#: contrib/authentication/viewsets/buttons/users.py:24
|
|
389
392
|
msgid "Reset Settings"
|
|
390
393
|
msgstr "Einstellungen Zurücksetzen"
|
|
391
394
|
|
|
392
|
-
#:
|
|
395
|
+
#: contrib/authentication/viewsets/buttons/users.py:29
|
|
393
396
|
msgid "Changing Password"
|
|
394
397
|
msgstr "Ändern des Passworts"
|
|
395
398
|
|
|
396
|
-
#:
|
|
399
|
+
#: contrib/authentication/viewsets/buttons/users.py:31
|
|
397
400
|
msgid "<p>Change Password</p>"
|
|
398
401
|
msgstr "<p>Passwort Ändern</p>"
|
|
399
402
|
|
|
400
|
-
#:
|
|
401
|
-
#:
|
|
403
|
+
#: contrib/authentication/viewsets/buttons/users.py:34
|
|
404
|
+
#: contrib/authentication/viewsets/buttons/users.py:35
|
|
402
405
|
msgid "Change Password"
|
|
403
406
|
msgstr "Passwort Ändern"
|
|
404
407
|
|
|
405
|
-
#:
|
|
408
|
+
#: contrib/authentication/viewsets/buttons/users.py:46
|
|
406
409
|
msgid "Resetting Password"
|
|
407
410
|
msgstr "Zurücksetzen des Passworts"
|
|
408
411
|
|
|
409
|
-
#:
|
|
412
|
+
#: contrib/authentication/viewsets/buttons/users.py:48
|
|
410
413
|
msgid "<p>Reset Password</p>"
|
|
411
414
|
msgstr "<p>Passwort Zurücksetzen</p>"
|
|
412
415
|
|
|
413
|
-
#:
|
|
414
|
-
#:
|
|
415
|
-
#:
|
|
416
|
-
#:
|
|
416
|
+
#: contrib/authentication/viewsets/buttons/users.py:54
|
|
417
|
+
#: contrib/authentication/viewsets/display/users.py:70
|
|
418
|
+
#: contrib/authentication/viewsets/menu/user_activities.py:6
|
|
419
|
+
#: contrib/authentication/viewsets/titles/user_activities.py:10
|
|
417
420
|
msgid "User Activity"
|
|
418
421
|
msgstr "Nutzeraktivität"
|
|
419
422
|
|
|
420
|
-
#:
|
|
421
|
-
#:
|
|
423
|
+
#: contrib/authentication/viewsets/display/user_activities.py:17
|
|
424
|
+
#: contrib/authentication/viewsets/display/user_activities.py:63
|
|
422
425
|
msgid "IP"
|
|
423
426
|
msgstr "IP"
|
|
424
427
|
|
|
425
|
-
#:
|
|
426
|
-
#:
|
|
428
|
+
#: contrib/authentication/viewsets/display/user_activities.py:19
|
|
429
|
+
#: contrib/authentication/viewsets/display/user_activities.py:65
|
|
427
430
|
msgid "First Login"
|
|
428
431
|
msgstr "Erstes Einloggen"
|
|
429
432
|
|
|
430
|
-
#:
|
|
431
|
-
#:
|
|
433
|
+
#: contrib/authentication/viewsets/display/user_activities.py:20
|
|
434
|
+
#: contrib/authentication/viewsets/display/user_activities.py:66
|
|
432
435
|
msgid "Latest Refresh"
|
|
433
436
|
msgstr "Letzte Aktualisierung"
|
|
434
437
|
|
|
435
|
-
#:
|
|
436
|
-
#:
|
|
438
|
+
#: contrib/authentication/viewsets/display/user_activities.py:21
|
|
439
|
+
#: contrib/authentication/viewsets/display/user_activities.py:67
|
|
437
440
|
msgid "Time Online (Minutes)"
|
|
438
441
|
msgstr "Zeit Online (Minuten)"
|
|
439
442
|
|
|
440
|
-
#:
|
|
441
|
-
#:
|
|
443
|
+
#: contrib/authentication/viewsets/display/user_activities.py:22
|
|
444
|
+
#: contrib/authentication/viewsets/display/user_activities.py:68
|
|
442
445
|
msgid "Agent Info"
|
|
443
446
|
msgstr "Informationen zum Agenten"
|
|
444
447
|
|
|
445
|
-
#:
|
|
448
|
+
#: contrib/authentication/viewsets/display/users.py:19
|
|
446
449
|
msgid "Name"
|
|
447
450
|
msgstr "Name"
|
|
448
451
|
|
|
449
|
-
#:
|
|
452
|
+
#: contrib/authentication/viewsets/display/users.py:20
|
|
450
453
|
msgid "Code Name"
|
|
451
454
|
msgstr "Code Name"
|
|
452
455
|
|
|
453
|
-
#:
|
|
456
|
+
#: contrib/authentication/viewsets/display/users.py:21
|
|
454
457
|
msgid "Content Type"
|
|
455
458
|
msgstr "Content Typ"
|
|
456
459
|
|
|
457
|
-
#:
|
|
460
|
+
#: contrib/authentication/viewsets/display/users.py:38
|
|
458
461
|
msgid "Token (Sensitive information: handle with care)"
|
|
459
462
|
msgstr "Token (Sensitive Informationen: Mit Vorsicht behandeln)"
|
|
460
463
|
|
|
461
|
-
#:
|
|
464
|
+
#: contrib/authentication/viewsets/display/users.py:49
|
|
462
465
|
msgid "Email"
|
|
463
466
|
msgstr "E-Mail"
|
|
464
467
|
|
|
465
|
-
#:
|
|
468
|
+
#: contrib/authentication/viewsets/display/users.py:51
|
|
466
469
|
msgid "Joined"
|
|
467
470
|
msgstr "Beigetreten"
|
|
468
471
|
|
|
469
|
-
#:
|
|
472
|
+
#: contrib/authentication/viewsets/display/users.py:52
|
|
470
473
|
msgid "Latest Connection"
|
|
471
474
|
msgstr "Letzte Verbindung"
|
|
472
475
|
|
|
473
|
-
#:
|
|
476
|
+
#: contrib/authentication/viewsets/display/users.py:67
|
|
474
477
|
msgid "Groups"
|
|
475
478
|
msgstr "Gruppen"
|
|
476
479
|
|
|
477
|
-
#:
|
|
478
|
-
#:
|
|
480
|
+
#: contrib/authentication/viewsets/menu/user_activities.py:18
|
|
481
|
+
#: contrib/authentication/viewsets/titles/user_activities.py:21
|
|
479
482
|
msgid "User Activity Table"
|
|
480
483
|
msgstr "Nutzeraktivitätstabelle"
|
|
481
484
|
|
|
482
|
-
#:
|
|
483
|
-
#:
|
|
485
|
+
#: contrib/authentication/viewsets/menu/user_activities.py:30
|
|
486
|
+
#: contrib/authentication/viewsets/titles/user_activities.py:26
|
|
484
487
|
msgid "User Activity Chart"
|
|
485
488
|
msgstr "Nutzeraktivitätsdiagramm"
|
|
486
489
|
|
|
487
|
-
#:
|
|
488
|
-
#:
|
|
490
|
+
#: contrib/authentication/viewsets/menu/users.py:7
|
|
491
|
+
#: contrib/authentication/viewsets/titles/users.py:24
|
|
489
492
|
msgid "Users"
|
|
490
493
|
msgstr "Benutzer*innen"
|
|
491
494
|
|
|
492
|
-
#:
|
|
495
|
+
#: contrib/authentication/viewsets/menu/users.py:13
|
|
493
496
|
msgid "Create New User"
|
|
494
497
|
msgstr "Nutzer*in Erstellen"
|
|
495
498
|
|
|
496
|
-
#:
|
|
497
|
-
#:
|
|
499
|
+
#: contrib/authentication/viewsets/titles/user_activities.py:16
|
|
500
|
+
#: contrib/authentication/viewsets/titles/user_activities.py:32
|
|
498
501
|
#, python-brace-format
|
|
499
502
|
msgid "User Activity of {user}"
|
|
500
503
|
msgstr "Nutzeraktivität von {user}"
|
|
501
504
|
|
|
502
|
-
#:
|
|
505
|
+
#: contrib/authentication/viewsets/titles/users.py:11
|
|
503
506
|
#, python-brace-format
|
|
504
507
|
msgid "Permissions for {email}"
|
|
505
508
|
msgstr "Berechtigungen für {email}"
|
|
506
509
|
|
|
507
|
-
#:
|
|
510
|
+
#: contrib/authentication/viewsets/titles/users.py:16
|
|
508
511
|
msgid "Your Profile"
|
|
509
512
|
msgstr "Ihr Profil"
|
|
510
513
|
|
|
511
|
-
#:
|
|
514
|
+
#: contrib/authentication/viewsets/titles/users.py:21
|
|
512
515
|
msgid "User: {{email}}"
|
|
513
516
|
msgstr "Benutzer*in: {{email}}"
|
|
514
517
|
|
|
515
|
-
#:
|
|
518
|
+
#: contrib/authentication/viewsets/titles/users.py:27
|
|
516
519
|
msgid "New User"
|
|
517
520
|
msgstr "Neue*r Benutzer*in"
|
|
518
521
|
|
|
519
|
-
#:
|
|
522
|
+
#: contrib/authentication/viewsets/user_activities.py:178
|
|
520
523
|
msgid "<b>User Activity</b>"
|
|
521
524
|
msgstr "<b>Nutzeraktivität</b>"
|
|
522
525
|
|
|
523
|
-
#:
|
|
526
|
+
#: contrib/authentication/viewsets/user_activities.py:179
|
|
524
527
|
msgid "Time"
|
|
525
528
|
msgstr "Zeit"
|
|
526
529
|
|
|
527
|
-
#:
|
|
530
|
+
#: contrib/authentication/viewsets/user_activities.py:180
|
|
528
531
|
msgid "Cummulative time"
|
|
529
532
|
msgstr "Kumulierte Zeit"
|
|
530
533
|
|
|
531
|
-
#:
|
|
534
|
+
#: contrib/authentication/viewsets/user_activities.py:191
|
|
532
535
|
msgid "Hour"
|
|
533
536
|
msgstr "Stunde"
|
|
534
537
|
|
|
535
|
-
#:
|
|
538
|
+
#: contrib/authentication/viewsets/user_activities.py:196
|
|
536
539
|
msgid "Day"
|
|
537
540
|
msgstr "Tag"
|
|
538
541
|
|
|
539
|
-
#:
|
|
542
|
+
#: contrib/authentication/viewsets/user_activities.py:201
|
|
540
543
|
msgid "Week"
|
|
541
544
|
msgstr "Woche"
|
|
542
545
|
|
|
543
|
-
#:
|
|
546
|
+
#: contrib/authentication/viewsets/user_activities.py:206
|
|
544
547
|
msgid "Month"
|
|
545
548
|
msgstr "Monat"
|
|
546
549
|
|
|
547
|
-
#:
|
|
550
|
+
#: contrib/authentication/viewsets/users.py:77
|
|
548
551
|
msgid ""
|
|
549
552
|
"If the email matches a user, it will receive an email inviting him to reset "
|
|
550
553
|
"his password."
|
|
551
554
|
msgstr ""
|
|
552
|
-
"Wenn die E-Mail zu einem Benutzerkonto gehört bekommt die Person eine E-Mail
|
|
553
|
-
"mit einem Link um ihr Passwort zurückzusetzen."
|
|
555
|
+
"Wenn die E-Mail zu einem Benutzerkonto gehört bekommt die Person eine E-Mail"
|
|
556
|
+
" mit einem Link um ihr Passwort zurückzusetzen."
|
|
554
557
|
|
|
555
|
-
#:
|
|
558
|
+
#: contrib/authentication/viewsets/users.py:94
|
|
559
|
+
msgid "first and last name are too long. please provider a shorter name."
|
|
560
|
+
msgstr ""
|
|
561
|
+
|
|
562
|
+
#: contrib/authentication/viewsets/users.py:101
|
|
563
|
+
msgid ""
|
|
564
|
+
"password is too long. please provider a password shorter than 128 "
|
|
565
|
+
"characters."
|
|
566
|
+
msgstr ""
|
|
567
|
+
|
|
568
|
+
#: contrib/authentication/viewsets/users.py:109
|
|
569
|
+
msgid ""
|
|
570
|
+
"email is too long. please provider an email shorter than 255 characters."
|
|
571
|
+
msgstr ""
|
|
572
|
+
|
|
573
|
+
#: contrib/authentication/viewsets/users.py:128
|
|
556
574
|
msgid "Activate your account."
|
|
557
575
|
msgstr "Aktivieren Sie Ihr Konto."
|
|
558
576
|
|
|
559
|
-
#:
|
|
577
|
+
#: contrib/authentication/viewsets/users.py:136
|
|
560
578
|
msgid "Please confirm your email address to complete the registration"
|
|
561
579
|
msgstr ""
|
|
562
580
|
"Bitte bestätigen Sie Ihre E-Mail-Adresse um die Registrierung abzuschließen"
|
|
563
581
|
|
|
564
|
-
#:
|
|
582
|
+
#: contrib/authentication/viewsets/users.py:141
|
|
565
583
|
msgid "Your account already exists"
|
|
566
584
|
msgstr "Ihr Konto existiert bereits"
|
|
567
585
|
|
|
568
|
-
#:
|
|
586
|
+
#: contrib/authentication/viewsets/users.py:145
|
|
587
|
+
msgid "Something went wrong with the submitted data, please try again later"
|
|
588
|
+
msgstr ""
|
|
589
|
+
|
|
590
|
+
#: contrib/authentication/viewsets/users.py:149
|
|
569
591
|
msgid "email, first_name, last_name and password must be provided"
|
|
570
592
|
msgstr "E-Mail, Vorname, Nachname und Passwort müssen angegeben werden"
|
|
571
593
|
|
|
572
|
-
#:
|
|
594
|
+
#: contrib/authentication/viewsets/users.py:170
|
|
573
595
|
msgid "Activation Successful"
|
|
574
596
|
msgstr "Aktivierung Erfolgreich"
|
|
575
597
|
|
|
576
|
-
#:
|
|
598
|
+
#: contrib/authentication/viewsets/users.py:171
|
|
577
599
|
msgid "You are successfully registered. Please login"
|
|
578
600
|
msgstr "Sie haben sich erfolgreich registriert. Bitte melden Sie sich an"
|
|
579
601
|
|
|
580
|
-
#:
|
|
602
|
+
#: contrib/authentication/viewsets/users.py:184
|
|
581
603
|
msgid "Activation Failed"
|
|
582
604
|
msgstr "Aktivierung Fehlgeschlagen"
|
|
583
605
|
|
|
584
|
-
#:
|
|
606
|
+
#: contrib/authentication/viewsets/users.py:186
|
|
585
607
|
msgid ""
|
|
586
608
|
"The registration link you clicked was probably expired or your account is "
|
|
587
609
|
"already activated. Please try to register again."
|
|
@@ -589,21 +611,21 @@ msgstr ""
|
|
|
589
611
|
"Der Registrierungslink war wahrscheinlich abgelaufen oder Ihr Konto bereits "
|
|
590
612
|
"aktiviert. Bitte versuchen Sie sich erneut zu registrieren."
|
|
591
613
|
|
|
592
|
-
#:
|
|
614
|
+
#: contrib/authentication/viewsets/users.py:188
|
|
593
615
|
msgid "Register"
|
|
594
616
|
msgstr "Registrieren"
|
|
595
617
|
|
|
596
|
-
#:
|
|
618
|
+
#: contrib/authentication/viewsets/users.py:276
|
|
597
619
|
msgid "Password changed."
|
|
598
620
|
msgstr "Passwort geändert."
|
|
599
621
|
|
|
600
|
-
#:
|
|
622
|
+
#: contrib/authentication/viewsets/users.py:319
|
|
601
623
|
msgid "Reset Password E-Mail sent: Check your mailbox"
|
|
602
624
|
msgstr ""
|
|
603
625
|
"E-Mail zum Zurücksetzen des Passworts gesendet: Bitte schauen Sie in Ihren "
|
|
604
626
|
"Posteingang"
|
|
605
627
|
|
|
606
|
-
#:
|
|
628
|
+
#: contrib/authentication/viewsets/users.py:321
|
|
607
629
|
msgid "Reset Password Failed. Please contact an administrator"
|
|
608
630
|
msgstr ""
|
|
609
631
|
"Passwort Zurücksetzen Fehlgeschlagen. Bitte kontaktieren Sie einen "
|