wagtail 7.1.1__py3-none-any.whl → 7.2rc1__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 (345) hide show
  1. wagtail/__init__.py +1 -1
  2. wagtail/actions/copy_page.py +1 -1
  3. wagtail/actions/create_alias.py +1 -1
  4. wagtail/actions/delete_page.py +1 -1
  5. wagtail/actions/publish_page_revision.py +1 -1
  6. wagtail/actions/publish_revision.py +1 -1
  7. wagtail/actions/revert_to_page_revision.py +1 -1
  8. wagtail/actions/unpublish.py +1 -1
  9. wagtail/actions/unpublish_page.py +1 -1
  10. wagtail/admin/auth.py +3 -1
  11. wagtail/admin/checks.py +2 -2
  12. wagtail/admin/filters.py +28 -1
  13. wagtail/admin/forms/collections.py +1 -1
  14. wagtail/admin/forms/comments.py +1 -1
  15. wagtail/admin/forms/models.py +1 -1
  16. wagtail/admin/forms/pages.py +1 -1
  17. wagtail/admin/forms/tags.py +1 -1
  18. wagtail/admin/locale/cs/LC_MESSAGES/django.mo +0 -0
  19. wagtail/admin/locale/cs/LC_MESSAGES/django.po +25 -1
  20. wagtail/admin/locale/en/LC_MESSAGES/django.po +278 -192
  21. wagtail/admin/locale/en/LC_MESSAGES/djangojs.po +29 -15
  22. wagtail/admin/locale/it/LC_MESSAGES/django.mo +0 -0
  23. wagtail/admin/locale/it/LC_MESSAGES/django.po +3 -2
  24. wagtail/admin/locale/nl/LC_MESSAGES/django.mo +0 -0
  25. wagtail/admin/locale/nl/LC_MESSAGES/django.po +57 -3
  26. wagtail/admin/locale/nl/LC_MESSAGES/djangojs.mo +0 -0
  27. wagtail/admin/locale/nl/LC_MESSAGES/djangojs.po +8 -2
  28. wagtail/admin/locale/ru/LC_MESSAGES/django.mo +0 -0
  29. wagtail/admin/locale/ru/LC_MESSAGES/django.po +58 -1
  30. wagtail/admin/locale/tr/LC_MESSAGES/django.mo +0 -0
  31. wagtail/admin/locale/tr/LC_MESSAGES/django.po +3 -2
  32. wagtail/admin/static/wagtailadmin/css/core.css +1 -1
  33. wagtail/admin/static/wagtailadmin/js/bulk-actions.js +1 -1
  34. wagtail/admin/static/wagtailadmin/js/chooser-modal.js +1 -1
  35. wagtail/admin/static/wagtailadmin/js/chooser-widget-telepath.js +1 -1
  36. wagtail/admin/static/wagtailadmin/js/chooser-widget.js +1 -1
  37. wagtail/admin/static/wagtailadmin/js/comments.js +1 -1
  38. wagtail/admin/static/wagtailadmin/js/core.js +1 -1
  39. wagtail/admin/static/wagtailadmin/js/core.js.LICENSE.txt +2 -2
  40. wagtail/admin/static/wagtailadmin/js/date-time-chooser.js +1 -1
  41. wagtail/admin/static/wagtailadmin/js/draftail.js +1 -1
  42. wagtail/admin/static/wagtailadmin/js/filtered-select.js +1 -1
  43. wagtail/admin/static/wagtailadmin/js/icons.js +1 -1
  44. wagtail/admin/static/wagtailadmin/js/modal-workflow.js +1 -1
  45. wagtail/admin/static/wagtailadmin/js/page-chooser-modal.js +1 -1
  46. wagtail/admin/static/wagtailadmin/js/page-chooser-telepath.js +1 -1
  47. wagtail/admin/static/wagtailadmin/js/page-chooser.js +1 -1
  48. wagtail/admin/static/wagtailadmin/js/privacy-switch.js +1 -1
  49. wagtail/admin/static/wagtailadmin/js/sidebar.js +1 -1
  50. wagtail/admin/static/wagtailadmin/js/task-chooser-modal.js +1 -1
  51. wagtail/admin/static/wagtailadmin/js/task-chooser.js +1 -1
  52. wagtail/admin/static/wagtailadmin/js/telepath/blocks.js +1 -1
  53. wagtail/admin/static/wagtailadmin/js/telepath/telepath.js +1 -1
  54. wagtail/admin/static/wagtailadmin/js/telepath/widgets.js +1 -1
  55. wagtail/admin/static/wagtailadmin/js/userbar.js +1 -1
  56. wagtail/admin/static/wagtailadmin/js/userbar.js.LICENSE.txt +2 -2
  57. wagtail/admin/static/wagtailadmin/js/vendor/bootstrap-modal.js +1 -1
  58. wagtail/admin/static/wagtailadmin/js/vendor/bootstrap-transition.js +1 -1
  59. wagtail/admin/static/wagtailadmin/js/vendor/jquery-3.6.0.min.js +1 -1
  60. wagtail/admin/static/wagtailadmin/js/vendor/jquery-ui-1.13.2.min.js +1 -1
  61. wagtail/admin/static/wagtailadmin/js/vendor/jquery.datetimepicker.js +1 -1
  62. wagtail/admin/static/wagtailadmin/js/vendor/jquery.fileupload-process.js +1 -1
  63. wagtail/admin/static/wagtailadmin/js/vendor/jquery.fileupload.js +1 -1
  64. wagtail/admin/static/wagtailadmin/js/vendor/jquery.iframe-transport.js +1 -1
  65. wagtail/admin/static/wagtailadmin/js/vendor/tag-it.js +1 -1
  66. wagtail/admin/static/wagtailadmin/js/vendor.js +1 -1
  67. wagtail/admin/static/wagtailadmin/js/vendor.js.LICENSE.txt +1 -1
  68. wagtail/admin/static/wagtailadmin/js/wagtailadmin.js +1 -1
  69. wagtail/admin/static/wagtailadmin/js/workflow-action.js +1 -1
  70. wagtail/admin/templates/wagtailadmin/account/account.html +2 -0
  71. wagtail/admin/templates/wagtailadmin/base.html +14 -0
  72. wagtail/admin/templates/wagtailadmin/generic/chooser/chooser.html +2 -1
  73. wagtail/admin/templates/wagtailadmin/generic/chooser/creation_form.html +2 -1
  74. wagtail/admin/templates/wagtailadmin/generic/form.html +3 -1
  75. wagtail/admin/templates/wagtailadmin/panels/multi_field_panel_child.html +1 -1
  76. wagtail/admin/templates/wagtailadmin/panels/object_list.html +1 -1
  77. wagtail/admin/templates/wagtailadmin/panels/tabbed_interface.html +3 -2
  78. wagtail/admin/templates/wagtailadmin/shared/formatted_field.html +1 -1
  79. wagtail/admin/templates/wagtailadmin/shared/forms/single_checkbox.html +1 -1
  80. wagtail/admin/templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html +19 -0
  81. wagtail/admin/templates/wagtailadmin/shared/panel.html +1 -1
  82. wagtail/admin/templates/wagtailadmin/shared/set_privacy.html +15 -0
  83. wagtail/admin/templates/wagtailadmin/shared/side_panels/checks.html +28 -1
  84. wagtail/admin/templates/wagtailadmin/shared/workflow_history/detail.html +2 -2
  85. wagtail/admin/templates/wagtailadmin/{pages/listing/_ordering_header.html → tables/ordering_header.html} +2 -2
  86. wagtail/admin/templates/wagtailadmin/tables/title_cell.html +1 -1
  87. wagtail/admin/templates/wagtailadmin/userbar/base.html +6 -3
  88. wagtail/admin/templates/wagtailadmin/userbar/item_admin.html +2 -2
  89. wagtail/admin/templates/wagtailadmin/userbar/item_page_add.html +2 -2
  90. wagtail/admin/templates/wagtailadmin/userbar/item_page_edit.html +2 -2
  91. wagtail/admin/templates/wagtailadmin/userbar/item_page_explore.html +2 -2
  92. wagtail/admin/templates/wagtailadmin/widgets/{daterange_input.html → range_input.html} +1 -1
  93. wagtail/admin/templates/wagtailadmin/workflows/task_chooser/chooser.html +4 -2
  94. wagtail/admin/templatetags/wagtailadmin_tags.py +56 -22
  95. wagtail/admin/tests/api/test_pages.py +7 -7
  96. wagtail/admin/tests/api/test_renderer_classes.py +16 -0
  97. wagtail/admin/tests/pages/test_create_page.py +34 -2
  98. wagtail/admin/tests/pages/test_edit_page.py +128 -14
  99. wagtail/admin/tests/pages/test_explorer_view.py +34 -7
  100. wagtail/admin/tests/pages/test_reorder_page.py +11 -0
  101. wagtail/admin/tests/test_collections_views.py +12 -0
  102. wagtail/admin/tests/test_edit_handlers.py +3 -3
  103. wagtail/admin/tests/test_filters.py +2 -2
  104. wagtail/admin/tests/test_keyboard_shortcuts.py +52 -2
  105. wagtail/admin/tests/test_menu.py +0 -2
  106. wagtail/admin/tests/test_privacy.py +16 -16
  107. wagtail/admin/tests/test_templatetags.py +137 -0
  108. wagtail/admin/tests/test_userbar.py +75 -35
  109. wagtail/admin/tests/test_views_generic.py +34 -0
  110. wagtail/admin/tests/test_workflows.py +34 -0
  111. wagtail/admin/tests/viewsets/test_model_viewset.py +322 -0
  112. wagtail/admin/ui/tables/orderable.py +73 -0
  113. wagtail/admin/ui/tables/pages.py +3 -13
  114. wagtail/admin/userbar.py +6 -1
  115. wagtail/admin/views/collection_privacy.py +6 -2
  116. wagtail/admin/views/generic/__init__.py +1 -0
  117. wagtail/admin/views/generic/mixins.py +20 -2
  118. wagtail/admin/views/generic/models.py +67 -1
  119. wagtail/admin/views/generic/ordering.py +79 -0
  120. wagtail/admin/views/home.py +3 -3
  121. wagtail/admin/views/page_privacy.py +5 -2
  122. wagtail/admin/views/pages/create.py +1 -1
  123. wagtail/admin/views/pages/edit.py +2 -2
  124. wagtail/admin/views/pages/listing.py +7 -42
  125. wagtail/admin/views/pages/move.py +1 -1
  126. wagtail/admin/views/pages/ordering.py +1 -1
  127. wagtail/admin/viewsets/base.py +1 -1
  128. wagtail/admin/viewsets/model.py +49 -1
  129. wagtail/admin/wagtail_hooks.py +2 -1
  130. wagtail/admin/widgets/slug.py +10 -10
  131. wagtail/api/v2/serializers.py +1 -1
  132. wagtail/api/v2/tests/test_renderer_classes.py +32 -0
  133. wagtail/apps.py +2 -0
  134. wagtail/bin/wagtail.py +1 -1
  135. wagtail/blocks/struct_block.py +2 -1
  136. wagtail/contrib/forms/locale/en/LC_MESSAGES/django.po +14 -14
  137. wagtail/contrib/forms/locale/nl/LC_MESSAGES/django.mo +0 -0
  138. wagtail/contrib/forms/locale/nl/LC_MESSAGES/django.po +19 -2
  139. wagtail/contrib/forms/locale/ru/LC_MESSAGES/django.mo +0 -0
  140. wagtail/contrib/forms/locale/ru/LC_MESSAGES/django.po +18 -1
  141. wagtail/contrib/frontend_cache/tests.py +4 -2
  142. wagtail/contrib/redirects/locale/en/LC_MESSAGES/django.po +4 -4
  143. wagtail/contrib/redirects/tests/test_tmp_storages.py +20 -0
  144. wagtail/contrib/redirects/tmp_storages.py +1 -1
  145. wagtail/contrib/redirects/views.py +3 -3
  146. wagtail/contrib/search_promotions/locale/en/LC_MESSAGES/django.po +3 -3
  147. wagtail/contrib/search_promotions/locale/tr/LC_MESSAGES/django.mo +0 -0
  148. wagtail/contrib/search_promotions/locale/tr/LC_MESSAGES/django.po +43 -3
  149. wagtail/contrib/search_promotions/static/wagtailsearchpromotions/js/query-chooser-modal.js +1 -1
  150. wagtail/contrib/search_promotions/views/settings.py +2 -2
  151. wagtail/contrib/settings/locale/cs/LC_MESSAGES/django.mo +0 -0
  152. wagtail/contrib/settings/locale/cs/LC_MESSAGES/django.po +6 -1
  153. wagtail/contrib/settings/locale/en/LC_MESSAGES/django.po +1 -1
  154. wagtail/contrib/settings/locale/nl/LC_MESSAGES/django.mo +0 -0
  155. wagtail/contrib/settings/locale/nl/LC_MESSAGES/django.po +6 -2
  156. wagtail/contrib/settings/locale/ru/LC_MESSAGES/django.mo +0 -0
  157. wagtail/contrib/settings/locale/ru/LC_MESSAGES/django.po +6 -1
  158. wagtail/contrib/settings/tests/site_specific/test_admin.py +40 -6
  159. wagtail/contrib/simple_translation/locale/en/LC_MESSAGES/django.po +1 -1
  160. wagtail/contrib/styleguide/locale/en/LC_MESSAGES/django.po +1 -1
  161. wagtail/contrib/styleguide/templates/wagtailstyleguide/base.html +5 -5
  162. wagtail/contrib/table_block/blocks.py +1 -0
  163. wagtail/contrib/table_block/locale/en/LC_MESSAGES/django.po +5 -1
  164. wagtail/contrib/table_block/static/table_block/js/table.js +1 -1
  165. wagtail/contrib/typed_table_block/locale/en/LC_MESSAGES/django.po +1 -1
  166. wagtail/contrib/typed_table_block/static/typed_table_block/js/typed_table_block.js +1 -1
  167. wagtail/coreutils.py +5 -5
  168. wagtail/documents/forms.py +18 -1
  169. wagtail/documents/locale/en/LC_MESSAGES/django.po +10 -10
  170. wagtail/documents/locale/nl/LC_MESSAGES/django.mo +0 -0
  171. wagtail/documents/locale/nl/LC_MESSAGES/django.po +9 -0
  172. wagtail/documents/locale/ru/LC_MESSAGES/django.mo +0 -0
  173. wagtail/documents/locale/ru/LC_MESSAGES/django.po +9 -0
  174. wagtail/documents/models.py +1 -1
  175. wagtail/documents/static/wagtaildocs/js/add-multiple.js +1 -1
  176. wagtail/documents/static/wagtaildocs/js/document-chooser-modal.js +1 -1
  177. wagtail/documents/static/wagtaildocs/js/document-chooser-telepath.js +1 -1
  178. wagtail/documents/static/wagtaildocs/js/document-chooser.js +1 -1
  179. wagtail/documents/templates/wagtaildocs/documents/add.html +0 -34
  180. wagtail/documents/tests/test_admin_views.py +132 -26
  181. wagtail/documents/tests/test_collection_privacy.py +18 -4
  182. wagtail/documents/tests/test_form_overrides.py +1 -1
  183. wagtail/documents/tests/test_search.py +21 -8
  184. wagtail/documents/views/documents.py +1 -1
  185. wagtail/embeds/locale/en/LC_MESSAGES/django.po +1 -1
  186. wagtail/embeds/static/wagtailembeds/js/embed-chooser-modal.js +1 -1
  187. wagtail/images/forms.py +16 -1
  188. wagtail/images/locale/cs/LC_MESSAGES/django.mo +0 -0
  189. wagtail/images/locale/cs/LC_MESSAGES/django.po +12 -1
  190. wagtail/images/locale/en/LC_MESSAGES/django.po +57 -46
  191. wagtail/images/locale/nl/LC_MESSAGES/django.mo +0 -0
  192. wagtail/images/locale/nl/LC_MESSAGES/django.po +37 -14
  193. wagtail/images/locale/ru/LC_MESSAGES/django.mo +0 -0
  194. wagtail/images/locale/ru/LC_MESSAGES/django.po +20 -1
  195. wagtail/images/models.py +1 -1
  196. wagtail/images/static/wagtailimages/js/add-multiple.js +1 -1
  197. wagtail/images/static/wagtailimages/js/focal-point-chooser.js +1 -1
  198. wagtail/images/static/wagtailimages/js/image-block.js +1 -1
  199. wagtail/images/static/wagtailimages/js/image-chooser-modal.js +1 -1
  200. wagtail/images/static/wagtailimages/js/image-chooser-telepath.js +1 -1
  201. wagtail/images/static/wagtailimages/js/image-chooser.js +1 -1
  202. wagtail/images/static/wagtailimages/js/image-url-generator.js +1 -1
  203. wagtail/images/static/wagtailimages/js/vendor/jquery.Jcrop.min.js +1 -1
  204. wagtail/images/static/wagtailimages/js/vendor/jquery.fileupload-image.js +1 -1
  205. wagtail/images/static/wagtailimages/js/vendor/jquery.fileupload-validate.js +1 -1
  206. wagtail/images/static/wagtailimages/js/vendor/load-image.min.js +1 -1
  207. wagtail/images/templates/wagtailimages/chooser/chooser.html +22 -13
  208. wagtail/images/templates/wagtailimages/chooser/image_preview_column_cell.html +10 -0
  209. wagtail/images/templates/wagtailimages/chooser/results.html +24 -20
  210. wagtail/images/templates/wagtailimages/chooser/title_column_cell.html +15 -0
  211. wagtail/images/templates/wagtailimages/images/add.html +0 -34
  212. wagtail/images/templates/wagtailimages/images/index.html +3 -3
  213. wagtail/images/templates/wagtailimages/images/index_results.html +1 -1
  214. wagtail/images/templates/wagtailimages/images/layout_toggle_button.html +8 -7
  215. wagtail/images/templatetags/wagtailimages_tags.py +2 -2
  216. wagtail/images/tests/test_admin_views.py +87 -0
  217. wagtail/images/tests/test_form_overrides.py +1 -1
  218. wagtail/images/tests/test_models.py +48 -9
  219. wagtail/images/views/chooser.py +66 -2
  220. wagtail/locale/en/LC_MESSAGES/django.po +55 -55
  221. wagtail/locale/is_IS/LC_MESSAGES/django.mo +0 -0
  222. wagtail/locale/is_IS/LC_MESSAGES/django.po +3 -3
  223. wagtail/locale/nl/LC_MESSAGES/django.mo +0 -0
  224. wagtail/locale/nl/LC_MESSAGES/django.po +11 -2
  225. wagtail/locale/ru/LC_MESSAGES/django.mo +0 -0
  226. wagtail/locale/ru/LC_MESSAGES/django.po +11 -1
  227. wagtail/locales/locale/en/LC_MESSAGES/django.po +1 -1
  228. wagtail/locales/locale/nl/LC_MESSAGES/django.mo +0 -0
  229. wagtail/locales/locale/nl/LC_MESSAGES/django.po +12 -1
  230. wagtail/locales/locale/ru/LC_MESSAGES/django.mo +0 -0
  231. wagtail/locales/locale/ru/LC_MESSAGES/django.po +10 -1
  232. wagtail/locales/views.py +2 -2
  233. wagtail/models/orderable.py +10 -0
  234. wagtail/models/pages.py +9 -11
  235. wagtail/models/sites.py +1 -1
  236. wagtail/models/workflows.py +8 -5
  237. wagtail/project_template/home/tests.py +6 -7
  238. wagtail/project_template/project_name/settings/base.py +9 -9
  239. wagtail/project_template/requirements.txt +1 -1
  240. wagtail/query.py +7 -2
  241. wagtail/rich_text/rewriters.py +1 -1
  242. wagtail/search/apps.py +4 -49
  243. wagtail/search/backends/__init__.py +1 -113
  244. wagtail/search/backends/base.py +1 -547
  245. wagtail/search/backends/database/__init__.py +1 -50
  246. wagtail/search/backends/database/fallback.py +1 -253
  247. wagtail/search/backends/database/mysql/mysql.py +1 -700
  248. wagtail/search/backends/database/mysql/query.py +1 -258
  249. wagtail/search/backends/database/postgres/postgres.py +1 -749
  250. wagtail/search/backends/database/postgres/query.py +1 -83
  251. wagtail/search/backends/database/postgres/weights.py +1 -63
  252. wagtail/search/backends/database/sqlite/query.py +1 -294
  253. wagtail/search/backends/database/sqlite/sqlite.py +1 -719
  254. wagtail/search/backends/database/sqlite/utils.py +1 -35
  255. wagtail/search/backends/deprecation.py +45 -0
  256. wagtail/search/backends/elasticsearch7.py +18 -1260
  257. wagtail/search/backends/elasticsearch8.py +21 -96
  258. wagtail/search/backends/elasticsearch9.py +35 -0
  259. wagtail/search/backends/opensearch2.py +35 -0
  260. wagtail/search/backends/opensearch3.py +35 -0
  261. wagtail/search/index.py +1 -358
  262. wagtail/search/locale/en/LC_MESSAGES/django.po +2 -10
  263. wagtail/search/management/commands/update_index.py +1 -205
  264. wagtail/search/management/commands/wagtail_update_index.py +1 -4
  265. wagtail/search/models.py +32 -158
  266. wagtail/search/query.py +1 -114
  267. wagtail/search/queryset.py +1 -43
  268. wagtail/search/signal_handlers.py +1 -24
  269. wagtail/search/tasks.py +1 -10
  270. wagtail/search/tests/test_elasticsearch.py +22 -0
  271. wagtail/search/utils.py +1 -206
  272. wagtail/sites/locale/en/LC_MESSAGES/django.po +1 -1
  273. wagtail/snippets/locale/en/LC_MESSAGES/django.po +3 -3
  274. wagtail/snippets/locale/ru/LC_MESSAGES/django.mo +0 -0
  275. wagtail/snippets/locale/ru/LC_MESSAGES/django.po +8 -1
  276. wagtail/snippets/locale/tr/LC_MESSAGES/django.mo +0 -0
  277. wagtail/snippets/locale/tr/LC_MESSAGES/django.po +8 -1
  278. wagtail/snippets/static/wagtailsnippets/js/snippet-chooser-telepath.js +1 -1
  279. wagtail/snippets/static/wagtailsnippets/js/snippet-chooser.js +1 -1
  280. wagtail/snippets/tests/test_preview.py +5 -6
  281. wagtail/snippets/tests/test_reordering.py +319 -0
  282. wagtail/snippets/tests/test_snippets.py +65 -12
  283. wagtail/snippets/views/snippets.py +16 -0
  284. wagtail/test/numberformat.py +30 -0
  285. wagtail/test/settings.py +35 -12
  286. wagtail/test/testapp/fields.py +12 -0
  287. wagtail/test/testapp/migrations/0056_commentablejsonpage.py +50 -0
  288. wagtail/test/testapp/migrations/0057_featurecompletetoy_sort_order.py +23 -0
  289. wagtail/test/testapp/migrations/0058_customlocktask.py +31 -0
  290. wagtail/test/testapp/models.py +27 -0
  291. wagtail/test/testapp/urls.py +1 -0
  292. wagtail/test/testapp/views.py +18 -2
  293. wagtail/test/utils/page_tests.py +17 -17
  294. wagtail/test/utils/template_tests.py +4 -6
  295. wagtail/test/utils/wagtail_tests.py +1 -2
  296. wagtail/tests/test_blocks.py +15 -0
  297. wagtail/tests/test_page_model.py +15 -0
  298. wagtail/{search/tests → tests}/test_page_search.py +29 -2
  299. wagtail/tests/test_search_fields.py +69 -0
  300. wagtail/tests/test_tests.py +62 -6
  301. wagtail/tests/test_workflow.py +25 -1
  302. wagtail/users/locale/cs/LC_MESSAGES/django.mo +0 -0
  303. wagtail/users/locale/cs/LC_MESSAGES/django.po +3 -0
  304. wagtail/users/locale/en/LC_MESSAGES/django.po +2 -2
  305. wagtail/users/locale/nl/LC_MESSAGES/django.mo +0 -0
  306. wagtail/users/locale/nl/LC_MESSAGES/django.po +6 -3
  307. wagtail/users/locale/ru/LC_MESSAGES/django.mo +0 -0
  308. wagtail/users/locale/ru/LC_MESSAGES/django.po +5 -1
  309. wagtail/users/locale/tr/LC_MESSAGES/django.mo +0 -0
  310. wagtail/users/locale/tr/LC_MESSAGES/django.po +78 -4
  311. wagtail/users/templates/wagtailusers/users/create.html +2 -0
  312. wagtail/users/templates/wagtailusers/users/edit.html +2 -0
  313. wagtail/users/tests/test_admin_views.py +4 -0
  314. wagtail/users/views/users.py +1 -1
  315. {wagtail-7.1.1.dist-info → wagtail-7.2rc1.dist-info}/METADATA +7 -6
  316. {wagtail-7.1.1.dist-info → wagtail-7.2rc1.dist-info}/RECORD +322 -328
  317. wagtail/admin/templates/wagtailadmin/collection_privacy/set_privacy.html +0 -13
  318. wagtail/admin/templates/wagtailadmin/page_privacy/set_privacy.html +0 -13
  319. wagtail/search/tests/__init__.py +0 -0
  320. wagtail/search/tests/elasticsearch_common_tests.py +0 -251
  321. wagtail/search/tests/test_backends.py +0 -1215
  322. wagtail/search/tests/test_db_backend.py +0 -62
  323. wagtail/search/tests/test_elasticsearch7_backend.py +0 -1452
  324. wagtail/search/tests/test_elasticsearch8_backend.py +0 -15
  325. wagtail/search/tests/test_index_functions.py +0 -256
  326. wagtail/search/tests/test_indexed_class.py +0 -157
  327. wagtail/search/tests/test_mysql_backend.py +0 -192
  328. wagtail/search/tests/test_postgres_backend.py +0 -210
  329. wagtail/search/tests/test_queries.py +0 -332
  330. wagtail/search/tests/test_related_fields.py +0 -102
  331. wagtail/search/tests/test_sqlite_backend.py +0 -52
  332. wagtail/test/search/__init__.py +0 -0
  333. wagtail/test/search/apps.py +0 -9
  334. wagtail/test/search/fixtures/search.json +0 -545
  335. wagtail/test/search/migrations/0001_initial.py +0 -146
  336. wagtail/test/search/migrations/0002_bookunindexed.py +0 -43
  337. wagtail/test/search/migrations/0003_book_summary.py +0 -18
  338. wagtail/test/search/migrations/__init__.py +0 -0
  339. wagtail/test/search/models.py +0 -137
  340. /wagtail/admin/templates/wagtailadmin/{pages/listing/_ordering_cell.html → tables/ordering_cell.html} +0 -0
  341. /wagtail/{search/checks.py → checks.py} +0 -0
  342. {wagtail-7.1.1.dist-info → wagtail-7.2rc1.dist-info}/WHEEL +0 -0
  343. {wagtail-7.1.1.dist-info → wagtail-7.2rc1.dist-info}/entry_points.txt +0 -0
  344. {wagtail-7.1.1.dist-info → wagtail-7.2rc1.dist-info}/licenses/LICENSE +0 -0
  345. {wagtail-7.1.1.dist-info → wagtail-7.2rc1.dist-info}/top_level.txt +0 -0
