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
@@ -0,0 +1,634 @@
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: 2025-05-20 09:30+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:75
23
+ msgid "Main information"
24
+ msgstr "Hauptinformationen"
25
+
26
+ #: wbcore/contrib/authentication/admin.py:76
27
+ msgid "Synchronization"
28
+ msgstr ""
29
+
30
+ #: wbcore/contrib/authentication/admin.py:78
31
+ #: wbcore/contrib/authentication/viewsets/display/users.py:68
32
+ msgid "Permissions"
33
+ msgstr "Berechtigungen"
34
+
35
+ #: wbcore/contrib/authentication/admin.py:151
36
+ msgid ""
37
+ "Your user does not have the \"Change user\" permission. In order to add "
38
+ "users, Django requires that your user account have both the \"Add user\" and "
39
+ "\"Change user\" permissions set."
40
+ msgstr ""
41
+ "Ihr Benutzerkonto besitzt die \"Change user\" Berechtigung nicht. Um "
42
+ "Benutzer*innen hinzufügen zu können benötigt Ihr Konto sowohl die \"Add "
43
+ "user\" als auch die \"Change user\" Berechtigung."
44
+
45
+ #: wbcore/contrib/authentication/admin.py:175
46
+ #, python-format
47
+ msgid "%(name)s object with primary key %(key)r does not exist."
48
+ msgstr "%(name)s Objekt mit Primärschlüssel %(key)r existiert nicht."
49
+
50
+ #: wbcore/contrib/authentication/admin.py:187
51
+ msgid "Password changed successfully."
52
+ msgstr "Passwort erfolgreich geändert."
53
+
54
+ #: wbcore/contrib/authentication/admin.py:208
55
+ #, python-format
56
+ msgid "Change password: %s"
57
+ msgstr "Passwort ändern: %s"
58
+
59
+ #: wbcore/contrib/authentication/dynamic_preferences_registry.py:15
60
+ msgid "Immunity Period"
61
+ msgstr "Immunitätszeitraum für Unregistrierte Nutzer*innen"
62
+
63
+ #: wbcore/contrib/authentication/dynamic_preferences_registry.py:16
64
+ msgid "Set the maximum number of hours a user can remain without registration"
65
+ msgstr ""
66
+ "Legt die maximale Anzahl an Stunden, die ein*e Nutzer*in ohne Registrierung "
67
+ "sein darf, fest"
68
+
69
+ #: wbcore/contrib/authentication/dynamic_preferences_registry.py:25
70
+ msgid "Default Token Validity (in Hours)"
71
+ msgstr "Standard Verfallsdauer für Token (h)"
72
+
73
+ #: wbcore/contrib/authentication/dynamic_preferences_registry.py:26
74
+ msgid ""
75
+ "If not specified, a newly created token will be valid for that amount of "
76
+ "hours"
77
+ msgstr ""
78
+ "Falls nicht spezifiziert, wird ein neues Token für diese Anzahl an Stunden "
79
+ "gültig sein"
80
+
81
+ #: wbcore/contrib/authentication/models/tokens.py:21
82
+ msgid "Valid Until"
83
+ msgstr "Gültig Bis"
84
+
85
+ #: wbcore/contrib/authentication/models/tokens.py:29
86
+ msgid "Number of allowed usage"
87
+ msgstr "Erlaubte Anzahl an Nutzungen"
88
+
89
+ #: wbcore/contrib/authentication/models/tokens.py:30
90
+ msgid "Is Valid"
91
+ msgstr "Ist Gültig"
92
+
93
+ #: wbcore/contrib/authentication/models/tokens.py:32
94
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:18
95
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:64
96
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:80
97
+ msgid "User"
98
+ msgstr "Benutzer*in"
99
+
100
+ #: wbcore/contrib/authentication/models/tokens.py:138
101
+ msgid "Token"
102
+ msgstr "Token"
103
+
104
+ #: wbcore/contrib/authentication/models/tokens.py:139
105
+ msgid "Tokens"
106
+ msgstr "Token"
107
+
108
+ #: wbcore/contrib/authentication/models/users.py:25
109
+ msgid "No E-Mail provided"
110
+ msgstr "Keine E-Mail-Adresse angegeben"
111
+
112
+ #: wbcore/contrib/authentication/models/users.py:28
113
+ msgid "No Username provided"
114
+ msgstr "Kein Benutzername angegeben"
115
+
116
+ #: wbcore/contrib/authentication/models/users.py:57
117
+ #: wbcore/contrib/authentication/serializers/users.py:144
118
+ msgid "E-Mail"
119
+ msgstr "E-Mail"
120
+
121
+ #: wbcore/contrib/authentication/models/users.py:58
122
+ msgid "username"
123
+ msgstr "benutzername"
124
+
125
+ #: wbcore/contrib/authentication/models/users.py:61
126
+ msgid "staff status"
127
+ msgstr "Personal"
128
+
129
+ #: wbcore/contrib/authentication/models/users.py:63
130
+ msgid "Specifies whether the user can log into this admin site."
131
+ msgstr ""
132
+ "Gibt an, ob ein*e Nutzer*in sich auf dieser Administrator-Seite einloggen "
133
+ "kann."
134
+
135
+ #: wbcore/contrib/authentication/models/users.py:66
136
+ msgid "active"
137
+ msgstr "Aktiv"
138
+
139
+ #: wbcore/contrib/authentication/models/users.py:69
140
+ msgid ""
141
+ "Specifies whether this user should be treated as active. Unselect this "
142
+ "instead of deleting accounts."
143
+ msgstr ""
144
+ "Gibt an, ob ein*e Nutzer*in als aktiv betrachtet werden sollte. Wählen Sie "
145
+ "diese Option ab anstatt Konten zu löschen."
146
+
147
+ #: wbcore/contrib/authentication/models/users.py:73
148
+ msgid "register"
149
+ msgstr "registrieren"
150
+
151
+ #: wbcore/contrib/authentication/models/users.py:73
152
+ msgid "Specifies whether this user has registered its email. "
153
+ msgstr "Gibt an, ob ein*e Nutzer*in seine E-Mail-Adresse registriert hat. "
154
+
155
+ #: wbcore/contrib/authentication/models/users.py:75
156
+ msgid "date joined"
157
+ msgstr "beitrittsdatum"
158
+
159
+ #: wbcore/contrib/authentication/models/users.py:84
160
+ msgid "user"
161
+ msgstr "benutzer*in"
162
+
163
+ #: wbcore/contrib/authentication/models/users.py:85
164
+ msgid "users"
165
+ msgstr "benutzer*innen"
166
+
167
+ #: wbcore/contrib/authentication/models/users.py:140
168
+ msgid "You need to specify a username or a pair of first and last name"
169
+ msgstr "Sie müssen einen Benutzernamen oder einen Vor- und Nachnamen angeben"
170
+
171
+ #: wbcore/contrib/authentication/models/users_activities.py:18
172
+ #: wbcore/contrib/authentication/models/users_activities.py:21
173
+ msgid "Success"
174
+ msgstr "Erfolg"
175
+
176
+ #: wbcore/contrib/authentication/models/users_activities.py:19
177
+ #: wbcore/contrib/authentication/models/users_activities.py:21
178
+ msgid "Failed"
179
+ msgstr "Fehlgeschlagen"
180
+
181
+ #: wbcore/contrib/authentication/models/users_activities.py:24
182
+ #: wbcore/contrib/authentication/templates/password_reset_done.html:11
183
+ #: wbcore/contrib/authentication/viewsets/users.py:172
184
+ msgid "Login"
185
+ msgstr "Einloggen"
186
+
187
+ #: wbcore/contrib/authentication/models/users_activities.py:38
188
+ #, python-brace-format
189
+ msgid "Activity of {user} at {date}"
190
+ msgstr "Aktivität von {user} an {date}"
191
+
192
+ #: wbcore/contrib/authentication/models/users_activities.py:41
193
+ msgid "User Login Activity"
194
+ msgstr "Anmeldeaktivität des*der Nutzer*innen"
195
+
196
+ #: wbcore/contrib/authentication/models/users_activities.py:42
197
+ msgid "User Login Activities"
198
+ msgstr "Anmeldeaktivitäten des*der Nutzer*innen"
199
+
200
+ #: wbcore/contrib/authentication/serializers/users.py:30
201
+ msgid "Old password"
202
+ msgstr "Altes Passwort"
203
+
204
+ #: wbcore/contrib/authentication/serializers/users.py:31
205
+ msgid "New Password"
206
+ msgstr "Neues Passwort"
207
+
208
+ #: wbcore/contrib/authentication/serializers/users.py:32
209
+ msgid "Confirm new Password"
210
+ msgstr "Neues Passwort bestätigen"
211
+
212
+ #: wbcore/contrib/authentication/serializers/users.py:36
213
+ msgid "No request found"
214
+ msgstr ""
215
+
216
+ #: wbcore/contrib/authentication/serializers/users.py:41
217
+ msgid "Wrong password"
218
+ msgstr "Falsches Passwort"
219
+
220
+ #: wbcore/contrib/authentication/serializers/users.py:47
221
+ msgid "Password don't match"
222
+ msgstr "Passwörter stimmen nicht überein"
223
+
224
+ #: wbcore/contrib/authentication/serializers/users.py:53
225
+ #: wbcore/contrib/authentication/serializers/users.py:54
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:141
230
+ #: wbcore/contrib/authentication/viewsets/display/users.py:50
231
+ msgid "Is Active"
232
+ msgstr "Ist Aktiv"
233
+
234
+ #: wbcore/contrib/authentication/serializers/users.py:143
235
+ msgid "Last Connection"
236
+ msgstr "Letzte Verbindung"
237
+
238
+ #: wbcore/contrib/authentication/serializers/users.py:145
239
+ msgid "Username"
240
+ msgstr "Benutzername"
241
+
242
+ #: wbcore/contrib/authentication/serializers/users.py:146
243
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:55
244
+ msgid "Profile"
245
+ msgstr "Profil"
246
+
247
+ #: wbcore/contrib/authentication/serializers/users.py:208
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:210
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:51
304
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:52
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:15
376
+ msgid "See Profile"
377
+ msgstr "Profil Anschauen"
378
+
379
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:19
380
+ msgid "Resetting Settings"
381
+ msgstr "Zurücksetzen der Einstellungen"
382
+
383
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:21
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:23
388
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:24
389
+ msgid "Reset Settings"
390
+ msgstr "Einstellungen Zurücksetzen"
391
+
392
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:29
393
+ msgid "Changing Password"
394
+ msgstr "Ändern des Passworts"
395
+
396
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:31
397
+ msgid "<p>Change Password</p>"
398
+ msgstr "<p>Passwort Ändern</p>"
399
+
400
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:34
401
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:35
402
+ msgid "Change Password"
403
+ msgstr "Passwort Ändern"
404
+
405
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:46
406
+ msgid "Resetting Password"
407
+ msgstr "Zurücksetzen des Passworts"
408
+
409
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:48
410
+ msgid "<p>Reset Password</p>"
411
+ msgstr "<p>Passwort Zurücksetzen</p>"
412
+
413
+ #: wbcore/contrib/authentication/viewsets/buttons/users.py:54
414
+ #: wbcore/contrib/authentication/viewsets/display/users.py:70
415
+ #: wbcore/contrib/authentication/viewsets/menu/user_activities.py:6
416
+ #: wbcore/contrib/authentication/viewsets/titles/user_activities.py:10
417
+ msgid "User Activity"
418
+ msgstr "Nutzeraktivität"
419
+
420
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:17
421
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:63
422
+ msgid "IP"
423
+ msgstr "IP"
424
+
425
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:19
426
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:65
427
+ msgid "First Login"
428
+ msgstr "Erstes Einloggen"
429
+
430
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:20
431
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:66
432
+ msgid "Latest Refresh"
433
+ msgstr "Letzte Aktualisierung"
434
+
435
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:21
436
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:67
437
+ msgid "Time Online (Minutes)"
438
+ msgstr "Zeit Online (Minuten)"
439
+
440
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:22
441
+ #: wbcore/contrib/authentication/viewsets/display/user_activities.py:68
442
+ msgid "Agent Info"
443
+ msgstr "Informationen zum Agenten"
444
+
445
+ #: wbcore/contrib/authentication/viewsets/display/users.py:19
446
+ msgid "Name"
447
+ msgstr "Name"
448
+
449
+ #: wbcore/contrib/authentication/viewsets/display/users.py:20
450
+ msgid "Code Name"
451
+ msgstr "Code Name"
452
+
453
+ #: wbcore/contrib/authentication/viewsets/display/users.py:21
454
+ msgid "Content Type"
455
+ msgstr "Content Typ"
456
+
457
+ #: wbcore/contrib/authentication/viewsets/display/users.py:38
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:49
462
+ msgid "Email"
463
+ msgstr "E-Mail"
464
+
465
+ #: wbcore/contrib/authentication/viewsets/display/users.py:51
466
+ msgid "Joined"
467
+ msgstr "Beigetreten"
468
+
469
+ #: wbcore/contrib/authentication/viewsets/display/users.py:52
470
+ msgid "Latest Connection"
471
+ msgstr "Letzte Verbindung"
472
+
473
+ #: wbcore/contrib/authentication/viewsets/display/users.py:67
474
+ msgid "Groups"
475
+ msgstr "Gruppen"
476
+
477
+ #: wbcore/contrib/authentication/viewsets/menu/user_activities.py:18
478
+ #: wbcore/contrib/authentication/viewsets/titles/user_activities.py:21
479
+ msgid "User Activity Table"
480
+ msgstr "Nutzeraktivitätstabelle"
481
+
482
+ #: wbcore/contrib/authentication/viewsets/menu/user_activities.py:30
483
+ #: wbcore/contrib/authentication/viewsets/titles/user_activities.py:26
484
+ msgid "User Activity Chart"
485
+ msgstr "Nutzeraktivitätsdiagramm"
486
+
487
+ #: wbcore/contrib/authentication/viewsets/menu/users.py:7
488
+ #: wbcore/contrib/authentication/viewsets/titles/users.py:24
489
+ msgid "Users"
490
+ msgstr "Benutzer*innen"
491
+
492
+ #: wbcore/contrib/authentication/viewsets/menu/users.py:13
493
+ msgid "Create New User"
494
+ msgstr "Nutzer*in Erstellen"
495
+
496
+ #: wbcore/contrib/authentication/viewsets/titles/user_activities.py:16
497
+ #: wbcore/contrib/authentication/viewsets/titles/user_activities.py:32
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:11
503
+ #, python-brace-format
504
+ msgid "Permissions for {email}"
505
+ msgstr "Berechtigungen für {email}"
506
+
507
+ #: wbcore/contrib/authentication/viewsets/titles/users.py:16
508
+ msgid "Your Profile"
509
+ msgstr "Ihr Profil"
510
+
511
+ #: wbcore/contrib/authentication/viewsets/titles/users.py:21
512
+ msgid "User: {{email}}"
513
+ msgstr "Benutzer*in: {{email}}"
514
+
515
+ #: wbcore/contrib/authentication/viewsets/titles/users.py:27
516
+ msgid "New User"
517
+ msgstr "Neue*r Benutzer*in"
518
+
519
+ #: wbcore/contrib/authentication/viewsets/user_activities.py:178
520
+ msgid "<b>User Activity</b>"
521
+ msgstr "<b>Nutzeraktivität</b>"
522
+
523
+ #: wbcore/contrib/authentication/viewsets/user_activities.py:179
524
+ msgid "Time"
525
+ msgstr "Zeit"
526
+
527
+ #: wbcore/contrib/authentication/viewsets/user_activities.py:180
528
+ msgid "Cummulative time"
529
+ msgstr "Kumulierte Zeit"
530
+
531
+ #: wbcore/contrib/authentication/viewsets/user_activities.py:191
532
+ msgid "Hour"
533
+ msgstr "Stunde"
534
+
535
+ #: wbcore/contrib/authentication/viewsets/user_activities.py:196
536
+ msgid "Day"
537
+ msgstr "Tag"
538
+
539
+ #: wbcore/contrib/authentication/viewsets/user_activities.py:201
540
+ msgid "Week"
541
+ msgstr "Woche"
542
+
543
+ #: wbcore/contrib/authentication/viewsets/user_activities.py:206
544
+ msgid "Month"
545
+ msgstr "Monat"
546
+
547
+ #: wbcore/contrib/authentication/viewsets/users.py:77
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:94
556
+ msgid "first and last name are too long. please provider a shorter name."
557
+ msgstr ""
558
+
559
+ #: wbcore/contrib/authentication/viewsets/users.py:101
560
+ msgid ""
561
+ "password is too long. please provider a password shorter than 128 characters."
562
+ msgstr ""
563
+
564
+ #: wbcore/contrib/authentication/viewsets/users.py:109
565
+ msgid ""
566
+ "email is too long. please provider an email shorter than 255 characters."
567
+ msgstr ""
568
+
569
+ #: wbcore/contrib/authentication/viewsets/users.py:128
570
+ msgid "Activate your account."
571
+ msgstr "Aktivieren Sie Ihr Konto."
572
+
573
+ #: wbcore/contrib/authentication/viewsets/users.py:136
574
+ msgid "Please confirm your email address to complete the registration"
575
+ msgstr ""
576
+ "Bitte bestätigen Sie Ihre E-Mail-Adresse um die Registrierung abzuschließen"
577
+
578
+ #: wbcore/contrib/authentication/viewsets/users.py:141
579
+ msgid "Your account already exists"
580
+ msgstr "Ihr Konto existiert bereits"
581
+
582
+ #: wbcore/contrib/authentication/viewsets/users.py:145
583
+ msgid "Something went wrong with the submitted data, please try again later"
584
+ msgstr ""
585
+
586
+ #: wbcore/contrib/authentication/viewsets/users.py:149
587
+ msgid "email, first_name, last_name and password must be provided"
588
+ msgstr "E-Mail, Vorname, Nachname und Passwort müssen angegeben werden"
589
+
590
+ #: wbcore/contrib/authentication/viewsets/users.py:170
591
+ msgid "Activation Successful"
592
+ msgstr "Aktivierung Erfolgreich"
593
+
594
+ #: wbcore/contrib/authentication/viewsets/users.py:171
595
+ msgid "You are successfully registered. Please login"
596
+ msgstr "Sie haben sich erfolgreich registriert. Bitte melden Sie sich an"
597
+
598
+ #: wbcore/contrib/authentication/viewsets/users.py:184
599
+ msgid "Activation Failed"
600
+ msgstr "Aktivierung Fehlgeschlagen"
601
+
602
+ #: wbcore/contrib/authentication/viewsets/users.py:186
603
+ msgid ""
604
+ "The registration link you clicked was probably expired or your account is "
605
+ "already activated. Please try to register again."
606
+ msgstr ""
607
+ "Der Registrierungslink war wahrscheinlich abgelaufen oder Ihr Konto bereits "
608
+ "aktiviert. Bitte versuchen Sie sich erneut zu registrieren."
609
+
610
+ #: wbcore/contrib/authentication/viewsets/users.py:188
611
+ msgid "Register"
612
+ msgstr "Registrieren"
613
+
614
+ #: wbcore/contrib/authentication/viewsets/users.py:276
615
+ msgid "Password changed."
616
+ msgstr "Passwort geändert."
617
+
618
+ #: wbcore/contrib/authentication/viewsets/users.py:319
619
+ msgid "Reset Password E-Mail sent: Check your mailbox"
620
+ msgstr ""
621
+ "E-Mail zum Zurücksetzen des Passworts gesendet: Bitte schauen Sie in Ihren "
622
+ "Posteingang"
623
+
624
+ #: wbcore/contrib/authentication/viewsets/users.py:321
625
+ msgid "Reset Password Failed. Please contact an administrator"
626
+ msgstr ""
627
+ "Passwort Zurücksetzen Fehlgeschlagen. Bitte kontaktieren Sie einen "
628
+ "Administrator"
629
+
630
+ #~ msgid "Start"
631
+ #~ msgstr "Start"
632
+
633
+ #~ msgid "End"
634
+ #~ msgstr "Ende"