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