@@ -8,7 +8,7 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2025-07-24 16:20+0200\n"
11
+ "POT-Creation-Date: 2025-10-23 16:45+0100\n"
12
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -50,7 +50,7 @@ msgstr ""
50
50
 
51
51
  #: action_menu.py:199
52
52
  #: templates/wagtailadmin/pages/bulk_actions/confirm_bulk_unpublish.html:11
53
- #: views/generic/models.py:1310 views/pages/bulk_actions/unpublish.py:8
53
+ #: views/generic/models.py:1376 views/pages/bulk_actions/unpublish.py:8
54
54
  #: wagtail_hooks.py:326
55
55
  msgid "Unpublish"
56
56
  msgstr ""
@@ -90,8 +90,8 @@ msgstr ""
90
90
  msgid "Sorry, you do not have permission to access this area."
91
91
  msgstr ""
92
92
 
93
- #: auth.py:146
94
- msgid "You do not have permission to access the admin"
93
+ #: auth.py:147
94
+ msgid "You do not have permission to access the admin."
95
95
  msgstr ""
96
96
 
97
97
  #: compare.py:490
@@ -106,12 +106,20 @@ msgstr ""
106
106
  msgid "Date to"
107
107
  msgstr ""
108
108
 
109
- #: filters.py:135 ui/tables/__init__.py:327 views/account.py:179
109
+ #: filters.py:47
110
+ msgid "Minimum"
111
+ msgstr ""
112
+
113
+ #: filters.py:48
114
+ msgid "Maximum"
115
+ msgstr ""
116
+
117
+ #: filters.py:156 ui/tables/__init__.py:327 views/account.py:179
110
118
  #: views/reports/page_types_usage.py:68
