wbcore 2.2.1__py2.py3-none-any.whl → 2.2.4__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po +113 -0
- wbcore/contrib/agenda/static/agenda/markdown/documentation/building.md +11 -0
- wbcore/contrib/agenda/static/agenda/markdown/documentation/conferenceroom.md +20 -0
- wbcore/contrib/authentication/fixtures/authentication.json +62 -0
- wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po +610 -0
- wbcore/contrib/authentication/templates/activate_confirm.html +12 -0
- wbcore/contrib/authentication/templates/base.html +135 -0
- wbcore/contrib/authentication/templates/email_base_template.html +335 -0
- wbcore/contrib/authentication/templates/password_reset_done.html +13 -0
- wbcore/contrib/authentication/templates/password_reset_email.html +11 -0
- wbcore/contrib/authentication/templates/password_reset_email_html.html +43 -0
- wbcore/contrib/authentication/templates/password_reset_form.html +23 -0
- wbcore/contrib/authentication/templates/password_reset_sent.html +11 -0
- wbcore/contrib/authentication/templates/reset_password.html +15 -0
- wbcore/contrib/authentication/templates/user_registration_email.html +37 -0
- wbcore/contrib/color/admin.py +28 -0
- wbcore/contrib/color/apps.py +5 -0
- wbcore/contrib/color/enums.py +17 -0
- wbcore/contrib/color/factories.py +10 -0
- wbcore/contrib/color/fields.py +29 -0
- wbcore/contrib/color/forms.py +13 -0
- wbcore/contrib/color/models.py +62 -0
- wbcore/contrib/color/tests/conftest.py +10 -0
- wbcore/contrib/color/tests/test_color_models.py +61 -0
- wbcore/contrib/color/tests/test_fields.py +25 -0
- wbcore/contrib/currency/fixtures/currency.yaml +1014 -0
- wbcore/contrib/currency/fixtures/currency_fx_rate.yaml +73585 -0
- wbcore/contrib/directory/fixtures/directory.json +3924 -0
- wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po +1686 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/address.md +38 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/banking.md +54 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/bankingentry.md +38 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/clientmanagerrelationship.md +42 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/company.md +52 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/companytype.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/customerstatus.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/email.md +20 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/employeecompany.md +34 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/employerperson.md +43 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/person.md +61 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/position.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/relationshiptype.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/socialmedia.md +23 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/specialization.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/systememployee.md +31 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/telephone.md +23 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/telephonesearch.md +26 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/userisclient.md +14 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/userismanager.md +28 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/website.md +20 -0
- wbcore/contrib/documents/fixtures/docments.json +135 -0
- wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po +272 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/document_types.md +21 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/documents.md +18 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/shareablelink.md +28 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/shareablelinkaccess.md +20 -0
- wbcore/contrib/documents/tests/conftest.py +30 -0
- wbcore/contrib/documents/tests/test_models.py +144 -0
- wbcore/contrib/example_app/fixtures/example_app.json +7425 -0
- wbcore/contrib/example_app/tests/test_models/test_event.py +87 -0
- wbcore/contrib/example_app/tests/test_models/test_match.py +210 -0
- wbcore/contrib/example_app/tests/test_models/test_others.py +159 -0
- wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py +34 -0
- wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py +134 -0
- wbcore/contrib/example_app/tests/test_serializers/test_role_serializer.py +13 -0
- wbcore/contrib/example_app/tests/test_serializers/test_sport_serializer.py +14 -0
- wbcore/contrib/example_app/tests/test_serializers/test_stadium_serializer.py +14 -0
- wbcore/contrib/example_app/tests/test_serializers/test_team_result_serializer.py +30 -0
- wbcore/contrib/example_app/tests/test_serializers/test_team_serializer.py +70 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_event_viewset.py +162 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_league_viewset.py +84 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_match_viewset.py +65 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_person_viewset.py +166 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_role_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_sport_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_stadium_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_team_viewset.py +92 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_teamresult_viewset.py +58 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_utils_viewsets.py +124 -0
- wbcore/contrib/geography/fixtures/geography.json +13454 -0
- wbcore/contrib/geography/static/geography/markdown/documentation/geography.md +16 -0
- wbcore/contrib/guardian/apps.py +6 -0
- wbcore/contrib/guardian/configurations.py +3 -0
- wbcore/contrib/guardian/filters.py +21 -0
- wbcore/contrib/guardian/tasks.py +10 -0
- wbcore/contrib/guardian/urls.py +12 -0
- wbcore/contrib/guardian/utils.py +124 -0
- wbcore/contrib/io/fixtures/io.json +145 -0
- wbcore/contrib/io/locale/de/LC_MESSAGES/django.po +52 -0
- wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po +60 -0
- wbcore/contrib/notifications/static/notifications/service-worker.js +1 -0
- wbcore/contrib/notifications/templates/notifications/notification_template.html +43 -0
- wbcore/contrib/notifications/viewsets/configs/notification_types.py +27 -0
- wbcore/contrib/notifications/viewsets/configs/notifications.py +85 -0
- wbcore/contrib/workflow/fixtures/workflow.json +612 -0
- wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po +1289 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/assignedprocessstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/condition.md +24 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/decisionstep.md +30 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/emailstep.md +45 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/finishstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/joinstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/process.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/processstep.md +51 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/scriptstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/splitstep.md +30 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/startstep.md +27 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/transition.md +27 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/userstep.md +42 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/workflow.md +32 -0
- wbcore/contrib/workflow/templates/Test_Templates.txt +25 -0
- wbcore/contrib/workflow/tests/test_models/step/test_decision_step.py +79 -0
- wbcore/contrib/workflow/tests/test_models/step/test_email_step.py +45 -0
- wbcore/contrib/workflow/tests/test_models/step/test_finish_step.py +105 -0
- wbcore/contrib/workflow/tests/test_models/step/test_join_step.py +127 -0
- wbcore/contrib/workflow/tests/test_models/step/test_script_step.py +24 -0
- wbcore/contrib/workflow/tests/test_models/step/test_split_step.py +49 -0
- wbcore/contrib/workflow/tests/test_models/step/test_step.py +621 -0
- wbcore/contrib/workflow/tests/test_models/step/test_user_step.py +225 -0
- wbcore/contrib/workflow/tests/test_models/test_condition.py +103 -0
- wbcore/contrib/workflow/tests/test_models/test_data.py +134 -0
- wbcore/contrib/workflow/tests/test_models/test_process.py +98 -0
- wbcore/contrib/workflow/tests/test_models/test_transition.py +128 -0
- wbcore/contrib/workflow/tests/test_models/test_workflow.py +358 -0
- wbcore/locale/de/LC_MESSAGES/django.po +667 -0
- wbcore/templates/errors/404.html +134 -0
- wbcore/templates/errors/500.html +138 -0
- wbcore/templates/errors/503.html +132 -0
- wbcore/templates/errors/custom.html +132 -0
- wbcore/templates/forms.py +0 -0
- wbcore/templates/notifications/email_template.html +43 -0
- wbcore/templates/wbcore/admin/change_list.html +8 -0
- wbcore/templates/wbcore/admin/csv_form.html +15 -0
- wbcore/templates/wbcore/dynamic_color_array.html +29 -0
- wbcore/templates/wbcore/email_base_template.html +335 -0
- wbcore/templates/wbcore/email_notification_template.html +10 -0
- wbcore/templates/wbcore/frontend.html +51 -0
- wbcore/test/e2e_helpers_methods/e2e_checks.py +121 -0
- wbcore/test/e2e_helpers_methods/e2e_helper_methods.py +395 -0
- wbcore/tests/test_permissions/test_backend.py +29 -0
- {wbcore-2.2.1.dist-info → wbcore-2.2.4.dist-info}/METADATA +1 -1
- {wbcore-2.2.1.dist-info → wbcore-2.2.4.dist-info}/RECORD +143 -3
- {wbcore-2.2.1.dist-info → wbcore-2.2.4.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,667 @@
|
|
|
1
|
+
# GERMAN TRANSLATIONS FOR WBCORE
|
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
+
# This file is distributed under the same license as the PACKAGE package.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
|
+
#
|
|
6
|
+
msgid ""
|
|
7
|
+
msgstr ""
|
|
8
|
+
"Project-Id-Version: \n"
|
|
9
|
+
"Report-Msgid-Bugs-To: \n"
|
|
10
|
+
"POT-Creation-Date: 2023-04-26 10:54+0200\n"
|
|
11
|
+
"PO-Revision-Date: 2023-04-25 17:03+0200\n"
|
|
12
|
+
"Last-Translator: \n"
|
|
13
|
+
"Language-Team: \n"
|
|
14
|
+
"Language: de\n"
|
|
15
|
+
"MIME-Version: 1.0\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
19
|
+
"X-Generator: Poedit 3.2.2\n"
|
|
20
|
+
|
|
21
|
+
#: wbcore/admin.py:36
|
|
22
|
+
msgid "Main Information"
|
|
23
|
+
msgstr "Hauptinformationen"
|
|
24
|
+
|
|
25
|
+
#: wbcore/admin.py:107
|
|
26
|
+
#, python-brace-format
|
|
27
|
+
msgid "Your CSV file has been imported ( {imports} imported, {errors} errors)"
|
|
28
|
+
msgstr ""
|
|
29
|
+
"Ihre CSV-Datei wurde importiert ({imports} importiert, {errors} Fehler)"
|
|
30
|
+
|
|
31
|
+
#: wbcore.metadata.configs.buttons/buttons.py:70
|
|
32
|
+
msgid "<p>Are you sure you want to proceed?</p>"
|
|
33
|
+
msgstr "<p>Sind Sie sich sicher, dass Sie fortfahren wollen?</p>"
|
|
34
|
+
|
|
35
|
+
#: wbcore.metadata.configs.buttons/buttons.py:73 wbcore/configs/configs.py:103
|
|
36
|
+
#: wbcore/viewsets/utils.py:15
|
|
37
|
+
msgid "Confirm"
|
|
38
|
+
msgstr "Bestätigen"
|
|
39
|
+
|
|
40
|
+
#: wbcore.metadata.configs.buttons/buttons.py:75 wbcore.metadata.configs.buttons/buttons.py:76
|
|
41
|
+
#: wbcore/configs/configs.py:104 wbcore/notifications/viewsets/buttons.py:22
|
|
42
|
+
#: wbcore/notifications/viewsets/buttons.py:34
|
|
43
|
+
#: wbcore/release_notes/buttons.py:21 wbcore/viewsets/utils.py:16
|
|
44
|
+
msgid "Cancel"
|
|
45
|
+
msgstr "Abbrechen"
|
|
46
|
+
|
|
47
|
+
#: wbcore/configs/configs.py:55
|
|
48
|
+
msgid "Login Now"
|
|
49
|
+
msgstr "Jetzt Einloggen"
|
|
50
|
+
|
|
51
|
+
#: wbcore/configs/configs.py:56
|
|
52
|
+
msgid "E-Mail"
|
|
53
|
+
msgstr "E-Mail"
|
|
54
|
+
|
|
55
|
+
#: wbcore/configs/configs.py:57
|
|
56
|
+
msgid "Password"
|
|
57
|
+
msgstr "Passwort"
|
|
58
|
+
|
|
59
|
+
#: wbcore/configs/configs.py:58
|
|
60
|
+
msgid "Login"
|
|
61
|
+
msgstr "Einloggen"
|
|
62
|
+
|
|
63
|
+
#: wbcore/configs/configs.py:60
|
|
64
|
+
msgid "New Menu Item"
|
|
65
|
+
msgstr "Neuer Menüpunkt"
|
|
66
|
+
|
|
67
|
+
#: wbcore/configs/configs.py:61
|
|
68
|
+
msgid "Navigation"
|
|
69
|
+
msgstr "Navigation"
|
|
70
|
+
|
|
71
|
+
#: wbcore/configs/configs.py:62
|
|
72
|
+
msgid "Workspace"
|
|
73
|
+
msgstr "Arbeitsbereich"
|
|
74
|
+
|
|
75
|
+
#: wbcore/configs/configs.py:63
|
|
76
|
+
msgid "Label"
|
|
77
|
+
msgstr "Bezeichnung"
|
|
78
|
+
|
|
79
|
+
#: wbcore/configs/configs.py:64
|
|
80
|
+
msgid "Tooltip"
|
|
81
|
+
msgstr "Tooltip"
|
|
82
|
+
|
|
83
|
+
#: wbcore/configs/configs.py:65
|
|
84
|
+
msgid "The text that appears when hovering the cursor over the menu item."
|
|
85
|
+
msgstr ""
|
|
86
|
+
"Der Text, der auftaucht wenn der Mauszeiger sich über dem Menüpunkt befindet."
|
|
87
|
+
|
|
88
|
+
#: wbcore/configs/configs.py:66 wbcore/utils/models.py:208
|
|
89
|
+
msgid "Icon"
|
|
90
|
+
msgstr "Icon"
|
|
91
|
+
|
|
92
|
+
#: wbcore/configs/configs.py:67
|
|
93
|
+
msgid "Delete"
|
|
94
|
+
msgstr "Löschen"
|
|
95
|
+
|
|
96
|
+
#: wbcore/configs/configs.py:68
|
|
97
|
+
msgid "Save"
|
|
98
|
+
msgstr "Speichern"
|
|
99
|
+
|
|
100
|
+
#: wbcore/configs/configs.py:69
|
|
101
|
+
msgid "History"
|
|
102
|
+
msgstr "Verlauf"
|
|
103
|
+
|
|
104
|
+
#: wbcore/configs/configs.py:70
|
|
105
|
+
msgid "Opened Windows"
|
|
106
|
+
msgstr "Geöffnete Fenster"
|
|
107
|
+
|
|
108
|
+
#: wbcore/configs/configs.py:71
|
|
109
|
+
msgid "Home"
|
|
110
|
+
msgstr "Home"
|
|
111
|
+
|
|
112
|
+
#: wbcore/configs/configs.py:72
|
|
113
|
+
msgid "No opened windows."
|
|
114
|
+
msgstr "Keine geöffneten Fenster."
|
|
115
|
+
|
|
116
|
+
#: wbcore/configs/configs.py:74
|
|
117
|
+
msgid "Profile"
|
|
118
|
+
msgstr "Profil"
|
|
119
|
+
|
|
120
|
+
#: wbcore/configs/configs.py:75
|
|
121
|
+
msgid "View Profile"
|
|
122
|
+
msgstr "Profil Ansehen"
|
|
123
|
+
|
|
124
|
+
#: wbcore/configs/configs.py:76
|
|
125
|
+
msgid "Logout"
|
|
126
|
+
msgstr "Ausloggen"
|
|
127
|
+
|
|
128
|
+
#: wbcore/configs/configs.py:78
|
|
129
|
+
msgid "Toggle fullscreen mode"
|
|
130
|
+
msgstr "Vollbild an-/ausschalten"
|
|
131
|
+
|
|
132
|
+
#: wbcore/configs/configs.py:79
|
|
133
|
+
msgid "Decrease font size"
|
|
134
|
+
msgstr "Textgröße verringern"
|
|
135
|
+
|
|
136
|
+
#: wbcore/configs/configs.py:80
|
|
137
|
+
msgid "Increase font size"
|
|
138
|
+
msgstr "Textgröße erhöhen"
|
|
139
|
+
|
|
140
|
+
#: wbcore/configs/configs.py:81
|
|
141
|
+
msgid "Enable edit mode"
|
|
142
|
+
msgstr "Bearbeitungsmodus aktivieren"
|
|
143
|
+
|
|
144
|
+
#: wbcore/configs/configs.py:82
|
|
145
|
+
msgid "Tile widgets"
|
|
146
|
+
msgstr "Fenster kacheln"
|
|
147
|
+
|
|
148
|
+
#: wbcore/configs/configs.py:83
|
|
149
|
+
msgid "Stack widgets"
|
|
150
|
+
msgstr "Fenster stapeln"
|
|
151
|
+
|
|
152
|
+
#: wbcore/configs/configs.py:84
|
|
153
|
+
msgid "Minimize widgets"
|
|
154
|
+
msgstr "Fenster minimieren"
|
|
155
|
+
|
|
156
|
+
#: wbcore/configs/configs.py:85
|
|
157
|
+
msgid "Send feedback"
|
|
158
|
+
msgstr "Feedback senden"
|
|
159
|
+
|
|
160
|
+
#: wbcore/configs/configs.py:86
|
|
161
|
+
msgid "Close all widgets"
|
|
162
|
+
msgstr "All Fenster schließen"
|
|
163
|
+
|
|
164
|
+
#: wbcore/configs/configs.py:88 wbcore/notifications/viewsets/title.py:10
|
|
165
|
+
msgid "Notifications"
|
|
166
|
+
msgstr "Benachrichtigungen"
|
|
167
|
+
|
|
168
|
+
#: wbcore/configs/configs.py:89
|
|
169
|
+
msgid "Organiser"
|
|
170
|
+
msgstr "Organisator"
|
|
171
|
+
|
|
172
|
+
#: wbcore/configs/configs.py:90
|
|
173
|
+
msgid "No activities"
|
|
174
|
+
msgstr "Keine Aktivitäten"
|
|
175
|
+
|
|
176
|
+
#: wbcore/configs/configs.py:92
|
|
177
|
+
msgid "ZenMode"
|
|
178
|
+
msgstr "Zenmodus"
|
|
179
|
+
|
|
180
|
+
#: wbcore/configs/configs.py:93
|
|
181
|
+
msgid "Toggle filter area"
|
|
182
|
+
msgstr "Filterbereich an-/ausblenden"
|
|
183
|
+
|
|
184
|
+
#: wbcore/configs/configs.py:94
|
|
185
|
+
msgid "Toggle aggregate row"
|
|
186
|
+
msgstr "Aggregatzeile an-/ausblenden"
|
|
187
|
+
|
|
188
|
+
#: wbcore/configs/configs.py:95
|
|
189
|
+
msgid "Toggle table mode"
|
|
190
|
+
msgstr "Tabellenmodus an-/ausschalten"
|
|
191
|
+
|
|
192
|
+
#: wbcore/configs/configs.py:96
|
|
193
|
+
msgid "Filter criteria"
|
|
194
|
+
msgstr "Filterkriterien"
|
|
195
|
+
|
|
196
|
+
#: wbcore/configs/configs.py:97
|
|
197
|
+
msgid "Clear this filter"
|
|
198
|
+
msgstr "Diesen Filter Löschen"
|
|
199
|
+
|
|
200
|
+
#: wbcore/configs/configs.py:98
|
|
201
|
+
msgid "Search"
|
|
202
|
+
msgstr "Suchen"
|
|
203
|
+
|
|
204
|
+
#: wbcore/configs/configs.py:99 wbcore/share/buttons.py:30
|
|
205
|
+
msgid "Share"
|
|
206
|
+
msgstr "Teilen"
|
|
207
|
+
|
|
208
|
+
#: wbcore/configs/configs.py:100
|
|
209
|
+
msgid "Create a shortcut for this widget."
|
|
210
|
+
msgstr "Eine Verknüpfung zu diesem Fenster erstellen."
|
|
211
|
+
|
|
212
|
+
#: wbcore/configs/configs.py:101
|
|
213
|
+
msgid "Select Icon"
|
|
214
|
+
msgstr "Icon Wählen"
|
|
215
|
+
|
|
216
|
+
#: wbcore/configs/configs.py:102
|
|
217
|
+
msgid "Add Title"
|
|
218
|
+
msgstr "Titel Hinzufügen"
|
|
219
|
+
|
|
220
|
+
#: wbcore/configs/configs.py:107
|
|
221
|
+
msgid "No filter criteria yet"
|
|
222
|
+
msgstr "Keine Filterkriterien bisher"
|
|
223
|
+
|
|
224
|
+
#: wbcore/configs/configs.py:108
|
|
225
|
+
msgid "Apply"
|
|
226
|
+
msgstr "Anwenden"
|
|
227
|
+
|
|
228
|
+
#: wbcore/configs/configs.py:109
|
|
229
|
+
msgid "Clear all filters"
|
|
230
|
+
msgstr "All Filter löschen"
|
|
231
|
+
|
|
232
|
+
#: wbcore/configs/configs.py:110
|
|
233
|
+
msgid "Reset filters"
|
|
234
|
+
msgstr "Filter zurücksetzen"
|
|
235
|
+
|
|
236
|
+
#: wbcore/configs/configs.py:111
|
|
237
|
+
msgid "Close"
|
|
238
|
+
msgstr "Schließen"
|
|
239
|
+
|
|
240
|
+
#: wbcore/configs/configs.py:112
|
|
241
|
+
msgid "Yes"
|
|
242
|
+
msgstr "Ja"
|
|
243
|
+
|
|
244
|
+
#: wbcore/configs/configs.py:113
|
|
245
|
+
msgid "No"
|
|
246
|
+
msgstr "Nein"
|
|
247
|
+
|
|
248
|
+
#: wbcore/configs/configs.py:114
|
|
249
|
+
msgid "Select an option"
|
|
250
|
+
msgstr "Eine Option wählen"
|
|
251
|
+
|
|
252
|
+
#: wbcore/configs/configs.py:115
|
|
253
|
+
msgid "Select options"
|
|
254
|
+
msgstr "Optionen auswählen"
|
|
255
|
+
|
|
256
|
+
#: wbcore/configs/configs.py:117
|
|
257
|
+
msgid "Refresh"
|
|
258
|
+
msgstr "Aktualisieren"
|
|
259
|
+
|
|
260
|
+
#: wbcore/configs/configs.py:118
|
|
261
|
+
msgid "Saved"
|
|
262
|
+
msgstr "Gespeichert"
|
|
263
|
+
|
|
264
|
+
#: wbcore/configs/configs.py:122
|
|
265
|
+
msgid "Save and close"
|
|
266
|
+
msgstr "Speichern und schließen"
|
|
267
|
+
|
|
268
|
+
#: wbcore/configs/configs.py:123
|
|
269
|
+
msgid "Lock"
|
|
270
|
+
msgstr "Sperren"
|
|
271
|
+
|
|
272
|
+
#: wbcore/configs/configs.py:124
|
|
273
|
+
msgid "Unlock"
|
|
274
|
+
msgstr "Entsperren"
|
|
275
|
+
|
|
276
|
+
#: wbcore/configs/configs.py:125
|
|
277
|
+
msgid "Documents"
|
|
278
|
+
msgstr "Dokumente"
|
|
279
|
+
|
|
280
|
+
#: wbcore/configs/configs.py:126
|
|
281
|
+
msgid "News"
|
|
282
|
+
msgstr "Neuigkeiten"
|
|
283
|
+
|
|
284
|
+
#: wbcore/configs/configs.py:127
|
|
285
|
+
msgid "Compare versions"
|
|
286
|
+
msgstr "Versionen vergleichen"
|
|
287
|
+
|
|
288
|
+
#: wbcore/configurations/configurations/wbcore.py:20
|
|
289
|
+
msgid "Check out our upcoming beta version"
|
|
290
|
+
msgstr "Sehen Sie sich unsere nächste Beta-Version an"
|
|
291
|
+
|
|
292
|
+
#: wbcore/dynamic_preferences_registry.py:15
|
|
293
|
+
msgid "Retention Period in Days"
|
|
294
|
+
msgstr "Dateinspeicherungszeitraum"
|
|
295
|
+
|
|
296
|
+
#: wbcore/dynamic_preferences_registry.py:17
|
|
297
|
+
msgid ""
|
|
298
|
+
"When an object cannot be deleted and is disabled instead, it gets hidden "
|
|
299
|
+
"from the queryset but not deleted. For compliance reasons we enable the "
|
|
300
|
+
"retention for a specific period of days (defaults to a year)"
|
|
301
|
+
msgstr ""
|
|
302
|
+
"Wenn ein Objekt nicht gelöscht werden kann und stattdessen deaktiviert "
|
|
303
|
+
"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)"
|
|
306
|
+
|
|
307
|
+
#: wbcore/frontend_user_configuration.py:40
|
|
308
|
+
#: wbcore/frontend_user_configuration.py:41
|
|
309
|
+
msgid "Frontend User Settings"
|
|
310
|
+
msgstr "Frontend Benutzereinstellungen"
|
|
311
|
+
|
|
312
|
+
#: wbcore/frontend_user_configuration.py:59
|
|
313
|
+
msgid "Is Root"
|
|
314
|
+
msgstr "Ist Stammverzeichnis"
|
|
315
|
+
|
|
316
|
+
#: wbcore/frontend_user_configuration.py:61
|
|
317
|
+
msgid "Parent Configuration"
|
|
318
|
+
msgstr "Elternkonfiguration"
|
|
319
|
+
|
|
320
|
+
#: wbcore/frontend_user_configuration.py:63
|
|
321
|
+
msgid "Config"
|
|
322
|
+
msgstr "Konfiguration"
|
|
323
|
+
|
|
324
|
+
#: wbcore/markdown/dynamic_preferences_registry.py:15
|
|
325
|
+
msgid "Default Empty Image Placeholder"
|
|
326
|
+
msgstr "Standard Bildplatzhalter"
|
|
327
|
+
|
|
328
|
+
#: wbcore/markdown/dynamic_preferences_registry.py:16
|
|
329
|
+
msgid "Default empty image placeholder URL"
|
|
330
|
+
msgstr "URL für den Standardplatzhalter für fehlende Bilder"
|
|
331
|
+
|
|
332
|
+
#: wbcore/markdown/models.py:30
|
|
333
|
+
msgid "Asset"
|
|
334
|
+
msgstr "Asset"
|
|
335
|
+
|
|
336
|
+
#: wbcore/markdown/models.py:31
|
|
337
|
+
msgid "Assets"
|
|
338
|
+
msgstr "Assets"
|
|
339
|
+
|
|
340
|
+
#: wbcore/notifications/consumers.py:34
|
|
341
|
+
#, python-brace-format
|
|
342
|
+
msgid ""
|
|
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"
|
|
362
|
+
|
|
363
|
+
#: wbcore/notifications/models.py:39
|
|
364
|
+
msgid "Mailed"
|
|
365
|
+
msgstr "Gesendet"
|
|
366
|
+
|
|
367
|
+
#: wbcore/notifications/serializers.py:17
|
|
368
|
+
#: wbcore/notifications/serializers.py:18
|
|
369
|
+
#: wbcore/templates/notifications/email_template.html:28
|
|
370
|
+
msgid "Open"
|
|
371
|
+
msgstr "Öffnen"
|
|
372
|
+
|
|
373
|
+
#: wbcore/notifications/tasks.py:36
|
|
374
|
+
#, python-brace-format
|
|
375
|
+
msgid "Notification {title}"
|
|
376
|
+
msgstr "Benachrichtigung {title}"
|
|
377
|
+
|
|
378
|
+
#: wbcore/notifications/viewsets/buttons.py:16
|
|
379
|
+
msgid "Reading all notifications"
|
|
380
|
+
msgstr "Lesen aller Benachrichtigungen"
|
|
381
|
+
|
|
382
|
+
#: wbcore/notifications/viewsets/buttons.py:18
|
|
383
|
+
msgid "Do you want to mark notifications as read?"
|
|
384
|
+
msgstr "Möchten Sie alle Benachrichtigungen als gelesen markieren?"
|
|
385
|
+
|
|
386
|
+
#: wbcore/notifications/viewsets/buttons.py:19
|
|
387
|
+
#: wbcore/release_notes/buttons.py:18
|
|
388
|
+
msgid "Mark all as read"
|
|
389
|
+
msgstr "Alle als gelesen markieren"
|
|
390
|
+
|
|
391
|
+
#: wbcore/notifications/viewsets/buttons.py:21
|
|
392
|
+
#: wbcore/release_notes/buttons.py:20
|
|
393
|
+
msgid "Read all"
|
|
394
|
+
msgstr "Alle lesen"
|
|
395
|
+
|
|
396
|
+
#: wbcore/notifications/viewsets/buttons.py:28
|
|
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
|
|
446
|
+
msgid "Module"
|
|
447
|
+
msgstr "Modul"
|
|
448
|
+
|
|
449
|
+
#: wbcore/release_notes/display.py:14
|
|
450
|
+
msgid "Version"
|
|
451
|
+
msgstr "Version"
|
|
452
|
+
|
|
453
|
+
#: wbcore/release_notes/display.py:15
|
|
454
|
+
msgid "Release Date"
|
|
455
|
+
msgstr "Veröffentlichungsdatum"
|
|
456
|
+
|
|
457
|
+
#: wbcore/release_notes/display.py:16
|
|
458
|
+
msgid "Summary"
|
|
459
|
+
msgstr "Zusammenfassung"
|
|
460
|
+
|
|
461
|
+
#: wbcore/release_notes/display.py:37
|
|
462
|
+
msgid "Unread"
|
|
463
|
+
msgstr "Ungelesen"
|
|
464
|
+
|
|
465
|
+
#: wbcore/release_notes/filters.py:16
|
|
466
|
+
msgid "Read / Unread"
|
|
467
|
+
msgstr "Gelesen / Ungelesen"
|
|
468
|
+
|
|
469
|
+
#: wbcore/release_notes/models.py:20
|
|
470
|
+
msgid "The version/identifier of the release"
|
|
471
|
+
msgstr "Die Version/Identifizierungsnummer der Veröffentlichung"
|
|
472
|
+
|
|
473
|
+
#: wbcore/release_notes/models.py:21
|
|
474
|
+
msgid "The date when this new version was released"
|
|
475
|
+
msgstr "Das Datum, an dem die neue Version veröffentlicht wurde"
|
|
476
|
+
|
|
477
|
+
#: wbcore/release_notes/models.py:22
|
|
478
|
+
msgid "The workbench module of the release"
|
|
479
|
+
msgstr "Das Workbench-Modul der Version"
|
|
480
|
+
|
|
481
|
+
#: wbcore/release_notes/models.py:23
|
|
482
|
+
msgid "A brief summary of the release"
|
|
483
|
+
msgstr "Eine kurze Zusammenfassung der Veröffentlichung"
|
|
484
|
+
|
|
485
|
+
#: wbcore/release_notes/models.py:24
|
|
486
|
+
msgid "What's new? What's improved? What's fixed?"
|
|
487
|
+
msgstr "Was ist neu? Was ist verbessert? Was wurde behoben?"
|
|
488
|
+
|
|
489
|
+
#: wbcore/release_notes/models.py:58
|
|
490
|
+
msgid "Release Note"
|
|
491
|
+
msgstr "Versionshinweis"
|
|
492
|
+
|
|
493
|
+
#: wbcore/release_notes/models.py:59
|
|
494
|
+
msgid "Release Notes"
|
|
495
|
+
msgstr "Versionshinweise"
|
|
496
|
+
|
|
497
|
+
#: wbcore/reversion/viewsets/buttons.py:22
|
|
498
|
+
msgid "Compare in Admin"
|
|
499
|
+
msgstr "Im Admin vergleichen"
|
|
500
|
+
|
|
501
|
+
#: wbcore/reversion/viewsets/buttons.py:37 wbcore/utils/serializers.py:7
|
|
502
|
+
msgid "Start"
|
|
503
|
+
msgstr "Start"
|
|
504
|
+
|
|
505
|
+
#: wbcore/reversion/viewsets/buttons.py:48
|
|
506
|
+
#: wbcore/reversion/viewsets/buttons.py:56
|
|
507
|
+
msgid "Revert"
|
|
508
|
+
msgstr "Zurücksetzen"
|
|
509
|
+
|
|
510
|
+
#: wbcore/reversion/viewsets/buttons.py:51
|
|
511
|
+
msgid ""
|
|
512
|
+
"\n"
|
|
513
|
+
" <p>Revert object to this version</p>\n"
|
|
514
|
+
" "
|
|
515
|
+
msgstr ""
|
|
516
|
+
"\n"
|
|
517
|
+
" <p>Objekt auf diese Version zurücksetzen</p>\n"
|
|
518
|
+
" "
|
|
519
|
+
|
|
520
|
+
#: wbcore/reversion/viewsets/buttons.py:55
|
|
521
|
+
msgid "Reverting"
|
|
522
|
+
msgstr "Zurücksetzen"
|
|
523
|
+
|
|
524
|
+
#: wbcore/reversion/viewsets/buttons.py:62
|
|
525
|
+
#: wbcore/reversion/viewsets/buttons.py:71
|
|
526
|
+
msgid "Compare With"
|
|
527
|
+
msgstr "Vergleichen Mit"
|
|
528
|
+
|
|
529
|
+
#: wbcore/reversion/viewsets/buttons.py:65
|
|
530
|
+
msgid ""
|
|
531
|
+
"\n"
|
|
532
|
+
" <p>Compare this version with another version</p>\n"
|
|
533
|
+
" "
|
|
534
|
+
msgstr ""
|
|
535
|
+
"\n"
|
|
536
|
+
" <p>Diese Version mit einer anderen Version vergleichen</"
|
|
537
|
+
"p>\n"
|
|
538
|
+
" "
|
|
539
|
+
|
|
540
|
+
#: wbcore/reversion/viewsets/buttons.py:70
|
|
541
|
+
msgid "Comparing"
|
|
542
|
+
msgstr "Vergleichen"
|
|
543
|
+
|
|
544
|
+
#: wbcore/reversion/viewsets/displays.py:12
|
|
545
|
+
msgid "Created At"
|
|
546
|
+
msgstr "Erstellt Am"
|
|
547
|
+
|
|
548
|
+
#: wbcore/reversion/viewsets/displays.py:13
|
|
549
|
+
msgid "User"
|
|
550
|
+
msgstr "Benutzer*in"
|
|
551
|
+
|
|
552
|
+
#: wbcore/reversion/viewsets/displays.py:32
|
|
553
|
+
#: wbcore/reversion/viewsets/titles.py:17
|
|
554
|
+
msgid "Versions"
|
|
555
|
+
msgstr "Versionen"
|
|
556
|
+
|
|
557
|
+
#: wbcore/reversion/viewsets/displays.py:41
|
|
558
|
+
msgid "ID"
|
|
559
|
+
msgstr "ID"
|
|
560
|
+
|
|
561
|
+
#: wbcore/reversion/viewsets/displays.py:42
|
|
562
|
+
msgid "Revision"
|
|
563
|
+
msgstr "Reversion"
|
|
564
|
+
|
|
565
|
+
#: wbcore/reversion/viewsets/displays.py:43
|
|
566
|
+
msgid "Creation Date"
|
|
567
|
+
msgstr "Erstelldatum"
|
|
568
|
+
|
|
569
|
+
#: wbcore/reversion/viewsets/titles.py:14
|
|
570
|
+
#, python-brace-format
|
|
571
|
+
msgid "Versions For {obj}"
|
|
572
|
+
msgstr "Versionen Für {obj}"
|
|
573
|
+
|
|
574
|
+
#: wbcore/serializers/fields/text.py:96
|
|
575
|
+
msgid "Please provide a valid hexadecimal color."
|
|
576
|
+
msgstr "Bitte geben Sie eine valide Hexadezimalfarbe an."
|
|
577
|
+
|
|
578
|
+
#: wbcore/share/buttons.py:15
|
|
579
|
+
msgid "Are you sure you want to share this widget?"
|
|
580
|
+
msgstr "Sind Sie sich sicher, dass Sie dieses Fenster teilen wollen?"
|
|
581
|
+
|
|
582
|
+
#: wbcore/share/notifications.py:12
|
|
583
|
+
msgid "{} shared a widget with you"
|
|
584
|
+
msgstr "{} hat ein Widget mit Ihnen geteilt"
|
|
585
|
+
|
|
586
|
+
#: wbcore/share/serializers.py:9
|
|
587
|
+
msgid "Widget URL"
|
|
588
|
+
msgstr "Fenster URL"
|
|
589
|
+
|
|
590
|
+
#: wbcore/share/serializers.py:14
|
|
591
|
+
msgid "Recipient"
|
|
592
|
+
msgstr "Empfänger*in"
|
|
593
|
+
|
|
594
|
+
#: wbcore/share/serializers.py:17
|
|
595
|
+
msgid "Check out this Widget."
|
|
596
|
+
msgstr "\"Schauen Sie sich dieses Fenster an."
|
|
597
|
+
|
|
598
|
+
#: wbcore/templates/wbcore/admin/change_list.html:5
|
|
599
|
+
msgid "Import CSV"
|
|
600
|
+
msgstr "CSV Importieren"
|
|
601
|
+
|
|
602
|
+
#: wbcore/templates/wbcore/admin/csv_form.html:10
|
|
603
|
+
msgid "Upload CSV"
|
|
604
|
+
msgstr "CSV Hochladen"
|
|
605
|
+
|
|
606
|
+
#: wbcore/templates/wbcore/dynamic_color_array.html:26
|
|
607
|
+
msgid "Add another"
|
|
608
|
+
msgstr "Weitere Hinzufügen"
|
|
609
|
+
|
|
610
|
+
#: wbcore/templates/wbcore/email_base_template.html:325
|
|
611
|
+
msgid ""
|
|
612
|
+
"This E-Mail is autogenerated by Stainly. If you need more information, "
|
|
613
|
+
"please visit the Stainly-Bench."
|
|
614
|
+
msgstr ""
|
|
615
|
+
"Diese E-Mail wurde automatisch von Stainly generiert. Falls Sie mehr "
|
|
616
|
+
"Informationen benötigen, besuchen Sie bitte die Stainly-Bench."
|
|
617
|
+
|
|
618
|
+
#: wbcore/templates/wbcore/frontend.html:41
|
|
619
|
+
msgid "You need to enable JavaScript to run this app."
|
|
620
|
+
msgstr "Sie benötigen JavaScript um diese Anwendung ausführen zu können."
|
|
621
|
+
|
|
622
|
+
#: wbcore/titles/metadata_config.py:17
|
|
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
|
|
642
|
+
msgid "Pending"
|
|
643
|
+
msgstr "Ausstehend"
|
|
644
|
+
|
|
645
|
+
#: wbcore/utils/models.py:84
|
|
646
|
+
msgid "Denied"
|
|
647
|
+
msgstr "Abgelehnt"
|
|
648
|
+
|
|
649
|
+
#: wbcore/utils/models.py:85
|
|
650
|
+
msgid "Approved"
|
|
651
|
+
msgstr "Genehmigt"
|
|
652
|
+
|
|
653
|
+
#: wbcore/utils/models.py:147
|
|
654
|
+
msgid "Default"
|
|
655
|
+
msgstr "Standard"
|
|
656
|
+
|
|
657
|
+
#: wbcore/utils/models.py:198
|
|
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
|
|
666
|
+
msgid "Clone"
|
|
667
|
+
msgstr "Klonen"
|