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