111
119
  msgid "Locale"
112
120
  msgstr ""
113
121
 
114
- #: filters.py:138 filters.py:149 forms/choosers.py:142
122
+ #: filters.py:159 filters.py:170 forms/choosers.py:142
115
123
  #: templates/wagtailadmin/pages/search_results.html:13
116
124
  #: templates/wagtailadmin/pages/search_results.html:15
117
125
  #: views/reports/page_types_usage.py:71 views/reports/page_types_usage.py:78
@@ -120,17 +128,21 @@ msgstr ""
120
128
  msgid "All"
121
129
  msgstr ""
122
130
 
123
- #: filters.py:262 forms/choosers.py:115 forms/collections.py:338
131
+ #: filters.py:274
132
+ msgid "Usage count"
133
+ msgstr ""
134
+
135
+ #: filters.py:289 forms/choosers.py:115 forms/collections.py:338
124
136
  #: templates/wagtailadmin/permissions/includes/collection_member_permissions_formset.html:25
125
137
  #: templates/wagtailadmin/shared/collection_chooser.html:3
126
138
  msgid "Collection"
127
139
  msgstr ""
128
140
 
129
- #: filters.py:270
141
+ #: filters.py:297
130
142
  msgid "Tag"
131
143
  msgstr ""
132
144
 
