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,299 +1,950 @@
|
|
|
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
|
+
#
|
|
6
9
|
msgid ""
|
|
7
10
|
msgstr ""
|
|
8
|
-
"Project-Id-Version: \n"
|
|
11
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
12
|
"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"
|
|
13
|
+
"POT-Creation-Date: 2025-05-30 13:27+0200\n"
|
|
14
|
+
"PO-Revision-Date: 2025-05-30 09:40+0000\n"
|
|
15
|
+
"Last-Translator: Kevin Decoster, 2025\n"
|
|
16
|
+
"Language-Team: German (https://app.transifex.com/stainly/teams/171242/de/)\n"
|
|
15
17
|
"MIME-Version: 1.0\n"
|
|
16
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
19
|
"Content-Transfer-Encoding: 8bit\n"
|
|
20
|
+
"Language: de\n"
|
|
18
21
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
19
|
-
"X-Generator: Poedit 3.2.2\n"
|
|
20
22
|
|
|
21
|
-
#:
|
|
23
|
+
#: admin.py:38 contrib/example_app/viewsets/displays/league.py:151
|
|
24
|
+
#: contrib/example_app/viewsets/displays/league.py:271
|
|
25
|
+
#: contrib/example_app/viewsets/displays/league.py:346
|
|
26
|
+
#: contrib/example_app/viewsets/displays/team.py:101
|
|
27
|
+
#: contrib/example_app/viewsets/displays/team.py:208
|
|
22
28
|
msgid "Main Information"
|
|
23
29
|
msgstr "Hauptinformationen"
|
|
24
30
|
|
|
25
|
-
#:
|
|
31
|
+
#: admin.py:109
|
|
26
32
|
#, python-brace-format
|
|
27
|
-
msgid "
|
|
33
|
+
msgid ""
|
|
34
|
+
"Your CSV file has been imported ( {imports} imported, {errors} errors)"
|
|
28
35
|
msgstr ""
|
|
29
36
|
"Ihre CSV-Datei wurde importiert ({imports} importiert, {errors} Fehler)"
|
|
30
37
|
|
|
31
|
-
#:
|
|
32
|
-
|
|
33
|
-
|
|
38
|
+
#: cache/buttons.py:19 cache/buttons.py:20 cache/buttons.py:21
|
|
39
|
+
#: cache/buttons.py:22
|
|
40
|
+
msgid "Clear Cache"
|
|
41
|
+
msgstr ""
|
|
34
42
|
|
|
35
|
-
#:
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
msgstr "Bestätigen"
|
|
43
|
+
#: configurations/configurations/wbcore.py:22
|
|
44
|
+
msgid "Check out our upcoming beta version"
|
|
45
|
+
msgstr "Sehen Sie sich unsere nächste Beta-Version an"
|
|
39
46
|
|
|
40
|
-
#:
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
#: wbcore/release_notes/buttons.py:21 wbcore/viewsets/utils.py:16
|
|
44
|
-
msgid "Cancel"
|
|
45
|
-
msgstr "Abbrechen"
|
|
47
|
+
#: contrib/currency/viewsets/display/currency.py:32
|
|
48
|
+
msgid "Rates"
|
|
49
|
+
msgstr ""
|
|
46
50
|
|
|
47
|
-
#:
|
|
48
|
-
|
|
49
|
-
|
|
51
|
+
#: contrib/example_app/filters/event.py:18 contrib/example_app/models.py:125
|
|
52
|
+
#: contrib/example_app/viewsets/menu/menus.py:30
|
|
53
|
+
#: contrib/example_app/viewsets/menu/menus.py:94
|
|
54
|
+
#: contrib/example_app/viewsets/titles/person.py:9
|
|
55
|
+
msgid "Persons"
|
|
56
|
+
msgstr ""
|
|
50
57
|
|
|
51
|
-
#:
|
|
52
|
-
|
|
53
|
-
|
|
58
|
+
#: contrib/example_app/filters/event.py:24
|
|
59
|
+
#: contrib/example_app/filters/event.py:25
|
|
60
|
+
#: contrib/example_app/filters/event.py:72
|
|
61
|
+
#: contrib/example_app/filters/event.py:73 contrib/example_app/models.py:831
|
|
62
|
+
#: contrib/example_app/serializers/match_event.py:129
|
|
63
|
+
#: contrib/example_app/viewsets/displays/event.py:20
|
|
64
|
+
msgid "Minute"
|
|
65
|
+
msgstr ""
|
|
54
66
|
|
|
55
|
-
#:
|
|
56
|
-
|
|
57
|
-
|
|
67
|
+
#: contrib/example_app/filters/event.py:27 contrib/example_app/models.py:923
|
|
68
|
+
#: contrib/example_app/viewsets/displays/sport.py:52
|
|
69
|
+
#: contrib/example_app/viewsets/displays/sport.py:56
|
|
70
|
+
#: contrib/example_app/viewsets/menu/menus.py:83
|
|
71
|
+
#: contrib/example_app/viewsets/titles/event.py:26
|
|
72
|
+
msgid "Event Types"
|
|
73
|
+
msgstr ""
|
|
58
74
|
|
|
59
|
-
#:
|
|
60
|
-
|
|
61
|
-
|
|
75
|
+
#: contrib/example_app/filters/event.py:41 contrib/example_app/models.py:586
|
|
76
|
+
#: contrib/example_app/models.py:829
|
|
77
|
+
#: contrib/example_app/viewsets/displays/event.py:17
|
|
78
|
+
#: contrib/example_app/viewsets/titles/match.py:15
|
|
79
|
+
msgid "Match"
|
|
80
|
+
msgstr ""
|
|
62
81
|
|
|
63
|
-
#:
|
|
64
|
-
|
|
65
|
-
|
|
82
|
+
#: contrib/example_app/filters/event.py:50
|
|
83
|
+
#: contrib/example_app/filters/event.py:51
|
|
84
|
+
#: contrib/example_app/filters/teamresult.py:15
|
|
85
|
+
#: contrib/example_app/filters/teamresult.py:16
|
|
86
|
+
#: contrib/example_app/filters/teamresult.py:30
|
|
87
|
+
#: contrib/example_app/models.py:267 contrib/example_app/models.py:883
|
|
88
|
+
#: contrib/example_app/viewsets/displays/event.py:12
|
|
89
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:17
|
|
90
|
+
msgid "Points"
|
|
91
|
+
msgstr ""
|
|
66
92
|
|
|
67
|
-
#:
|
|
68
|
-
|
|
69
|
-
|
|
93
|
+
#: contrib/example_app/filters/event.py:63
|
|
94
|
+
#: contrib/example_app/filters/league.py:70
|
|
95
|
+
#: contrib/example_app/filters/match.py:54 contrib/example_app/models.py:163
|
|
96
|
+
#: contrib/example_app/viewsets/menu/menus.py:38
|
|
97
|
+
#: contrib/example_app/viewsets/titles/sport.py:8
|
|
98
|
+
msgid "Sports"
|
|
99
|
+
msgstr ""
|
|
70
100
|
|
|
71
|
-
#:
|
|
72
|
-
msgid "
|
|
73
|
-
msgstr "
|
|
101
|
+
#: contrib/example_app/filters/event.py:75
|
|
102
|
+
msgid "Period"
|
|
103
|
+
msgstr ""
|
|
74
104
|
|
|
75
|
-
#:
|
|
76
|
-
|
|
77
|
-
|
|
105
|
+
#: contrib/example_app/filters/league.py:10
|
|
106
|
+
#: contrib/example_app/filters/league.py:15 contrib/example_app/models.py:193
|
|
107
|
+
msgid "Established Date"
|
|
108
|
+
msgstr ""
|
|
78
109
|
|
|
79
|
-
#:
|
|
80
|
-
msgid "
|
|
81
|
-
msgstr "
|
|
110
|
+
#: contrib/example_app/filters/league.py:20
|
|
111
|
+
msgid "Commissioners"
|
|
112
|
+
msgstr ""
|
|
82
113
|
|
|
83
|
-
#:
|
|
84
|
-
msgid "
|
|
114
|
+
#: contrib/example_app/filters/league.py:27
|
|
115
|
+
msgid "Countries"
|
|
85
116
|
msgstr ""
|
|
86
|
-
"Der Text, der auftaucht wenn der Mauszeiger sich über dem Menüpunkt befindet."
|
|
87
117
|
|
|
88
|
-
#:
|
|
89
|
-
|
|
90
|
-
|
|
118
|
+
#: contrib/example_app/filters/league.py:35
|
|
119
|
+
#: contrib/example_app/filters/teamresult.py:9
|
|
120
|
+
#: contrib/example_app/models.py:258 contrib/example_app/models.py:722
|
|
121
|
+
#: contrib/example_app/viewsets/displays/event.py:70
|
|
122
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:9
|
|
123
|
+
#: contrib/example_app/viewsets/menus.py:6
|
|
124
|
+
#: contrib/example_app/viewsets/titles/team.py:15
|
|
125
|
+
msgid "Team"
|
|
126
|
+
msgstr ""
|
|
91
127
|
|
|
92
|
-
#:
|
|
93
|
-
|
|
94
|
-
|
|
128
|
+
#: contrib/example_app/filters/league.py:42
|
|
129
|
+
#: contrib/example_app/filters/league.py:45 contrib/example_app/models.py:203
|
|
130
|
+
#: contrib/example_app/viewsets/displays/league.py:23
|
|
131
|
+
msgid "Points Per Win"
|
|
132
|
+
msgstr ""
|
|
95
133
|
|
|
96
|
-
#:
|
|
97
|
-
|
|
98
|
-
|
|
134
|
+
#: contrib/example_app/filters/league.py:48
|
|
135
|
+
#: contrib/example_app/filters/league.py:51 contrib/example_app/models.py:204
|
|
136
|
+
#: contrib/example_app/viewsets/displays/league.py:24
|
|
137
|
+
msgid "Points Per Draw"
|
|
138
|
+
msgstr ""
|
|
99
139
|
|
|
100
|
-
#:
|
|
101
|
-
|
|
102
|
-
|
|
140
|
+
#: contrib/example_app/filters/league.py:54
|
|
141
|
+
#: contrib/example_app/filters/league.py:57 contrib/example_app/models.py:205
|
|
142
|
+
#: contrib/example_app/viewsets/displays/league.py:25
|
|
143
|
+
msgid "Points Per Loss"
|
|
144
|
+
msgstr ""
|
|
103
145
|
|
|
104
|
-
#:
|
|
105
|
-
|
|
106
|
-
|
|
146
|
+
#: contrib/example_app/filters/match.py:16
|
|
147
|
+
#: contrib/example_app/filters/match.py:21 contrib/example_app/models.py:389
|
|
148
|
+
#: contrib/example_app/viewsets/displays/match.py:24
|
|
149
|
+
msgid "Date Time"
|
|
150
|
+
msgstr ""
|
|
107
151
|
|
|
108
|
-
#:
|
|
152
|
+
#: contrib/example_app/filters/match.py:26 contrib/example_app/models.py:381
|
|
153
|
+
#: contrib/example_app/viewsets/displays/match.py:19
|
|
109
154
|
msgid "Home"
|
|
110
155
|
msgstr "Home"
|
|
111
156
|
|
|
112
|
-
#:
|
|
113
|
-
|
|
114
|
-
|
|
157
|
+
#: contrib/example_app/filters/match.py:33 contrib/example_app/models.py:387
|
|
158
|
+
#: contrib/example_app/viewsets/displays/match.py:21
|
|
159
|
+
msgid "Away"
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
#: contrib/example_app/filters/match.py:39
|
|
163
|
+
#: contrib/example_app/filters/match.py:40 contrib/example_app/models.py:401
|
|
164
|
+
#: contrib/example_app/viewsets/displays/match.py:20
|
|
165
|
+
msgid "Home Score"
|
|
166
|
+
msgstr ""
|
|
167
|
+
|
|
168
|
+
#: contrib/example_app/filters/match.py:41
|
|
169
|
+
#: contrib/example_app/filters/match.py:42 contrib/example_app/models.py:402
|
|
170
|
+
#: contrib/example_app/viewsets/displays/match.py:22
|
|
171
|
+
msgid "Away Score"
|
|
172
|
+
msgstr ""
|
|
173
|
+
|
|
174
|
+
#: contrib/example_app/filters/match.py:44
|
|
175
|
+
msgid "Referees"
|
|
176
|
+
msgstr ""
|
|
177
|
+
|
|
178
|
+
#: contrib/example_app/filters/match.py:51 contrib/example_app/models.py:398
|
|
179
|
+
msgid "Status"
|
|
180
|
+
msgstr ""
|
|
181
|
+
|
|
182
|
+
#: contrib/example_app/filters/match.py:68
|
|
183
|
+
#: contrib/example_app/filters/match.py:88
|
|
184
|
+
#: contrib/example_app/filters/team.py:73 contrib/example_app/models.py:359
|
|
185
|
+
#: contrib/example_app/viewsets/menu/menus.py:22
|
|
186
|
+
#: contrib/example_app/viewsets/titles/stadium.py:8
|
|
187
|
+
msgid "Stadiums"
|
|
188
|
+
msgstr ""
|
|
189
|
+
|
|
190
|
+
#: contrib/example_app/filters/match.py:78 contrib/example_app/models.py:227
|
|
191
|
+
#: contrib/example_app/viewsets/displays/sport.py:31
|
|
192
|
+
#: contrib/example_app/viewsets/displays/sport.py:35
|
|
193
|
+
#: contrib/example_app/viewsets/menu/menus.py:14
|
|
194
|
+
#: contrib/example_app/viewsets/menu/menus.py:98
|
|
195
|
+
#: contrib/example_app/viewsets/titles/league.py:9
|
|
196
|
+
msgid "Leagues"
|
|
197
|
+
msgstr ""
|
|
198
|
+
|
|
199
|
+
#: contrib/example_app/filters/person.py:10
|
|
200
|
+
msgid "Participating In"
|
|
201
|
+
msgstr ""
|
|
202
|
+
|
|
203
|
+
#: contrib/example_app/filters/person.py:16
|
|
204
|
+
msgid "All persons participating in a selected Match."
|
|
205
|
+
msgstr ""
|
|
206
|
+
|
|
207
|
+
#: contrib/example_app/filters/person.py:38 contrib/example_app/models.py:69
|
|
208
|
+
#: contrib/example_app/models.py:73
|
|
209
|
+
#: contrib/example_app/serializers/person_team.py:209
|
|
210
|
+
#: contrib/example_app/viewsets/displays/person.py:13
|
|
211
|
+
#: contrib/example_app/viewsets/menu/menus.py:59
|
|
212
|
+
#: contrib/example_app/viewsets/titles/role.py:8
|
|
213
|
+
msgid "Roles"
|
|
214
|
+
msgstr ""
|
|
215
|
+
|
|
216
|
+
#: contrib/example_app/filters/person.py:55 contrib/example_app/models.py:760
|
|
217
|
+
#: contrib/example_app/viewsets/displays/person.py:19
|
|
218
|
+
msgid "Former Teams"
|
|
219
|
+
msgstr ""
|
|
220
|
+
|
|
221
|
+
#: contrib/example_app/filters/person.py:61
|
|
222
|
+
#: contrib/example_app/filters/person.py:62 contrib/example_app/models.py:766
|
|
223
|
+
#: contrib/example_app/viewsets/displays/person.py:22
|
|
224
|
+
msgid "Market Value"
|
|
225
|
+
msgstr ""
|
|
115
226
|
|
|
116
|
-
#:
|
|
117
|
-
msgid "
|
|
118
|
-
msgstr "
|
|
227
|
+
#: contrib/example_app/filters/person.py:73
|
|
228
|
+
msgid "Current Teams"
|
|
229
|
+
msgstr ""
|
|
119
230
|
|
|
120
|
-
#:
|
|
121
|
-
msgid "
|
|
122
|
-
msgstr "
|
|
231
|
+
#: contrib/example_app/filters/role.py:9
|
|
232
|
+
msgid "Associated Person"
|
|
233
|
+
msgstr ""
|
|
123
234
|
|
|
124
|
-
#:
|
|
125
|
-
msgid "
|
|
126
|
-
msgstr "
|
|
235
|
+
#: contrib/example_app/filters/sport.py:9
|
|
236
|
+
msgid "Associated League"
|
|
237
|
+
msgstr ""
|
|
127
238
|
|
|
128
|
-
#:
|
|
129
|
-
|
|
130
|
-
|
|
239
|
+
#: contrib/example_app/filters/sport.py:16
|
|
240
|
+
#: contrib/example_app/filters/sport.py:19
|
|
241
|
+
#: contrib/example_app/viewsets/displays/sport.py:22
|
|
242
|
+
msgid "Match Duration"
|
|
243
|
+
msgstr ""
|
|
131
244
|
|
|
132
|
-
#:
|
|
133
|
-
|
|
134
|
-
|
|
245
|
+
#: contrib/example_app/filters/stadium.py:9
|
|
246
|
+
#: contrib/example_app/filters/stadium.py:10
|
|
247
|
+
#: contrib/example_app/viewsets/displays/stadium.py:26
|
|
248
|
+
msgid "Capacity"
|
|
249
|
+
msgstr ""
|
|
135
250
|
|
|
136
|
-
#:
|
|
137
|
-
msgid "
|
|
138
|
-
msgstr "
|
|
251
|
+
#: contrib/example_app/filters/stadium.py:12
|
|
252
|
+
msgid "Team Playing"
|
|
253
|
+
msgstr ""
|
|
139
254
|
|
|
140
|
-
#:
|
|
141
|
-
|
|
142
|
-
|
|
255
|
+
#: contrib/example_app/filters/stadium.py:19
|
|
256
|
+
#: contrib/example_app/filters/team.py:42
|
|
257
|
+
msgid "Cities"
|
|
258
|
+
msgstr ""
|
|
143
259
|
|
|
144
|
-
#:
|
|
145
|
-
|
|
146
|
-
|
|
260
|
+
#: contrib/example_app/filters/team.py:11
|
|
261
|
+
#: contrib/example_app/filters/team.py:16 contrib/example_app/models.py:658
|
|
262
|
+
#: contrib/example_app/viewsets/displays/team.py:19
|
|
263
|
+
msgid "Founded Date"
|
|
264
|
+
msgstr ""
|
|
147
265
|
|
|
148
|
-
#:
|
|
149
|
-
msgid "
|
|
150
|
-
msgstr "
|
|
266
|
+
#: contrib/example_app/filters/team.py:21
|
|
267
|
+
msgid "Coaches"
|
|
268
|
+
msgstr ""
|
|
151
269
|
|
|
152
|
-
#:
|
|
153
|
-
msgid "
|
|
154
|
-
msgstr "
|
|
270
|
+
#: contrib/example_app/filters/team.py:28
|
|
271
|
+
msgid "Current Player"
|
|
272
|
+
msgstr ""
|
|
155
273
|
|
|
156
|
-
#:
|
|
157
|
-
msgid "
|
|
158
|
-
msgstr "
|
|
274
|
+
#: contrib/example_app/filters/team.py:35
|
|
275
|
+
msgid "Former Player"
|
|
276
|
+
msgstr ""
|
|
159
277
|
|
|
160
|
-
#:
|
|
161
|
-
msgid "
|
|
162
|
-
msgstr "
|
|
278
|
+
#: contrib/example_app/filters/team.py:59
|
|
279
|
+
msgid "Opponent"
|
|
280
|
+
msgstr ""
|
|
163
281
|
|
|
164
|
-
#:
|
|
165
|
-
|
|
166
|
-
|
|
282
|
+
#: contrib/example_app/filters/teamresult.py:18
|
|
283
|
+
#: contrib/example_app/filters/teamresult.py:21
|
|
284
|
+
#: contrib/example_app/models.py:268
|
|
285
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:14
|
|
286
|
+
msgid "Match Points For"
|
|
287
|
+
msgstr ""
|
|
167
288
|
|
|
168
|
-
#:
|
|
169
|
-
|
|
170
|
-
|
|
289
|
+
#: contrib/example_app/filters/teamresult.py:24
|
|
290
|
+
#: contrib/example_app/filters/teamresult.py:27
|
|
291
|
+
#: contrib/example_app/models.py:269
|
|
292
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:15
|
|
293
|
+
msgid "Match Points Against"
|
|
294
|
+
msgstr ""
|
|
171
295
|
|
|
172
|
-
#:
|
|
173
|
-
|
|
174
|
-
|
|
296
|
+
#: contrib/example_app/filters/teamresult.py:29
|
|
297
|
+
#: contrib/example_app/models.py:271
|
|
298
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:11
|
|
299
|
+
msgid "Wins"
|
|
300
|
+
msgstr ""
|
|
175
301
|
|
|
176
|
-
#:
|
|
177
|
-
|
|
178
|
-
|
|
302
|
+
#: contrib/example_app/filters/teamresult.py:31
|
|
303
|
+
#: contrib/example_app/filters/teamresult.py:32
|
|
304
|
+
#: contrib/example_app/models.py:272
|
|
305
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:12
|
|
306
|
+
msgid "Draws"
|
|
307
|
+
msgstr ""
|
|
179
308
|
|
|
180
|
-
#:
|
|
181
|
-
|
|
182
|
-
|
|
309
|
+
#: contrib/example_app/filters/teamresult.py:33
|
|
310
|
+
#: contrib/example_app/filters/teamresult.py:34
|
|
311
|
+
#: contrib/example_app/models.py:273
|
|
312
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:13
|
|
313
|
+
msgid "Losses"
|
|
314
|
+
msgstr ""
|
|
183
315
|
|
|
184
|
-
#:
|
|
185
|
-
|
|
186
|
-
|
|
316
|
+
#: contrib/example_app/filters/teamresult.py:43
|
|
317
|
+
#: contrib/example_app/models.py:226 contrib/example_app/models.py:264
|
|
318
|
+
#: contrib/example_app/models.py:416
|
|
319
|
+
#: contrib/example_app/viewsets/displays/match.py:23
|
|
320
|
+
#: contrib/example_app/viewsets/displays/season.py:12
|
|
321
|
+
#: contrib/example_app/viewsets/displays/season.py:25
|
|
322
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:8
|
|
323
|
+
#: contrib/example_app/viewsets/event.py:137
|
|
324
|
+
#: contrib/example_app/viewsets/menus.py:14
|
|
325
|
+
#: contrib/example_app/viewsets/titles/league.py:15
|
|
326
|
+
msgid "League"
|
|
327
|
+
msgstr ""
|
|
187
328
|
|
|
188
|
-
#:
|
|
189
|
-
|
|
190
|
-
|
|
329
|
+
#: contrib/example_app/models.py:39
|
|
330
|
+
#: contrib/example_app/viewsets/displays/role.py:14
|
|
331
|
+
msgid "Title"
|
|
332
|
+
msgstr "Titel"
|
|
191
333
|
|
|
192
|
-
#:
|
|
193
|
-
|
|
194
|
-
|
|
334
|
+
#: contrib/example_app/models.py:68
|
|
335
|
+
#: contrib/example_app/viewsets/titles/role.py:14
|
|
336
|
+
msgid "Role"
|
|
337
|
+
msgstr ""
|
|
195
338
|
|
|
196
|
-
#:
|
|
197
|
-
|
|
198
|
-
|
|
339
|
+
#: contrib/example_app/models.py:74
|
|
340
|
+
#: contrib/example_app/viewsets/displays/person.py:11
|
|
341
|
+
msgid "First Name"
|
|
342
|
+
msgstr ""
|
|
199
343
|
|
|
200
|
-
#:
|
|
201
|
-
|
|
202
|
-
|
|
344
|
+
#: contrib/example_app/models.py:75
|
|
345
|
+
#: contrib/example_app/viewsets/displays/person.py:12
|
|
346
|
+
msgid "Last Name"
|
|
347
|
+
msgstr ""
|
|
203
348
|
|
|
204
|
-
#:
|
|
205
|
-
|
|
206
|
-
|
|
349
|
+
#: contrib/example_app/models.py:93
|
|
350
|
+
#, python-brace-format
|
|
351
|
+
msgid " (Coach of {self.coached_team.name})"
|
|
352
|
+
msgstr ""
|
|
207
353
|
|
|
208
|
-
#:
|
|
209
|
-
msgid "
|
|
210
|
-
msgstr "
|
|
354
|
+
#: contrib/example_app/models.py:95
|
|
355
|
+
msgid " (Commissioner of {self.commissioned_leagues.first().name})"
|
|
356
|
+
msgstr ""
|
|
211
357
|
|
|
212
|
-
#:
|
|
213
|
-
|
|
214
|
-
|
|
358
|
+
#: contrib/example_app/models.py:124 contrib/example_app/models.py:823
|
|
359
|
+
#: contrib/example_app/serializers/match_event.py:117
|
|
360
|
+
#: contrib/example_app/viewsets/displays/event.py:19
|
|
361
|
+
#: contrib/example_app/viewsets/displays/event.py:63
|
|
362
|
+
#: contrib/example_app/viewsets/displays/person.py:79
|
|
363
|
+
#: contrib/example_app/viewsets/displays/person.py:152
|
|
364
|
+
#: contrib/example_app/viewsets/displays/person.py:188
|
|
365
|
+
#: contrib/example_app/viewsets/titles/person.py:15
|
|
366
|
+
msgid "Person"
|
|
367
|
+
msgstr ""
|
|
215
368
|
|
|
216
|
-
#:
|
|
217
|
-
|
|
218
|
-
|
|
369
|
+
#: contrib/example_app/models.py:129 contrib/example_app/models.py:177
|
|
370
|
+
#: contrib/example_app/models.py:308 contrib/example_app/models.py:881
|
|
371
|
+
#: contrib/example_app/viewsets/displays/event.py:10
|
|
372
|
+
#: contrib/example_app/viewsets/displays/league.py:21
|
|
373
|
+
#: contrib/example_app/viewsets/displays/person.py:171
|
|
374
|
+
#: contrib/example_app/viewsets/displays/sport.py:21
|
|
375
|
+
#: contrib/example_app/viewsets/displays/stadium.py:21
|
|
376
|
+
#: contrib/example_app/viewsets/displays/team.py:24
|
|
377
|
+
#: contrib/example_app/viewsets/displays/team.py:197 utils/models.py:64
|
|
378
|
+
msgid "Name"
|
|
379
|
+
msgstr "Name"
|
|
219
380
|
|
|
220
|
-
#:
|
|
221
|
-
|
|
222
|
-
|
|
381
|
+
#: contrib/example_app/models.py:131
|
|
382
|
+
#: contrib/example_app/viewsets/displays/sport.py:23
|
|
383
|
+
msgid "Rules"
|
|
384
|
+
msgstr ""
|
|
223
385
|
|
|
224
|
-
#:
|
|
225
|
-
msgid "
|
|
226
|
-
msgstr "
|
|
386
|
+
#: contrib/example_app/models.py:132
|
|
387
|
+
msgid "Match Duration (min)"
|
|
388
|
+
msgstr ""
|
|
227
389
|
|
|
228
|
-
#:
|
|
229
|
-
|
|
230
|
-
|
|
390
|
+
#: contrib/example_app/models.py:162 contrib/example_app/models.py:182
|
|
391
|
+
#: contrib/example_app/models.py:429 contrib/example_app/models.py:891
|
|
392
|
+
#: contrib/example_app/viewsets/displays/event.py:11
|
|
393
|
+
#: contrib/example_app/viewsets/displays/league.py:22
|
|
394
|
+
#: contrib/example_app/viewsets/menus.py:38
|
|
395
|
+
#: contrib/example_app/viewsets/titles/sport.py:14
|
|
396
|
+
msgid "Sport"
|
|
397
|
+
msgstr ""
|
|
231
398
|
|
|
232
|
-
#:
|
|
233
|
-
|
|
234
|
-
|
|
399
|
+
#: contrib/example_app/models.py:191
|
|
400
|
+
#: contrib/example_app/viewsets/displays/league.py:26
|
|
401
|
+
msgid "Country"
|
|
402
|
+
msgstr ""
|
|
235
403
|
|
|
236
|
-
#:
|
|
237
|
-
|
|
238
|
-
|
|
404
|
+
#: contrib/example_app/models.py:200
|
|
405
|
+
#: contrib/example_app/viewsets/displays/league.py:28
|
|
406
|
+
msgid "Commissioner"
|
|
407
|
+
msgstr ""
|
|
239
408
|
|
|
240
|
-
#:
|
|
241
|
-
|
|
242
|
-
|
|
409
|
+
#: contrib/example_app/models.py:202 contrib/example_app/models.py:689
|
|
410
|
+
#: contrib/example_app/viewsets/displays/league.py:29
|
|
411
|
+
msgid "Website"
|
|
412
|
+
msgstr ""
|
|
243
413
|
|
|
244
|
-
#:
|
|
245
|
-
|
|
246
|
-
|
|
414
|
+
#: contrib/example_app/models.py:212 contrib/example_app/models.py:723
|
|
415
|
+
#: contrib/example_app/viewsets/displays/stadium.py:62
|
|
416
|
+
#: contrib/example_app/viewsets/displays/stadium.py:66
|
|
417
|
+
#: contrib/example_app/viewsets/menu/menus.py:6
|
|
418
|
+
#: contrib/example_app/viewsets/titles/team.py:9
|
|
419
|
+
msgid "Teams"
|
|
420
|
+
msgstr ""
|
|
247
421
|
|
|
248
|
-
#:
|
|
249
|
-
|
|
250
|
-
|
|
422
|
+
#: contrib/example_app/models.py:270
|
|
423
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:16
|
|
424
|
+
msgid "Match Point Difference"
|
|
425
|
+
msgstr ""
|
|
251
426
|
|
|
252
|
-
#:
|
|
253
|
-
|
|
254
|
-
|
|
427
|
+
#: contrib/example_app/models.py:274
|
|
428
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:18
|
|
429
|
+
msgid "Form"
|
|
430
|
+
msgstr ""
|
|
255
431
|
|
|
256
|
-
#:
|
|
257
|
-
msgid "
|
|
258
|
-
msgstr "
|
|
432
|
+
#: contrib/example_app/models.py:277
|
|
433
|
+
msgid "{} in {}"
|
|
434
|
+
msgstr ""
|
|
259
435
|
|
|
260
|
-
#:
|
|
261
|
-
msgid "
|
|
262
|
-
msgstr "
|
|
436
|
+
#: contrib/example_app/models.py:284
|
|
437
|
+
msgid "Team Result"
|
|
438
|
+
msgstr ""
|
|
263
439
|
|
|
264
|
-
#:
|
|
265
|
-
|
|
266
|
-
|
|
440
|
+
#: contrib/example_app/models.py:285
|
|
441
|
+
#: contrib/example_app/viewsets/titles/teamresult.py:8
|
|
442
|
+
msgid "Team Results"
|
|
443
|
+
msgstr ""
|
|
267
444
|
|
|
268
|
-
#:
|
|
269
|
-
|
|
270
|
-
|
|
445
|
+
#: contrib/example_app/models.py:315 contrib/example_app/models.py:654
|
|
446
|
+
#: contrib/example_app/viewsets/displays/stadium.py:22
|
|
447
|
+
#: contrib/example_app/viewsets/displays/team.py:18
|
|
448
|
+
msgid "City"
|
|
449
|
+
msgstr ""
|
|
271
450
|
|
|
272
|
-
#:
|
|
273
|
-
msgid "
|
|
274
|
-
msgstr "
|
|
451
|
+
#: contrib/example_app/models.py:319
|
|
452
|
+
msgid "Standing Capacity"
|
|
453
|
+
msgstr ""
|
|
275
454
|
|
|
276
|
-
#:
|
|
277
|
-
msgid "
|
|
278
|
-
msgstr "
|
|
455
|
+
#: contrib/example_app/models.py:320
|
|
456
|
+
msgid "Seating Capacity"
|
|
457
|
+
msgstr ""
|
|
279
458
|
|
|
280
|
-
#:
|
|
281
|
-
msgid "
|
|
282
|
-
msgstr "
|
|
459
|
+
#: contrib/example_app/models.py:324
|
|
460
|
+
msgid "Guest Rating"
|
|
461
|
+
msgstr ""
|
|
283
462
|
|
|
284
|
-
#:
|
|
285
|
-
|
|
286
|
-
|
|
463
|
+
#: contrib/example_app/models.py:358 contrib/example_app/models.py:394
|
|
464
|
+
#: contrib/example_app/viewsets/displays/match.py:25
|
|
465
|
+
#: contrib/example_app/viewsets/menus.py:22
|
|
466
|
+
#: contrib/example_app/viewsets/titles/stadium.py:14
|
|
467
|
+
msgid "Stadium"
|
|
468
|
+
msgstr ""
|
|
287
469
|
|
|
288
|
-
#:
|
|
289
|
-
msgid "
|
|
290
|
-
msgstr "
|
|
470
|
+
#: contrib/example_app/models.py:364
|
|
471
|
+
msgid "Scheduled"
|
|
472
|
+
msgstr ""
|
|
473
|
+
|
|
474
|
+
#: contrib/example_app/models.py:365
|
|
475
|
+
msgid "Ongoing"
|
|
476
|
+
msgstr ""
|
|
477
|
+
|
|
478
|
+
#: contrib/example_app/models.py:366
|
|
479
|
+
msgid "Finished"
|
|
480
|
+
msgstr ""
|
|
481
|
+
|
|
482
|
+
#: contrib/example_app/models.py:451 reversion/viewsets/buttons.py:44
|
|
483
|
+
#: utils/serializers.py:8
|
|
484
|
+
msgid "Start"
|
|
485
|
+
msgstr "Start"
|
|
486
|
+
|
|
487
|
+
#: contrib/example_app/models.py:452
|
|
488
|
+
msgid "Starting"
|
|
489
|
+
msgstr ""
|
|
490
|
+
|
|
491
|
+
#: contrib/example_app/models.py:453
|
|
492
|
+
msgid "Are you sure you want to start the match?"
|
|
493
|
+
msgstr ""
|
|
494
|
+
|
|
495
|
+
#: contrib/example_app/models.py:471 utils/serializers.py:9
|
|
496
|
+
msgid "End"
|
|
497
|
+
msgstr "Ende"
|
|
498
|
+
|
|
499
|
+
#: contrib/example_app/models.py:472
|
|
500
|
+
msgid "Ending"
|
|
501
|
+
msgstr ""
|
|
502
|
+
|
|
503
|
+
#: contrib/example_app/models.py:473
|
|
504
|
+
msgid "Are you sure you want to end the match?"
|
|
505
|
+
msgstr ""
|
|
506
|
+
|
|
507
|
+
#: contrib/example_app/models.py:587
|
|
508
|
+
#: contrib/example_app/viewsets/menu/menus.py:67
|
|
509
|
+
#: contrib/example_app/viewsets/titles/match.py:9
|
|
510
|
+
msgid "Matches"
|
|
511
|
+
msgstr ""
|
|
512
|
+
|
|
513
|
+
#: contrib/example_app/models.py:665
|
|
514
|
+
#: contrib/example_app/viewsets/buttons/team.py:17
|
|
515
|
+
#: contrib/example_app/viewsets/displays/team.py:20
|
|
516
|
+
msgid "Coach"
|
|
517
|
+
msgstr ""
|
|
518
|
+
|
|
519
|
+
#: contrib/example_app/models.py:673
|
|
520
|
+
#: contrib/example_app/serializers/person_team.py:86
|
|
521
|
+
#: contrib/example_app/viewsets/displays/team.py:21
|
|
522
|
+
msgid "Home Stadium"
|
|
523
|
+
msgstr ""
|
|
524
|
+
|
|
525
|
+
#: contrib/example_app/models.py:680
|
|
526
|
+
msgid "Opponents"
|
|
527
|
+
msgstr ""
|
|
528
|
+
|
|
529
|
+
#: contrib/example_app/models.py:686
|
|
530
|
+
msgid "Email Address"
|
|
531
|
+
msgstr ""
|
|
532
|
+
|
|
533
|
+
#: contrib/example_app/models.py:687
|
|
534
|
+
msgid "Phone Number"
|
|
535
|
+
msgstr ""
|
|
536
|
+
|
|
537
|
+
#: contrib/example_app/models.py:747
|
|
538
|
+
#: contrib/example_app/viewsets/displays/person.py:17
|
|
539
|
+
msgid "Position"
|
|
540
|
+
msgstr ""
|
|
541
|
+
|
|
542
|
+
#: contrib/example_app/models.py:754
|
|
543
|
+
#: contrib/example_app/serializers/person_team.py:214
|
|
544
|
+
#: contrib/example_app/viewsets/displays/person.py:18
|
|
545
|
+
msgid "Current Team"
|
|
546
|
+
msgstr ""
|
|
547
|
+
|
|
548
|
+
#: contrib/example_app/models.py:768
|
|
549
|
+
msgid "Is Active"
|
|
550
|
+
msgstr ""
|
|
551
|
+
|
|
552
|
+
#: contrib/example_app/models.py:769
|
|
553
|
+
msgid "Is Injured"
|
|
554
|
+
msgstr ""
|
|
555
|
+
|
|
556
|
+
#: contrib/example_app/models.py:773
|
|
557
|
+
msgid "Player Strength"
|
|
558
|
+
msgstr ""
|
|
559
|
+
|
|
560
|
+
#: contrib/example_app/models.py:778
|
|
561
|
+
msgid "Game Activity"
|
|
562
|
+
msgstr ""
|
|
563
|
+
|
|
564
|
+
#: contrib/example_app/models.py:790
|
|
565
|
+
#, python-brace-format
|
|
566
|
+
msgid " ({self.position} at {self.current_team.name})"
|
|
567
|
+
msgstr ""
|
|
568
|
+
|
|
569
|
+
#: contrib/example_app/models.py:792
|
|
570
|
+
#, python-brace-format
|
|
571
|
+
msgid " ({self.current_team.name})"
|
|
572
|
+
msgstr ""
|
|
573
|
+
|
|
574
|
+
#: contrib/example_app/models.py:813
|
|
575
|
+
#: contrib/example_app/viewsets/displays/person.py:113
|
|
576
|
+
#: contrib/example_app/viewsets/displays/person.py:220
|
|
577
|
+
#: contrib/example_app/viewsets/menus.py:46
|
|
578
|
+
#: contrib/example_app/viewsets/titles/person.py:26
|
|
579
|
+
msgid "Player"
|
|
580
|
+
msgstr ""
|
|
581
|
+
|
|
582
|
+
#: contrib/example_app/models.py:814
|
|
583
|
+
#: contrib/example_app/viewsets/displays/team.py:54
|
|
584
|
+
#: contrib/example_app/viewsets/displays/team.py:58
|
|
585
|
+
#: contrib/example_app/viewsets/menu/menus.py:51
|
|
586
|
+
#: contrib/example_app/viewsets/titles/person.py:20
|
|
587
|
+
msgid "Players"
|
|
588
|
+
msgstr ""
|
|
589
|
+
|
|
590
|
+
#: contrib/example_app/models.py:818
|
|
591
|
+
msgid "Event Description"
|
|
592
|
+
msgstr ""
|
|
593
|
+
|
|
594
|
+
#: contrib/example_app/models.py:836 contrib/example_app/models.py:922
|
|
595
|
+
#: contrib/example_app/viewsets/displays/event.py:18
|
|
596
|
+
#: contrib/example_app/viewsets/titles/event.py:32
|
|
597
|
+
msgid "Event Type"
|
|
598
|
+
msgstr ""
|
|
599
|
+
|
|
600
|
+
#: contrib/example_app/models.py:870
|
|
601
|
+
#: contrib/example_app/viewsets/titles/event.py:15
|
|
602
|
+
msgid "Event"
|
|
603
|
+
msgstr ""
|
|
604
|
+
|
|
605
|
+
#: contrib/example_app/models.py:871
|
|
606
|
+
#: contrib/example_app/viewsets/displays/match.py:60
|
|
607
|
+
#: contrib/example_app/viewsets/displays/match.py:64
|
|
608
|
+
#: contrib/example_app/viewsets/menu/menus.py:75
|
|
609
|
+
#: contrib/example_app/viewsets/menu/menus.py:101
|
|
610
|
+
#: contrib/example_app/viewsets/titles/event.py:9
|
|
611
|
+
msgid "Events"
|
|
612
|
+
msgstr ""
|
|
613
|
+
|
|
614
|
+
#: contrib/example_app/models.py:884
|
|
615
|
+
msgid "Number of points awarded to a player's team per event"
|
|
616
|
+
msgstr ""
|
|
617
|
+
|
|
618
|
+
#: contrib/example_app/models.py:895
|
|
619
|
+
#: contrib/example_app/viewsets/displays/event.py:13 utils/models.py:259
|
|
620
|
+
msgid "Icon"
|
|
621
|
+
msgstr "Icon"
|
|
622
|
+
|
|
623
|
+
#: contrib/example_app/models.py:975
|
|
624
|
+
#: contrib/example_app/viewsets/displays/season.py:37
|
|
625
|
+
#: contrib/example_app/viewsets/menu/menus.py:46
|
|
626
|
+
msgid "Season"
|
|
627
|
+
msgstr ""
|
|
628
|
+
|
|
629
|
+
#: contrib/example_app/models.py:976
|
|
630
|
+
msgid "Seasons"
|
|
631
|
+
msgstr ""
|
|
632
|
+
|
|
633
|
+
#: contrib/example_app/serializers/league.py:20
|
|
634
|
+
msgid "A league with this name already exists for this type of sport."
|
|
635
|
+
msgstr ""
|
|
636
|
+
|
|
637
|
+
#: contrib/example_app/serializers/league.py:21
|
|
638
|
+
#: contrib/example_app/serializers/person_team.py:28
|
|
639
|
+
msgid "The founding date must be in the past."
|
|
640
|
+
msgstr ""
|
|
641
|
+
|
|
642
|
+
#: contrib/example_app/serializers/match_event.py:37
|
|
643
|
+
msgid "Team cannot play against itself."
|
|
644
|
+
msgstr ""
|
|
645
|
+
|
|
646
|
+
#: contrib/example_app/serializers/match_event.py:38
|
|
647
|
+
msgid "A match between these teams at this time already exists."
|
|
648
|
+
msgstr ""
|
|
649
|
+
|
|
650
|
+
#: contrib/example_app/serializers/match_event.py:39
|
|
651
|
+
msgid "League doesn't match the specified sport."
|
|
652
|
+
msgstr ""
|
|
653
|
+
|
|
654
|
+
#: contrib/example_app/serializers/match_event.py:43
|
|
655
|
+
msgid "An event type with this name already exists for this sport."
|
|
656
|
+
msgstr ""
|
|
657
|
+
|
|
658
|
+
#: contrib/example_app/serializers/match_event.py:47
|
|
659
|
+
msgid "This event already exists."
|
|
660
|
+
msgstr ""
|
|
661
|
+
|
|
662
|
+
#: contrib/example_app/serializers/match_event.py:48
|
|
663
|
+
msgid "Event outside of match duration."
|
|
664
|
+
msgstr ""
|
|
665
|
+
|
|
666
|
+
#: contrib/example_app/serializers/match_event.py:49
|
|
667
|
+
msgid "Please select a {} event type."
|
|
668
|
+
msgstr ""
|
|
669
|
+
|
|
670
|
+
#: contrib/example_app/serializers/match_event.py:138
|
|
671
|
+
msgid "Event outside of match duration ({} min)."
|
|
672
|
+
msgstr ""
|
|
673
|
+
|
|
674
|
+
#: contrib/example_app/serializers/person_team.py:27
|
|
675
|
+
msgid "A team with this name already exists."
|
|
676
|
+
msgstr ""
|
|
677
|
+
|
|
678
|
+
#: contrib/example_app/serializers/person_team.py:83
|
|
679
|
+
msgid "Enter team name here"
|
|
680
|
+
msgstr ""
|
|
681
|
+
|
|
682
|
+
#: contrib/example_app/serializers/person_team.py:92
|
|
683
|
+
msgctxt "Phonenumber"
|
|
684
|
+
msgid "Number"
|
|
685
|
+
msgstr ""
|
|
686
|
+
|
|
687
|
+
#: contrib/example_app/serializers/person_team.py:112
|
|
688
|
+
msgid "Invalid e-mail address"
|
|
689
|
+
msgstr ""
|
|
690
|
+
|
|
691
|
+
#: contrib/example_app/serializers/person_team.py:124
|
|
692
|
+
msgid "Invalid phone number format"
|
|
693
|
+
msgstr ""
|
|
694
|
+
|
|
695
|
+
#: contrib/example_app/serializers/person_team.py:221
|
|
696
|
+
msgid "Activity Heat"
|
|
697
|
+
msgstr ""
|
|
698
|
+
|
|
699
|
+
#: contrib/example_app/serializers/person_team.py:244
|
|
700
|
+
msgid "Rating must be between 0 and 5."
|
|
701
|
+
msgstr ""
|
|
291
702
|
|
|
292
|
-
#:
|
|
703
|
+
#: contrib/example_app/serializers/stadium.py:17
|
|
704
|
+
msgid "Guest rating must be between 0 and 4."
|
|
705
|
+
msgstr ""
|
|
706
|
+
|
|
707
|
+
#: contrib/example_app/serializers/teamresult.py:15
|
|
708
|
+
msgid "Results for this team and league already exist."
|
|
709
|
+
msgstr ""
|
|
710
|
+
|
|
711
|
+
#: contrib/example_app/serializers/teamresult.py:21
|
|
712
|
+
#: contrib/example_app/viewsets/displays/teamresult.py:10
|
|
713
|
+
msgid "Games"
|
|
714
|
+
msgstr ""
|
|
715
|
+
|
|
716
|
+
#: contrib/example_app/viewsets/buttons/person.py:14
|
|
717
|
+
msgid "Statistics"
|
|
718
|
+
msgstr ""
|
|
719
|
+
|
|
720
|
+
#: contrib/example_app/viewsets/buttons/team.py:12
|
|
721
|
+
msgid "Website & Coach"
|
|
722
|
+
msgstr ""
|
|
723
|
+
|
|
724
|
+
#: contrib/example_app/viewsets/buttons/team.py:15
|
|
725
|
+
msgid "Homepage"
|
|
726
|
+
msgstr ""
|
|
727
|
+
|
|
728
|
+
#: contrib/example_app/viewsets/displays/event.py:14 utils/models.py:249
|
|
729
|
+
msgid "Color"
|
|
730
|
+
msgstr "Farbe"
|
|
731
|
+
|
|
732
|
+
#: contrib/example_app/viewsets/displays/event.py:63
|
|
733
|
+
#: contrib/example_app/viewsets/displays/event.py:70
|
|
734
|
+
msgid " "
|
|
735
|
+
msgstr ""
|
|
736
|
+
|
|
737
|
+
#: contrib/example_app/viewsets/displays/league.py:27
|
|
738
|
+
msgid "Established"
|
|
739
|
+
msgstr ""
|
|
740
|
+
|
|
741
|
+
#: contrib/example_app/viewsets/displays/league.py:41
|
|
742
|
+
#: contrib/example_app/viewsets/displays/league.py:45
|
|
743
|
+
#: contrib/example_app/viewsets/displays/stadium.py:41
|
|
744
|
+
#: contrib/example_app/viewsets/displays/stadium.py:45
|
|
745
|
+
#: contrib/example_app/viewsets/displays/team.py:76
|
|
746
|
+
#: contrib/example_app/viewsets/displays/team.py:80
|
|
747
|
+
msgid "Recent Matches"
|
|
748
|
+
msgstr ""
|
|
749
|
+
|
|
750
|
+
#: contrib/example_app/viewsets/displays/league.py:63
|
|
751
|
+
#: contrib/example_app/viewsets/displays/league.py:67
|
|
752
|
+
#: contrib/example_app/viewsets/titles/teamresult.py:13
|
|
753
|
+
msgid "Table"
|
|
754
|
+
msgstr ""
|
|
755
|
+
|
|
756
|
+
#: contrib/example_app/viewsets/displays/league.py:211
|
|
757
|
+
msgid "Player Statistics"
|
|
758
|
+
msgstr ""
|
|
759
|
+
|
|
760
|
+
#: contrib/example_app/viewsets/displays/league.py:242
|
|
761
|
+
msgid "Team Statistics"
|
|
762
|
+
msgstr ""
|
|
763
|
+
|
|
764
|
+
#: contrib/example_app/viewsets/displays/league.py:306
|
|
765
|
+
#: contrib/example_app/viewsets/displays/league.py:367
|
|
766
|
+
#: contrib/example_app/viewsets/displays/team.py:165
|
|
767
|
+
#: contrib/example_app/viewsets/displays/team.py:234
|
|
768
|
+
msgid "Details"
|
|
769
|
+
msgstr ""
|
|
770
|
+
|
|
771
|
+
#: contrib/example_app/viewsets/displays/match.py:26
|
|
772
|
+
msgid "Referee"
|
|
773
|
+
msgstr ""
|
|
774
|
+
|
|
775
|
+
#: contrib/example_app/viewsets/displays/match.py:82
|
|
776
|
+
msgid "Score"
|
|
777
|
+
msgstr ""
|
|
778
|
+
|
|
779
|
+
#: contrib/example_app/viewsets/displays/match.py:98
|
|
780
|
+
msgid "Match Details"
|
|
781
|
+
msgstr ""
|
|
782
|
+
|
|
783
|
+
#: contrib/example_app/viewsets/displays/person.py:20
|
|
784
|
+
#: contrib/example_app/viewsets/displays/stadium.py:23
|
|
785
|
+
msgid "Rating"
|
|
786
|
+
msgstr ""
|
|
787
|
+
|
|
788
|
+
#: contrib/example_app/viewsets/displays/person.py:21
|
|
789
|
+
msgid "Activities"
|
|
790
|
+
msgstr ""
|
|
791
|
+
|
|
792
|
+
#: contrib/example_app/viewsets/displays/season.py:11
|
|
793
|
+
#: contrib/example_app/viewsets/displays/season.py:24
|
|
794
|
+
msgid "Season Name"
|
|
795
|
+
msgstr ""
|
|
796
|
+
|
|
797
|
+
#: contrib/example_app/viewsets/displays/season.py:13
|
|
798
|
+
#: contrib/example_app/viewsets/displays/season.py:28
|
|
799
|
+
msgid "Range"
|
|
800
|
+
msgstr ""
|
|
801
|
+
|
|
802
|
+
#: contrib/example_app/viewsets/displays/season.py:14
|
|
803
|
+
msgid "Duration"
|
|
804
|
+
msgstr ""
|
|
805
|
+
|
|
806
|
+
#: contrib/example_app/viewsets/displays/season.py:15
|
|
807
|
+
#: contrib/example_app/viewsets/displays/season.py:26
|
|
808
|
+
msgid "Winner"
|
|
809
|
+
msgstr ""
|
|
810
|
+
|
|
811
|
+
#: contrib/example_app/viewsets/displays/season.py:16
|
|
812
|
+
#: contrib/example_app/viewsets/displays/season.py:27
|
|
813
|
+
msgid "Top Scorer"
|
|
814
|
+
msgstr ""
|
|
815
|
+
|
|
816
|
+
#: contrib/example_app/viewsets/displays/stadium.py:29
|
|
817
|
+
msgid "Total Capacity"
|
|
818
|
+
msgstr ""
|
|
819
|
+
|
|
820
|
+
#: contrib/example_app/viewsets/displays/stadium.py:30
|
|
821
|
+
msgid "Seated"
|
|
822
|
+
msgstr ""
|
|
823
|
+
|
|
824
|
+
#: contrib/example_app/viewsets/displays/stadium.py:31
|
|
825
|
+
msgid "Standing"
|
|
826
|
+
msgstr ""
|
|
827
|
+
|
|
828
|
+
#: contrib/example_app/viewsets/event.py:138
|
|
829
|
+
msgid "Amount"
|
|
830
|
+
msgstr ""
|
|
831
|
+
|
|
832
|
+
#: contrib/example_app/viewsets/match.py:62
|
|
833
|
+
msgid "Home team's home stadium not selected!"
|
|
834
|
+
msgstr ""
|
|
835
|
+
|
|
836
|
+
#: contrib/example_app/viewsets/menu/menus.py:9
|
|
837
|
+
#: contrib/example_app/viewsets/menus.py:9
|
|
838
|
+
#: contrib/example_app/viewsets/titles/team.py:12
|
|
839
|
+
msgid "Create Team"
|
|
840
|
+
msgstr ""
|
|
841
|
+
|
|
842
|
+
#: contrib/example_app/viewsets/menu/menus.py:17
|
|
843
|
+
#: contrib/example_app/viewsets/menus.py:17
|
|
844
|
+
#: contrib/example_app/viewsets/titles/league.py:12
|
|
845
|
+
msgid "Create League"
|
|
846
|
+
msgstr ""
|
|
847
|
+
|
|
848
|
+
#: contrib/example_app/viewsets/menu/menus.py:25
|
|
849
|
+
#: contrib/example_app/viewsets/menus.py:25
|
|
850
|
+
#: contrib/example_app/viewsets/titles/stadium.py:11
|
|
851
|
+
msgid "Create Stadium"
|
|
852
|
+
msgstr ""
|
|
853
|
+
|
|
854
|
+
#: contrib/example_app/viewsets/menu/menus.py:33
|
|
855
|
+
#: contrib/example_app/viewsets/titles/person.py:12
|
|
856
|
+
msgid "Create Person"
|
|
857
|
+
msgstr ""
|
|
858
|
+
|
|
859
|
+
#: contrib/example_app/viewsets/menu/menus.py:41
|
|
860
|
+
#: contrib/example_app/viewsets/menus.py:41
|
|
861
|
+
#: contrib/example_app/viewsets/titles/sport.py:11
|
|
862
|
+
msgid "Create Sport"
|
|
863
|
+
msgstr ""
|
|
864
|
+
|
|
865
|
+
#: contrib/example_app/viewsets/menu/menus.py:48
|
|
866
|
+
msgid "Create Season"
|
|
867
|
+
msgstr ""
|
|
868
|
+
|
|
869
|
+
#: contrib/example_app/viewsets/menu/menus.py:54
|
|
870
|
+
#: contrib/example_app/viewsets/titles/person.py:23
|
|
871
|
+
msgid "Create Player"
|
|
872
|
+
msgstr ""
|
|
873
|
+
|
|
874
|
+
#: contrib/example_app/viewsets/menu/menus.py:62
|
|
875
|
+
#: contrib/example_app/viewsets/titles/role.py:11
|
|
876
|
+
msgid "Create Role"
|
|
877
|
+
msgstr ""
|
|
878
|
+
|
|
879
|
+
#: contrib/example_app/viewsets/menu/menus.py:70
|
|
880
|
+
#: contrib/example_app/viewsets/titles/match.py:12
|
|
881
|
+
msgid "Create Match"
|
|
882
|
+
msgstr ""
|
|
883
|
+
|
|
884
|
+
#: contrib/example_app/viewsets/menu/menus.py:78
|
|
885
|
+
#: contrib/example_app/viewsets/titles/event.py:12
|
|
886
|
+
msgid "Create Event"
|
|
887
|
+
msgstr ""
|
|
888
|
+
|
|
889
|
+
#: contrib/example_app/viewsets/menu/menus.py:86
|
|
890
|
+
#: contrib/example_app/viewsets/titles/event.py:29
|
|
891
|
+
msgid "Create Event Type"
|
|
892
|
+
msgstr ""
|
|
893
|
+
|
|
894
|
+
#: contrib/example_app/viewsets/menus.py:30
|
|
895
|
+
msgid "Figure"
|
|
896
|
+
msgstr ""
|
|
897
|
+
|
|
898
|
+
#: contrib/example_app/viewsets/menus.py:33
|
|
899
|
+
msgid "Create Figure"
|
|
900
|
+
msgstr ""
|
|
901
|
+
|
|
902
|
+
#: contrib/example_app/viewsets/menus.py:49
|
|
903
|
+
msgid "Create player"
|
|
904
|
+
msgstr ""
|
|
905
|
+
|
|
906
|
+
#: contrib/example_app/viewsets/titles/event.py:21
|
|
907
|
+
msgid "Player Statistics {}"
|
|
908
|
+
msgstr ""
|
|
909
|
+
|
|
910
|
+
#: contrib/example_app/viewsets/titles/event.py:39
|
|
911
|
+
msgid "Create {} Event Type"
|
|
912
|
+
msgstr ""
|
|
913
|
+
|
|
914
|
+
#: contrib/example_app/viewsets/titles/league.py:22
|
|
915
|
+
msgid "Create {} League"
|
|
916
|
+
msgstr ""
|
|
917
|
+
|
|
918
|
+
#: contrib/example_app/viewsets/titles/match.py:22
|
|
919
|
+
#: contrib/example_app/viewsets/titles/match.py:32
|
|
920
|
+
msgid "Create Match In {}"
|
|
921
|
+
msgstr ""
|
|
922
|
+
|
|
923
|
+
#: contrib/example_app/viewsets/titles/person.py:33
|
|
924
|
+
msgid "Create Player For {}"
|
|
925
|
+
msgstr ""
|
|
926
|
+
|
|
927
|
+
#: contrib/example_app/viewsets/titles/team.py:22
|
|
928
|
+
msgid "Create Team In {}"
|
|
929
|
+
msgstr ""
|
|
930
|
+
|
|
931
|
+
#: contrib/guardian/models/mixins.py:25
|
|
932
|
+
msgid "Internal"
|
|
933
|
+
msgstr "Intern"
|
|
934
|
+
|
|
935
|
+
#: contrib/guardian/models/mixins.py:26
|
|
936
|
+
msgid "Public"
|
|
937
|
+
msgstr "Öffentlich"
|
|
938
|
+
|
|
939
|
+
#: contrib/guardian/models/mixins.py:27
|
|
940
|
+
msgid "Private"
|
|
941
|
+
msgstr "Privat"
|
|
942
|
+
|
|
943
|
+
#: dynamic_preferences_registry.py:18
|
|
293
944
|
msgid "Retention Period in Days"
|
|
294
945
|
msgstr "Dateinspeicherungszeitraum"
|
|
295
946
|
|
|
296
|
-
#:
|
|
947
|
+
#: dynamic_preferences_registry.py:20
|
|
297
948
|
msgid ""
|
|
298
949
|
"When an object cannot be deleted and is disabled instead, it gets hidden "
|
|
299
950
|
"from the queryset but not deleted. For compliance reasons we enable the "
|
|
@@ -301,213 +952,156 @@ msgid ""
|
|
|
301
952
|
msgstr ""
|
|
302
953
|
"Wenn ein Objekt nicht gelöscht werden kann und stattdessen deaktiviert "
|
|
303
954
|
"werden muss wird es vor dem Queryset versteckt, aber nicht gelöscht. Aus "
|
|
304
|
-
"Compliance-Gründen speichern wir die Daten nur für einen bestimmten Zeitraum
|
|
305
|
-
"(standardmäßig ein Jahr)"
|
|
955
|
+
"Compliance-Gründen speichern wir die Daten nur für einen bestimmten Zeitraum"
|
|
956
|
+
" (standardmäßig ein Jahr)"
|
|
957
|
+
|
|
958
|
+
#: dynamic_preferences_registry.py:31 dynamic_preferences_registry.py:32
|
|
959
|
+
msgid "System User Email"
|
|
960
|
+
msgstr ""
|
|
961
|
+
|
|
962
|
+
#: dynamic_preferences_registry.py:48 dynamic_preferences_registry.py:49
|
|
963
|
+
msgid "System Language"
|
|
964
|
+
msgstr ""
|
|
965
|
+
|
|
966
|
+
#: dynamic_preferences_registry.py:74 dynamic_preferences_registry.py:75
|
|
967
|
+
msgid "Date Format"
|
|
968
|
+
msgstr ""
|
|
969
|
+
|
|
970
|
+
#: dynamic_preferences_registry.py:97 dynamic_preferences_registry.py:98
|
|
971
|
+
msgid "Time Format"
|
|
972
|
+
msgstr ""
|
|
306
973
|
|
|
307
|
-
#:
|
|
308
|
-
#: wbcore/frontend_user_configuration.py:41
|
|
974
|
+
#: frontend_user_configuration.py:40 frontend_user_configuration.py:41
|
|
309
975
|
msgid "Frontend User Settings"
|
|
310
976
|
msgstr "Frontend Benutzereinstellungen"
|
|
311
977
|
|
|
312
|
-
#:
|
|
978
|
+
#: frontend_user_configuration.py:60
|
|
313
979
|
msgid "Is Root"
|
|
314
980
|
msgstr "Ist Stammverzeichnis"
|
|
315
981
|
|
|
316
|
-
#:
|
|
982
|
+
#: frontend_user_configuration.py:62
|
|
317
983
|
msgid "Parent Configuration"
|
|
318
984
|
msgstr "Elternkonfiguration"
|
|
319
985
|
|
|
320
|
-
#:
|
|
986
|
+
#: frontend_user_configuration.py:64
|
|
321
987
|
msgid "Config"
|
|
322
988
|
msgstr "Konfiguration"
|
|
323
989
|
|
|
324
|
-
#:
|
|
990
|
+
#: markdown/dynamic_preferences_registry.py:15
|
|
325
991
|
msgid "Default Empty Image Placeholder"
|
|
326
992
|
msgstr "Standard Bildplatzhalter"
|
|
327
993
|
|
|
328
|
-
#:
|
|
994
|
+
#: markdown/dynamic_preferences_registry.py:16
|
|
329
995
|
msgid "Default empty image placeholder URL"
|
|
330
996
|
msgstr "URL für den Standardplatzhalter für fehlende Bilder"
|
|
331
997
|
|
|
332
|
-
#:
|
|
998
|
+
#: markdown/models.py:29
|
|
333
999
|
msgid "Asset"
|
|
334
1000
|
msgstr "Asset"
|
|
335
1001
|
|
|
336
|
-
#:
|
|
1002
|
+
#: markdown/models.py:30
|
|
337
1003
|
msgid "Assets"
|
|
338
1004
|
msgstr "Assets"
|
|
339
1005
|
|
|
340
|
-
#:
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
"You have {num_unreceived} new notifications and {num_unread} unread "
|
|
344
|
-
"notifications."
|
|
345
|
-
msgstr ""
|
|
346
|
-
"Sie haben {num_unreceived} neue Benachrichtigungen und {num_unread} "
|
|
347
|
-
"ungelesene Benachrichtigungen."
|
|
348
|
-
|
|
349
|
-
#: wbcore/notifications/models.py:36
|
|
350
|
-
#: wbcore/notifications/viewsets/display.py:14
|
|
351
|
-
msgctxt "Timestamp"
|
|
352
|
-
msgid "Created"
|
|
353
|
-
msgstr "Erstellt"
|
|
354
|
-
|
|
355
|
-
#: wbcore/notifications/models.py:37
|
|
356
|
-
msgid "Received"
|
|
357
|
-
msgstr "Empfangen"
|
|
358
|
-
|
|
359
|
-
#: wbcore/notifications/models.py:38 wbcore/release_notes/display.py:32
|
|
360
|
-
msgid "Read"
|
|
361
|
-
msgstr "Gelesen"
|
|
1006
|
+
#: metadata/configs/buttons/buttons.py:93
|
|
1007
|
+
msgid "<p>Are you sure you want to proceed?</p>"
|
|
1008
|
+
msgstr "<p>Sind Sie sich sicher, dass Sie fortfahren wollen?</p>"
|
|
362
1009
|
|
|
363
|
-
#:
|
|
364
|
-
msgid "
|
|
365
|
-
msgstr "
|
|
1010
|
+
#: metadata/configs/buttons/buttons.py:96 viewsets/utils.py:14
|
|
1011
|
+
msgid "Confirm"
|
|
1012
|
+
msgstr "Bestätigen"
|
|
366
1013
|
|
|
367
|
-
#:
|
|
368
|
-
#:
|
|
369
|
-
#:
|
|
370
|
-
msgid "
|
|
371
|
-
msgstr "
|
|
1014
|
+
#: metadata/configs/buttons/buttons.py:98
|
|
1015
|
+
#: metadata/configs/buttons/buttons.py:99 release_notes/buttons.py:22
|
|
1016
|
+
#: viewsets/utils.py:15
|
|
1017
|
+
msgid "Cancel"
|
|
1018
|
+
msgstr "Abbrechen"
|
|
372
1019
|
|
|
373
|
-
#:
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
msgstr "Benachrichtigung {title}"
|
|
1020
|
+
#: metadata/configs/display/instance_display/utils.py:65
|
|
1021
|
+
msgid "Column number has to be at least 1!"
|
|
1022
|
+
msgstr ""
|
|
377
1023
|
|
|
378
|
-
#:
|
|
379
|
-
msgid "Reading all
|
|
380
|
-
msgstr "Lesen aller
|
|
1024
|
+
#: release_notes/buttons.py:16
|
|
1025
|
+
msgid "Reading all release notes"
|
|
1026
|
+
msgstr "Lesen aller Versionshinweise"
|
|
381
1027
|
|
|
382
|
-
#:
|
|
383
|
-
msgid "Do you want to mark
|
|
384
|
-
msgstr "Möchten Sie alle
|
|
1028
|
+
#: release_notes/buttons.py:18
|
|
1029
|
+
msgid "Do you want to mark all release notes as read?"
|
|
1030
|
+
msgstr "Möchten Sie alle Versionshinweise als gelesen markieren?"
|
|
385
1031
|
|
|
386
|
-
#:
|
|
387
|
-
#: wbcore/release_notes/buttons.py:18
|
|
1032
|
+
#: release_notes/buttons.py:19
|
|
388
1033
|
msgid "Mark all as read"
|
|
389
1034
|
msgstr "Alle als gelesen markieren"
|
|
390
1035
|
|
|
391
|
-
#:
|
|
392
|
-
#: wbcore/release_notes/buttons.py:20
|
|
1036
|
+
#: release_notes/buttons.py:21
|
|
393
1037
|
msgid "Read all"
|
|
394
1038
|
msgstr "Alle lesen"
|
|
395
1039
|
|
|
396
|
-
#:
|
|
397
|
-
msgid "Deleting all read notifications"
|
|
398
|
-
msgstr "Löschen aller gelesenen Benachrichtigungen"
|
|
399
|
-
|
|
400
|
-
#: wbcore/notifications/viewsets/buttons.py:30
|
|
401
|
-
msgid "Do you want delete all read notifications?"
|
|
402
|
-
msgstr "Möchten Sie alle gelesenen Benachrichtigungen löschen?"
|
|
403
|
-
|
|
404
|
-
#: wbcore/notifications/viewsets/buttons.py:31
|
|
405
|
-
msgid "Delete all read notifications"
|
|
406
|
-
msgstr "Alle gelesenen Benachrichtigungen löschen"
|
|
407
|
-
|
|
408
|
-
#: wbcore/notifications/viewsets/buttons.py:33
|
|
409
|
-
msgid "Delete all"
|
|
410
|
-
msgstr "Alle löschen"
|
|
411
|
-
|
|
412
|
-
#: wbcore/notifications/viewsets/display.py:13
|
|
413
|
-
msgid "Title"
|
|
414
|
-
msgstr "Titel"
|
|
415
|
-
|
|
416
|
-
#: wbcore/notifications/viewsets/display.py:15 wbcore/share/serializers.py:10
|
|
417
|
-
#: wbcore/share/serializers.py:17
|
|
418
|
-
msgid "Message"
|
|
419
|
-
msgstr "Nachricht"
|
|
420
|
-
|
|
421
|
-
#: wbcore/notifications/viewsets/title.py:7
|
|
422
|
-
msgid "Notification: {{title}}"
|
|
423
|
-
msgstr "Benachrichtigung: {{title}}"
|
|
424
|
-
|
|
425
|
-
#: wbcore/permissions/mixin.py:33
|
|
426
|
-
msgid "Internal"
|
|
427
|
-
msgstr "Intern"
|
|
428
|
-
|
|
429
|
-
#: wbcore/permissions/mixin.py:34
|
|
430
|
-
msgid "Public"
|
|
431
|
-
msgstr "Öffentlich"
|
|
432
|
-
|
|
433
|
-
#: wbcore/permissions/mixin.py:35
|
|
434
|
-
msgid "Private"
|
|
435
|
-
msgstr "Privat"
|
|
436
|
-
|
|
437
|
-
#: wbcore/release_notes/buttons.py:15
|
|
438
|
-
msgid "Reading all release notes"
|
|
439
|
-
msgstr "Lesen aller Versionshinweise"
|
|
440
|
-
|
|
441
|
-
#: wbcore/release_notes/buttons.py:17
|
|
442
|
-
msgid "Do you want to mark all release notes as read?"
|
|
443
|
-
msgstr "Möchten Sie alle Versionshinweise als gelesen markieren?"
|
|
444
|
-
|
|
445
|
-
#: wbcore/release_notes/display.py:13 wbcore/release_notes/filters.py:13
|
|
1040
|
+
#: release_notes/display.py:21 release_notes/filters.py:14
|
|
446
1041
|
msgid "Module"
|
|
447
1042
|
msgstr "Modul"
|
|
448
1043
|
|
|
449
|
-
#:
|
|
1044
|
+
#: release_notes/display.py:22
|
|
450
1045
|
msgid "Version"
|
|
451
1046
|
msgstr "Version"
|
|
452
1047
|
|
|
453
|
-
#:
|
|
1048
|
+
#: release_notes/display.py:23
|
|
454
1049
|
msgid "Release Date"
|
|
455
1050
|
msgstr "Veröffentlichungsdatum"
|
|
456
1051
|
|
|
457
|
-
#:
|
|
1052
|
+
#: release_notes/display.py:24
|
|
458
1053
|
msgid "Summary"
|
|
459
1054
|
msgstr "Zusammenfassung"
|
|
460
1055
|
|
|
461
|
-
#:
|
|
1056
|
+
#: release_notes/display.py:32
|
|
1057
|
+
msgid "Read"
|
|
1058
|
+
msgstr "Gelesen"
|
|
1059
|
+
|
|
1060
|
+
#: release_notes/display.py:37
|
|
462
1061
|
msgid "Unread"
|
|
463
1062
|
msgstr "Ungelesen"
|
|
464
1063
|
|
|
465
|
-
#:
|
|
1064
|
+
#: release_notes/filters.py:17
|
|
466
1065
|
msgid "Read / Unread"
|
|
467
1066
|
msgstr "Gelesen / Ungelesen"
|
|
468
1067
|
|
|
469
|
-
#:
|
|
1068
|
+
#: release_notes/models.py:21
|
|
470
1069
|
msgid "The version/identifier of the release"
|
|
471
1070
|
msgstr "Die Version/Identifizierungsnummer der Veröffentlichung"
|
|
472
1071
|
|
|
473
|
-
#:
|
|
1072
|
+
#: release_notes/models.py:22
|
|
474
1073
|
msgid "The date when this new version was released"
|
|
475
1074
|
msgstr "Das Datum, an dem die neue Version veröffentlicht wurde"
|
|
476
1075
|
|
|
477
|
-
#:
|
|
1076
|
+
#: release_notes/models.py:23
|
|
478
1077
|
msgid "The workbench module of the release"
|
|
479
1078
|
msgstr "Das Workbench-Modul der Version"
|
|
480
1079
|
|
|
481
|
-
#:
|
|
1080
|
+
#: release_notes/models.py:24
|
|
482
1081
|
msgid "A brief summary of the release"
|
|
483
1082
|
msgstr "Eine kurze Zusammenfassung der Veröffentlichung"
|
|
484
1083
|
|
|
485
|
-
#:
|
|
1084
|
+
#: release_notes/models.py:25
|
|
486
1085
|
msgid "What's new? What's improved? What's fixed?"
|
|
487
1086
|
msgstr "Was ist neu? Was ist verbessert? Was wurde behoben?"
|
|
488
1087
|
|
|
489
|
-
#:
|
|
1088
|
+
#: release_notes/models.py:59
|
|
490
1089
|
msgid "Release Note"
|
|
491
1090
|
msgstr "Versionshinweis"
|
|
492
1091
|
|
|
493
|
-
#:
|
|
1092
|
+
#: release_notes/models.py:60
|
|
494
1093
|
msgid "Release Notes"
|
|
495
1094
|
msgstr "Versionshinweise"
|
|
496
1095
|
|
|
497
|
-
#:
|
|
1096
|
+
#: reversion/viewsets/buttons.py:29
|
|
498
1097
|
msgid "Compare in Admin"
|
|
499
1098
|
msgstr "Im Admin vergleichen"
|
|
500
1099
|
|
|
501
|
-
#:
|
|
502
|
-
msgid "Start"
|
|
503
|
-
msgstr "Start"
|
|
504
|
-
|
|
505
|
-
#: wbcore/reversion/viewsets/buttons.py:48
|
|
506
|
-
#: wbcore/reversion/viewsets/buttons.py:56
|
|
1100
|
+
#: reversion/viewsets/buttons.py:55 reversion/viewsets/buttons.py:63
|
|
507
1101
|
msgid "Revert"
|
|
508
1102
|
msgstr "Zurücksetzen"
|
|
509
1103
|
|
|
510
|
-
#:
|
|
1104
|
+
#: reversion/viewsets/buttons.py:58
|
|
511
1105
|
msgid ""
|
|
512
1106
|
"\n"
|
|
513
1107
|
" <p>Revert object to this version</p>\n"
|
|
@@ -517,97 +1111,107 @@ msgstr ""
|
|
|
517
1111
|
" <p>Objekt auf diese Version zurücksetzen</p>\n"
|
|
518
1112
|
" "
|
|
519
1113
|
|
|
520
|
-
#:
|
|
1114
|
+
#: reversion/viewsets/buttons.py:62
|
|
521
1115
|
msgid "Reverting"
|
|
522
1116
|
msgstr "Zurücksetzen"
|
|
523
1117
|
|
|
524
|
-
#:
|
|
525
|
-
#: wbcore/reversion/viewsets/buttons.py:71
|
|
1118
|
+
#: reversion/viewsets/buttons.py:69 reversion/viewsets/buttons.py:78
|
|
526
1119
|
msgid "Compare With"
|
|
527
1120
|
msgstr "Vergleichen Mit"
|
|
528
1121
|
|
|
529
|
-
#:
|
|
1122
|
+
#: reversion/viewsets/buttons.py:72
|
|
530
1123
|
msgid ""
|
|
531
1124
|
"\n"
|
|
532
1125
|
" <p>Compare this version with another version</p>\n"
|
|
533
1126
|
" "
|
|
534
1127
|
msgstr ""
|
|
535
1128
|
"\n"
|
|
536
|
-
" <p>Diese Version mit einer anderen Version vergleichen</"
|
|
537
|
-
"p>\n"
|
|
1129
|
+
" <p>Diese Version mit einer anderen Version vergleichen</p>\n"
|
|
538
1130
|
" "
|
|
539
1131
|
|
|
540
|
-
#:
|
|
1132
|
+
#: reversion/viewsets/buttons.py:77
|
|
541
1133
|
msgid "Comparing"
|
|
542
1134
|
msgstr "Vergleichen"
|
|
543
1135
|
|
|
544
|
-
#:
|
|
1136
|
+
#: reversion/viewsets/displays.py:19
|
|
545
1137
|
msgid "Created At"
|
|
546
1138
|
msgstr "Erstellt Am"
|
|
547
1139
|
|
|
548
|
-
#:
|
|
1140
|
+
#: reversion/viewsets/displays.py:20
|
|
549
1141
|
msgid "User"
|
|
550
1142
|
msgstr "Benutzer*in"
|
|
551
1143
|
|
|
552
|
-
#:
|
|
553
|
-
#: wbcore/reversion/viewsets/titles.py:17
|
|
1144
|
+
#: reversion/viewsets/displays.py:27 reversion/viewsets/titles.py:18
|
|
554
1145
|
msgid "Versions"
|
|
555
1146
|
msgstr "Versionen"
|
|
556
1147
|
|
|
557
|
-
#:
|
|
1148
|
+
#: reversion/viewsets/displays.py:35
|
|
558
1149
|
msgid "ID"
|
|
559
1150
|
msgstr "ID"
|
|
560
1151
|
|
|
561
|
-
#:
|
|
1152
|
+
#: reversion/viewsets/displays.py:36
|
|
562
1153
|
msgid "Revision"
|
|
563
1154
|
msgstr "Reversion"
|
|
564
1155
|
|
|
565
|
-
#:
|
|
1156
|
+
#: reversion/viewsets/displays.py:37
|
|
566
1157
|
msgid "Creation Date"
|
|
567
1158
|
msgstr "Erstelldatum"
|
|
568
1159
|
|
|
569
|
-
#:
|
|
1160
|
+
#: reversion/viewsets/titles.py:15
|
|
570
1161
|
#, python-brace-format
|
|
571
1162
|
msgid "Versions For {obj}"
|
|
572
1163
|
msgstr "Versionen Für {obj}"
|
|
573
1164
|
|
|
574
|
-
#:
|
|
1165
|
+
#: serializers/fields/text.py:57
|
|
1166
|
+
msgid "Compiling script failed with the exception: {}"
|
|
1167
|
+
msgstr ""
|
|
1168
|
+
|
|
1169
|
+
#: serializers/fields/text.py:121
|
|
575
1170
|
msgid "Please provide a valid hexadecimal color."
|
|
576
1171
|
msgstr "Bitte geben Sie eine valide Hexadezimalfarbe an."
|
|
577
1172
|
|
|
578
|
-
#:
|
|
1173
|
+
#: shares/config.py:29
|
|
1174
|
+
msgid "Share to someone"
|
|
1175
|
+
msgstr ""
|
|
1176
|
+
|
|
1177
|
+
#: shares/config.py:31
|
|
1178
|
+
msgid "Message"
|
|
1179
|
+
msgstr "Nachricht"
|
|
1180
|
+
|
|
1181
|
+
#: shares/config.py:39
|
|
1182
|
+
msgid "Recipient"
|
|
1183
|
+
msgstr "Empfänger*in"
|
|
1184
|
+
|
|
1185
|
+
#: shares/config.py:55
|
|
579
1186
|
msgid "Are you sure you want to share this widget?"
|
|
580
1187
|
msgstr "Sind Sie sich sicher, dass Sie dieses Fenster teilen wollen?"
|
|
581
1188
|
|
|
582
|
-
#:
|
|
583
|
-
|
|
584
|
-
|
|
1189
|
+
#: shares/config.py:58 shares/config.py:60 shares/config.py:61
|
|
1190
|
+
#: shares/config.py:62
|
|
1191
|
+
msgid "Share"
|
|
1192
|
+
msgstr "Teilen"
|
|
585
1193
|
|
|
586
|
-
#:
|
|
1194
|
+
#: shares/sites.py:21
|
|
587
1195
|
msgid "Widget URL"
|
|
588
1196
|
msgstr "Fenster URL"
|
|
589
1197
|
|
|
590
|
-
#:
|
|
591
|
-
msgid "
|
|
592
|
-
msgstr "
|
|
593
|
-
|
|
594
|
-
#: wbcore/share/serializers.py:17
|
|
595
|
-
msgid "Check out this Widget."
|
|
596
|
-
msgstr "\"Schauen Sie sich dieses Fenster an."
|
|
1198
|
+
#: templates/notifications/email_template.html:28
|
|
1199
|
+
msgid "Open"
|
|
1200
|
+
msgstr "Öffnen"
|
|
597
1201
|
|
|
598
|
-
#:
|
|
1202
|
+
#: templates/wbcore/admin/change_list.html:5
|
|
599
1203
|
msgid "Import CSV"
|
|
600
1204
|
msgstr "CSV Importieren"
|
|
601
1205
|
|
|
602
|
-
#:
|
|
1206
|
+
#: templates/wbcore/admin/csv_form.html:10
|
|
603
1207
|
msgid "Upload CSV"
|
|
604
1208
|
msgstr "CSV Hochladen"
|
|
605
1209
|
|
|
606
|
-
#:
|
|
1210
|
+
#: templates/wbcore/dynamic_color_array.html:26
|
|
607
1211
|
msgid "Add another"
|
|
608
1212
|
msgstr "Weitere Hinzufügen"
|
|
609
1213
|
|
|
610
|
-
#:
|
|
1214
|
+
#: templates/wbcore/email_base_template.html:325
|
|
611
1215
|
msgid ""
|
|
612
1216
|
"This E-Mail is autogenerated by Stainly. If you need more information, "
|
|
613
1217
|
"please visit the Stainly-Bench."
|
|
@@ -615,53 +1219,34 @@ msgstr ""
|
|
|
615
1219
|
"Diese E-Mail wurde automatisch von Stainly generiert. Falls Sie mehr "
|
|
616
1220
|
"Informationen benötigen, besuchen Sie bitte die Stainly-Bench."
|
|
617
1221
|
|
|
618
|
-
#:
|
|
1222
|
+
#: templates/wbcore/frontend.html:40
|
|
619
1223
|
msgid "You need to enable JavaScript to run this app."
|
|
620
1224
|
msgstr "Sie benötigen JavaScript um diese Anwendung ausführen zu können."
|
|
621
1225
|
|
|
622
|
-
#:
|
|
623
|
-
#, python-brace-format
|
|
624
|
-
msgid "Delete {name}: {object}"
|
|
625
|
-
msgstr "Lösche {name}: {object}"
|
|
626
|
-
|
|
627
|
-
#: wbcore/titles/metadata_config.py:18
|
|
628
|
-
#, python-brace-format
|
|
629
|
-
msgid "Delete {name}"
|
|
630
|
-
msgstr "Lösche {name}"
|
|
631
|
-
|
|
632
|
-
#: wbcore/titles/metadata_config.py:24
|
|
633
|
-
#, python-brace-format
|
|
634
|
-
msgid "Create {name}"
|
|
635
|
-
msgstr "Erstelle {name}"
|
|
636
|
-
|
|
637
|
-
#: wbcore/utils/models.py:53
|
|
638
|
-
msgid "Name"
|
|
639
|
-
msgstr "Name"
|
|
640
|
-
|
|
641
|
-
#: wbcore/utils/models.py:83
|
|
1226
|
+
#: utils/models.py:103
|
|
642
1227
|
msgid "Pending"
|
|
643
1228
|
msgstr "Ausstehend"
|
|
644
1229
|
|
|
645
|
-
#:
|
|
1230
|
+
#: utils/models.py:104
|
|
646
1231
|
msgid "Denied"
|
|
647
1232
|
msgstr "Abgelehnt"
|
|
648
1233
|
|
|
649
|
-
#:
|
|
1234
|
+
#: utils/models.py:105
|
|
650
1235
|
msgid "Approved"
|
|
651
1236
|
msgstr "Genehmigt"
|
|
652
1237
|
|
|
653
|
-
#:
|
|
1238
|
+
#: utils/models.py:189
|
|
654
1239
|
msgid "Default"
|
|
655
1240
|
msgstr "Standard"
|
|
656
1241
|
|
|
657
|
-
#:
|
|
658
|
-
msgid "Color"
|
|
659
|
-
msgstr "Farbe"
|
|
660
|
-
|
|
661
|
-
#: wbcore/utils/serializers.py:8
|
|
662
|
-
msgid "End"
|
|
663
|
-
msgstr "Ende"
|
|
664
|
-
|
|
665
|
-
#: wbcore/utils/views.py:77 wbcore/utils/views.py:78 wbcore/utils/views.py:79
|
|
1242
|
+
#: utils/views.py:117 utils/views.py:118 utils/views.py:119
|
|
666
1243
|
msgid "Clone"
|
|
667
1244
|
msgstr "Klonen"
|
|
1245
|
+
|
|
1246
|
+
#: utils/views.py:120
|
|
1247
|
+
msgid "<strong>Clone {}</strong> \"{}\""
|
|
1248
|
+
msgstr ""
|
|
1249
|
+
|
|
1250
|
+
#: utils/views.py:201 utils/views.py:202 utils/views.py:203
|
|
1251
|
+
msgid "Merge"
|
|
1252
|
+
msgstr ""
|