Update src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit.element.ts

Co-authored-by: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com>
This commit is contained in:
Lone Iversen
2023-08-11 13:08:05 +02:00
committed by Jacob Overgaard
parent c821a9568c
commit e178c58bb5

View File

@@ -127,9 +127,9 @@ export class UmbDocumentTypeWorkspaceViewEditElement
#requestRemoveTab(tab: PropertyTypeContainerModelBaseModel | undefined) {
const Message: UmbConfirmModalData = {
headline: 'Delete tab',
content: html`Are you sure you want to delete the tab (${tab?.name || tab?.id})?
content: html`<umb-localize key="contentTypeEditor_confirmDeleteTabMessage" .args=${[tab?.name ?? tab?.id]}>Are you sure you want to delete the tab <strong>${tab?.name ?? tab?.id}</strong></umb-localize>
<div style="color:var(--uui-color-danger-emphasis)">
This will delete all items that doesn't belong to a composition.
<umb-localize key="contentTypeEditor_confirmDeleteTabNotice">This will delete all items that doesn't belong to a composition.</umb-localize>
</div>`,
confirmLabel: 'Delete',
color: 'danger',