133
- #: filters.py:275
145
+ #: filters.py:302
134
146
  msgid "Filter by up to ten most popular tags."
135
147
  msgstr ""
136
148
 
@@ -193,8 +205,8 @@ msgstr ""
193
205
  msgid "Search term"
194
206
  msgstr ""
195
207
 
196
- #: forms/choosers.py:75 views/generic/chooser.py:388 views/pages/search.py:57
197
- #: viewsets/chooser.py:80
208
+ #: forms/choosers.py:75 templatetags/wagtailadmin_tags.py:1360
209
+ #: views/generic/chooser.py:388 views/pages/search.py:57 viewsets/chooser.py:80
198
210
  msgid "Search"
199
211
  msgstr ""
200
212
 
@@ -203,7 +215,7 @@ msgstr ""
203
215
  msgid "All collections"
204
216
  msgstr ""
205
217
 
206
- #: forms/collections.py:94 views/chooser.py:416 views/pages/listing.py:144
218
+ #: forms/collections.py:94 views/chooser.py:416 views/pages/listing.py:143
207
219
  msgid "Parent"
208
220
  msgstr ""
209
221
 
@@ -214,14 +226,14 @@ msgid ""
214
226
  msgstr ""
215
227
 
216
228
  #: forms/collections.py:129
217
- msgid "Please select another parent"
229
+ msgid "Please select another parent."
218
230
  msgstr ""
219
231
 
220
232
  #: forms/collections.py:245
221
233
  msgid "You cannot have multiple permission records for the same collection."
222
234
  msgstr ""
223
235
 
224
- #: forms/collections.py:371 views/generic/models.py:377
236
+ #: forms/collections.py:371 views/generic/models.py:418
225
237
  msgid "Add"
226
238
  msgstr ""
227
239
 
@@ -235,10 +247,10 @@ msgstr ""
235
247
  #: templates/wagtailadmin/home/workflow_objects_to_moderate.html:36
236
248
  #: templates/wagtailadmin/home/workflow_objects_to_moderate.html:81
237
249
  #: views/generic/history.py:139 views/generic/history.py:273
238
- #: views/generic/history.py:354 views/generic/models.py:310
239
- #: views/generic/models.py:506 views/generic/models.py:856
240
- #: views/generic/models.py:1083 views/generic/models.py:1173
241
- #: views/generic/models.py:1351 views/generic/models.py:1463
250
+ #: views/generic/history.py:354 views/generic/models.py:351
251
+ #: views/generic/models.py:568 views/generic/models.py:922
252
+ #: views/generic/models.py:1149 views/generic/models.py:1239
253
+ #: views/generic/models.py:1417 views/generic/models.py:1529
242
254
  #: views/generic/usage.py:88 views/pages/copy.py:84 views/pages/create.py:196
243
255
  #: views/pages/edit.py:295 views/pages/move.py:130 views/workflows.py:236
244
256
  #: views/workflows.py:358 viewsets/chooser.py:30 wagtail_hooks.py:243
@@ -256,8 +268,8 @@ msgstr ""
256
268
  #: templates/wagtailadmin/panels/inline_panel_child.html:12
257
269
  #: templates/wagtailadmin/permissions/includes/collection_member_permissions_form.html:16
258
270
  #: templates/wagtailadmin/workflows/includes/workflow_pages_form.html:8
259
- #: views/generic/models.py:337 views/generic/models.py:648
260
- #: views/generic/models.py:924 views/generic/models.py:1087
271
+ #: views/generic/models.py:378 views/generic/models.py:714
272
+ #: views/generic/models.py:990 views/generic/models.py:1153
261
273
  #: views/pages/bulk_actions/delete.py:12 wagtail_hooks.py:298
262
274
  msgid "Delete"
263
275
  msgstr ""
@@ -275,7 +287,7 @@ msgid "Go live date/time must be before expiry date/time"
275
287
  msgstr ""
276
288
 
277
289
  #: forms/models.py:204
278
- msgid "Expiry date/time must be in the future"
290
+ msgid "Expiry date/time must be in the future."
279
291
  msgstr ""
280
292
 
281
293
  #: forms/pages.py:21
@@ -354,7 +366,7 @@ msgstr ""
354
366
 
355
367
  #: forms/pages.py:217
356
368
  #, python-format
357
- msgid "The slug '%(page_slug)s' is already in use within the parent page"
369
+ msgid "The slug '%(page_slug)s' is already in use within the parent page."
358
370
  msgstr ""
359
371
 
360
372
  #: forms/pages.py:252
@@ -386,7 +398,7 @@ msgstr ""
386
398
 
387
399
  #: forms/tags.py:22
388
400
  #, python-format
389
- msgid "Tag(s) %(value_too_long)s are over %(max_tag_length)d characters"
401
+ msgid "Tag(s) %(value_too_long)s are over %(max_tag_length)d characters."
390
402
  msgstr ""
391
403
 
392
404
  #: forms/view_restrictions.py:11
@@ -564,7 +576,7 @@ msgstr ""
564
576
  msgid "Settings"
565
577
  msgstr ""
566
578
 
567
- #: panels/title_field_panel.py:104
579
+ #: panels/title_field_panel.py:102
568
580
  #: templates/wagtailadmin/home/locked_pages.html:14
569
581
  #: templates/wagtailadmin/home/recent_edits.html:15
570
582
  #: templates/wagtailadmin/home/user_objects_in_workflow_moderation.html:15
@@ -573,11 +585,11 @@ msgstr ""
573
585
  #: templates/wagtailadmin/reports/listing/_list_page_report.html:12
574
586
  #: views/chooser.py:185 views/chooser.py:413 views/generic/base.py:192
575
587
  #: views/generic/chooser.py:229 views/generic/chooser.py:236
576
- #: views/pages/listing.py:140
588
+ #: views/pages/listing.py:139
577
589
  msgid "Title"
578
590
  msgstr ""
579
591
 
580
- #: panels/title_field_panel.py:107
592
+ #: panels/title_field_panel.py:105
581
593
  msgid "Page title"
582
594
  msgstr ""
583
595
 
@@ -681,6 +693,10 @@ msgstr ""
681
693
  msgid "Sidebar"
682
694
  msgstr ""
683
695
 
696
+ #: templates/wagtailadmin/base.html:40
697
+ msgid "Go to the first error"
698
+ msgstr ""
699
+
684
700
  #: templates/wagtailadmin/bulk_actions/confirmation/go_back.html:2
685
701
  msgid "Go back"
686
702
  msgstr ""
@@ -767,7 +783,7 @@ msgstr[0] ""
767
783
  msgstr[1] ""
768
784
 
769
785
  #: templates/wagtailadmin/chooser/browse.html:32
770
- #: templates/wagtailadmin/generic/chooser/chooser.html:56
786
+ #: templates/wagtailadmin/generic/chooser/chooser.html:57
771
787
  msgid "Confirm selection"
772
788
  msgstr ""
773
789
 
@@ -838,12 +854,6 @@ msgstr ""
838
854
  msgid "You can edit the privacy settings on:"
839
855
  msgstr ""
840
856
 
841
- #: templates/wagtailadmin/collection_privacy/set_privacy.html:12
842
- #: templates/wagtailadmin/page_privacy/set_privacy.html:12
843
- #: views/generic/models.py:651
844
- msgid "Save"
845
- msgstr ""
846
-
847
857
  #: templates/wagtailadmin/collections/_privacy_switch.html:7
848
858
  #: templates/wagtailadmin/shared/side_panels/includes/status/privacy.html:34
849
859
  #: templates/wagtailadmin/shared/side_panels/includes/status/privacy.html:45
@@ -959,14 +969,15 @@ msgstr ""
959
969
  msgid "Cancel"
960
970
  msgstr ""
961
971
 
962
- #: templates/wagtailadmin/generic/form.html:55
972
+ #. Translators: Shortcuts for admin actions that can be taken while working on core models
973
+ #: templates/wagtailadmin/generic/form.html:57
963
974
  #: templates/wagtailadmin/generic/history/action_cell.html:20
964
975
  #: templates/wagtailadmin/home/locked_pages.html:47
965
976
  #: templates/wagtailadmin/home/recent_edits.html:50
966
977
  #: templates/wagtailadmin/home/workflow_objects_to_moderate.html:76
967
978
  #: templates/wagtailadmin/pages/listing/_page_header_buttons.html:3
968
979
  #: templates/wagtailadmin/widgets/chooser.html:20
969
- #: templatetags/wagtailadmin_tags.py:1341 views/generic/base.py:85
980
+ #: templatetags/wagtailadmin_tags.py:1366 views/generic/base.py:85
970
981
  msgid "Actions"
971
982
  msgstr ""
972
983
 
@@ -1029,7 +1040,7 @@ msgid ""
1029
1040
  msgstr ""
1030
1041
 
1031
1042
  #: templates/wagtailadmin/home/account_summary.html:9
1032
- #: templatetags/wagtailadmin_tags.py:869 views/account.py:232
1043
+ #: templatetags/wagtailadmin_tags.py:884 views/account.py:232
1033
1044
  msgid "Account"
1034
1045
  msgstr ""
1035
1046
 
@@ -1064,7 +1075,7 @@ msgstr ""
1064
1075
  #: templates/wagtailadmin/reports/workflow_tasks_results.html:15
1065
1076
  #: templates/wagtailadmin/shared/workflow_history/listing_results.html:9
1066
1077
  #: ui/side_panels.py:65 ui/tables/__init__.py:312 views/chooser.py:200
1067
- #: views/chooser.py:429 views/pages/listing.py:160
1078
+ #: views/chooser.py:429 views/pages/listing.py:159
1068
1079
  #: views/reports/aging_pages.py:39 views/reports/base.py:43
1069
1080
  #: views/reports/workflows.py:154 views/reports/workflows.py:233
