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