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,1234 @@
1
+ # SOME DESCRIPTIVE TITLE.
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: PACKAGE VERSION\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2025-05-30 13:27+0200\n"
11
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "Language: \n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+
19
+ #: admin.py:38 contrib/example_app/viewsets/displays/league.py:151
20
+ #: contrib/example_app/viewsets/displays/league.py:271
21
+ #: contrib/example_app/viewsets/displays/league.py:346
22
+ #: contrib/example_app/viewsets/displays/team.py:101
23
+ #: contrib/example_app/viewsets/displays/team.py:208
24
+ msgid "Main Information"
25
+ msgstr ""
26
+
27
+ #: admin.py:109
28
+ #, python-brace-format
29
+ msgid "Your CSV file has been imported ( {imports} imported, {errors} errors)"
30
+ msgstr ""
31
+
32
+ #: cache/buttons.py:19 cache/buttons.py:20 cache/buttons.py:21
33
+ #: cache/buttons.py:22
34
+ msgid "Clear Cache"
35
+ msgstr ""
36
+
37
+ #: configurations/configurations/wbcore.py:22
38
+ msgid "Check out our upcoming beta version"
39
+ msgstr ""
40
+
41
+ #: contrib/currency/viewsets/display/currency.py:32
42
+ msgid "Rates"
43
+ msgstr ""
44
+
45
+ #: contrib/example_app/filters/event.py:18 contrib/example_app/models.py:125
46
+ #: contrib/example_app/viewsets/menu/menus.py:30
47
+ #: contrib/example_app/viewsets/menu/menus.py:94
48
+ #: contrib/example_app/viewsets/titles/person.py:9
49
+ msgid "Persons"
50
+ msgstr ""
51
+
52
+ #: contrib/example_app/filters/event.py:24
53
+ #: contrib/example_app/filters/event.py:25
54
+ #: contrib/example_app/filters/event.py:72
55
+ #: contrib/example_app/filters/event.py:73 contrib/example_app/models.py:831
56
+ #: contrib/example_app/serializers/match_event.py:129
57
+ #: contrib/example_app/viewsets/displays/event.py:20
58
+ msgid "Minute"
59
+ msgstr ""
60
+
61
+ #: contrib/example_app/filters/event.py:27 contrib/example_app/models.py:923
62
+ #: contrib/example_app/viewsets/displays/sport.py:52
63
+ #: contrib/example_app/viewsets/displays/sport.py:56
64
+ #: contrib/example_app/viewsets/menu/menus.py:83
65
+ #: contrib/example_app/viewsets/titles/event.py:26
66
+ msgid "Event Types"
67
+ msgstr ""
68
+
69
+ #: contrib/example_app/filters/event.py:41 contrib/example_app/models.py:586
70
+ #: contrib/example_app/models.py:829
71
+ #: contrib/example_app/viewsets/displays/event.py:17
72
+ #: contrib/example_app/viewsets/titles/match.py:15
73
+ msgid "Match"
74
+ msgstr ""
75
+
76
+ #: contrib/example_app/filters/event.py:50
77
+ #: contrib/example_app/filters/event.py:51
78
+ #: contrib/example_app/filters/teamresult.py:15
79
+ #: contrib/example_app/filters/teamresult.py:16
80
+ #: contrib/example_app/filters/teamresult.py:30
81
+ #: contrib/example_app/models.py:267 contrib/example_app/models.py:883
82
+ #: contrib/example_app/viewsets/displays/event.py:12
83
+ #: contrib/example_app/viewsets/displays/teamresult.py:17
84
+ msgid "Points"
85
+ msgstr ""
86
+
87
+ #: contrib/example_app/filters/event.py:63
88
+ #: contrib/example_app/filters/league.py:70
89
+ #: contrib/example_app/filters/match.py:54 contrib/example_app/models.py:163
90
+ #: contrib/example_app/viewsets/menu/menus.py:38
91
+ #: contrib/example_app/viewsets/titles/sport.py:8
92
+ msgid "Sports"
93
+ msgstr ""
94
+
95
+ #: contrib/example_app/filters/event.py:75
96
+ msgid "Period"
97
+ msgstr ""
98
+
99
+ #: contrib/example_app/filters/league.py:10
100
+ #: contrib/example_app/filters/league.py:15 contrib/example_app/models.py:193
101
+ msgid "Established Date"
102
+ msgstr ""
103
+
104
+ #: contrib/example_app/filters/league.py:20
105
+ msgid "Commissioners"
106
+ msgstr ""
107
+
108
+ #: contrib/example_app/filters/league.py:27
109
+ msgid "Countries"
110
+ msgstr ""
111
+
112
+ #: contrib/example_app/filters/league.py:35
113
+ #: contrib/example_app/filters/teamresult.py:9
114
+ #: contrib/example_app/models.py:258 contrib/example_app/models.py:722
115
+ #: contrib/example_app/viewsets/displays/event.py:70
116
+ #: contrib/example_app/viewsets/displays/teamresult.py:9
117
+ #: contrib/example_app/viewsets/menus.py:6
118
+ #: contrib/example_app/viewsets/titles/team.py:15
119
+ msgid "Team"
120
+ msgstr ""
121
+
122
+ #: contrib/example_app/filters/league.py:42
123
+ #: contrib/example_app/filters/league.py:45 contrib/example_app/models.py:203
124
+ #: contrib/example_app/viewsets/displays/league.py:23
125
+ msgid "Points Per Win"
126
+ msgstr ""
127
+
128
+ #: contrib/example_app/filters/league.py:48
129
+ #: contrib/example_app/filters/league.py:51 contrib/example_app/models.py:204
130
+ #: contrib/example_app/viewsets/displays/league.py:24
131
+ msgid "Points Per Draw"
132
+ msgstr ""
133
+
134
+ #: contrib/example_app/filters/league.py:54
135
+ #: contrib/example_app/filters/league.py:57 contrib/example_app/models.py:205
136
+ #: contrib/example_app/viewsets/displays/league.py:25
137
+ msgid "Points Per Loss"
138
+ msgstr ""
139
+
140
+ #: contrib/example_app/filters/match.py:16
141
+ #: contrib/example_app/filters/match.py:21 contrib/example_app/models.py:389
142
+ #: contrib/example_app/viewsets/displays/match.py:24
143
+ msgid "Date Time"
144
+ msgstr ""
145
+
146
+ #: contrib/example_app/filters/match.py:26 contrib/example_app/models.py:381
147
+ #: contrib/example_app/viewsets/displays/match.py:19
148
+ msgid "Home"
149
+ msgstr ""
150
+
151
+ #: contrib/example_app/filters/match.py:33 contrib/example_app/models.py:387
152
+ #: contrib/example_app/viewsets/displays/match.py:21
153
+ msgid "Away"
154
+ msgstr ""
155
+
156
+ #: contrib/example_app/filters/match.py:39
157
+ #: contrib/example_app/filters/match.py:40 contrib/example_app/models.py:401
158
+ #: contrib/example_app/viewsets/displays/match.py:20
159
+ msgid "Home Score"
160
+ msgstr ""
161
+
162
+ #: contrib/example_app/filters/match.py:41
163
+ #: contrib/example_app/filters/match.py:42 contrib/example_app/models.py:402
164
+ #: contrib/example_app/viewsets/displays/match.py:22
165
+ msgid "Away Score"
166
+ msgstr ""
167
+
168
+ #: contrib/example_app/filters/match.py:44
169
+ msgid "Referees"
170
+ msgstr ""
171
+
172
+ #: contrib/example_app/filters/match.py:51 contrib/example_app/models.py:398
173
+ msgid "Status"
174
+ msgstr ""
175
+
176
+ #: contrib/example_app/filters/match.py:68
177
+ #: contrib/example_app/filters/match.py:88
178
+ #: contrib/example_app/filters/team.py:73 contrib/example_app/models.py:359
179
+ #: contrib/example_app/viewsets/menu/menus.py:22
180
+ #: contrib/example_app/viewsets/titles/stadium.py:8
181
+ msgid "Stadiums"
182
+ msgstr ""
183
+
184
+ #: contrib/example_app/filters/match.py:78 contrib/example_app/models.py:227
185
+ #: contrib/example_app/viewsets/displays/sport.py:31
186
+ #: contrib/example_app/viewsets/displays/sport.py:35
187
+ #: contrib/example_app/viewsets/menu/menus.py:14
188
+ #: contrib/example_app/viewsets/menu/menus.py:98
189
+ #: contrib/example_app/viewsets/titles/league.py:9
190
+ msgid "Leagues"
191
+ msgstr ""
192
+
193
+ #: contrib/example_app/filters/person.py:10
194
+ msgid "Participating In"
195
+ msgstr ""
196
+
197
+ #: contrib/example_app/filters/person.py:16
198
+ msgid "All persons participating in a selected Match."
199
+ msgstr ""
200
+
201
+ #: contrib/example_app/filters/person.py:38 contrib/example_app/models.py:69
202
+ #: contrib/example_app/models.py:73
203
+ #: contrib/example_app/serializers/person_team.py:209
204
+ #: contrib/example_app/viewsets/displays/person.py:13
205
+ #: contrib/example_app/viewsets/menu/menus.py:59
206
+ #: contrib/example_app/viewsets/titles/role.py:8
207
+ msgid "Roles"
208
+ msgstr ""
209
+
210
+ #: contrib/example_app/filters/person.py:55 contrib/example_app/models.py:760
211
+ #: contrib/example_app/viewsets/displays/person.py:19
212
+ msgid "Former Teams"
213
+ msgstr ""
214
+
215
+ #: contrib/example_app/filters/person.py:61
216
+ #: contrib/example_app/filters/person.py:62 contrib/example_app/models.py:766
217
+ #: contrib/example_app/viewsets/displays/person.py:22
218
+ msgid "Market Value"
219
+ msgstr ""
220
+
221
+ #: contrib/example_app/filters/person.py:73
222
+ msgid "Current Teams"
223
+ msgstr ""
224
+
225
+ #: contrib/example_app/filters/role.py:9
226
+ msgid "Associated Person"
227
+ msgstr ""
228
+
229
+ #: contrib/example_app/filters/sport.py:9
230
+ msgid "Associated League"
231
+ msgstr ""
232
+
233
+ #: contrib/example_app/filters/sport.py:16
234
+ #: contrib/example_app/filters/sport.py:19
235
+ #: contrib/example_app/viewsets/displays/sport.py:22
236
+ msgid "Match Duration"
237
+ msgstr ""
238
+
239
+ #: contrib/example_app/filters/stadium.py:9
240
+ #: contrib/example_app/filters/stadium.py:10
241
+ #: contrib/example_app/viewsets/displays/stadium.py:26
242
+ msgid "Capacity"
243
+ msgstr ""
244
+
245
+ #: contrib/example_app/filters/stadium.py:12
246
+ msgid "Team Playing"
247
+ msgstr ""
248
+
249
+ #: contrib/example_app/filters/stadium.py:19
250
+ #: contrib/example_app/filters/team.py:42
251
+ msgid "Cities"
252
+ msgstr ""
253
+
254
+ #: contrib/example_app/filters/team.py:11
255
+ #: contrib/example_app/filters/team.py:16 contrib/example_app/models.py:658
256
+ #: contrib/example_app/viewsets/displays/team.py:19
257
+ msgid "Founded Date"
258
+ msgstr ""
259
+
260
+ #: contrib/example_app/filters/team.py:21
261
+ msgid "Coaches"
262
+ msgstr ""
263
+
264
+ #: contrib/example_app/filters/team.py:28
265
+ msgid "Current Player"
266
+ msgstr ""
267
+
268
+ #: contrib/example_app/filters/team.py:35
269
+ msgid "Former Player"
270
+ msgstr ""
271
+
272
+ #: contrib/example_app/filters/team.py:59
273
+ msgid "Opponent"
274
+ msgstr ""
275
+
276
+ #: contrib/example_app/filters/teamresult.py:18
277
+ #: contrib/example_app/filters/teamresult.py:21
278
+ #: contrib/example_app/models.py:268
279
+ #: contrib/example_app/viewsets/displays/teamresult.py:14
280
+ msgid "Match Points For"
281
+ msgstr ""
282
+
283
+ #: contrib/example_app/filters/teamresult.py:24
284
+ #: contrib/example_app/filters/teamresult.py:27
285
+ #: contrib/example_app/models.py:269
286
+ #: contrib/example_app/viewsets/displays/teamresult.py:15
287
+ msgid "Match Points Against"
288
+ msgstr ""
289
+
290
+ #: contrib/example_app/filters/teamresult.py:29
291
+ #: contrib/example_app/models.py:271
292
+ #: contrib/example_app/viewsets/displays/teamresult.py:11
293
+ msgid "Wins"
294
+ msgstr ""
295
+
296
+ #: contrib/example_app/filters/teamresult.py:31
297
+ #: contrib/example_app/filters/teamresult.py:32
298
+ #: contrib/example_app/models.py:272
299
+ #: contrib/example_app/viewsets/displays/teamresult.py:12
300
+ msgid "Draws"
301
+ msgstr ""
302
+
303
+ #: contrib/example_app/filters/teamresult.py:33
304
+ #: contrib/example_app/filters/teamresult.py:34
305
+ #: contrib/example_app/models.py:273
306
+ #: contrib/example_app/viewsets/displays/teamresult.py:13
307
+ msgid "Losses"
308
+ msgstr ""
309
+
310
+ #: contrib/example_app/filters/teamresult.py:43
311
+ #: contrib/example_app/models.py:226 contrib/example_app/models.py:264
312
+ #: contrib/example_app/models.py:416
313
+ #: contrib/example_app/viewsets/displays/match.py:23
314
+ #: contrib/example_app/viewsets/displays/season.py:12
315
+ #: contrib/example_app/viewsets/displays/season.py:25
316
+ #: contrib/example_app/viewsets/displays/teamresult.py:8
317
+ #: contrib/example_app/viewsets/event.py:137
318
+ #: contrib/example_app/viewsets/menus.py:14
319
+ #: contrib/example_app/viewsets/titles/league.py:15
320
+ msgid "League"
321
+ msgstr ""
322
+
323
+ #: contrib/example_app/models.py:39
324
+ #: contrib/example_app/viewsets/displays/role.py:14
325
+ msgid "Title"
326
+ msgstr ""
327
+
328
+ #: contrib/example_app/models.py:68
329
+ #: contrib/example_app/viewsets/titles/role.py:14
330
+ msgid "Role"
331
+ msgstr ""
332
+
333
+ #: contrib/example_app/models.py:74
334
+ #: contrib/example_app/viewsets/displays/person.py:11
335
+ msgid "First Name"
336
+ msgstr ""
337
+
338
+ #: contrib/example_app/models.py:75
339
+ #: contrib/example_app/viewsets/displays/person.py:12
340
+ msgid "Last Name"
341
+ msgstr ""
342
+
343
+ #: contrib/example_app/models.py:93
344
+ #, python-brace-format
345
+ msgid " (Coach of {self.coached_team.name})"
346
+ msgstr ""
347
+
348
+ #: contrib/example_app/models.py:95
349
+ msgid " (Commissioner of {self.commissioned_leagues.first().name})"
350
+ msgstr ""
351
+
352
+ #: contrib/example_app/models.py:124 contrib/example_app/models.py:823
353
+ #: contrib/example_app/serializers/match_event.py:117
354
+ #: contrib/example_app/viewsets/displays/event.py:19
355
+ #: contrib/example_app/viewsets/displays/event.py:63
356
+ #: contrib/example_app/viewsets/displays/person.py:79
357
+ #: contrib/example_app/viewsets/displays/person.py:152
358
+ #: contrib/example_app/viewsets/displays/person.py:188
359
+ #: contrib/example_app/viewsets/titles/person.py:15
360
+ msgid "Person"
361
+ msgstr ""
362
+
363
+ #: contrib/example_app/models.py:129 contrib/example_app/models.py:177
364
+ #: contrib/example_app/models.py:308 contrib/example_app/models.py:881
365
+ #: contrib/example_app/viewsets/displays/event.py:10
366
+ #: contrib/example_app/viewsets/displays/league.py:21
367
+ #: contrib/example_app/viewsets/displays/person.py:171
368
+ #: contrib/example_app/viewsets/displays/sport.py:21
369
+ #: contrib/example_app/viewsets/displays/stadium.py:21
370
+ #: contrib/example_app/viewsets/displays/team.py:24
371
+ #: contrib/example_app/viewsets/displays/team.py:197 utils/models.py:64
372
+ msgid "Name"
373
+ msgstr ""
374
+
375
+ #: contrib/example_app/models.py:131
376
+ #: contrib/example_app/viewsets/displays/sport.py:23
377
+ msgid "Rules"
378
+ msgstr ""
379
+
380
+ #: contrib/example_app/models.py:132
381
+ msgid "Match Duration (min)"
382
+ msgstr ""
383
+
384
+ #: contrib/example_app/models.py:162 contrib/example_app/models.py:182
385
+ #: contrib/example_app/models.py:429 contrib/example_app/models.py:891
386
+ #: contrib/example_app/viewsets/displays/event.py:11
387
+ #: contrib/example_app/viewsets/displays/league.py:22
388
+ #: contrib/example_app/viewsets/menus.py:38
389
+ #: contrib/example_app/viewsets/titles/sport.py:14
390
+ msgid "Sport"
391
+ msgstr ""
392
+
393
+ #: contrib/example_app/models.py:191
394
+ #: contrib/example_app/viewsets/displays/league.py:26
395
+ msgid "Country"
396
+ msgstr ""
397
+
398
+ #: contrib/example_app/models.py:200
399
+ #: contrib/example_app/viewsets/displays/league.py:28
400
+ msgid "Commissioner"
401
+ msgstr ""
402
+
403
+ #: contrib/example_app/models.py:202 contrib/example_app/models.py:689
404
+ #: contrib/example_app/viewsets/displays/league.py:29
405
+ msgid "Website"
406
+ msgstr ""
407
+
408
+ #: contrib/example_app/models.py:212 contrib/example_app/models.py:723
409
+ #: contrib/example_app/viewsets/displays/stadium.py:62
410
+ #: contrib/example_app/viewsets/displays/stadium.py:66
411
+ #: contrib/example_app/viewsets/menu/menus.py:6
412
+ #: contrib/example_app/viewsets/titles/team.py:9
413
+ msgid "Teams"
414
+ msgstr ""
415
+
416
+ #: contrib/example_app/models.py:270
417
+ #: contrib/example_app/viewsets/displays/teamresult.py:16
418
+ msgid "Match Point Difference"
419
+ msgstr ""
420
+
421
+ #: contrib/example_app/models.py:274
422
+ #: contrib/example_app/viewsets/displays/teamresult.py:18
423
+ msgid "Form"
424
+ msgstr ""
425
+
426
+ #: contrib/example_app/models.py:277
427
+ msgid "{} in {}"
428
+ msgstr ""
429
+
430
+ #: contrib/example_app/models.py:284
431
+ msgid "Team Result"
432
+ msgstr ""
433
+
434
+ #: contrib/example_app/models.py:285
435
+ #: contrib/example_app/viewsets/titles/teamresult.py:8
436
+ msgid "Team Results"
437
+ msgstr ""
438
+
439
+ #: contrib/example_app/models.py:315 contrib/example_app/models.py:654
440
+ #: contrib/example_app/viewsets/displays/stadium.py:22
441
+ #: contrib/example_app/viewsets/displays/team.py:18
442
+ msgid "City"
443
+ msgstr ""
444
+
445
+ #: contrib/example_app/models.py:319
446
+ msgid "Standing Capacity"
447
+ msgstr ""
448
+
449
+ #: contrib/example_app/models.py:320
450
+ msgid "Seating Capacity"
451
+ msgstr ""
452
+
453
+ #: contrib/example_app/models.py:324
454
+ msgid "Guest Rating"
455
+ msgstr ""
456
+
457
+ #: contrib/example_app/models.py:358 contrib/example_app/models.py:394
458
+ #: contrib/example_app/viewsets/displays/match.py:25
459
+ #: contrib/example_app/viewsets/menus.py:22
460
+ #: contrib/example_app/viewsets/titles/stadium.py:14
461
+ msgid "Stadium"
462
+ msgstr ""
463
+
464
+ #: contrib/example_app/models.py:364
465
+ msgid "Scheduled"
466
+ msgstr ""
467
+
468
+ #: contrib/example_app/models.py:365
469
+ msgid "Ongoing"
470
+ msgstr ""
471
+
472
+ #: contrib/example_app/models.py:366
473
+ msgid "Finished"
474
+ msgstr ""
475
+
476
+ #: contrib/example_app/models.py:451 reversion/viewsets/buttons.py:44
477
+ #: utils/serializers.py:8
478
+ msgid "Start"
479
+ msgstr ""
480
+
481
+ #: contrib/example_app/models.py:452
482
+ msgid "Starting"
483
+ msgstr ""
484
+
485
+ #: contrib/example_app/models.py:453
486
+ msgid "Are you sure you want to start the match?"
487
+ msgstr ""
488
+
489
+ #: contrib/example_app/models.py:471 utils/serializers.py:9
490
+ msgid "End"
491
+ msgstr ""
492
+
493
+ #: contrib/example_app/models.py:472
494
+ msgid "Ending"
495
+ msgstr ""
496
+
497
+ #: contrib/example_app/models.py:473
498
+ msgid "Are you sure you want to end the match?"
499
+ msgstr ""
500
+
501
+ #: contrib/example_app/models.py:587
502
+ #: contrib/example_app/viewsets/menu/menus.py:67
503
+ #: contrib/example_app/viewsets/titles/match.py:9
504
+ msgid "Matches"
505
+ msgstr ""
506
+
507
+ #: contrib/example_app/models.py:665
508
+ #: contrib/example_app/viewsets/buttons/team.py:17
509
+ #: contrib/example_app/viewsets/displays/team.py:20
510
+ msgid "Coach"
511
+ msgstr ""
512
+
513
+ #: contrib/example_app/models.py:673
514
+ #: contrib/example_app/serializers/person_team.py:86
515
+ #: contrib/example_app/viewsets/displays/team.py:21
516
+ msgid "Home Stadium"
517
+ msgstr ""
518
+
519
+ #: contrib/example_app/models.py:680
520
+ msgid "Opponents"
521
+ msgstr ""
522
+
523
+ #: contrib/example_app/models.py:686
524
+ msgid "Email Address"
525
+ msgstr ""
526
+
527
+ #: contrib/example_app/models.py:687
528
+ msgid "Phone Number"
529
+ msgstr ""
530
+
531
+ #: contrib/example_app/models.py:747
532
+ #: contrib/example_app/viewsets/displays/person.py:17
533
+ msgid "Position"
534
+ msgstr ""
535
+
536
+ #: contrib/example_app/models.py:754
537
+ #: contrib/example_app/serializers/person_team.py:214
538
+ #: contrib/example_app/viewsets/displays/person.py:18
539
+ msgid "Current Team"
540
+ msgstr ""
541
+
542
+ #: contrib/example_app/models.py:768
543
+ msgid "Is Active"
544
+ msgstr ""
545
+
546
+ #: contrib/example_app/models.py:769
547
+ msgid "Is Injured"
548
+ msgstr ""
549
+
550
+ #: contrib/example_app/models.py:773
551
+ msgid "Player Strength"
552
+ msgstr ""
553
+
554
+ #: contrib/example_app/models.py:778
555
+ msgid "Game Activity"
556
+ msgstr ""
557
+
558
+ #: contrib/example_app/models.py:790
559
+ #, python-brace-format
560
+ msgid " ({self.position} at {self.current_team.name})"
561
+ msgstr ""
562
+
563
+ #: contrib/example_app/models.py:792
564
+ #, python-brace-format
565
+ msgid " ({self.current_team.name})"
566
+ msgstr ""
567
+
568
+ #: contrib/example_app/models.py:813
569
+ #: contrib/example_app/viewsets/displays/person.py:113
570
+ #: contrib/example_app/viewsets/displays/person.py:220
571
+ #: contrib/example_app/viewsets/menus.py:46
572
+ #: contrib/example_app/viewsets/titles/person.py:26
573
+ msgid "Player"
574
+ msgstr ""
575
+
576
+ #: contrib/example_app/models.py:814
577
+ #: contrib/example_app/viewsets/displays/team.py:54
578
+ #: contrib/example_app/viewsets/displays/team.py:58
579
+ #: contrib/example_app/viewsets/menu/menus.py:51
580
+ #: contrib/example_app/viewsets/titles/person.py:20
581
+ msgid "Players"
582
+ msgstr ""
583
+
584
+ #: contrib/example_app/models.py:818
585
+ msgid "Event Description"
586
+ msgstr ""
587
+
588
+ #: contrib/example_app/models.py:836 contrib/example_app/models.py:922
589
+ #: contrib/example_app/viewsets/displays/event.py:18
590
+ #: contrib/example_app/viewsets/titles/event.py:32
591
+ msgid "Event Type"
592
+ msgstr ""
593
+
594
+ #: contrib/example_app/models.py:870
595
+ #: contrib/example_app/viewsets/titles/event.py:15
596
+ msgid "Event"
597
+ msgstr ""
598
+
599
+ #: contrib/example_app/models.py:871
600
+ #: contrib/example_app/viewsets/displays/match.py:60
601
+ #: contrib/example_app/viewsets/displays/match.py:64
602
+ #: contrib/example_app/viewsets/menu/menus.py:75
603
+ #: contrib/example_app/viewsets/menu/menus.py:101
604
+ #: contrib/example_app/viewsets/titles/event.py:9
605
+ msgid "Events"
606
+ msgstr ""
607
+
608
+ #: contrib/example_app/models.py:884
609
+ msgid "Number of points awarded to a player's team per event"
610
+ msgstr ""
611
+
612
+ #: contrib/example_app/models.py:895
613
+ #: contrib/example_app/viewsets/displays/event.py:13 utils/models.py:259
614
+ msgid "Icon"
615
+ msgstr ""
616
+
617
+ #: contrib/example_app/models.py:975
618
+ #: contrib/example_app/viewsets/displays/season.py:37
619
+ #: contrib/example_app/viewsets/menu/menus.py:46
620
+ msgid "Season"
621
+ msgstr ""
622
+
623
+ #: contrib/example_app/models.py:976
624
+ msgid "Seasons"
625
+ msgstr ""
626
+
627
+ #: contrib/example_app/serializers/league.py:20
628
+ msgid "A league with this name already exists for this type of sport."
629
+ msgstr ""
630
+
631
+ #: contrib/example_app/serializers/league.py:21
632
+ #: contrib/example_app/serializers/person_team.py:28
633
+ msgid "The founding date must be in the past."
634
+ msgstr ""
635
+
636
+ #: contrib/example_app/serializers/match_event.py:37
637
+ msgid "Team cannot play against itself."
638
+ msgstr ""
639
+
640
+ #: contrib/example_app/serializers/match_event.py:38
641
+ msgid "A match between these teams at this time already exists."
642
+ msgstr ""
643
+
644
+ #: contrib/example_app/serializers/match_event.py:39
645
+ msgid "League doesn't match the specified sport."
646
+ msgstr ""
647
+
648
+ #: contrib/example_app/serializers/match_event.py:43
649
+ msgid "An event type with this name already exists for this sport."
650
+ msgstr ""
651
+
652
+ #: contrib/example_app/serializers/match_event.py:47
653
+ msgid "This event already exists."
654
+ msgstr ""
655
+
656
+ #: contrib/example_app/serializers/match_event.py:48
657
+ msgid "Event outside of match duration."
658
+ msgstr ""
659
+
660
+ #: contrib/example_app/serializers/match_event.py:49
661
+ msgid "Please select a {} event type."
662
+ msgstr ""
663
+
664
+ #: contrib/example_app/serializers/match_event.py:138
665
+ msgid "Event outside of match duration ({} min)."
666
+ msgstr ""
667
+
668
+ #: contrib/example_app/serializers/person_team.py:27
669
+ msgid "A team with this name already exists."
670
+ msgstr ""
671
+
672
+ #: contrib/example_app/serializers/person_team.py:83
673
+ msgid "Enter team name here"
674
+ msgstr ""
675
+
676
+ #: contrib/example_app/serializers/person_team.py:92
677
+ msgctxt "Phonenumber"
678
+ msgid "Number"
679
+ msgstr ""
680
+
681
+ #: contrib/example_app/serializers/person_team.py:112
682
+ msgid "Invalid e-mail address"
683
+ msgstr ""
684
+
685
+ #: contrib/example_app/serializers/person_team.py:124
686
+ msgid "Invalid phone number format"
687
+ msgstr ""
688
+
689
+ #: contrib/example_app/serializers/person_team.py:221
690
+ msgid "Activity Heat"
691
+ msgstr ""
692
+
693
+ #: contrib/example_app/serializers/person_team.py:244
694
+ msgid "Rating must be between 0 and 5."
695
+ msgstr ""
696
+
697
+ #: contrib/example_app/serializers/stadium.py:17
698
+ msgid "Guest rating must be between 0 and 4."
699
+ msgstr ""
700
+
701
+ #: contrib/example_app/serializers/teamresult.py:15
702
+ msgid "Results for this team and league already exist."
703
+ msgstr ""
704
+
705
+ #: contrib/example_app/serializers/teamresult.py:21
706
+ #: contrib/example_app/viewsets/displays/teamresult.py:10
707
+ msgid "Games"
708
+ msgstr ""
709
+
710
+ #: contrib/example_app/viewsets/buttons/person.py:14
711
+ msgid "Statistics"
712
+ msgstr ""
713
+
714
+ #: contrib/example_app/viewsets/buttons/team.py:12
715
+ msgid "Website & Coach"
716
+ msgstr ""
717
+
718
+ #: contrib/example_app/viewsets/buttons/team.py:15
719
+ msgid "Homepage"
720
+ msgstr ""
721
+
722
+ #: contrib/example_app/viewsets/displays/event.py:14 utils/models.py:249
723
+ msgid "Color"
724
+ msgstr ""
725
+
726
+ #: contrib/example_app/viewsets/displays/event.py:63
727
+ #: contrib/example_app/viewsets/displays/event.py:70
728
+ msgid " "
729
+ msgstr ""
730
+
731
+ #: contrib/example_app/viewsets/displays/league.py:27
732
+ msgid "Established"
733
+ msgstr ""
734
+
735
+ #: contrib/example_app/viewsets/displays/league.py:41
736
+ #: contrib/example_app/viewsets/displays/league.py:45
737
+ #: contrib/example_app/viewsets/displays/stadium.py:41
738
+ #: contrib/example_app/viewsets/displays/stadium.py:45
739
+ #: contrib/example_app/viewsets/displays/team.py:76
740
+ #: contrib/example_app/viewsets/displays/team.py:80
741
+ msgid "Recent Matches"
742
+ msgstr ""
743
+
744
+ #: contrib/example_app/viewsets/displays/league.py:63
745
+ #: contrib/example_app/viewsets/displays/league.py:67
746
+ #: contrib/example_app/viewsets/titles/teamresult.py:13
747
+ msgid "Table"
748
+ msgstr ""
749
+
750
+ #: contrib/example_app/viewsets/displays/league.py:211
751
+ msgid "Player Statistics"
752
+ msgstr ""
753
+
754
+ #: contrib/example_app/viewsets/displays/league.py:242
755
+ msgid "Team Statistics"
756
+ msgstr ""
757
+
758
+ #: contrib/example_app/viewsets/displays/league.py:306
759
+ #: contrib/example_app/viewsets/displays/league.py:367
760
+ #: contrib/example_app/viewsets/displays/team.py:165
761
+ #: contrib/example_app/viewsets/displays/team.py:234
762
+ msgid "Details"
763
+ msgstr ""
764
+
765
+ #: contrib/example_app/viewsets/displays/match.py:26
766
+ msgid "Referee"
767
+ msgstr ""
768
+
769
+ #: contrib/example_app/viewsets/displays/match.py:82
770
+ msgid "Score"
771
+ msgstr ""
772
+
773
+ #: contrib/example_app/viewsets/displays/match.py:98
774
+ msgid "Match Details"
775
+ msgstr ""
776
+
777
+ #: contrib/example_app/viewsets/displays/person.py:20
778
+ #: contrib/example_app/viewsets/displays/stadium.py:23
779
+ msgid "Rating"
780
+ msgstr ""
781
+
782
+ #: contrib/example_app/viewsets/displays/person.py:21
783
+ msgid "Activities"
784
+ msgstr ""
785
+
786
+ #: contrib/example_app/viewsets/displays/season.py:11
787
+ #: contrib/example_app/viewsets/displays/season.py:24
788
+ msgid "Season Name"
789
+ msgstr ""
790
+
791
+ #: contrib/example_app/viewsets/displays/season.py:13
792
+ #: contrib/example_app/viewsets/displays/season.py:28
793
+ msgid "Range"
794
+ msgstr ""
795
+
796
+ #: contrib/example_app/viewsets/displays/season.py:14
797
+ msgid "Duration"
798
+ msgstr ""
799
+
800
+ #: contrib/example_app/viewsets/displays/season.py:15
801
+ #: contrib/example_app/viewsets/displays/season.py:26
802
+ msgid "Winner"
803
+ msgstr ""
804
+
805
+ #: contrib/example_app/viewsets/displays/season.py:16
806
+ #: contrib/example_app/viewsets/displays/season.py:27
807
+ msgid "Top Scorer"
808
+ msgstr ""
809
+
810
+ #: contrib/example_app/viewsets/displays/stadium.py:29
811
+ msgid "Total Capacity"
812
+ msgstr ""
813
+
814
+ #: contrib/example_app/viewsets/displays/stadium.py:30
815
+ msgid "Seated"
816
+ msgstr ""
817
+
818
+ #: contrib/example_app/viewsets/displays/stadium.py:31
819
+ msgid "Standing"
820
+ msgstr ""
821
+
822
+ #: contrib/example_app/viewsets/event.py:138
823
+ msgid "Amount"
824
+ msgstr ""
825
+
826
+ #: contrib/example_app/viewsets/match.py:62
827
+ msgid "Home team's home stadium not selected!"
828
+ msgstr ""
829
+
830
+ #: contrib/example_app/viewsets/menu/menus.py:9
831
+ #: contrib/example_app/viewsets/menus.py:9
832
+ #: contrib/example_app/viewsets/titles/team.py:12
833
+ msgid "Create Team"
834
+ msgstr ""
835
+
836
+ #: contrib/example_app/viewsets/menu/menus.py:17
837
+ #: contrib/example_app/viewsets/menus.py:17
838
+ #: contrib/example_app/viewsets/titles/league.py:12
839
+ msgid "Create League"
840
+ msgstr ""
841
+
842
+ #: contrib/example_app/viewsets/menu/menus.py:25
843
+ #: contrib/example_app/viewsets/menus.py:25
844
+ #: contrib/example_app/viewsets/titles/stadium.py:11
845
+ msgid "Create Stadium"
846
+ msgstr ""
847
+
848
+ #: contrib/example_app/viewsets/menu/menus.py:33
849
+ #: contrib/example_app/viewsets/titles/person.py:12
850
+ msgid "Create Person"
851
+ msgstr ""
852
+
853
+ #: contrib/example_app/viewsets/menu/menus.py:41
854
+ #: contrib/example_app/viewsets/menus.py:41
855
+ #: contrib/example_app/viewsets/titles/sport.py:11
856
+ msgid "Create Sport"
857
+ msgstr ""
858
+
859
+ #: contrib/example_app/viewsets/menu/menus.py:48
860
+ msgid "Create Season"
861
+ msgstr ""
862
+
863
+ #: contrib/example_app/viewsets/menu/menus.py:54
864
+ #: contrib/example_app/viewsets/titles/person.py:23
865
+ msgid "Create Player"
866
+ msgstr ""
867
+
868
+ #: contrib/example_app/viewsets/menu/menus.py:62
869
+ #: contrib/example_app/viewsets/titles/role.py:11
870
+ msgid "Create Role"
871
+ msgstr ""
872
+
873
+ #: contrib/example_app/viewsets/menu/menus.py:70
874
+ #: contrib/example_app/viewsets/titles/match.py:12
875
+ msgid "Create Match"
876
+ msgstr ""
877
+
878
+ #: contrib/example_app/viewsets/menu/menus.py:78
879
+ #: contrib/example_app/viewsets/titles/event.py:12
880
+ msgid "Create Event"
881
+ msgstr ""
882
+
883
+ #: contrib/example_app/viewsets/menu/menus.py:86
884
+ #: contrib/example_app/viewsets/titles/event.py:29
885
+ msgid "Create Event Type"
886
+ msgstr ""
887
+
888
+ #: contrib/example_app/viewsets/menus.py:30
889
+ msgid "Figure"
890
+ msgstr ""
891
+
892
+ #: contrib/example_app/viewsets/menus.py:33
893
+ msgid "Create Figure"
894
+ msgstr ""
895
+
896
+ #: contrib/example_app/viewsets/menus.py:49
897
+ msgid "Create player"
898
+ msgstr ""
899
+
900
+ #: contrib/example_app/viewsets/titles/event.py:21
901
+ msgid "Player Statistics {}"
902
+ msgstr ""
903
+
904
+ #: contrib/example_app/viewsets/titles/event.py:39
905
+ msgid "Create {} Event Type"
906
+ msgstr ""
907
+
908
+ #: contrib/example_app/viewsets/titles/league.py:22
909
+ msgid "Create {} League"
910
+ msgstr ""
911
+
912
+ #: contrib/example_app/viewsets/titles/match.py:22
913
+ #: contrib/example_app/viewsets/titles/match.py:32
914
+ msgid "Create Match In {}"
915
+ msgstr ""
916
+
917
+ #: contrib/example_app/viewsets/titles/person.py:33
918
+ msgid "Create Player For {}"
919
+ msgstr ""
920
+
921
+ #: contrib/example_app/viewsets/titles/team.py:22
922
+ msgid "Create Team In {}"
923
+ msgstr ""
924
+
925
+ #: contrib/guardian/models/mixins.py:25
926
+ msgid "Internal"
927
+ msgstr ""
928
+
929
+ #: contrib/guardian/models/mixins.py:26
930
+ msgid "Public"
931
+ msgstr ""
932
+
933
+ #: contrib/guardian/models/mixins.py:27
934
+ msgid "Private"
935
+ msgstr ""
936
+
937
+ #: dynamic_preferences_registry.py:18
938
+ msgid "Retention Period in Days"
939
+ msgstr ""
940
+
941
+ #: dynamic_preferences_registry.py:20
942
+ msgid ""
943
+ "When an object cannot be deleted and is disabled instead, it gets hidden "
944
+ "from the queryset but not deleted. For compliance reasons we enable the "
945
+ "retention for a specific period of days (defaults to a year)"
946
+ msgstr ""
947
+
948
+ #: dynamic_preferences_registry.py:31 dynamic_preferences_registry.py:32
949
+ msgid "System User Email"
950
+ msgstr ""
951
+
952
+ #: dynamic_preferences_registry.py:48 dynamic_preferences_registry.py:49
953
+ msgid "System Language"
954
+ msgstr ""
955
+
956
+ #: dynamic_preferences_registry.py:74 dynamic_preferences_registry.py:75
957
+ msgid "Date Format"
958
+ msgstr ""
959
+
960
+ #: dynamic_preferences_registry.py:97 dynamic_preferences_registry.py:98
961
+ msgid "Time Format"
962
+ msgstr ""
963
+
964
+ #: frontend_user_configuration.py:40 frontend_user_configuration.py:41
965
+ msgid "Frontend User Settings"
966
+ msgstr ""
967
+
968
+ #: frontend_user_configuration.py:60
969
+ msgid "Is Root"
970
+ msgstr ""
971
+
972
+ #: frontend_user_configuration.py:62
973
+ msgid "Parent Configuration"
974
+ msgstr ""
975
+
976
+ #: frontend_user_configuration.py:64
977
+ msgid "Config"
978
+ msgstr ""
979
+
980
+ #: markdown/dynamic_preferences_registry.py:15
981
+ msgid "Default Empty Image Placeholder"
982
+ msgstr ""
983
+
984
+ #: markdown/dynamic_preferences_registry.py:16
985
+ msgid "Default empty image placeholder URL"
986
+ msgstr ""
987
+
988
+ #: markdown/models.py:29
989
+ msgid "Asset"
990
+ msgstr ""
991
+
992
+ #: markdown/models.py:30
993
+ msgid "Assets"
994
+ msgstr ""
995
+
996
+ #: metadata/configs/buttons/buttons.py:93
997
+ msgid "<p>Are you sure you want to proceed?</p>"
998
+ msgstr ""
999
+
1000
+ #: metadata/configs/buttons/buttons.py:96 viewsets/utils.py:14
1001
+ msgid "Confirm"
1002
+ msgstr ""
1003
+
1004
+ #: metadata/configs/buttons/buttons.py:98
1005
+ #: metadata/configs/buttons/buttons.py:99 release_notes/buttons.py:22
1006
+ #: viewsets/utils.py:15
1007
+ msgid "Cancel"
1008
+ msgstr ""
1009
+
1010
+ #: metadata/configs/display/instance_display/utils.py:65
1011
+ msgid "Column number has to be at least 1!"
1012
+ msgstr ""
1013
+
1014
+ #: release_notes/buttons.py:16
1015
+ msgid "Reading all release notes"
1016
+ msgstr ""
1017
+
1018
+ #: release_notes/buttons.py:18
1019
+ msgid "Do you want to mark all release notes as read?"
1020
+ msgstr ""
1021
+
1022
+ #: release_notes/buttons.py:19
1023
+ msgid "Mark all as read"
1024
+ msgstr ""
1025
+
1026
+ #: release_notes/buttons.py:21
1027
+ msgid "Read all"
1028
+ msgstr ""
1029
+
1030
+ #: release_notes/display.py:21 release_notes/filters.py:14
1031
+ msgid "Module"
1032
+ msgstr ""
1033
+
1034
+ #: release_notes/display.py:22
1035
+ msgid "Version"
1036
+ msgstr ""
1037
+
1038
+ #: release_notes/display.py:23
1039
+ msgid "Release Date"
1040
+ msgstr ""
1041
+
1042
+ #: release_notes/display.py:24
1043
+ msgid "Summary"
1044
+ msgstr ""
1045
+
1046
+ #: release_notes/display.py:32
1047
+ msgid "Read"
1048
+ msgstr ""
1049
+
1050
+ #: release_notes/display.py:37
1051
+ msgid "Unread"
1052
+ msgstr ""
1053
+
1054
+ #: release_notes/filters.py:17
1055
+ msgid "Read / Unread"
1056
+ msgstr ""
1057
+
1058
+ #: release_notes/models.py:21
1059
+ msgid "The version/identifier of the release"
1060
+ msgstr ""
1061
+
1062
+ #: release_notes/models.py:22
1063
+ msgid "The date when this new version was released"
1064
+ msgstr ""
1065
+
1066
+ #: release_notes/models.py:23
1067
+ msgid "The workbench module of the release"
1068
+ msgstr ""
1069
+
1070
+ #: release_notes/models.py:24
1071
+ msgid "A brief summary of the release"
1072
+ msgstr ""
1073
+
1074
+ #: release_notes/models.py:25
1075
+ msgid "What's new? What's improved? What's fixed?"
1076
+ msgstr ""
1077
+
1078
+ #: release_notes/models.py:59
1079
+ msgid "Release Note"
1080
+ msgstr ""
1081
+
1082
+ #: release_notes/models.py:60
1083
+ msgid "Release Notes"
1084
+ msgstr ""
1085
+
1086
+ #: reversion/viewsets/buttons.py:29
1087
+ msgid "Compare in Admin"
1088
+ msgstr ""
1089
+
1090
+ #: reversion/viewsets/buttons.py:55 reversion/viewsets/buttons.py:63
1091
+ msgid "Revert"
1092
+ msgstr ""
1093
+
1094
+ #: reversion/viewsets/buttons.py:58
1095
+ msgid ""
1096
+ "\n"
1097
+ " <p>Revert object to this version</p>\n"
1098
+ " "
1099
+ msgstr ""
1100
+
1101
+ #: reversion/viewsets/buttons.py:62
1102
+ msgid "Reverting"
1103
+ msgstr ""
1104
+
1105
+ #: reversion/viewsets/buttons.py:69 reversion/viewsets/buttons.py:78
1106
+ msgid "Compare With"
1107
+ msgstr ""
1108
+
1109
+ #: reversion/viewsets/buttons.py:72
1110
+ msgid ""
1111
+ "\n"
1112
+ " <p>Compare this version with another version</p>\n"
1113
+ " "
1114
+ msgstr ""
1115
+
1116
+ #: reversion/viewsets/buttons.py:77
1117
+ msgid "Comparing"
1118
+ msgstr ""
1119
+
1120
+ #: reversion/viewsets/displays.py:19
1121
+ msgid "Created At"
1122
+ msgstr ""
1123
+
1124
+ #: reversion/viewsets/displays.py:20
1125
+ msgid "User"
1126
+ msgstr ""
1127
+
1128
+ #: reversion/viewsets/displays.py:27 reversion/viewsets/titles.py:18
1129
+ msgid "Versions"
1130
+ msgstr ""
1131
+
1132
+ #: reversion/viewsets/displays.py:35
1133
+ msgid "ID"
1134
+ msgstr ""
1135
+
1136
+ #: reversion/viewsets/displays.py:36
1137
+ msgid "Revision"
1138
+ msgstr ""
1139
+
1140
+ #: reversion/viewsets/displays.py:37
1141
+ msgid "Creation Date"
1142
+ msgstr ""
1143
+
1144
+ #: reversion/viewsets/titles.py:15
1145
+ #, python-brace-format
1146
+ msgid "Versions For {obj}"
1147
+ msgstr ""
1148
+
1149
+ #: serializers/fields/text.py:57
1150
+ msgid "Compiling script failed with the exception: {}"
1151
+ msgstr ""
1152
+
1153
+ #: serializers/fields/text.py:121
1154
+ msgid "Please provide a valid hexadecimal color."
1155
+ msgstr ""
1156
+
1157
+ #: shares/config.py:29
1158
+ msgid "Share to someone"
1159
+ msgstr ""
1160
+
1161
+ #: shares/config.py:31
1162
+ msgid "Message"
1163
+ msgstr ""
1164
+
1165
+ #: shares/config.py:39
1166
+ msgid "Recipient"
1167
+ msgstr ""
1168
+
1169
+ #: shares/config.py:55
1170
+ msgid "Are you sure you want to share this widget?"
1171
+ msgstr ""
1172
+
1173
+ #: shares/config.py:58 shares/config.py:60 shares/config.py:61
1174
+ #: shares/config.py:62
1175
+ msgid "Share"
1176
+ msgstr ""
1177
+
1178
+ #: shares/sites.py:21
1179
+ msgid "Widget URL"
1180
+ msgstr ""
1181
+
1182
+ #: templates/notifications/email_template.html:28
1183
+ msgid "Open"
1184
+ msgstr ""
1185
+
1186
+ #: templates/wbcore/admin/change_list.html:5
1187
+ msgid "Import CSV"
1188
+ msgstr ""
1189
+
1190
+ #: templates/wbcore/admin/csv_form.html:10
1191
+ msgid "Upload CSV"
1192
+ msgstr ""
1193
+
1194
+ #: templates/wbcore/dynamic_color_array.html:26
1195
+ msgid "Add another"
1196
+ msgstr ""
1197
+
1198
+ #: templates/wbcore/email_base_template.html:325
1199
+ msgid ""
1200
+ "This E-Mail is autogenerated by Stainly. If you need more information, "
1201
+ "please visit the Stainly-Bench."
1202
+ msgstr ""
1203
+
1204
+ #: templates/wbcore/frontend.html:40
1205
+ msgid "You need to enable JavaScript to run this app."
1206
+ msgstr ""
1207
+
1208
+ #: utils/models.py:103
1209
+ msgid "Pending"
1210
+ msgstr ""
1211
+
1212
+ #: utils/models.py:104
1213
+ msgid "Denied"
1214
+ msgstr ""
1215
+
1216
+ #: utils/models.py:105
1217
+ msgid "Approved"
1218
+ msgstr ""
1219
+
1220
+ #: utils/models.py:189
1221
+ msgid "Default"
1222
+ msgstr ""
1223
+
1224
+ #: utils/views.py:117 utils/views.py:118 utils/views.py:119
1225
+ msgid "Clone"
1226
+ msgstr ""
1227
+
1228
+ #: utils/views.py:120
1229
+ msgid "<strong>Clone {}</strong> \"{}\""
1230
+ msgstr ""
1231
+
1232
+ #: utils/views.py:201 utils/views.py:202 utils/views.py:203
1233
+ msgid "Merge"
1234
+ msgstr ""