1070
1081
  msgid "Status"
@@ -1083,7 +1094,7 @@ msgstr ""
1083
1094
 
1084
1095
  #: templates/wagtailadmin/home/locked_pages.html:55
1085
1096
  #: templates/wagtailadmin/reports/listing/_list_unlock.html:42
1086
- #: views/generic/mixins.py:693 views/pages/edit.py:420
1097
+ #: views/generic/mixins.py:711 views/pages/edit.py:420
1087
1098
  msgid "Unlock"
1088
1099
  msgstr ""
1089
1100
 
@@ -1097,7 +1108,7 @@ msgstr ""
1097
1108
  #: templates/wagtailadmin/home/recent_edits.html:58
1098
1109
  #: templates/wagtailadmin/shared/page_status_tag_new.html:14
1099
1110
  #: templates/wagtailadmin/shared/side_panels/includes/status/workflow.html:18
1100
- #: views/generic/models.py:1243
1111
+ #: views/generic/models.py:1309
1101
1112
  msgid "Live"
1102
1113
  msgstr ""
1103
1114
 
@@ -1198,7 +1209,7 @@ msgstr ""
1198
1209
 
1199
1210
  #: templates/wagtailadmin/home/workflow_objects_to_moderate.html:84
1200
1211
  #: templates/wagtailadmin/shared/side_panels/preview.html:93
1201
- #: templatetags/wagtailadmin_tags.py:1343 ui/side_panels.py:360
1212
+ #: templatetags/wagtailadmin_tags.py:1368 ui/side_panels.py:360
1202
1213
  #: views/generic/history.py:133
1203
1214
  msgid "Preview"
1204
1215
  msgstr ""
@@ -1598,7 +1609,7 @@ msgstr ""
1598
1609
 
1599
1610
  #: templates/wagtailadmin/pages/action_menu/save_draft.html:9
1600
1611
  #: templates/wagtailadmin/panels/publishing/schedule_publishing_panel.html:28
1601
- #: views/generic/models.py:652
1612
+ #: views/generic/models.py:718
1602
1613
  msgid "Saving…"
1603
1614
  msgstr ""
1604
1615
 
@@ -1998,8 +2009,8 @@ msgid "Copy %(title)s"
1998
2009
  msgstr ""
1999
2010
 
2000
2011
  #: templates/wagtailadmin/pages/copy.html:5
2001
- #: templatetags/wagtailadmin_tags.py:1326 views/generic/models.py:319
2002
- #: views/generic/models.py:736 wagtail_hooks.py:289
2012
+ #: templatetags/wagtailadmin_tags.py:1375 views/generic/models.py:360
2013
+ #: views/generic/models.py:802 wagtail_hooks.py:289
2003
2014
  msgid "Copy"
2004
2015
  msgstr ""
2005
2016
 
@@ -2079,29 +2090,6 @@ msgstr ""
2079
2090
  msgid "Add a child page to '%(title)s'"
2080
2091
  msgstr ""
2081
2092
 
2082
- #: templates/wagtailadmin/pages/listing/_ordering_cell.html:12
2083
- #: templates/wagtailadmin/panels/inline_panel_child.html:10
2084
- msgid "Drag"
2085
- msgstr ""
2086
-
2087
- #: templates/wagtailadmin/pages/listing/_ordering_cell.html:14
2088
- #, python-format
2089
- msgid "Item %(index)s of %(total)s"
2090
- msgstr ""
2091
-
2092
- #: templates/wagtailadmin/pages/listing/_ordering_header.html:4
2093
- msgid "Disable ordering of child pages"
2094
- msgstr ""
2095
-
2096
- #: templates/wagtailadmin/pages/listing/_ordering_header.html:5
2097
- #: templates/wagtailadmin/pages/listing/_ordering_header.html:9
2098
- msgid "Sort"
2099
- msgstr ""
2100
-
2101
- #: templates/wagtailadmin/pages/listing/_ordering_header.html:8
2102
- msgid "Enable ordering of child pages"
2103
- msgstr ""
2104
-
2105
2093
  #: templates/wagtailadmin/pages/listing/_page_title_column_header.html:7
2106
2094
  #, python-format
2107
2095
  msgid "%(start_index)s-%(end_index)s of %(items_count)s across entire site."
@@ -2208,6 +2196,11 @@ msgstr ""
2208
2196
  msgid "Move down"
2209
2197
  msgstr ""
2210
2198
 
2199
+ #: templates/wagtailadmin/panels/inline_panel_child.html:10
2200
+ #: templates/wagtailadmin/tables/ordering_cell.html:12
2201
+ msgid "Drag"
2202
+ msgstr ""
2203
+
2211
2204
  #: templates/wagtailadmin/panels/publishing/schedule_publishing_panel.html:3
2212
2205
  #, python-format
2213
2206
  msgid "Choose when this %(model_name)s should go live and/or expire"
@@ -2261,7 +2254,7 @@ msgstr ""
2261
2254
  #: templates/wagtailadmin/reports/listing/_list_page_types_usage.html:13
2262
2255
  #: templates/wagtailadmin/reports/site_history_results.html:12
2263
2256
  #: views/chooser.py:196 views/chooser.py:425 views/generic/usage.py:109
2264
- #: views/pages/listing.py:153 views/reports/aging_pages.py:22
2257
+ #: views/pages/listing.py:152 views/reports/aging_pages.py:22
2265
2258
  #: views/reports/aging_pages.py:42 views/reports/audit_logging.py:56
2266
2259
  #: views/reports/audit_logging.py:86 views/reports/base.py:44
2267
2260
  #: views/workflows.py:539 views/workflows.py:570
@@ -2278,7 +2271,7 @@ msgstr ""
2278
2271
 
2279
2272
  #: templates/wagtailadmin/reports/listing/_list_page_report.html:15
2280
2273
  #: ui/tables/__init__.py:356 views/chooser.py:190 views/chooser.py:419
2281
- #: views/pages/listing.py:147 views/reports/base.py:42
2274
+ #: views/pages/listing.py:146 views/reports/base.py:42
2282
2275
  msgid "Updated"
2283
2276
  msgstr ""
2284
2277
 
@@ -2332,7 +2325,7 @@ msgstr ""
2332
2325
 
2333
2326
  #: templates/wagtailadmin/reports/site_history_results.html:9
2334
2327
  #: templates/wagtailadmin/workflows/task_chooser/includes/results.html:21
2335
- #: views/account.py:152 views/collections.py:27 views/generic/models.py:186
2328
+ #: views/account.py:152 views/collections.py:27 views/generic/models.py:210
2336
2329
  #: views/generic/usage.py:103 views/reports/audit_logging.py:54
2337
2330
  #: views/reports/audit_logging.py:85 views/workflows.py:130
2338
2331
  #: views/workflows.py:566
@@ -2553,26 +2546,44 @@ msgstr ""
2553
2546
  #: templates/wagtailadmin/shared/headers/_history_icon_link.html:5
2554
2547
  #: templates/wagtailadmin/shared/headers/_history_icon_link.html:7
2555
2548
  #: views/generic/history.py:201 views/generic/history.py:263
2556
- #: views/generic/models.py:1174 wagtail_hooks.py:335
2549
+ #: views/generic/models.py:1240 wagtail_hooks.py:335
2557
2550
  msgid "History"
2558
2551
  msgstr ""
2559
2552
 
2560
2553
  #: templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html:2
2554
+ msgid "account"
2555
+ msgstr ""
2556
+
2557
+ #: templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html:3
2561
2558
  msgid "Keyboard shortcuts"
2562
2559
  msgstr ""
2563
2560
 
2564
- #: templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html:5
2561
+ #: templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html:7
2562
+ #, python-format
2563
+ msgid ""
2564
+ "Keyboard shortcuts are currently disabled; manage your %(account_link)s to "
2565
+ "enable them."
2566
+ msgstr ""
2567
+
2568
+ #: templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html:15
2565
2569
  msgid "All keyboard shortcuts"
2566
2570
  msgstr ""
2567
2571
 
2568
- #: templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html:9
2572
+ #: templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html:19
2569
2573
  msgid "Section"
2570
2574
  msgstr ""
2571
2575
 
2572
- #: templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html:10
2576
+ #: templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html:20
2573
2577
  msgid "Keyboard shortcut"
2574
2578
  msgstr ""
2575
2579
 
2580
+ #: templates/wagtailadmin/shared/keyboard_shortcuts_dialog.html:44
2581
+ #, python-format
2582
+ msgid ""
2583
+ "Keyboard shortcuts are currently enabled; manage your %(account_link)s to "
2584
+ "disable them."
2585
+ msgstr ""
2586
+
2576
2587
  #: templates/wagtailadmin/shared/page_status_tag.html:3
2577
2588
  msgid "Current page status:"
2578
2589
  msgstr ""
@@ -2619,6 +2630,11 @@ msgstr ""
2619
2630
  msgid "Other searches"
2620
2631
  msgstr ""
2621
2632
 
2633
+ #: templates/wagtailadmin/shared/set_privacy.html:14
2634
+ #: views/generic/models.py:717
2635
+ msgid "Save"
2636
+ msgstr ""
2637
+
2622
2638
  #: templates/wagtailadmin/shared/side_panels.html:5
2623
2639
  msgid "Minimap"
2624
2640
  msgstr ""
@@ -2641,18 +2657,59 @@ msgid "Show issue"
2641
2657
  msgstr ""
2642
2658
 
2643
2659
  #: templates/wagtailadmin/shared/side_panels/checks.html:29
2660
+ #: templates/wagtailadmin/shared/side_panels/checks.html:49
2644
2661
  msgid "Content metrics"
2645
2662
  msgstr ""
2646
2663
 
2647
2664
  #: templates/wagtailadmin/shared/side_panels/checks.html:34
2665
+ #: templates/wagtailadmin/shared/side_panels/checks.html:54
2648
2666
  msgid "Words"
2649
2667
  msgstr ""
2650
2668
 
2651
2669
  #: templates/wagtailadmin/shared/side_panels/checks.html:38
