Parcourir la source

Docs - update spelling to US 'customizations'

LB il y a 5 mois
Parent
commit
fa81e2dbbe
4 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 1 1
      docs/reference/panels.md
  2. 1 1
      docs/releases/6.2.md
  3. 1 1
      docs/releases/6.4.md
  4. 1 1
      docs/topics/streamfield.md

+ 1 - 1
docs/reference/panels.md

@@ -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)=

+ 1 - 1
docs/releases/6.2.md

@@ -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
 

+ 1 - 1
docs/releases/6.4.md

@@ -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

+ 1 - 1
docs/topics/streamfield.md

@@ -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).