diff --git a/src/Umbraco.Core/EmbeddedResources/Lang/en.xml b/src/Umbraco.Core/EmbeddedResources/Lang/en.xml index 8ae8e81a97..8ba4dbf6ee 100644 --- a/src/Umbraco.Core/EmbeddedResources/Lang/en.xml +++ b/src/Umbraco.Core/EmbeddedResources/Lang/en.xml @@ -2786,29 +2786,29 @@ To manage your website, simply open the Umbraco backoffice and start adding cont Size options Define one or more size options, this enables resizing of the Block Available column spans - Define the different number of columns this block is allowed to span across. This does not prevent Blocks to be placed in Areas of a smaller column span. + Define the different number of columns this block is allowed to span across. This does not prevent Blocks from being placed in Areas with a smaller column span. Available row spans Define the range of layout rows this block is allowed to span across. Allow in root Make this block available in the root of the layout. Allow in areas - Make this block available by default within the areas of other Blocks (unless explicit permissions are set for these areas). - When empty all Blocks allowed for Areas can be created. + Make this block available for use within the areas of other Blocks (unless explicit permissions are set for these areas). + By default, all block types are allowed in an Area, Use this option to allow only selected types. Areas Grid Columns for Areas Define how many columns that will be available for areas. If not defined, the number of columns defined for the entire layout will be used. Areas - To enable nesting of blocks within this block, define one or more areas for blocks to be nested within. Areas follow their own layout witch is defined by the Grid Columns for Areas. Each Area column span and row span can be adjusted by using the scale-handler in the bottom right corner. + To enable the nesting of blocks within this block, define one or more areas. Areas follow the layout defined by their own grid column configuration. The 'column span' and 'row span' for each area can be adjusted by using the scale-handler box in the bottom right hand corner of the selected area. %0% is not allowed at this spot.]]> Default layout stylesheet Disallowed content was rejected - + Drag to scale Create Button Label - Overwrite the label on the create button of this Area. + Override the label text for adding a new Block to this Area, Example: 'Add Widget' Show resize options Add Block Add group diff --git a/src/Umbraco.Core/EmbeddedResources/Lang/en_us.xml b/src/Umbraco.Core/EmbeddedResources/Lang/en_us.xml index 032833a123..288a53469e 100644 --- a/src/Umbraco.Core/EmbeddedResources/Lang/en_us.xml +++ b/src/Umbraco.Core/EmbeddedResources/Lang/en_us.xml @@ -2889,29 +2889,29 @@ To manage your website, simply open the Umbraco backoffice and start adding cont Size options Define one or more size options, this enables resizing of the Block Available column spans - Define the different number of columns this block is allowed to span across. This does not prevent Blocks to be placed in Areas of a smaller column span. + Define the different number of columns this block is allowed to span across. This does not prevent Blocks from being placed in Areas with a smaller column span. Available row spans Define the range of layout rows this block is allowed to span across. Allow in root Make this block available in the root of the layout. Allow in areas - Make this block available by default within the areas of other Blocks (unless explicit permissions are set for these areas). - When empty all Blocks allowed for Areas can be created. + Make this block available for use within the areas of other Blocks (unless explicit permissions are set for these areas). + By default, all block types are allowed in an Area, Use this option to allow only selected types. Areas Grid Columns for Areas Define how many columns that will be available for areas. If not defined, the number of columns defined for the entire layout will be used. Areas - To enable nesting of blocks within this block, define one or more areas for blocks to be nested within. Areas follow their own layout witch is defined by the Grid Columns for Areas. Each Area column span and row span can be adjusted by using the scale-handler in the bottom right corner. + To enable the nesting of blocks within this block, define one or more areas. Areas follow the layout defined by their own grid column configuration. The 'column span' and 'row span' for each area can be adjusted by using the scale-handler box in the bottom right hand corner of the selected area. %0% is not allowed at this spot.]]> Default layout stylesheet Disallowed content was rejected - + Drag to scale Create Button Label - Overwrite the label on the create button of this Area. + Override the label text for adding a new Block to this Area, Example: 'Add Widget' Show resize options Add Block Add group diff --git a/src/Umbraco.Core/PropertyEditors/BlockGridConfiguration.cs b/src/Umbraco.Core/PropertyEditors/BlockGridConfiguration.cs index f635eb6324..1fab493825 100644 --- a/src/Umbraco.Core/PropertyEditors/BlockGridConfiguration.cs +++ b/src/Umbraco.Core/PropertyEditors/BlockGridConfiguration.cs @@ -10,13 +10,13 @@ namespace Umbraco.Cms.Core.PropertyEditors; /// public class BlockGridConfiguration { - [ConfigurationField("blocks", "Blocks", "views/propertyeditors/blockgrid/prevalue/blockgrid.blockconfiguration.html", Description = "Define Blocks based on Element Types.")] + [ConfigurationField("blocks", "Blocks", "views/propertyeditors/blockgrid/prevalue/blockgrid.blockconfiguration.html", Description = "Define Blocks based on Element Types. Use Groups to help organise their selection. Example Groups: 'Layout' and 'Content'")] public BlockGridBlockConfiguration[] Blocks { get; set; } = Array.Empty(); [ConfigurationField("blockGroups", "Block Groups", "views/propertyeditors/blockgrid/prevalue/blockgrid.groupconfiguration.html", HideLabel = true)] public BlockGridGroupConfiguration[] BlockGroups { get; set; } = Array.Empty(); - [ConfigurationField("validationLimit", "Amount", "numberrange", Description = "Set a required range of blocks")] + [ConfigurationField("validationLimit", "Amount", "numberrange", Description = "Set the required range for the allowed number of blocks")] public NumberRange ValidationLimit { get; set; } = new NumberRange(); [ConfigurationField("useLiveEditing", "Live editing mode", "boolean", Description = "Live update content when editing in overlay")] @@ -28,10 +28,10 @@ public class BlockGridConfiguration [ConfigurationField("gridColumns", "Grid Columns", "number", Description = "Set the number of columns for the layout. (defaults to 12)")] public int? GridColumns { get; set; } - [ConfigurationField("layoutStylesheet", "Layout Stylesheet", "views/propertyeditors/blockgrid/prevalue/blockgrid.stylesheetpicker.html", Description = "Overwrite default stylesheet for layout.")] + [ConfigurationField("layoutStylesheet", "Layout Stylesheet", "views/propertyeditors/blockgrid/prevalue/blockgrid.stylesheetpicker.html", Description = "Override default stylesheet for backoffice layout.")] public string? LayoutStylesheet { get; set; } - [ConfigurationField("createLabel", "Create Button Label", "textstring", Description = "Overwrite the root create button label")] + [ConfigurationField("createLabel", "Create Button Label", "textstring", Description = "Override the label text for adding a new block, Example 'Add Widget'")] public string? CreateLabel { get; set; } [DataContract] diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/blockgrid.blockconfiguration.area.overlay.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/blockgrid.blockconfiguration.area.overlay.html index a4ba0db72e..650ca29629 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/blockgrid.blockconfiguration.area.overlay.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/blockgrid.blockconfiguration.area.overlay.html @@ -29,7 +29,7 @@ * - The alias will be printed by GetBlockGridHTML(), use the alias to target the Element representing this area. Ex. .umb-block-grid__area[data-area-alias="MyAreaAlias"] { ... } + When using GetBlockGridHTML() to render the Block Grid, the alias will be rendered in the markup as a 'data-area-alias' attribute. Use the alias attribute to target the element for the area. Example. .umb-block-grid__area[data-area-alias="MyAreaAlias"] { ... }
@@ -48,7 +48,7 @@
- Overwrite the label on the create button of this Area. + Override the label text for adding a new Block to this Area, Example: 'Add Widget'
diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/blockgrid.blockconfiguration.overlay.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/blockgrid.blockconfiguration.overlay.html index 85668c0786..5189a47df9 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/blockgrid.blockconfiguration.overlay.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/blockgrid.blockconfiguration.overlay.html @@ -210,7 +210,7 @@
- To enable nesting of blocks within this block, define one or more areas for blocks to be nested within. Areas follow their own layout witch is defined by the Area Layout Columns. Each Areas column and row span can be adjusted by using the scale-handler in the bottom right. + To enable the nesting of blocks within this block, define one or more areas. Areas follow the layout defined by their own grid column configuration. The 'column span' and 'row span' for each area can be adjusted by using the scale-handler box in the bottom right hand corner of the selected area.
diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/umb-block-grid-area-allowance-editor.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/umb-block-grid-area-allowance-editor.html index 55ceb941bb..f6d22780d7 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/umb-block-grid-area-allowance-editor.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blockgrid/prevalue/umb-block-grid-area-allowance-editor.html @@ -57,7 +57,7 @@
- When empty all Blocks allowed for Areas can be created. + By default, all block types are allowed in an Area, Use this option to allow only selected types.