2670
+ #: templates/wagtailadmin/shared/side_panels/checks.html:56
2652
2671
  msgid "Reading time"
2653
2672
  msgstr ""
2654
2673
 
2674
+ #: templates/wagtailadmin/shared/side_panels/checks.html:42
2675
+ #: templates/wagtailadmin/shared/side_panels/checks.html:58
2676
+ msgid "Readability"
2677
+ msgstr ""
2678
+
2655
2679
  #: templates/wagtailadmin/shared/side_panels/checks.html:48
2680
+ msgid "This data explained"
2681
+ msgstr ""
2682
+
2683
+ #: templates/wagtailadmin/shared/side_panels/checks.html:50
2684
+ msgid "How we calculate our metrics"
2685
+ msgstr ""
2686
+
2687
+ #: templates/wagtailadmin/shared/side_panels/checks.html:55
2688
+ msgid ""
2689
+ "We extract the main content from the page preview, remove all formatting, "
2690
+ "and calculate the number of words."
2691
+ msgstr ""
2692
+
2693
+ #: templates/wagtailadmin/shared/side_panels/checks.html:57
2694
+ msgid ""
2695
+ "We calculate reading time from word count, using different reading speeds "
2696
+ "for different languages."
2697
+ msgstr ""
2698
+
2699
+ #: templates/wagtailadmin/shared/side_panels/checks.html:59
2700
+ msgid ""
2701
+ "We use a readability formula based on length of words and sentences. Long "
2702
+ "sentences and words result in a worse readability score."
2703
+ msgstr ""
2704
+
2705
+ #: templates/wagtailadmin/shared/side_panels/checks.html:63
2706
+ #, python-format
2707
+ msgid ""
2708
+ "See our <a href=\"%(guide_link)s\" target=\"_blank\">content checks guide</"
2709
+ "a> for more information on how content metrics are calculated."
2710
+ msgstr ""
2711
+
2712
+ #: templates/wagtailadmin/shared/side_panels/checks.html:75
2656
2713
  #: templates/wagtailadmin/userbar/item_accessibility.html:6
2657
2714
  #: templates/wagtailadmin/userbar/item_accessibility.html:12
2658
2715
  msgid "Issues found"
@@ -2932,7 +2989,25 @@ msgstr ""
2932
2989
  msgid "Skip to main content"
2933
2990
  msgstr ""
2934
2991
 
2935
- #: templates/wagtailadmin/userbar/base.html:31
2992
+ #: templates/wagtailadmin/tables/ordering_cell.html:14
2993
+ #, python-format
2994
+ msgid "Item %(index)s of %(total)s"
2995
+ msgstr ""
2996
+
2997
+ #: templates/wagtailadmin/tables/ordering_header.html:4
2998
+ msgid "Disable custom ordering"
2999
+ msgstr ""
3000
+
3001
+ #: templates/wagtailadmin/tables/ordering_header.html:5
3002
+ #: templates/wagtailadmin/tables/ordering_header.html:9
3003
+ msgid "Sort"
3004
+ msgstr ""
3005
+
3006
+ #: templates/wagtailadmin/tables/ordering_header.html:8
3007
+ msgid "Enable custom ordering"
3008
+ msgstr ""
3009
+
3010
+ #: templates/wagtailadmin/userbar/base.html:32
2936
3011
  msgid "View Wagtail quick actions"
2937
3012
  msgstr ""
2938
3013
 
@@ -2963,7 +3038,7 @@ msgstr ""
2963
3038
  #: templates/wagtailadmin/workflows/confirm_delete.html:14
2964
3039
  #: templates/wagtailadmin/workflows/confirm_disable.html:12
2965
3040
  #: templates/wagtailadmin/workflows/confirm_disable_task.html:12
2966
- #: views/pages/listing.py:109 views/workflows.py:88
3041
+ #: views/pages/listing.py:108 views/workflows.py:88
2967
3042
  #: widgets/boolean_radio_select.py:16
2968
3043
  msgid "No"
2969
3044
  msgstr ""
@@ -3087,7 +3162,7 @@ msgid "Choose a task"
3087
3162
  msgstr ""
3088
3163
 
3089
3164
  #: templates/wagtailadmin/workflows/task_chooser/chooser.html:8
3090
- #: views/generic/models.py:418 views/pages/create.py:76
3165
+ #: views/generic/models.py:479 views/pages/create.py:76
3091
3166
  msgid "New"
3092
3167
  msgstr ""
3093
3168
 
@@ -3100,12 +3175,12 @@ msgid "Choose a different task type"
3100
3175
  msgstr ""
3101
3176
 
3102
3177
  #: templates/wagtailadmin/workflows/task_chooser/includes/create_form.html:27
3103
- #: views/generic/models.py:425
3178
+ #: views/generic/models.py:486
3104
3179
  msgid "Creating…"
3105
3180
  msgstr ""
3106
3181
 
3107
3182
  #: templates/wagtailadmin/workflows/task_chooser/includes/create_form.html:30
3108
- #: views/generic/chooser.py:319 views/generic/models.py:424
3183
+ #: views/generic/chooser.py:319 views/generic/models.py:485
3109
3184
  #: viewsets/chooser.py:82
3110
3185
  msgid "Create"
3111
3186
  msgstr ""
@@ -3177,143 +3252,154 @@ msgstr ""
3177
3252
  msgid "See full history"
3178
3253
  msgstr ""
3179
3254
 
3180
- #: templatetags/wagtailadmin_tags.py:506
3255
+ #: templatetags/wagtailadmin_tags.py:521
3181
3256
  msgid "More"
3182
3257
  msgstr ""
3183
3258
 
3184
- #: templatetags/wagtailadmin_tags.py:507
3259
+ #: templatetags/wagtailadmin_tags.py:522
3185
3260
  msgid "More bulk actions"
3186
3261
  msgstr ""
3187
3262
 
3188
- #: templatetags/wagtailadmin_tags.py:758
3263
+ #: templatetags/wagtailadmin_tags.py:773
3189
3264
  msgid "0 minutes"
3190
3265
  msgstr ""
3191
3266
 
3192
- #: templatetags/wagtailadmin_tags.py:759
3267
+ #: templatetags/wagtailadmin_tags.py:774
3193
3268
  msgid "just now"
3194
3269
  msgstr ""
3195
3270
 
3196
- #: templatetags/wagtailadmin_tags.py:760 templatetags/wagtailadmin_tags.py:823
3271
+ #: templatetags/wagtailadmin_tags.py:775 templatetags/wagtailadmin_tags.py:838
3197
3272
  #, python-format
3198
3273
  msgid "%(time_period)s ago"
3199
3274
  msgstr ""
3200
3275
 
3201
- #: templatetags/wagtailadmin_tags.py:797
3276
+ #: templatetags/wagtailadmin_tags.py:812
3202
3277
  #, python-format
3203
3278
  msgid "at %(time)s by %(user_display_name)s"
3204
3279
  msgstr ""
3205
3280
 
3206
- #: templatetags/wagtailadmin_tags.py:802
3281
+ #: templatetags/wagtailadmin_tags.py:817
3207
3282
  #, python-format
3208
3283
  msgid "at %(time)s"
3209
3284
  msgstr ""
3210
3285
 
3211
- #: templatetags/wagtailadmin_tags.py:805
3286
+ #: templatetags/wagtailadmin_tags.py:820
3212
3287
  #, python-format
3213
3288
  msgid "%(time)s by %(user_display_name)s"
3214
3289
  msgstr ""
3215
3290
 
3216
- #: templatetags/wagtailadmin_tags.py:818
3291
+ #: templatetags/wagtailadmin_tags.py:833
3217
3292
  #, python-format
3218
3293
  msgid "%(time_period)s ago by %(user_display_name)s"
3219
3294
  msgstr ""
3220
3295
 
3221
- #: templatetags/wagtailadmin_tags.py:872
3296
+ #: templatetags/wagtailadmin_tags.py:887
3222
3297
  msgid "Log out"
3223
3298
  msgstr ""
3224
3299
 
3225
- #: templatetags/wagtailadmin_tags.py:1299
3300
+ #: templatetags/wagtailadmin_tags.py:1321
3226
3301
  #, python-format
3227
3302
  msgid "Changes requested %(finished_at)s"
3228
3303
  msgstr ""
3229
3304
 
3230
- #: templatetags/wagtailadmin_tags.py:1302
3305
+ #: templatetags/wagtailadmin_tags.py:1324
3231
3306
  #, python-format
3232
3307
  msgid "Sent to %(task_name)s %(started_at)s"
3233
3308
  msgstr ""
3234
3309
 
3235
- #: templatetags/wagtailadmin_tags.py:1304
3310
+ #: templatetags/wagtailadmin_tags.py:1326
3236
3311
  #, python-format
3237
3312
  msgid "%(status_display)s %(task_name)s %(started_at)s"
3238
3313
  msgstr ""
3239
3314
 
3240
- #: templatetags/wagtailadmin_tags.py:1325
3241
- msgid "Common actions"
3315
+ #. Translators: Shortcuts for admin common shortcuts that are available across the admin
3316
+ #: templatetags/wagtailadmin_tags.py:1358
3317
+ msgid "Application"
3242
3318
  msgstr ""
3243
3319
 
3244
- #: templatetags/wagtailadmin_tags.py:1327
3245
- msgid "Cut"
3320
+ #: templatetags/wagtailadmin_tags.py:1359
3321
+ msgid "Show keyboard shortcuts"
3246
3322
  msgstr ""
3247
3323
 
3248
- #: templatetags/wagtailadmin_tags.py:1328
3249
- msgid "Paste"
3324
+ #: templatetags/wagtailadmin_tags.py:1361
3325
+ msgid "Toggle sidebar"
3250
3326
  msgstr ""
3251
3327
 
3252
- #: templatetags/wagtailadmin_tags.py:1330
3253
- msgid "Paste and match style"
3328
+ #: templatetags/wagtailadmin_tags.py:1362
3329
+ msgid "Toggle minimap"
3254
3330
  msgstr ""
3255
3331
 
