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,1580 @@
1
+ # GERMAN TRANSLATIONS FOR WBCORE
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: \n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2025-05-29 13:33+0200\n"
11
+ "PO-Revision-Date: 2023-04-25 17:03+0200\n"
12
+ "Last-Translator: \n"
13
+ "Language-Team: \n"
14
+ "Language: de\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Generator: Poedit 3.2.2\n"
20
+
21
+ #: wbcore/admin.py:38
22
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:151
23
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:271
24
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:346
25
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:101
26
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:208
27
+ msgid "Main Information"
28
+ msgstr "Hauptinformationen"
29
+
30
+ #: wbcore/admin.py:109
31
+ #, python-brace-format
32
+ msgid "Your CSV file has been imported ( {imports} imported, {errors} errors)"
33
+ msgstr ""
34
+ "Ihre CSV-Datei wurde importiert ({imports} importiert, {errors} Fehler)"
35
+
36
+ #: wbcore/cache/buttons.py:19 wbcore/cache/buttons.py:20
37
+ #: wbcore/cache/buttons.py:21 wbcore/cache/buttons.py:22
38
+ msgid "Clear Cache"
39
+ msgstr ""
40
+
41
+ #: wbcore/configurations/configurations/wbcore.py:22
42
+ msgid "Check out our upcoming beta version"
43
+ msgstr "Sehen Sie sich unsere nächste Beta-Version an"
44
+
45
+ #: wbcore/contrib/currency/viewsets/display/currency.py:32
46
+ msgid "Rates"
47
+ msgstr ""
48
+
49
+ #: wbcore/contrib/example_app/filters/event.py:18
50
+ #: wbcore/contrib/example_app/models.py:125
51
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:30
52
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:94
53
+ #: wbcore/contrib/example_app/viewsets/titles/person.py:9
54
+ msgid "Persons"
55
+ msgstr ""
56
+
57
+ #: wbcore/contrib/example_app/filters/event.py:24
58
+ #: wbcore/contrib/example_app/filters/event.py:25
59
+ #: wbcore/contrib/example_app/filters/event.py:72
60
+ #: wbcore/contrib/example_app/filters/event.py:73
61
+ #: wbcore/contrib/example_app/models.py:831
62
+ #: wbcore/contrib/example_app/serializers/match_event.py:129
63
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:20
64
+ msgid "Minute"
65
+ msgstr ""
66
+
67
+ #: wbcore/contrib/example_app/filters/event.py:27
68
+ #: wbcore/contrib/example_app/models.py:923
69
+ #: wbcore/contrib/example_app/viewsets/displays/sport.py:52
70
+ #: wbcore/contrib/example_app/viewsets/displays/sport.py:56
71
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:83
72
+ #: wbcore/contrib/example_app/viewsets/titles/event.py:26
73
+ msgid "Event Types"
74
+ msgstr ""
75
+
76
+ #: wbcore/contrib/example_app/filters/event.py:41
77
+ #: wbcore/contrib/example_app/models.py:586
78
+ #: wbcore/contrib/example_app/models.py:829
79
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:17
80
+ #: wbcore/contrib/example_app/viewsets/titles/match.py:15
81
+ msgid "Match"
82
+ msgstr ""
83
+
84
+ #: wbcore/contrib/example_app/filters/event.py:50
85
+ #: wbcore/contrib/example_app/filters/event.py:51
86
+ #: wbcore/contrib/example_app/filters/teamresult.py:15
87
+ #: wbcore/contrib/example_app/filters/teamresult.py:16
88
+ #: wbcore/contrib/example_app/filters/teamresult.py:30
89
+ #: wbcore/contrib/example_app/models.py:267
90
+ #: wbcore/contrib/example_app/models.py:883
91
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:12
92
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:17
93
+ msgid "Points"
94
+ msgstr ""
95
+
96
+ #: wbcore/contrib/example_app/filters/event.py:63
97
+ #: wbcore/contrib/example_app/filters/league.py:70
98
+ #: wbcore/contrib/example_app/filters/match.py:54
99
+ #: wbcore/contrib/example_app/models.py:163
100
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:38
101
+ #: wbcore/contrib/example_app/viewsets/titles/sport.py:8
102
+ msgid "Sports"
103
+ msgstr ""
104
+
105
+ #: wbcore/contrib/example_app/filters/event.py:75
106
+ msgid "Period"
107
+ msgstr ""
108
+
109
+ #: wbcore/contrib/example_app/filters/league.py:10
110
+ #: wbcore/contrib/example_app/filters/league.py:15
111
+ #: wbcore/contrib/example_app/models.py:193
112
+ msgid "Established Date"
113
+ msgstr ""
114
+
115
+ #: wbcore/contrib/example_app/filters/league.py:20
116
+ msgid "Commissioners"
117
+ msgstr ""
118
+
119
+ #: wbcore/contrib/example_app/filters/league.py:27
120
+ msgid "Countries"
121
+ msgstr ""
122
+
123
+ #: wbcore/contrib/example_app/filters/league.py:35
124
+ #: wbcore/contrib/example_app/filters/teamresult.py:9
125
+ #: wbcore/contrib/example_app/models.py:258
126
+ #: wbcore/contrib/example_app/models.py:722
127
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:70
128
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:9
129
+ #: wbcore/contrib/example_app/viewsets/menus.py:6
130
+ #: wbcore/contrib/example_app/viewsets/titles/team.py:15
131
+ msgid "Team"
132
+ msgstr ""
133
+
134
+ #: wbcore/contrib/example_app/filters/league.py:42
135
+ #: wbcore/contrib/example_app/filters/league.py:45
136
+ #: wbcore/contrib/example_app/models.py:203
137
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:23
138
+ msgid "Points Per Win"
139
+ msgstr ""
140
+
141
+ #: wbcore/contrib/example_app/filters/league.py:48
142
+ #: wbcore/contrib/example_app/filters/league.py:51
143
+ #: wbcore/contrib/example_app/models.py:204
144
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:24
145
+ msgid "Points Per Draw"
146
+ msgstr ""
147
+
148
+ #: wbcore/contrib/example_app/filters/league.py:54
149
+ #: wbcore/contrib/example_app/filters/league.py:57
150
+ #: wbcore/contrib/example_app/models.py:205
151
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:25
152
+ msgid "Points Per Loss"
153
+ msgstr ""
154
+
155
+ #: wbcore/contrib/example_app/filters/match.py:16
156
+ #: wbcore/contrib/example_app/filters/match.py:21
157
+ #: wbcore/contrib/example_app/models.py:389
158
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:24
159
+ msgid "Date Time"
160
+ msgstr ""
161
+
162
+ #: wbcore/contrib/example_app/filters/match.py:26
163
+ #: wbcore/contrib/example_app/models.py:381
164
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:19
165
+ msgid "Home"
166
+ msgstr "Home"
167
+
168
+ #: wbcore/contrib/example_app/filters/match.py:33
169
+ #: wbcore/contrib/example_app/models.py:387
170
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:21
171
+ msgid "Away"
172
+ msgstr ""
173
+
174
+ #: wbcore/contrib/example_app/filters/match.py:39
175
+ #: wbcore/contrib/example_app/filters/match.py:40
176
+ #: wbcore/contrib/example_app/models.py:401
177
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:20
178
+ msgid "Home Score"
179
+ msgstr ""
180
+
181
+ #: wbcore/contrib/example_app/filters/match.py:41
182
+ #: wbcore/contrib/example_app/filters/match.py:42
183
+ #: wbcore/contrib/example_app/models.py:402
184
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:22
185
+ msgid "Away Score"
186
+ msgstr ""
187
+
188
+ #: wbcore/contrib/example_app/filters/match.py:44
189
+ msgid "Referees"
190
+ msgstr ""
191
+
192
+ #: wbcore/contrib/example_app/filters/match.py:51
193
+ #: wbcore/contrib/example_app/models.py:398
194
+ msgid "Status"
195
+ msgstr ""
196
+
197
+ #: wbcore/contrib/example_app/filters/match.py:68
198
+ #: wbcore/contrib/example_app/filters/match.py:88
199
+ #: wbcore/contrib/example_app/filters/team.py:73
200
+ #: wbcore/contrib/example_app/models.py:359
201
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:22
202
+ #: wbcore/contrib/example_app/viewsets/titles/stadium.py:8
203
+ msgid "Stadiums"
204
+ msgstr ""
205
+
206
+ #: wbcore/contrib/example_app/filters/match.py:78
207
+ #: wbcore/contrib/example_app/models.py:227
208
+ #: wbcore/contrib/example_app/viewsets/displays/sport.py:31
209
+ #: wbcore/contrib/example_app/viewsets/displays/sport.py:35
210
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:14
211
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:98
212
+ #: wbcore/contrib/example_app/viewsets/titles/league.py:9
213
+ msgid "Leagues"
214
+ msgstr ""
215
+
216
+ #: wbcore/contrib/example_app/filters/person.py:10
217
+ msgid "Participating In"
218
+ msgstr ""
219
+
220
+ #: wbcore/contrib/example_app/filters/person.py:16
221
+ msgid "All persons participating in a selected Match."
222
+ msgstr ""
223
+
224
+ #: wbcore/contrib/example_app/filters/person.py:38
225
+ #: wbcore/contrib/example_app/models.py:69
226
+ #: wbcore/contrib/example_app/models.py:73
227
+ #: wbcore/contrib/example_app/serializers/person_team.py:209
228
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:13
229
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:59
230
+ #: wbcore/contrib/example_app/viewsets/titles/role.py:8
231
+ msgid "Roles"
232
+ msgstr ""
233
+
234
+ #: wbcore/contrib/example_app/filters/person.py:55
235
+ #: wbcore/contrib/example_app/models.py:760
236
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:19
237
+ msgid "Former Teams"
238
+ msgstr ""
239
+
240
+ #: wbcore/contrib/example_app/filters/person.py:61
241
+ #: wbcore/contrib/example_app/filters/person.py:62
242
+ #: wbcore/contrib/example_app/models.py:766
243
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:22
244
+ msgid "Market Value"
245
+ msgstr ""
246
+
247
+ #: wbcore/contrib/example_app/filters/person.py:73
248
+ msgid "Current Teams"
249
+ msgstr ""
250
+
251
+ #: wbcore/contrib/example_app/filters/role.py:9
252
+ msgid "Associated Person"
253
+ msgstr ""
254
+
255
+ #: wbcore/contrib/example_app/filters/sport.py:9
256
+ msgid "Associated League"
257
+ msgstr ""
258
+
259
+ #: wbcore/contrib/example_app/filters/sport.py:16
260
+ #: wbcore/contrib/example_app/filters/sport.py:19
261
+ #: wbcore/contrib/example_app/viewsets/displays/sport.py:22
262
+ #, fuzzy
263
+ #| msgid "Main Information"
264
+ msgid "Match Duration"
265
+ msgstr "Hauptinformationen"
266
+
267
+ #: wbcore/contrib/example_app/filters/stadium.py:9
268
+ #: wbcore/contrib/example_app/filters/stadium.py:10
269
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:26
270
+ msgid "Capacity"
271
+ msgstr ""
272
+
273
+ #: wbcore/contrib/example_app/filters/stadium.py:12
274
+ msgid "Team Playing"
275
+ msgstr ""
276
+
277
+ #: wbcore/contrib/example_app/filters/stadium.py:19
278
+ #: wbcore/contrib/example_app/filters/team.py:42
279
+ msgid "Cities"
280
+ msgstr ""
281
+
282
+ #: wbcore/contrib/example_app/filters/team.py:11
283
+ #: wbcore/contrib/example_app/filters/team.py:16
284
+ #: wbcore/contrib/example_app/models.py:658
285
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:19
286
+ msgid "Founded Date"
287
+ msgstr ""
288
+
289
+ #: wbcore/contrib/example_app/filters/team.py:21
290
+ msgid "Coaches"
291
+ msgstr ""
292
+
293
+ #: wbcore/contrib/example_app/filters/team.py:28
294
+ msgid "Current Player"
295
+ msgstr ""
296
+
297
+ #: wbcore/contrib/example_app/filters/team.py:35
298
+ msgid "Former Player"
299
+ msgstr ""
300
+
301
+ #: wbcore/contrib/example_app/filters/team.py:59
302
+ msgid "Opponent"
303
+ msgstr ""
304
+
305
+ #: wbcore/contrib/example_app/filters/teamresult.py:18
306
+ #: wbcore/contrib/example_app/filters/teamresult.py:21
307
+ #: wbcore/contrib/example_app/models.py:268
308
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:14
309
+ msgid "Match Points For"
310
+ msgstr ""
311
+
312
+ #: wbcore/contrib/example_app/filters/teamresult.py:24
313
+ #: wbcore/contrib/example_app/filters/teamresult.py:27
314
+ #: wbcore/contrib/example_app/models.py:269
315
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:15
316
+ msgid "Match Points Against"
317
+ msgstr ""
318
+
319
+ #: wbcore/contrib/example_app/filters/teamresult.py:29
320
+ #: wbcore/contrib/example_app/models.py:271
321
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:11
322
+ msgid "Wins"
323
+ msgstr ""
324
+
325
+ #: wbcore/contrib/example_app/filters/teamresult.py:31
326
+ #: wbcore/contrib/example_app/filters/teamresult.py:32
327
+ #: wbcore/contrib/example_app/models.py:272
328
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:12
329
+ msgid "Draws"
330
+ msgstr ""
331
+
332
+ #: wbcore/contrib/example_app/filters/teamresult.py:33
333
+ #: wbcore/contrib/example_app/filters/teamresult.py:34
334
+ #: wbcore/contrib/example_app/models.py:273
335
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:13
336
+ msgid "Losses"
337
+ msgstr ""
338
+
339
+ #: wbcore/contrib/example_app/filters/teamresult.py:43
340
+ #: wbcore/contrib/example_app/models.py:226
341
+ #: wbcore/contrib/example_app/models.py:264
342
+ #: wbcore/contrib/example_app/models.py:416
343
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:23
344
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:12
345
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:25
346
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:8
347
+ #: wbcore/contrib/example_app/viewsets/event.py:137
348
+ #: wbcore/contrib/example_app/viewsets/menus.py:14
349
+ #: wbcore/contrib/example_app/viewsets/titles/league.py:15
350
+ msgid "League"
351
+ msgstr ""
352
+
353
+ #: wbcore/contrib/example_app/models.py:39
354
+ #: wbcore/contrib/example_app/viewsets/displays/role.py:14
355
+ msgid "Title"
356
+ msgstr "Titel"
357
+
358
+ #: wbcore/contrib/example_app/models.py:68
359
+ #: wbcore/contrib/example_app/viewsets/titles/role.py:14
360
+ msgid "Role"
361
+ msgstr ""
362
+
363
+ #: wbcore/contrib/example_app/models.py:74
364
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:11
365
+ msgid "First Name"
366
+ msgstr ""
367
+
368
+ #: wbcore/contrib/example_app/models.py:75
369
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:12
370
+ #, fuzzy
371
+ #| msgid "Name"
372
+ msgid "Last Name"
373
+ msgstr "Name"
374
+
375
+ #: wbcore/contrib/example_app/models.py:93
376
+ #, python-brace-format
377
+ msgid " (Coach of {self.coached_team.name})"
378
+ msgstr ""
379
+
380
+ #: wbcore/contrib/example_app/models.py:95
381
+ msgid " (Commissioner of {self.commissioned_leagues.first().name})"
382
+ msgstr ""
383
+
384
+ #: wbcore/contrib/example_app/models.py:124
385
+ #: wbcore/contrib/example_app/models.py:823
386
+ #: wbcore/contrib/example_app/serializers/match_event.py:117
387
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:19
388
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:63
389
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:79
390
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:152
391
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:188
392
+ #: wbcore/contrib/example_app/viewsets/titles/person.py:15
393
+ msgid "Person"
394
+ msgstr ""
395
+
396
+ #: wbcore/contrib/example_app/models.py:129
397
+ #: wbcore/contrib/example_app/models.py:177
398
+ #: wbcore/contrib/example_app/models.py:308
399
+ #: wbcore/contrib/example_app/models.py:881
400
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:10
401
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:21
402
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:171
403
+ #: wbcore/contrib/example_app/viewsets/displays/sport.py:21
404
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:21
405
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:24
406
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:197
407
+ #: wbcore/utils/models.py:64
408
+ msgid "Name"
409
+ msgstr "Name"
410
+
411
+ #: wbcore/contrib/example_app/models.py:131
412
+ #: wbcore/contrib/example_app/viewsets/displays/sport.py:23
413
+ msgid "Rules"
414
+ msgstr ""
415
+
416
+ #: wbcore/contrib/example_app/models.py:132
417
+ msgid "Match Duration (min)"
418
+ msgstr ""
419
+
420
+ #: wbcore/contrib/example_app/models.py:162
421
+ #: wbcore/contrib/example_app/models.py:182
422
+ #: wbcore/contrib/example_app/models.py:429
423
+ #: wbcore/contrib/example_app/models.py:891
424
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:11
425
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:22
426
+ #: wbcore/contrib/example_app/viewsets/menus.py:38
427
+ #: wbcore/contrib/example_app/viewsets/titles/sport.py:14
428
+ msgid "Sport"
429
+ msgstr ""
430
+
431
+ #: wbcore/contrib/example_app/models.py:191
432
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:26
433
+ msgid "Country"
434
+ msgstr ""
435
+
436
+ #: wbcore/contrib/example_app/models.py:200
437
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:28
438
+ msgid "Commissioner"
439
+ msgstr ""
440
+
441
+ #: wbcore/contrib/example_app/models.py:202
442
+ #: wbcore/contrib/example_app/models.py:689
443
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:29
444
+ msgid "Website"
445
+ msgstr ""
446
+
447
+ #: wbcore/contrib/example_app/models.py:212
448
+ #: wbcore/contrib/example_app/models.py:723
449
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:62
450
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:66
451
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:6
452
+ #: wbcore/contrib/example_app/viewsets/titles/team.py:9
453
+ msgid "Teams"
454
+ msgstr ""
455
+
456
+ #: wbcore/contrib/example_app/models.py:270
457
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:16
458
+ msgid "Match Point Difference"
459
+ msgstr ""
460
+
461
+ #: wbcore/contrib/example_app/models.py:274
462
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:18
463
+ msgid "Form"
464
+ msgstr ""
465
+
466
+ #: wbcore/contrib/example_app/models.py:277
467
+ msgid "{} in {}"
468
+ msgstr ""
469
+
470
+ #: wbcore/contrib/example_app/models.py:284
471
+ msgid "Team Result"
472
+ msgstr ""
473
+
474
+ #: wbcore/contrib/example_app/models.py:285
475
+ #: wbcore/contrib/example_app/viewsets/titles/teamresult.py:8
476
+ msgid "Team Results"
477
+ msgstr ""
478
+
479
+ #: wbcore/contrib/example_app/models.py:315
480
+ #: wbcore/contrib/example_app/models.py:654
481
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:22
482
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:18
483
+ msgid "City"
484
+ msgstr ""
485
+
486
+ #: wbcore/contrib/example_app/models.py:319
487
+ msgid "Standing Capacity"
488
+ msgstr ""
489
+
490
+ #: wbcore/contrib/example_app/models.py:320
491
+ msgid "Seating Capacity"
492
+ msgstr ""
493
+
494
+ #: wbcore/contrib/example_app/models.py:324
495
+ msgid "Guest Rating"
496
+ msgstr ""
497
+
498
+ #: wbcore/contrib/example_app/models.py:358
499
+ #: wbcore/contrib/example_app/models.py:394
500
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:25
501
+ #: wbcore/contrib/example_app/viewsets/menus.py:22
502
+ #: wbcore/contrib/example_app/viewsets/titles/stadium.py:14
503
+ msgid "Stadium"
504
+ msgstr ""
505
+
506
+ #: wbcore/contrib/example_app/models.py:364
507
+ msgid "Scheduled"
508
+ msgstr ""
509
+
510
+ #: wbcore/contrib/example_app/models.py:365
511
+ msgid "Ongoing"
512
+ msgstr ""
513
+
514
+ #: wbcore/contrib/example_app/models.py:366
515
+ msgid "Finished"
516
+ msgstr ""
517
+
518
+ #: wbcore/contrib/example_app/models.py:451
519
+ #: wbcore/reversion/viewsets/buttons.py:44 wbcore/utils/serializers.py:8
520
+ msgid "Start"
521
+ msgstr "Start"
522
+
523
+ #: wbcore/contrib/example_app/models.py:452
524
+ #, fuzzy
525
+ #| msgid "Start"
526
+ msgid "Starting"
527
+ msgstr "Start"
528
+
529
+ #: wbcore/contrib/example_app/models.py:453
530
+ #, fuzzy
531
+ #| msgid "Are you sure you want to share this widget?"
532
+ msgid "Are you sure you want to start the match?"
533
+ msgstr "Sind Sie sich sicher, dass Sie dieses Fenster teilen wollen?"
534
+
535
+ #: wbcore/contrib/example_app/models.py:471 wbcore/utils/serializers.py:9
536
+ msgid "End"
537
+ msgstr "Ende"
538
+
539
+ #: wbcore/contrib/example_app/models.py:472
540
+ #, fuzzy
541
+ #| msgid "Pending"
542
+ msgid "Ending"
543
+ msgstr "Ausstehend"
544
+
545
+ #: wbcore/contrib/example_app/models.py:473
546
+ #, fuzzy
547
+ #| msgid "Are you sure you want to share this widget?"
548
+ msgid "Are you sure you want to end the match?"
549
+ msgstr "Sind Sie sich sicher, dass Sie dieses Fenster teilen wollen?"
550
+
551
+ #: wbcore/contrib/example_app/models.py:587
552
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:67
553
+ #: wbcore/contrib/example_app/viewsets/titles/match.py:9
554
+ msgid "Matches"
555
+ msgstr ""
556
+
557
+ #: wbcore/contrib/example_app/models.py:665
558
+ #: wbcore/contrib/example_app/viewsets/buttons/team.py:17
559
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:20
560
+ msgid "Coach"
561
+ msgstr ""
562
+
563
+ #: wbcore/contrib/example_app/models.py:673
564
+ #: wbcore/contrib/example_app/serializers/person_team.py:86
565
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:21
566
+ msgid "Home Stadium"
567
+ msgstr ""
568
+
569
+ #: wbcore/contrib/example_app/models.py:680
570
+ msgid "Opponents"
571
+ msgstr ""
572
+
573
+ #: wbcore/contrib/example_app/models.py:686
574
+ msgid "Email Address"
575
+ msgstr ""
576
+
577
+ #: wbcore/contrib/example_app/models.py:687
578
+ msgid "Phone Number"
579
+ msgstr ""
580
+
581
+ #: wbcore/contrib/example_app/models.py:747
582
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:17
583
+ msgid "Position"
584
+ msgstr ""
585
+
586
+ #: wbcore/contrib/example_app/models.py:754
587
+ #: wbcore/contrib/example_app/serializers/person_team.py:214
588
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:18
589
+ msgid "Current Team"
590
+ msgstr ""
591
+
592
+ #: wbcore/contrib/example_app/models.py:768
593
+ msgid "Is Active"
594
+ msgstr ""
595
+
596
+ #: wbcore/contrib/example_app/models.py:769
597
+ msgid "Is Injured"
598
+ msgstr ""
599
+
600
+ #: wbcore/contrib/example_app/models.py:773
601
+ msgid "Player Strength"
602
+ msgstr ""
603
+
604
+ #: wbcore/contrib/example_app/models.py:778
605
+ msgid "Game Activity"
606
+ msgstr ""
607
+
608
+ #: wbcore/contrib/example_app/models.py:790
609
+ #, python-brace-format
610
+ msgid " ({self.position} at {self.current_team.name})"
611
+ msgstr ""
612
+
613
+ #: wbcore/contrib/example_app/models.py:792
614
+ #, python-brace-format
615
+ msgid " ({self.current_team.name})"
616
+ msgstr ""
617
+
618
+ #: wbcore/contrib/example_app/models.py:813
619
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:113
620
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:220
621
+ #: wbcore/contrib/example_app/viewsets/menus.py:46
622
+ #: wbcore/contrib/example_app/viewsets/titles/person.py:26
623
+ msgid "Player"
624
+ msgstr ""
625
+
626
+ #: wbcore/contrib/example_app/models.py:814
627
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:54
628
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:58
629
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:51
630
+ #: wbcore/contrib/example_app/viewsets/titles/person.py:20
631
+ msgid "Players"
632
+ msgstr ""
633
+
634
+ #: wbcore/contrib/example_app/models.py:818
635
+ msgid "Event Description"
636
+ msgstr ""
637
+
638
+ #: wbcore/contrib/example_app/models.py:836
639
+ #: wbcore/contrib/example_app/models.py:922
640
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:18
641
+ #: wbcore/contrib/example_app/viewsets/titles/event.py:32
642
+ msgid "Event Type"
643
+ msgstr ""
644
+
645
+ #: wbcore/contrib/example_app/models.py:870
646
+ #: wbcore/contrib/example_app/viewsets/titles/event.py:15
647
+ msgid "Event"
648
+ msgstr ""
649
+
650
+ #: wbcore/contrib/example_app/models.py:871
651
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:60
652
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:64
653
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:75
654
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:101
655
+ #: wbcore/contrib/example_app/viewsets/titles/event.py:9
656
+ msgid "Events"
657
+ msgstr ""
658
+
659
+ #: wbcore/contrib/example_app/models.py:884
660
+ msgid "Number of points awarded to a player's team per event"
661
+ msgstr ""
662
+
663
+ #: wbcore/contrib/example_app/models.py:895
664
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:13
665
+ #: wbcore/utils/models.py:259
666
+ msgid "Icon"
667
+ msgstr "Icon"
668
+
669
+ #: wbcore/contrib/example_app/models.py:975
670
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:37
671
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:46
672
+ msgid "Season"
673
+ msgstr ""
674
+
675
+ #: wbcore/contrib/example_app/models.py:976
676
+ msgid "Seasons"
677
+ msgstr ""
678
+
679
+ #: wbcore/contrib/example_app/serializers/league.py:20
680
+ msgid "A league with this name already exists for this type of sport."
681
+ msgstr ""
682
+
683
+ #: wbcore/contrib/example_app/serializers/league.py:21
684
+ #: wbcore/contrib/example_app/serializers/person_team.py:28
685
+ msgid "The founding date must be in the past."
686
+ msgstr ""
687
+
688
+ #: wbcore/contrib/example_app/serializers/match_event.py:37
689
+ msgid "Team cannot play against itself."
690
+ msgstr ""
691
+
692
+ #: wbcore/contrib/example_app/serializers/match_event.py:38
693
+ msgid "A match between these teams at this time already exists."
694
+ msgstr ""
695
+
696
+ #: wbcore/contrib/example_app/serializers/match_event.py:39
697
+ msgid "League doesn't match the specified sport."
698
+ msgstr ""
699
+
700
+ #: wbcore/contrib/example_app/serializers/match_event.py:43
701
+ msgid "An event type with this name already exists for this sport."
702
+ msgstr ""
703
+
704
+ #: wbcore/contrib/example_app/serializers/match_event.py:47
705
+ msgid "This event already exists."
706
+ msgstr ""
707
+
708
+ #: wbcore/contrib/example_app/serializers/match_event.py:48
709
+ msgid "Event outside of match duration."
710
+ msgstr ""
711
+
712
+ #: wbcore/contrib/example_app/serializers/match_event.py:49
713
+ msgid "Please select a {} event type."
714
+ msgstr ""
715
+
716
+ #: wbcore/contrib/example_app/serializers/match_event.py:138
717
+ msgid "Event outside of match duration ({} min)."
718
+ msgstr ""
719
+
720
+ #: wbcore/contrib/example_app/serializers/person_team.py:27
721
+ msgid "A team with this name already exists."
722
+ msgstr ""
723
+
724
+ #: wbcore/contrib/example_app/serializers/person_team.py:83
725
+ msgid "Enter team name here"
726
+ msgstr ""
727
+
728
+ #: wbcore/contrib/example_app/serializers/person_team.py:92
729
+ msgctxt "Phonenumber"
730
+ msgid "Number"
731
+ msgstr ""
732
+
733
+ #: wbcore/contrib/example_app/serializers/person_team.py:112
734
+ msgid "Invalid e-mail address"
735
+ msgstr ""
736
+
737
+ #: wbcore/contrib/example_app/serializers/person_team.py:124
738
+ msgid "Invalid phone number format"
739
+ msgstr ""
740
+
741
+ #: wbcore/contrib/example_app/serializers/person_team.py:221
742
+ msgid "Activity Heat"
743
+ msgstr ""
744
+
745
+ #: wbcore/contrib/example_app/serializers/person_team.py:244
746
+ msgid "Rating must be between 0 and 5."
747
+ msgstr ""
748
+
749
+ #: wbcore/contrib/example_app/serializers/stadium.py:17
750
+ msgid "Guest rating must be between 0 and 4."
751
+ msgstr ""
752
+
753
+ #: wbcore/contrib/example_app/serializers/teamresult.py:15
754
+ msgid "Results for this team and league already exist."
755
+ msgstr ""
756
+
757
+ #: wbcore/contrib/example_app/serializers/teamresult.py:21
758
+ #: wbcore/contrib/example_app/viewsets/displays/teamresult.py:10
759
+ msgid "Games"
760
+ msgstr ""
761
+
762
+ #: wbcore/contrib/example_app/viewsets/buttons/person.py:14
763
+ msgid "Statistics"
764
+ msgstr ""
765
+
766
+ #: wbcore/contrib/example_app/viewsets/buttons/team.py:12
767
+ msgid "Website & Coach"
768
+ msgstr ""
769
+
770
+ #: wbcore/contrib/example_app/viewsets/buttons/team.py:15
771
+ #, fuzzy
772
+ #| msgid "Home"
773
+ msgid "Homepage"
774
+ msgstr "Home"
775
+
776
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:14
777
+ #: wbcore/utils/models.py:249
778
+ msgid "Color"
779
+ msgstr "Farbe"
780
+
781
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:63
782
+ #: wbcore/contrib/example_app/viewsets/displays/event.py:70
783
+ msgid " "
784
+ msgstr ""
785
+
786
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:27
787
+ msgid "Established"
788
+ msgstr ""
789
+
790
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:41
791
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:45
792
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:41
793
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:45
794
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:76
795
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:80
796
+ msgid "Recent Matches"
797
+ msgstr ""
798
+
799
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:63
800
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:67
801
+ #: wbcore/contrib/example_app/viewsets/titles/teamresult.py:13
802
+ msgid "Table"
803
+ msgstr ""
804
+
805
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:211
806
+ msgid "Player Statistics"
807
+ msgstr ""
808
+
809
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:242
810
+ msgid "Team Statistics"
811
+ msgstr ""
812
+
813
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:306
814
+ #: wbcore/contrib/example_app/viewsets/displays/league.py:367
815
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:165
816
+ #: wbcore/contrib/example_app/viewsets/displays/team.py:234
817
+ msgid "Details"
818
+ msgstr ""
819
+
820
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:26
821
+ msgid "Referee"
822
+ msgstr ""
823
+
824
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:82
825
+ msgid "Score"
826
+ msgstr ""
827
+
828
+ #: wbcore/contrib/example_app/viewsets/displays/match.py:98
829
+ msgid "Match Details"
830
+ msgstr ""
831
+
832
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:20
833
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:23
834
+ #, fuzzy
835
+ #| msgid "Reverting"
836
+ msgid "Rating"
837
+ msgstr "Zurücksetzen"
838
+
839
+ #: wbcore/contrib/example_app/viewsets/displays/person.py:21
840
+ #, fuzzy
841
+ #| msgid "No activities"
842
+ msgid "Activities"
843
+ msgstr "Keine Aktivitäten"
844
+
845
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:11
846
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:24
847
+ msgid "Season Name"
848
+ msgstr ""
849
+
850
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:13
851
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:28
852
+ msgid "Range"
853
+ msgstr ""
854
+
855
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:14
856
+ msgid "Duration"
857
+ msgstr ""
858
+
859
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:15
860
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:26
861
+ msgid "Winner"
862
+ msgstr ""
863
+
864
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:16
865
+ #: wbcore/contrib/example_app/viewsets/displays/season.py:27
866
+ msgid "Top Scorer"
867
+ msgstr ""
868
+
869
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:29
870
+ msgid "Total Capacity"
871
+ msgstr ""
872
+
873
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:30
874
+ #, fuzzy
875
+ #| msgctxt "Timestamp"
876
+ #| msgid "Created"
877
+ msgid "Seated"
878
+ msgstr "Erstellt"
879
+
880
+ #: wbcore/contrib/example_app/viewsets/displays/stadium.py:31
881
+ #, fuzzy
882
+ #| msgid "Pending"
883
+ msgid "Standing"
884
+ msgstr "Ausstehend"
885
+
886
+ #: wbcore/contrib/example_app/viewsets/event.py:138
887
+ msgid "Amount"
888
+ msgstr ""
889
+
890
+ #: wbcore/contrib/example_app/viewsets/match.py:62
891
+ msgid "Home team's home stadium not selected!"
892
+ msgstr ""
893
+
894
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:9
895
+ #: wbcore/contrib/example_app/viewsets/menus.py:9
896
+ #: wbcore/contrib/example_app/viewsets/titles/team.py:12
897
+ #, fuzzy
898
+ #| msgid "Create {name}"
899
+ msgid "Create Team"
900
+ msgstr "Erstelle {name}"
901
+
902
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:17
903
+ #: wbcore/contrib/example_app/viewsets/menus.py:17
904
+ #: wbcore/contrib/example_app/viewsets/titles/league.py:12
905
+ #, fuzzy
906
+ #| msgid "Create {name}"
907
+ msgid "Create League"
908
+ msgstr "Erstelle {name}"
909
+
910
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:25
911
+ #: wbcore/contrib/example_app/viewsets/menus.py:25
912
+ #: wbcore/contrib/example_app/viewsets/titles/stadium.py:11
913
+ #, fuzzy
914
+ #| msgid "Create {name}"
915
+ msgid "Create Stadium"
916
+ msgstr "Erstelle {name}"
917
+
918
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:33
919
+ #: wbcore/contrib/example_app/viewsets/titles/person.py:12
920
+ #, fuzzy
921
+ #| msgid "Create {name}"
922
+ msgid "Create Person"
923
+ msgstr "Erstelle {name}"
924
+
925
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:41
926
+ #: wbcore/contrib/example_app/viewsets/menus.py:41
927
+ #: wbcore/contrib/example_app/viewsets/titles/sport.py:11
928
+ #, fuzzy
929
+ #| msgid "Created At"
930
+ msgid "Create Sport"
931
+ msgstr "Erstellt Am"
932
+
933
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:48
934
+ #, fuzzy
935
+ #| msgid "Create {name}"
936
+ msgid "Create Season"
937
+ msgstr "Erstelle {name}"
938
+
939
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:54
940
+ #: wbcore/contrib/example_app/viewsets/titles/person.py:23
941
+ #, fuzzy
942
+ #| msgid "Create {name}"
943
+ msgid "Create Player"
944
+ msgstr "Erstelle {name}"
945
+
946
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:62
947
+ #: wbcore/contrib/example_app/viewsets/titles/role.py:11
948
+ #, fuzzy
949
+ #| msgid "Create {name}"
950
+ msgid "Create Role"
951
+ msgstr "Erstelle {name}"
952
+
953
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:70
954
+ #: wbcore/contrib/example_app/viewsets/titles/match.py:12
955
+ #, fuzzy
956
+ #| msgid "Created At"
957
+ msgid "Create Match"
958
+ msgstr "Erstellt Am"
959
+
960
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:78
961
+ #: wbcore/contrib/example_app/viewsets/titles/event.py:12
962
+ #, fuzzy
963
+ #| msgid "Created At"
964
+ msgid "Create Event"
965
+ msgstr "Erstellt Am"
966
+
967
+ #: wbcore/contrib/example_app/viewsets/menu/menus.py:86
968
+ #: wbcore/contrib/example_app/viewsets/titles/event.py:29
969
+ #, fuzzy
970
+ #| msgid "Create {name}"
971
+ msgid "Create Event Type"
972
+ msgstr "Erstelle {name}"
973
+
974
+ #: wbcore/contrib/example_app/viewsets/menus.py:30
975
+ msgid "Figure"
976
+ msgstr ""
977
+
978
+ #: wbcore/contrib/example_app/viewsets/menus.py:33
979
+ #, fuzzy
980
+ #| msgid "Create {name}"
981
+ msgid "Create Figure"
982
+ msgstr "Erstelle {name}"
983
+
984
+ #: wbcore/contrib/example_app/viewsets/menus.py:49
985
+ #, fuzzy
986
+ #| msgid "Create {name}"
987
+ msgid "Create player"
988
+ msgstr "Erstelle {name}"
989
+
990
+ #: wbcore/contrib/example_app/viewsets/titles/event.py:21
991
+ msgid "Player Statistics {}"
992
+ msgstr ""
993
+
994
+ #: wbcore/contrib/example_app/viewsets/titles/event.py:39
995
+ #, fuzzy
996
+ #| msgid "Create {name}"
997
+ msgid "Create {} Event Type"
998
+ msgstr "Erstelle {name}"
999
+
1000
+ #: wbcore/contrib/example_app/viewsets/titles/league.py:22
1001
+ #, fuzzy
1002
+ #| msgid "Create {name}"
1003
+ msgid "Create {} League"
1004
+ msgstr "Erstelle {name}"
1005
+
1006
+ #: wbcore/contrib/example_app/viewsets/titles/match.py:22
1007
+ #: wbcore/contrib/example_app/viewsets/titles/match.py:32
1008
+ msgid "Create Match In {}"
1009
+ msgstr ""
1010
+
1011
+ #: wbcore/contrib/example_app/viewsets/titles/person.py:33
1012
+ #, fuzzy
1013
+ #| msgid "Create {name}"
1014
+ msgid "Create Player For {}"
1015
+ msgstr "Erstelle {name}"
1016
+
1017
+ #: wbcore/contrib/example_app/viewsets/titles/team.py:22
1018
+ #, fuzzy
1019
+ #| msgid "Create {name}"
1020
+ msgid "Create Team In {}"
1021
+ msgstr "Erstelle {name}"
1022
+
1023
+ #: wbcore/contrib/guardian/models/mixins.py:25
1024
+ msgid "Internal"
1025
+ msgstr "Intern"
1026
+
1027
+ #: wbcore/contrib/guardian/models/mixins.py:26
1028
+ msgid "Public"
1029
+ msgstr "Öffentlich"
1030
+
1031
+ #: wbcore/contrib/guardian/models/mixins.py:27
1032
+ msgid "Private"
1033
+ msgstr "Privat"
1034
+
1035
+ #: wbcore/dynamic_preferences_registry.py:18
1036
+ msgid "Retention Period in Days"
1037
+ msgstr "Dateinspeicherungszeitraum"
1038
+
1039
+ #: wbcore/dynamic_preferences_registry.py:20
1040
+ msgid ""
1041
+ "When an object cannot be deleted and is disabled instead, it gets hidden "
1042
+ "from the queryset but not deleted. For compliance reasons we enable the "
1043
+ "retention for a specific period of days (defaults to a year)"
1044
+ msgstr ""
1045
+ "Wenn ein Objekt nicht gelöscht werden kann und stattdessen deaktiviert "
1046
+ "werden muss wird es vor dem Queryset versteckt, aber nicht gelöscht. Aus "
1047
+ "Compliance-Gründen speichern wir die Daten nur für einen bestimmten Zeitraum "
1048
+ "(standardmäßig ein Jahr)"
1049
+
1050
+ #: wbcore/dynamic_preferences_registry.py:31
1051
+ #: wbcore/dynamic_preferences_registry.py:32
1052
+ msgid "System User Email"
1053
+ msgstr ""
1054
+
1055
+ #: wbcore/dynamic_preferences_registry.py:47
1056
+ #: wbcore/dynamic_preferences_registry.py:48
1057
+ msgid "System Language"
1058
+ msgstr ""
1059
+
1060
+ #: wbcore/dynamic_preferences_registry.py:72
1061
+ #: wbcore/dynamic_preferences_registry.py:73
1062
+ #, fuzzy
1063
+ #| msgid "Created At"
1064
+ msgid "Date Format"
1065
+ msgstr "Erstellt Am"
1066
+
1067
+ #: wbcore/dynamic_preferences_registry.py:94
1068
+ #: wbcore/dynamic_preferences_registry.py:95
1069
+ msgid "Time Format"
1070
+ msgstr ""
1071
+
1072
+ #: wbcore/frontend_user_configuration.py:40
1073
+ #: wbcore/frontend_user_configuration.py:41
1074
+ msgid "Frontend User Settings"
1075
+ msgstr "Frontend Benutzereinstellungen"
1076
+
1077
+ #: wbcore/frontend_user_configuration.py:60
1078
+ msgid "Is Root"
1079
+ msgstr "Ist Stammverzeichnis"
1080
+
1081
+ #: wbcore/frontend_user_configuration.py:62
1082
+ msgid "Parent Configuration"
1083
+ msgstr "Elternkonfiguration"
1084
+
1085
+ #: wbcore/frontend_user_configuration.py:64
1086
+ msgid "Config"
1087
+ msgstr "Konfiguration"
1088
+
1089
+ #: wbcore/markdown/dynamic_preferences_registry.py:15
1090
+ msgid "Default Empty Image Placeholder"
1091
+ msgstr "Standard Bildplatzhalter"
1092
+
1093
+ #: wbcore/markdown/dynamic_preferences_registry.py:16
1094
+ msgid "Default empty image placeholder URL"
1095
+ msgstr "URL für den Standardplatzhalter für fehlende Bilder"
1096
+
1097
+ #: wbcore/markdown/models.py:29
1098
+ msgid "Asset"
1099
+ msgstr "Asset"
1100
+
1101
+ #: wbcore/markdown/models.py:30
1102
+ msgid "Assets"
1103
+ msgstr "Assets"
1104
+
1105
+ #: wbcore/metadata/configs/buttons/buttons.py:93
1106
+ msgid "<p>Are you sure you want to proceed?</p>"
1107
+ msgstr "<p>Sind Sie sich sicher, dass Sie fortfahren wollen?</p>"
1108
+
1109
+ #: wbcore/metadata/configs/buttons/buttons.py:96 wbcore/viewsets/utils.py:14
1110
+ msgid "Confirm"
1111
+ msgstr "Bestätigen"
1112
+
1113
+ #: wbcore/metadata/configs/buttons/buttons.py:98
1114
+ #: wbcore/metadata/configs/buttons/buttons.py:99
1115
+ #: wbcore/release_notes/buttons.py:22 wbcore/viewsets/utils.py:15
1116
+ msgid "Cancel"
1117
+ msgstr "Abbrechen"
1118
+
1119
+ #: wbcore/metadata/configs/display/instance_display/utils.py:65
1120
+ msgid "Column number has to be at least 1!"
1121
+ msgstr ""
1122
+
1123
+ #: wbcore/release_notes/buttons.py:16
1124
+ msgid "Reading all release notes"
1125
+ msgstr "Lesen aller Versionshinweise"
1126
+
1127
+ #: wbcore/release_notes/buttons.py:18
1128
+ msgid "Do you want to mark all release notes as read?"
1129
+ msgstr "Möchten Sie alle Versionshinweise als gelesen markieren?"
1130
+
1131
+ #: wbcore/release_notes/buttons.py:19
1132
+ msgid "Mark all as read"
1133
+ msgstr "Alle als gelesen markieren"
1134
+
1135
+ #: wbcore/release_notes/buttons.py:21
1136
+ msgid "Read all"
1137
+ msgstr "Alle lesen"
1138
+
1139
+ #: wbcore/release_notes/display.py:21 wbcore/release_notes/filters.py:14
1140
+ msgid "Module"
1141
+ msgstr "Modul"
1142
+
1143
+ #: wbcore/release_notes/display.py:22
1144
+ msgid "Version"
1145
+ msgstr "Version"
1146
+
1147
+ #: wbcore/release_notes/display.py:23
1148
+ msgid "Release Date"
1149
+ msgstr "Veröffentlichungsdatum"
1150
+
1151
+ #: wbcore/release_notes/display.py:24
1152
+ msgid "Summary"
1153
+ msgstr "Zusammenfassung"
1154
+
1155
+ #: wbcore/release_notes/display.py:32
1156
+ msgid "Read"
1157
+ msgstr "Gelesen"
1158
+
1159
+ #: wbcore/release_notes/display.py:37
1160
+ msgid "Unread"
1161
+ msgstr "Ungelesen"
1162
+
1163
+ #: wbcore/release_notes/filters.py:17
1164
+ msgid "Read / Unread"
1165
+ msgstr "Gelesen / Ungelesen"
1166
+
1167
+ #: wbcore/release_notes/models.py:21
1168
+ msgid "The version/identifier of the release"
1169
+ msgstr "Die Version/Identifizierungsnummer der Veröffentlichung"
1170
+
1171
+ #: wbcore/release_notes/models.py:22
1172
+ msgid "The date when this new version was released"
1173
+ msgstr "Das Datum, an dem die neue Version veröffentlicht wurde"
1174
+
1175
+ #: wbcore/release_notes/models.py:23
1176
+ msgid "The workbench module of the release"
1177
+ msgstr "Das Workbench-Modul der Version"
1178
+
1179
+ #: wbcore/release_notes/models.py:24
1180
+ msgid "A brief summary of the release"
1181
+ msgstr "Eine kurze Zusammenfassung der Veröffentlichung"
1182
+
1183
+ #: wbcore/release_notes/models.py:25
1184
+ msgid "What's new? What's improved? What's fixed?"
1185
+ msgstr "Was ist neu? Was ist verbessert? Was wurde behoben?"
1186
+
1187
+ #: wbcore/release_notes/models.py:59
1188
+ msgid "Release Note"
1189
+ msgstr "Versionshinweis"
1190
+
1191
+ #: wbcore/release_notes/models.py:60
1192
+ msgid "Release Notes"
1193
+ msgstr "Versionshinweise"
1194
+
1195
+ #: wbcore/reversion/viewsets/buttons.py:29
1196
+ msgid "Compare in Admin"
1197
+ msgstr "Im Admin vergleichen"
1198
+
1199
+ #: wbcore/reversion/viewsets/buttons.py:55
1200
+ #: wbcore/reversion/viewsets/buttons.py:63
1201
+ msgid "Revert"
1202
+ msgstr "Zurücksetzen"
1203
+
1204
+ #: wbcore/reversion/viewsets/buttons.py:58
1205
+ msgid ""
1206
+ "\n"
1207
+ " <p>Revert object to this version</p>\n"
1208
+ " "
1209
+ msgstr ""
1210
+ "\n"
1211
+ " <p>Objekt auf diese Version zurücksetzen</p>\n"
1212
+ " "
1213
+
1214
+ #: wbcore/reversion/viewsets/buttons.py:62
1215
+ msgid "Reverting"
1216
+ msgstr "Zurücksetzen"
1217
+
1218
+ #: wbcore/reversion/viewsets/buttons.py:69
1219
+ #: wbcore/reversion/viewsets/buttons.py:78
1220
+ msgid "Compare With"
1221
+ msgstr "Vergleichen Mit"
1222
+
1223
+ #: wbcore/reversion/viewsets/buttons.py:72
1224
+ msgid ""
1225
+ "\n"
1226
+ " <p>Compare this version with another version</p>\n"
1227
+ " "
1228
+ msgstr ""
1229
+ "\n"
1230
+ " <p>Diese Version mit einer anderen Version vergleichen</"
1231
+ "p>\n"
1232
+ " "
1233
+
1234
+ #: wbcore/reversion/viewsets/buttons.py:77
1235
+ msgid "Comparing"
1236
+ msgstr "Vergleichen"
1237
+
1238
+ #: wbcore/reversion/viewsets/displays.py:19
1239
+ msgid "Created At"
1240
+ msgstr "Erstellt Am"
1241
+
1242
+ #: wbcore/reversion/viewsets/displays.py:20
1243
+ msgid "User"
1244
+ msgstr "Benutzer*in"
1245
+
1246
+ #: wbcore/reversion/viewsets/displays.py:27
1247
+ #: wbcore/reversion/viewsets/titles.py:18
1248
+ msgid "Versions"
1249
+ msgstr "Versionen"
1250
+
1251
+ #: wbcore/reversion/viewsets/displays.py:35
1252
+ msgid "ID"
1253
+ msgstr "ID"
1254
+
1255
+ #: wbcore/reversion/viewsets/displays.py:36
1256
+ msgid "Revision"
1257
+ msgstr "Reversion"
1258
+
1259
+ #: wbcore/reversion/viewsets/displays.py:37
1260
+ msgid "Creation Date"
1261
+ msgstr "Erstelldatum"
1262
+
1263
+ #: wbcore/reversion/viewsets/titles.py:15
1264
+ #, python-brace-format
1265
+ msgid "Versions For {obj}"
1266
+ msgstr "Versionen Für {obj}"
1267
+
1268
+ #: wbcore/serializers/fields/text.py:57
1269
+ msgid "Compiling script failed with the exception: {}"
1270
+ msgstr ""
1271
+
1272
+ #: wbcore/serializers/fields/text.py:121
1273
+ msgid "Please provide a valid hexadecimal color."
1274
+ msgstr "Bitte geben Sie eine valide Hexadezimalfarbe an."
1275
+
1276
+ #: wbcore/shares/config.py:29
1277
+ msgid "Share to someone"
1278
+ msgstr ""
1279
+
1280
+ #: wbcore/shares/config.py:31
1281
+ msgid "Message"
1282
+ msgstr "Nachricht"
1283
+
1284
+ #: wbcore/shares/config.py:39
1285
+ msgid "Recipient"
1286
+ msgstr "Empfänger*in"
1287
+
1288
+ #: wbcore/shares/config.py:55
1289
+ msgid "Are you sure you want to share this widget?"
1290
+ msgstr "Sind Sie sich sicher, dass Sie dieses Fenster teilen wollen?"
1291
+
1292
+ #: wbcore/shares/config.py:58 wbcore/shares/config.py:60
1293
+ #: wbcore/shares/config.py:61 wbcore/shares/config.py:62
1294
+ msgid "Share"
1295
+ msgstr "Teilen"
1296
+
1297
+ #: wbcore/shares/sites.py:21
1298
+ msgid "Widget URL"
1299
+ msgstr "Fenster URL"
1300
+
1301
+ #: wbcore/templates/notifications/email_template.html:28
1302
+ msgid "Open"
1303
+ msgstr "Öffnen"
1304
+
1305
+ #: wbcore/templates/wbcore/admin/change_list.html:5
1306
+ msgid "Import CSV"
1307
+ msgstr "CSV Importieren"
1308
+
1309
+ #: wbcore/templates/wbcore/admin/csv_form.html:10
1310
+ msgid "Upload CSV"
1311
+ msgstr "CSV Hochladen"
1312
+
1313
+ #: wbcore/templates/wbcore/dynamic_color_array.html:26
1314
+ msgid "Add another"
1315
+ msgstr "Weitere Hinzufügen"
1316
+
1317
+ #: wbcore/templates/wbcore/email_base_template.html:325
1318
+ msgid ""
1319
+ "This E-Mail is autogenerated by Stainly. If you need more information, "
1320
+ "please visit the Stainly-Bench."
1321
+ msgstr ""
1322
+ "Diese E-Mail wurde automatisch von Stainly generiert. Falls Sie mehr "
1323
+ "Informationen benötigen, besuchen Sie bitte die Stainly-Bench."
1324
+
1325
+ #: wbcore/templates/wbcore/frontend.html:40
1326
+ msgid "You need to enable JavaScript to run this app."
1327
+ msgstr "Sie benötigen JavaScript um diese Anwendung ausführen zu können."
1328
+
1329
+ #: wbcore/utils/models.py:103
1330
+ msgid "Pending"
1331
+ msgstr "Ausstehend"
1332
+
1333
+ #: wbcore/utils/models.py:104
1334
+ msgid "Denied"
1335
+ msgstr "Abgelehnt"
1336
+
1337
+ #: wbcore/utils/models.py:105
1338
+ msgid "Approved"
1339
+ msgstr "Genehmigt"
1340
+
1341
+ #: wbcore/utils/models.py:189
1342
+ msgid "Default"
1343
+ msgstr "Standard"
1344
+
1345
+ #: wbcore/utils/views.py:117 wbcore/utils/views.py:118
1346
+ #: wbcore/utils/views.py:119
1347
+ msgid "Clone"
1348
+ msgstr "Klonen"
1349
+
1350
+ #: wbcore/utils/views.py:120
1351
+ msgid "<strong>Clone {}</strong> \"{}\""
1352
+ msgstr ""
1353
+
1354
+ #: wbcore/utils/views.py:201 wbcore/utils/views.py:202
1355
+ #: wbcore/utils/views.py:203
1356
+ msgid "Merge"
1357
+ msgstr ""
1358
+
1359
+ #~ msgid "Login Now"
1360
+ #~ msgstr "Jetzt Einloggen"
1361
+
1362
+ #~ msgid "E-Mail"
1363
+ #~ msgstr "E-Mail"
1364
+
1365
+ #~ msgid "Password"
1366
+ #~ msgstr "Passwort"
1367
+
1368
+ #~ msgid "Login"
1369
+ #~ msgstr "Einloggen"
1370
+
1371
+ #~ msgid "New Menu Item"
1372
+ #~ msgstr "Neuer Menüpunkt"
1373
+
1374
+ #~ msgid "Navigation"
1375
+ #~ msgstr "Navigation"
1376
+
1377
+ #~ msgid "Workspace"
1378
+ #~ msgstr "Arbeitsbereich"
1379
+
1380
+ #~ msgid "Label"
1381
+ #~ msgstr "Bezeichnung"
1382
+
1383
+ #~ msgid "Tooltip"
1384
+ #~ msgstr "Tooltip"
1385
+
1386
+ #~ msgid "The text that appears when hovering the cursor over the menu item."
1387
+ #~ msgstr ""
1388
+ #~ "Der Text, der auftaucht wenn der Mauszeiger sich über dem Menüpunkt "
1389
+ #~ "befindet."
1390
+
1391
+ #~ msgid "Delete"
1392
+ #~ msgstr "Löschen"
1393
+
1394
+ #~ msgid "Save"
1395
+ #~ msgstr "Speichern"
1396
+
1397
+ #~ msgid "History"
1398
+ #~ msgstr "Verlauf"
1399
+
1400
+ #~ msgid "Opened Windows"
1401
+ #~ msgstr "Geöffnete Fenster"
1402
+
1403
+ #~ msgid "No opened windows."
1404
+ #~ msgstr "Keine geöffneten Fenster."
1405
+
1406
+ #~ msgid "Profile"
1407
+ #~ msgstr "Profil"
1408
+
1409
+ #~ msgid "View Profile"
1410
+ #~ msgstr "Profil Ansehen"
1411
+
1412
+ #~ msgid "Logout"
1413
+ #~ msgstr "Ausloggen"
1414
+
1415
+ #~ msgid "Toggle fullscreen mode"
1416
+ #~ msgstr "Vollbild an-/ausschalten"
1417
+
1418
+ #~ msgid "Decrease font size"
1419
+ #~ msgstr "Textgröße verringern"
1420
+
1421
+ #~ msgid "Increase font size"
1422
+ #~ msgstr "Textgröße erhöhen"
1423
+
1424
+ #~ msgid "Enable edit mode"
1425
+ #~ msgstr "Bearbeitungsmodus aktivieren"
1426
+
1427
+ #~ msgid "Tile widgets"
1428
+ #~ msgstr "Fenster kacheln"
1429
+
1430
+ #~ msgid "Stack widgets"
1431
+ #~ msgstr "Fenster stapeln"
1432
+
1433
+ #~ msgid "Minimize widgets"
1434
+ #~ msgstr "Fenster minimieren"
1435
+
1436
+ #~ msgid "Send feedback"
1437
+ #~ msgstr "Feedback senden"
1438
+
1439
+ #~ msgid "Close all widgets"
1440
+ #~ msgstr "All Fenster schließen"
1441
+
1442
+ #~ msgid "Notifications"
1443
+ #~ msgstr "Benachrichtigungen"
1444
+
1445
+ #~ msgid "Organiser"
1446
+ #~ msgstr "Organisator"
1447
+
1448
+ #~ msgid "ZenMode"
1449
+ #~ msgstr "Zenmodus"
1450
+
1451
+ #~ msgid "Toggle filter area"
1452
+ #~ msgstr "Filterbereich an-/ausblenden"
1453
+
1454
+ #~ msgid "Toggle aggregate row"
1455
+ #~ msgstr "Aggregatzeile an-/ausblenden"
1456
+
1457
+ #~ msgid "Toggle table mode"
1458
+ #~ msgstr "Tabellenmodus an-/ausschalten"
1459
+
1460
+ #~ msgid "Filter criteria"
1461
+ #~ msgstr "Filterkriterien"
1462
+
1463
+ #~ msgid "Clear this filter"
1464
+ #~ msgstr "Diesen Filter Löschen"
1465
+
1466
+ #~ msgid "Search"
1467
+ #~ msgstr "Suchen"
1468
+
1469
+ #~ msgid "Create a shortcut for this widget."
1470
+ #~ msgstr "Eine Verknüpfung zu diesem Fenster erstellen."
1471
+
1472
+ #~ msgid "Select Icon"
1473
+ #~ msgstr "Icon Wählen"
1474
+
1475
+ #~ msgid "Add Title"
1476
+ #~ msgstr "Titel Hinzufügen"
1477
+
1478
+ #~ msgid "No filter criteria yet"
1479
+ #~ msgstr "Keine Filterkriterien bisher"
1480
+
1481
+ #~ msgid "Apply"
1482
+ #~ msgstr "Anwenden"
1483
+
1484
+ #~ msgid "Clear all filters"
1485
+ #~ msgstr "All Filter löschen"
1486
+
1487
+ #~ msgid "Reset filters"
1488
+ #~ msgstr "Filter zurücksetzen"
1489
+
1490
+ #~ msgid "Close"
1491
+ #~ msgstr "Schließen"
1492
+
1493
+ #~ msgid "Yes"
1494
+ #~ msgstr "Ja"
1495
+
1496
+ #~ msgid "No"
1497
+ #~ msgstr "Nein"
1498
+
1499
+ #~ msgid "Select an option"
1500
+ #~ msgstr "Eine Option wählen"
1501
+
1502
+ #~ msgid "Select options"
1503
+ #~ msgstr "Optionen auswählen"
1504
+
1505
+ #~ msgid "Refresh"
1506
+ #~ msgstr "Aktualisieren"
1507
+
1508
+ #~ msgid "Saved"
1509
+ #~ msgstr "Gespeichert"
1510
+
1511
+ #~ msgid "Save and close"
1512
+ #~ msgstr "Speichern und schließen"
1513
+
1514
+ #~ msgid "Lock"
1515
+ #~ msgstr "Sperren"
1516
+
1517
+ #~ msgid "Unlock"
1518
+ #~ msgstr "Entsperren"
1519
+
1520
+ #~ msgid "Documents"
1521
+ #~ msgstr "Dokumente"
1522
+
1523
+ #~ msgid "News"
1524
+ #~ msgstr "Neuigkeiten"
1525
+
1526
+ #~ msgid "Compare versions"
1527
+ #~ msgstr "Versionen vergleichen"
1528
+
1529
+ #, python-brace-format
1530
+ #~ msgid ""
1531
+ #~ "You have {num_unreceived} new notifications and {num_unread} unread "
1532
+ #~ "notifications."
1533
+ #~ msgstr ""
1534
+ #~ "Sie haben {num_unreceived} neue Benachrichtigungen und {num_unread} "
1535
+ #~ "ungelesene Benachrichtigungen."
1536
+
1537
+ #~ msgid "Received"
1538
+ #~ msgstr "Empfangen"
1539
+
1540
+ #~ msgid "Mailed"
1541
+ #~ msgstr "Gesendet"
1542
+
1543
+ #, python-brace-format
1544
+ #~ msgid "Notification {title}"
1545
+ #~ msgstr "Benachrichtigung {title}"
1546
+
1547
+ #~ msgid "Reading all notifications"
1548
+ #~ msgstr "Lesen aller Benachrichtigungen"
1549
+
1550
+ #~ msgid "Do you want to mark notifications as read?"
1551
+ #~ msgstr "Möchten Sie alle Benachrichtigungen als gelesen markieren?"
1552
+
1553
+ #~ msgid "Deleting all read notifications"
1554
+ #~ msgstr "Löschen aller gelesenen Benachrichtigungen"
1555
+
1556
+ #~ msgid "Do you want delete all read notifications?"
1557
+ #~ msgstr "Möchten Sie alle gelesenen Benachrichtigungen löschen?"
1558
+
1559
+ #~ msgid "Delete all read notifications"
1560
+ #~ msgstr "Alle gelesenen Benachrichtigungen löschen"
1561
+
1562
+ #~ msgid "Delete all"
1563
+ #~ msgstr "Alle löschen"
1564
+
1565
+ #~ msgid "Notification: {{title}}"
1566
+ #~ msgstr "Benachrichtigung: {{title}}"
1567
+
1568
+ #~ msgid "{} shared a widget with you"
1569
+ #~ msgstr "{} hat ein Widget mit Ihnen geteilt"
1570
+
1571
+ #~ msgid "Check out this Widget."
1572
+ #~ msgstr "\"Schauen Sie sich dieses Fenster an."
1573
+
1574
+ #, python-brace-format
1575
+ #~ msgid "Delete {name}: {object}"
1576
+ #~ msgstr "Lösche {name}: {object}"
1577
+
1578
+ #, python-brace-format
1579
+ #~ msgid "Delete {name}"
1580
+ #~ msgstr "Lösche {name}"