diff --git a/l10n/bundle.l10n.json b/l10n/bundle.l10n.json index ee8daa6ca..5bf4af0f6 100644 --- a/l10n/bundle.l10n.json +++ b/l10n/bundle.l10n.json @@ -514,6 +514,7 @@ "No Azure VMs found with tag \"{tagName}\" in subscription \"{subscriptionName}\".": "No Azure VMs found with tag \"{tagName}\" in subscription \"{subscriptionName}\".", "No collection selected.": "No collection selected.", "No commands found in this document.": "No commands found in this document.", + "No connections selected to remove.": "No connections selected to remove.", "No Connectivity": "No Connectivity", "No credentials found for id {credentialId}": "No credentials found for id {credentialId}", "No credentials found for the selected cluster.": "No credentials found for the selected cluster.", diff --git a/src/commands/removeConnection/removeConnection.ts b/src/commands/removeConnection/removeConnection.ts index 1b486ca4d..022cadf29 100644 --- a/src/commands/removeConnection/removeConnection.ts +++ b/src/commands/removeConnection/removeConnection.ts @@ -28,6 +28,7 @@ export async function removeConnection( } if (connectionsToDelete.length === 0) { + ext.outputChannel.warn(l10n.t('No connections selected to remove.')); return; }