3256
- #: templatetags/wagtailadmin_tags.py:1332
3257
- msgid "Paste without formatting"
3332
+ #: templatetags/wagtailadmin_tags.py:1363
3333
+ msgid "Close modal dialogs (like this one)"
3258
3334
  msgstr ""
3259
3335
 
3260
- #: templatetags/wagtailadmin_tags.py:1335
3261
- msgid "Undo"
3336
+ #: templatetags/wagtailadmin_tags.py:1367
3337
+ msgid "Save changes"
3262
3338
  msgstr ""
3263
3339
 
3264
- #: templatetags/wagtailadmin_tags.py:1337
3265
- msgid "Redo"
3340
+ #: templatetags/wagtailadmin_tags.py:1369
3341
+ msgid "Add or show comments"
3266
3342
  msgstr ""
3267
3343
 
3268
- #: templatetags/wagtailadmin_tags.py:1342
3269
- msgid "Save changes"
3344
+ #. Translators: Shortcuts for common text editing features available in all fields (even if not a rich text field)
3345
+ #: templatetags/wagtailadmin_tags.py:1374
3346
+ msgid "Text editing"
3270
3347
  msgstr ""
3271
3348
 
3272
- #: templatetags/wagtailadmin_tags.py:1344
3273
- msgid "Toggle sidebar"
3349
+ #: templatetags/wagtailadmin_tags.py:1376
3350
+ msgid "Cut"
3274
3351
  msgstr ""
3275
3352
 
3276
- #: templatetags/wagtailadmin_tags.py:1345
3277
- msgid "Toggle minimap"
3353
+ #: templatetags/wagtailadmin_tags.py:1377
3354
+ msgid "Paste"
3278
3355
  msgstr ""
3279
3356
 
3280
- #: templatetags/wagtailadmin_tags.py:1346
3281
- msgid "Add or show comments"
3357
+ #: templatetags/wagtailadmin_tags.py:1379
3358
+ msgid "Paste and match style"
3282
3359
  msgstr ""
3283
3360
 
3284
- #: templatetags/wagtailadmin_tags.py:1350
3285
- msgid "Text content"
3361
+ #: templatetags/wagtailadmin_tags.py:1381
3362
+ msgid "Paste without formatting"
3286
3363
  msgstr ""
3287
3364
 
3288
- #: templatetags/wagtailadmin_tags.py:1351
3289
- msgid "Insert or edit a link"
3365
+ #: templatetags/wagtailadmin_tags.py:1384
3366
+ msgid "Undo"
3290
3367
  msgstr ""
3291
3368
 
3292
- #: templatetags/wagtailadmin_tags.py:1353
3369
+ #: templatetags/wagtailadmin_tags.py:1386
3370
+ msgid "Redo"
3371
+ msgstr ""
3372
+
3373
+ #. Translators: Shortcuts for formatting & editing features available in rich text fields
3374
+ #: templatetags/wagtailadmin_tags.py:1391
3293
3375
  msgid "Text formatting"
3294
3376
  msgstr ""
3295
3377
 
3296
- #: templatetags/wagtailadmin_tags.py:1354 wagtail_hooks.py:688
3297
- msgid "Italic"
3378
+ #: templatetags/wagtailadmin_tags.py:1392
3379
+ msgid "Insert or edit a link"
3298
3380
  msgstr ""
3299
3381
 
3300
- #: templatetags/wagtailadmin_tags.py:1355
3301
- msgid "Underline"
3382
+ #: templatetags/wagtailadmin_tags.py:1393 wagtail_hooks.py:666
3383
+ msgid "Bold"
3384
+ msgstr ""
3385
+
3386
+ #: templatetags/wagtailadmin_tags.py:1394 wagtail_hooks.py:688
3387
+ msgid "Italic"
3302
3388
  msgstr ""
3303
3389
 
3304
- #: templatetags/wagtailadmin_tags.py:1356
3390
+ #: templatetags/wagtailadmin_tags.py:1395
3305
3391
  msgid "Monospace (code)"
3306
3392
  msgstr ""
3307
3393
 
3308
- #: templatetags/wagtailadmin_tags.py:1357
3394
+ #: templatetags/wagtailadmin_tags.py:1396
3309
3395
  msgid "Strike-through"
3310
3396
  msgstr ""
3311
3397
 
3312
- #: templatetags/wagtailadmin_tags.py:1358 wagtail_hooks.py:758
3398
+ #: templatetags/wagtailadmin_tags.py:1397 wagtail_hooks.py:758
3313
3399
  msgid "Superscript"
3314
3400
  msgstr ""
3315
3401
 
3316
- #: templatetags/wagtailadmin_tags.py:1359 wagtail_hooks.py:779
3402
+ #: templatetags/wagtailadmin_tags.py:1398 wagtail_hooks.py:779
3317
3403
  msgid "Subscript"
3318
3404
  msgstr ""
3319
3405
 
@@ -3362,14 +3448,25 @@ msgstr ""
3362
3448
  msgid "Sort by '%(label)s' in descending order."
3363
3449
  msgstr ""
3364
3450
 
3365
- #: ui/tables/pages.py:136
3451
+ #: ui/tables/orderable.py:16
3452
+ #, python-format
3453
+ msgid "'%(page_title)s' has been moved successfully."
3454
+ msgstr ""
3455
+
3456
+ #: ui/tables/orderable.py:71
3457
+ msgid ""
3458
+ "Focus on the drag button and press up or down arrows to move the item, then "
3459
+ "press enter to submit the change."
3460
+ msgstr ""
3461
+
3462
+ #: ui/tables/pages.py:128
3366
3463
  #, python-format
3367
3464
  msgid ""
3368
3465
  "Sort the order of child pages within '%(parent)s' by '%(label)s' in "
3369
3466
  "ascending order."
3370
3467
  msgstr ""
3371
3468
 
3372
- #: ui/tables/pages.py:140
3469
+ #: ui/tables/pages.py:132
3373
3470
  #, python-format
3374
3471
  msgid ""
3375
3472
  "Sort the order of child pages within '%(parent)s' by '%(label)s' in "
@@ -3538,7 +3635,7 @@ msgstr ""
3538
3635
  msgid "Compare with current version"
3539
3636
  msgstr ""
3540
3637
 
3541
- #: views/generic/history.py:173 views/generic/mixins.py:704
3638
+ #: views/generic/history.py:173 views/generic/mixins.py:722
3542
3639
  #: views/pages/edit.py:434
3543
3640
  msgid "Cancel scheduled publish"
3544
3641
  msgstr ""
@@ -3560,171 +3657,175 @@ msgstr ""
3560
3657
  msgid "%(model_name)s '%(title)s' is now unlocked."
3561
3658
  msgstr ""
3562
3659
 
3563
- #: views/generic/mixins.py:445
3660
+ #: views/generic/mixins.py:454
3564
3661
  #, python-format
3565
3662
  msgid "The %(model_name)s could not be saved as it is locked"
3566
3663
  msgstr ""
3567
3664
 
3568
- #: views/generic/mixins.py:453 views/generic/models.py:649
3665
+ #: views/generic/mixins.py:462 views/generic/models.py:715
3569
3666
  #, python-format
3570
3667
  msgid "%(model_name)s '%(object)s' updated."
3571
3668
  msgstr ""
3572
3669
 
3573
- #: views/generic/mixins.py:455 views/generic/models.py:420
3670
+ #: views/generic/mixins.py:464 views/generic/models.py:481
3574
3671
  #, python-format
3575
3672
  msgid "%(model_name)s '%(object)s' created."
3576
3673
  msgstr ""
3577
3674
 
3578
- #: views/generic/mixins.py:461
3675
+ #: views/generic/mixins.py:470
3579
3676
  #, python-format
3580
3677
  msgid "%(model_name)s '%(object)s' has been scheduled for publishing."
3581
3678
  msgstr ""
3582
3679
 
3583
- #: views/generic/mixins.py:466
3680
+ #: views/generic/mixins.py:475
3584
3681
  #, python-format
3585
3682
  msgid "%(model_name)s '%(object)s' created and scheduled for publishing."
3586
3683
  msgstr ""
3587
3684
 
3588
- #: views/generic/mixins.py:470
3685
+ #: views/generic/mixins.py:479
3589
3686
  #, python-format
3590
3687
  msgid ""
3591
3688
  "%(model_name)s '%(object)s' is live and this version has been scheduled for "
3592
3689
  "publishing."
3593
3690
  msgstr ""
3594
3691
 
3595
- #: views/generic/mixins.py:475
3692
+ #: views/generic/mixins.py:484
3596
3693
  #, python-format
3597
3694
  msgid "%(model_name)s '%(object)s' updated and published."
3598
3695
  msgstr ""
3599
3696
 
3600
- #: views/generic/mixins.py:477
3697
+ #: views/generic/mixins.py:486
3601
3698
  #, python-format
3602
3699
  msgid "%(model_name)s '%(object)s' created and published."
3603
3700
  msgstr ""
3604
3701
 
3605
- #: views/generic/mixins.py:481
3702
+ #: views/generic/mixins.py:490
3606
3703
  #, python-format
3607
3704
  msgid "%(model_name)s '%(object)s' has been submitted for moderation."
3608
3705
  msgstr ""
3609
3706
 
3610
- #: views/generic/mixins.py:486
3707
+ #: views/generic/mixins.py:495
3611
3708
  #, python-format
3612
3709
  msgid "%(model_name)s '%(object)s' created and submitted for moderation."
3613
3710
  msgstr ""
3614
3711
 
3615
- #: views/generic/mixins.py:490
3712
+ #: views/generic/mixins.py:499
3616
3713
  #, python-format
3617
3714
  msgid "Workflow on %(model_name)s '%(object)s' has been restarted."
3618
3715
  msgstr ""
3619
3716
 
3620
- #: views/generic/mixins.py:493
3717
+ #: views/generic/mixins.py:502
3621
3718
  #, python-format
3622
3719
  msgid "Workflow on %(model_name)s '%(object)s' has been cancelled."
3623
3720
  msgstr ""
3624
3721
 
3625
- #: views/generic/mixins.py:809
3722
+ #: views/generic/mixins.py:827
3626
3723
  #, python-format
3627
3724
  msgid ""
