diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml index 16b943481b..34188fda01 100644 --- a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml +++ b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml @@ -252,6 +252,13 @@ Tab Thumbnail Enable list view + Number of entries per page when selected for display in list view.]]> + Select the additional columns displayed after the node name.]]> + The default order for the list.]]> + The direction of the default order for the list.]]> + Indicates if bulk publishing is allowed when defined as a list view]]> + Indicates if bulk unpublishing is allowed when defined as a list view]]> + Indicates if bulk deletion is allowed when defined as a list view]]> Add prevalue diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml b/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml index ad78006b03..7c727db3b8 100644 --- a/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml +++ b/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml @@ -258,6 +258,13 @@ Tab Thumbnail Enable list view + Number of entries per page when selected for display in list view.]]> + Select the additional columns displayed after the node name.]]> + The default order for the list.]]> + The direction of the default order for the list.]]> + Indicates if bulk publishing is allowed when defined as a list view]]> + Indicates if bulk unpublishing is allowed when defined as a list view]]> + Indicates if bulk deletion is allowed when defined as a list view]]> Add prevalue diff --git a/src/Umbraco.Web.UI/umbraco/controls/ContentTypeControlNew.ascx b/src/Umbraco.Web.UI/umbraco/controls/ContentTypeControlNew.ascx index 4e3e26bd6c..a2602b520a 100644 --- a/src/Umbraco.Web.UI/umbraco/controls/ContentTypeControlNew.ascx +++ b/src/Umbraco.Web.UI/umbraco/controls/ContentTypeControlNew.ascx @@ -77,22 +77,27 @@
+ +
+
+ - -
-
-
- +
+ - + - - + @@ -243,32 +261,32 @@ - + - + Ascending Descending - + Yes No - + Yes No - + Yes No diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentTypeControlNew.ascx.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentTypeControlNew.ascx.cs index 60223b37ef..8012606a99 100644 --- a/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentTypeControlNew.ascx.cs +++ b/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentTypeControlNew.ascx.cs @@ -103,6 +103,14 @@ namespace umbraco.controls pp_icon.Text = ui.Text("icon", Security.CurrentUser); pp_isContainer.Text = ui.Text("editcontenttype", "hasListView", Security.CurrentUser); + + pp_containerConfigPageSize.Text = ui.Text("editcontenttype", "containerConfigPageSize", Security.CurrentUser); + pp_containerConfigAdditionalColumns.Text = ui.Text("editcontenttype", "containerConfigAdditionalColumns", Security.CurrentUser); + pp_containerConfigOrderBy.Text = ui.Text("editcontenttype", "containerConfigOrderBy", Security.CurrentUser); + pp_containerConfigOrderDirection.Text = ui.Text("editcontenttype", "containerConfigOrderDirection", Security.CurrentUser); + pp_allowBulkPublish.Text = ui.Text("editcontenttype", "allowBulkPublish", Security.CurrentUser); + pp_allowBulkUnpublish.Text = ui.Text("editcontenttype", "allowBulkUnpublish", Security.CurrentUser); + pp_allowBulkDelete.Text = ui.Text("editcontenttype", "allowBulkDelete", Security.CurrentUser); // we'll disable this... if (!Page.IsPostBack && _contentType.MasterContentType != 0)
Selected columnsSelected columns