diff --git a/l10n/bundle.l10n.json b/l10n/bundle.l10n.json index 3c1be15..df57f0f 100644 --- a/l10n/bundle.l10n.json +++ b/l10n/bundle.l10n.json @@ -169,7 +169,7 @@ "Cancel": "Cancel", "Cleared {0} *{1}.": "Cleared {0} *{1}.", "Error clearing library! {0}": "Error clearing library! {0}", - "Are you sure you want to delete {0} {1}?": "Are you sure you want to delete {0} {1}?", + "This option will delete library {0} (and all of its contents) from the IBM i system. Are you sure you want to do this (this action cannot be undone)?": "This option will delete library {0} (and all of its contents) from the IBM i system. Are you sure you want to do this (this action cannot be undone)?", "Deleting object {0} {1}...": "Deleting object {0} {1}...", "Deleted {0} {1}": "Deleted {0} {1}", "Error deleting object! {0}": "Error deleting object! {0}", @@ -178,6 +178,7 @@ "Source file name must be 10 characters or less": "Source file name must be 10 characters or less", "Creating source file {0}.": "Creating source file {0}.", "Error creating source file! {0}": "Error creating source file! {0}", + "Are you sure you want to delete {0} {1}?": "Are you sure you want to delete {0} {1}?", "Are you sure you want to delete {0}?": "Are you sure you want to delete {0}?", "Deleting member {0}...": "Deleting member {0}...", "Deleted {0}": "Deleted {0}", diff --git a/src/views/projectExplorer/index.ts b/src/views/projectExplorer/index.ts index 827a814..4939483 100644 --- a/src/views/projectExplorer/index.ts +++ b/src/views/projectExplorer/index.ts @@ -1002,7 +1002,8 @@ export default class ProjectExplorer implements TreeDataProvider { + async resolveTreeItem(item: TreeItem, element: ProjectExplorerTreeItem, token: CancellationToken): Promise { if (element.getToolTip) { element.tooltip = await element.getToolTip(); }