3628
3725
  "You are viewing a previous version of this %(model_name)s from "
3629
3726
  "<b>%(created_at)s</b> by %(user)s"
3630
3727
  msgstr ""
3631
3728
 
3632
- #: views/generic/mixins.py:843
3729
+ #: views/generic/mixins.py:861
3633
3730
  #, python-format
3634
3731
  msgid ""
3635
3732
  "%(model_name)s '%(object)s' has been replaced with version from "
3636
3733
  "%(timestamp)s."
3637
3734
  msgstr ""
3638
3735
 
3639
- #: views/generic/mixins.py:847
3736
+ #: views/generic/mixins.py:865
3640
3737
  #, python-format
3641
3738
  msgid ""
3642
3739
  "Version from %(timestamp)s of %(model_name)s '%(object)s' has been published."
3643
3740
  msgstr ""
3644
3741
 
3645
- #: views/generic/mixins.py:852
3742
+ #: views/generic/mixins.py:870
3646
3743
  #, python-format
3647
3744
  msgid ""
3648
3745
  "Version from %(timestamp)s of %(model_name)s '%(object)s' has been scheduled "
3649
3746
  "for publishing."
3650
3747
  msgstr ""
3651
3748
 
3652
- #: views/generic/models.py:216
3749
+ #: views/generic/models.py:240
3653
3750
  #, python-format
3654
3751
  msgid "%(related_model_name)s %(field_label)s"
3655
3752
  msgstr ""
3656
3753
 
3657
- #: views/generic/models.py:328 views/generic/models.py:754
3658
- #: views/generic/models.py:1035
3754
+ #: views/generic/models.py:339
3755
+ msgid "Sort item order"
3756
+ msgstr ""
3757
+
3758
+ #: views/generic/models.py:369 views/generic/models.py:820
3759
+ #: views/generic/models.py:1101
3659
3760
  msgid "Inspect"
3660
3761
  msgstr ""
3661
3762
 
3662
- #: views/generic/models.py:364 wagtail_hooks.py:235
3763
+ #: views/generic/models.py:405 wagtail_hooks.py:235
3663
3764
  #, python-format
3664
3765
  msgid "More options for '%(title)s'"
3665
3766
  msgstr ""
3666
3767
 
3667
- #: views/generic/models.py:375
3768
+ #: views/generic/models.py:416
3668
3769
  #, python-format
3669
3770
  msgid "Add %(model_name)s"
3670
3771
  msgstr ""
3671
3772
 
3672
- #: views/generic/models.py:422
3773
+ #: views/generic/models.py:483
3673
3774
  #, python-format
3674
3775
  msgid "The %(model_name)s could not be created due to errors."
3675
3776
  msgstr ""
3676
3777
 
3677
- #: views/generic/models.py:460 views/workflows.py:687
3778
+ #: views/generic/models.py:522 views/workflows.py:687
3678
3779
  #, python-format
3679
3780
  msgid "New: %(model_name)s"
3680
3781
  msgstr ""
3681
3782
 
3682
- #: views/generic/models.py:644
3783
+ #: views/generic/models.py:710
3683
3784
  msgid "Editing"
3684
3785
  msgstr ""
3685
3786
 
3686
- #: views/generic/models.py:650
3787
+ #: views/generic/models.py:716
3687
3788
  #, python-format
3688
3789
  msgid "The %(model_name)s could not be saved due to errors."
3689
3790
  msgstr ""
3690
3791
 
3691
- #: views/generic/models.py:925
3792
+ #: views/generic/models.py:991
3692
3793
  #, python-format
3693
3794
  msgid "%(model_name)s '%(object)s' deleted."
3694
3795
  msgstr ""
3695
3796
 
3696
- #: views/generic/models.py:990
3797
+ #: views/generic/models.py:1056
3697
3798
  #, python-format
3698
3799
  msgid "Are you sure you want to delete this %(model_name)s?"
3699
3800
  msgstr ""
3700
3801
 
3701
- #: views/generic/models.py:1175
3802
+ #: views/generic/models.py:1241
3702
3803
  msgid "Compare"
3703
3804
  msgstr ""
3704
3805
 
3705
- #: views/generic/models.py:1248
3806
+ #: views/generic/models.py:1314
3706
3807
  msgid "Earliest"
3707
3808
  msgstr ""
3708
3809
 
3709
- #: views/generic/models.py:1251
3810
+ #: views/generic/models.py:1317
3710
3811
  msgid "Latest"
3711
3812
  msgstr ""
3712
3813
 
3713
- #: views/generic/models.py:1311
3814
+ #: views/generic/models.py:1377
3714
3815
  #, python-format
3715
3816
  msgid "'%(object)s' unpublished."
3716
3817
  msgstr ""
3717
3818
 
3718
- #: views/generic/models.py:1420
3819
+ #: views/generic/models.py:1486
3719
3820
  #, python-format
3720
3821
  msgid "Version %(revision_id)s of \"%(object)s\" unscheduled."
3721
3822
  msgstr ""
3722
3823
 
3723
- #: views/generic/models.py:1423
3824
+ #: views/generic/models.py:1489
3724
3825
  msgid "Unschedule"
3725
3826
  msgstr ""
3726
3827
 
3727
- #: views/generic/models.py:1481
3828
+ #: views/generic/models.py:1547
3728
3829
  #, python-format
3729
3830
  msgid "revision %(revision_id)s of \"%(object)s\""
3730
3831
  msgstr ""
@@ -3910,7 +4011,7 @@ msgid "Page '%(page_title)s' created and submitted for moderation."
3910
4011
  msgstr ""
3911
4012
 
3912
4013
  #: views/pages/create.py:386
3913
- msgid "The page could not be created due to validation errors"
4014
+ msgid "The page could not be created due to validation errors."
3914
4015
  msgstr ""
3915
4016
 
3916
4017
  #: views/pages/delete.py:69
@@ -3980,65 +4081,54 @@ msgid "Workflow on page '%(page_title)s' has been restarted."
3980
4081
  msgstr ""
3981
4082
 
3982
4083
  #: views/pages/edit.py:855
3983
- msgid "The page could not be saved as it is locked"
4084
+ msgid "The page could not be saved as it is locked."
3984
4085
  msgstr ""
3985
4086
 
3986
4087
  #: views/pages/edit.py:860
3987
- msgid "The page could not be saved due to validation errors"
4088
+ msgid "The page could not be saved due to validation errors."
3988
4089
  msgstr ""
3989
4090
 
3990
4091
  #: views/pages/history.py:18
3991
4092
  msgid "Is commenting action"
3992
4093
  msgstr ""
3993
4094
 
3994
- #: views/pages/listing.py:73
4095
+ #: views/pages/listing.py:72
3995
4096
  msgid "Date updated"
3996
4097
  msgstr ""
3997
4098
 
3998
- #: views/pages/listing.py:77
4099
+ #: views/pages/listing.py:76
3999
4100
  msgid "Owner"
4000
4101
  msgstr ""
4001
4102
 
4002
- #: views/pages/listing.py:88
4103
+ #: views/pages/listing.py:87
4003
4104
  msgid "Edited by"
4004
4105
  msgstr ""
4005
4106
 
4006
- #: views/pages/listing.py:100 views/reports/page_types_usage.py:75
4107
+ #: views/pages/listing.py:99 views/reports/page_types_usage.py:75
4007
4108
  msgid "Site"
4008
4109
  msgstr ""
4009
4110
 
4010
- #: views/pages/listing.py:105
4111
+ #: views/pages/listing.py:104
4011
4112
  msgid "Has child pages"
4012
4113
  msgstr ""
4013
4114
 
4014
- #: views/pages/listing.py:106
4115
+ #: views/pages/listing.py:105
4015
4116
  msgid "Any"
4016
4117
  msgstr ""
4017
4118
 
4018
- #: views/pages/listing.py:108 views/workflows.py:88
4119
+ #: views/pages/listing.py:107 views/workflows.py:88
4019
4120
  #: widgets/boolean_radio_select.py:15
4020
4121
  msgid "Yes"
4021
4122
  msgstr ""
4022
4123
 
4023
- #: views/pages/listing.py:121
4124
+ #: views/pages/listing.py:120
4024
4125
  msgid "Page type"
4025
4126
  msgstr ""
4026
4127
 
4027
- #: views/pages/listing.py:311
4128
+ #: views/pages/listing.py:310
4028
4129
  msgid "Exploring"
4029
4130
  msgstr ""
4030
4131
 
4031
- #: views/pages/listing.py:404
4032
- msgid ""
4033
- "Focus on the drag button and press up or down arrows to move the item, then "
4034
- "press enter to submit the change."
4035
- msgstr ""
4036
-
4037
- #: views/pages/listing.py:412
4038
- #, python-format
4039
- msgid "'%(page_title)s' has been moved successfully."
4040
- msgstr ""
4041
-
4042
4132
  #: views/pages/lock.py:36
4043
4133
  #, python-format
4044
4134
  msgid "Page '%(page_title)s' is now unlocked."
@@ -4048,7 +4138,7 @@ msgstr ""
4048
4138
  #, python-format
4049
4139
  msgid ""
4050
4140
  "The slug '%(page_slug)s' is already in use at the selected parent page. Make "
4051
- "sure the slug is unique and try again"
4141
+ "sure the slug is unique and try again."
4052
4142
  msgstr ""
4053
4143
 
4054
4144
  #: views/pages/move.py:125
@@ -4325,10 +4415,6 @@ msgstr ""
4325
4415
  msgid "Blockquote"
4326
4416
  msgstr ""
4327
4417
 
4328
- #: wagtail_hooks.py:666
4329
- msgid "Bold"
4330
- msgstr ""
4331
-
4332
4418
  #: wagtail_hooks.py:711
4333
4419
  msgid "Link"
4334
4420
  msgstr ""
@@ -4358,7 +4444,7 @@ msgstr ""
4358
4444
  msgid "Shortcuts"
4359
4445
  msgstr ""
4360
4446
 
4361
- #: wagtail_hooks.py:999
4447
+ #: wagtail_hooks.py:1000
4362
4448
  msgid "Help"
4363
4449
  msgstr ""
4364
4450