From 58273dffef04784dcbbfa7adf169e03edef65907 Mon Sep 17 00:00:00 2001 From: Nick Trogh <1908215+ntrogh@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:14:12 +0200 Subject: [PATCH] Rename Hide Chat to Hide AI Features --- src/vs/workbench/contrib/chat/browser/chatSetup.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/vs/workbench/contrib/chat/browser/chatSetup.ts b/src/vs/workbench/contrib/chat/browser/chatSetup.ts index 5ebe9c1e098..0b8df217dfa 100644 --- a/src/vs/workbench/contrib/chat/browser/chatSetup.ts +++ b/src/vs/workbench/contrib/chat/browser/chatSetup.ts @@ -994,7 +994,7 @@ export class ChatSetupContribution extends Disposable implements IWorkbenchContr class ChatSetupHideAction extends Action2 { static readonly ID = 'workbench.action.chat.hideSetup'; - static readonly TITLE = localize2('hideChatSetup', "Hide Chat"); + static readonly TITLE = localize2('hideChatSetup', "Hide AI Features"); constructor() { super({ @@ -1018,9 +1018,9 @@ export class ChatSetupContribution extends Disposable implements IWorkbenchContr const dialogService = accessor.get(IDialogService); const { confirmed } = await dialogService.confirm({ - message: localize('hideChatSetupConfirm', "Are you sure you want to hide Chat?"), - detail: localize('hideChatSetupDetail', "You can restore Chat by running the '{0}' command.", CHAT_SETUP_ACTION_LABEL.value), - primaryButton: localize('hideChatSetupButton', "Hide Chat") + message: localize('hideChatSetupConfirm', "Are you sure you want to hide AI features?"), + detail: localize('hideChatSetupDetail', "You can restore AI features by running the '{0}' command.", CHAT_SETUP_ACTION_LABEL.value), + primaryButton: localize('hideChatSetupButton', "Hide AI Features") }); if (!confirmed) {