Docs - update spelling to US 'customizations'

pull/12471/head
LB 2024-10-25 21:01:21 +10:00 zatwierdzone przez LB (Ben Johnston)
rodzic bd2a035439
commit fa81e2dbbe
4 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -314,7 +314,7 @@ The `MultipleChooserPanel` definition on `BlogPage` would be:
## Panel customization
By adding extra parameters to your panel/field definitions, you can control much of how your fields will display in the Wagtail page editing interface. Wagtail's page editing interface takes much of its behavior from Django's admin, so you may find many options for customisation covered there.
By adding extra parameters to your panel/field definitions, you can control much of how your fields will display in the Wagtail page editing interface. Wagtail's page editing interface takes much of its behavior from Django's admin, so you may find many options for customization covered there.
(See [Django model field reference](inv:django#ref/models/fields)).
(customising_panel_icons)=

Wyświetl plik

@ -291,7 +291,7 @@ You can also place the `WagtailUsersAppConfig` subclass inside the same `apps.py
For more details, see [](custom_userviewset).
## Upgrade considerations - changes affecting Wagtail customisations
## Upgrade considerations - changes affecting Wagtail customizations
### Changes to report views with the new Universal Listings UI

Wyświetl plik

@ -36,6 +36,6 @@ depth: 1
## Upgrade considerations - deprecation of old functionality
## Upgrade considerations - changes affecting Wagtail customisations
## Upgrade considerations - changes affecting Wagtail customizations
## Upgrade considerations - changes to undocumented internals

Wyświetl plik

@ -496,7 +496,7 @@ In this example, the variable `is_happening_today` will be made available within
All block types, not just `StructBlock`, support the `template` property. However, for blocks that handle basic Python data types, such as `CharBlock` and `IntegerBlock`, there are some limitations on where the template will take effect. For further details, see [](boundblocks_and_values).
## Customisations
## Customizations
All block types implement a common API for rendering their front-end and form representations, and storing and retrieving values to and from the database. By subclassing the various block classes and overriding these methods, all kinds of customizations are possible, from modifying the layout of StructBlock form fields to implementing completely new ways of combining blocks. For further details, see [](custom_streamfield_blocks).