diff --git a/src/Umbraco.Web.UI.Client/src/assets/lang/en-us.ts b/src/Umbraco.Web.UI.Client/src/assets/lang/en-us.ts index 8a10ec8a7f..626e399b24 100644 --- a/src/Umbraco.Web.UI.Client/src/assets/lang/en-us.ts +++ b/src/Umbraco.Web.UI.Client/src/assets/lang/en-us.ts @@ -1563,7 +1563,7 @@ export default { enableListViewDescription: 'Configures the content item to show a sortable and searchable list of its\n children, the children will not be shown in the tree\n ', allowedTemplatesHeading: 'Allowed Templates', - allowedTemplatesDescription: 'Choose which templates editors are allowed to use on content of this type\n ', + allowedTemplatesDescription: 'Choose which templates editors are allowed to use on content of this type', allowAsRootHeading: 'Allow as root', allowAsRootDescription: 'Allow editors to create content of this type in the root of the content tree.\n ', childNodesHeading: 'Allowed child node types', diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.ts index d101d16a26..a7e779f824 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.ts @@ -61,9 +61,9 @@ export class UmbDocumentTypeWorkspaceViewTemplatesElement extends UmbLitElement } render() { - return html` - -
Choose which templates editors are allowed to use on content of this type
+ return html` + +
${this.localize.term('contentTypeEditor_allowedTemplatesDescription')}
@@ -180,7 +180,11 @@ export class UmbInputTemplateElement extends FormControlMixin(UmbLitElement) { `, )} - Add + `; } diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/template-card/template-card.element.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/template-card/template-card.element.ts index f3ac10e422..17032a4585 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/template-card/template-card.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/template-card/template-card.element.ts @@ -50,8 +50,12 @@ export class UmbTemplateCardElement extends FormControlMixin(UmbLitElement) { ${this.name.length ? this.name : 'Untitled template'} - - ${this.default ? '(Default template)' : 'Make default'} + + (${this.localize.term(this.default ? 'settings_defaulttemplate' : 'grid_setAsDefault')})
`;