From 37f783f0c73677eff9b56deeb39ed63d7ea8041c Mon Sep 17 00:00:00 2001 From: Andrea Buzzi <155985472+buzzia2001@users.noreply.github.com> Date: Wed, 1 Jul 2026 21:54:10 +0200 Subject: [PATCH] Fix confirmation message for file replacement in IFS download --- src/ui/views/ifsBrowser.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ui/views/ifsBrowser.ts b/src/ui/views/ifsBrowser.ts index e26b9aa18..4f2ef7503 100644 --- a/src/ui/views/ifsBrowser.ts +++ b/src/ui/views/ifsBrowser.ts @@ -939,8 +939,7 @@ Please type "{0}" to confirm deletion.`, dirName); } else { if (!existsSync(target) || await vscode.window.showWarningMessage(l10n.t(`{0} already exists. -Do you want to replace it?`, target), { modal: true }, l10n.t(`{0} already exists. -Do you want to replace it?`, target))) { +Do you want to replace it?`, target), { modal: true }, l10n.t(`Yes`))) { await ibmi.getContent().downloadFile(target, targetPath); } }