Skip to content

Commit 0085d97

Browse files
authored
Merge pull request microsoft#259050 from microsoft/rename-hide-chat
Rename Hide Chat to Hide AI Features
2 parents 937bb49 + 58273df commit 0085d97

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/vs/workbench/contrib/chat/browser/chatSetup.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,7 @@ export class ChatSetupContribution extends Disposable implements IWorkbenchContr
994994
class ChatSetupHideAction extends Action2 {
995995

996996
static readonly ID = 'workbench.action.chat.hideSetup';
997-
static readonly TITLE = localize2('hideChatSetup', "Hide Chat");
997+
static readonly TITLE = localize2('hideChatSetup', "Hide AI Features");
998998

999999
constructor() {
10001000
super({
@@ -1018,9 +1018,9 @@ export class ChatSetupContribution extends Disposable implements IWorkbenchContr
10181018
const dialogService = accessor.get(IDialogService);
10191019

10201020
const { confirmed } = await dialogService.confirm({
1021-
message: localize('hideChatSetupConfirm', "Are you sure you want to hide Chat?"),
1022-
detail: localize('hideChatSetupDetail', "You can restore Chat by running the '{0}' command.", CHAT_SETUP_ACTION_LABEL.value),
1023-
primaryButton: localize('hideChatSetupButton', "Hide Chat")
1021+
message: localize('hideChatSetupConfirm', "Are you sure you want to hide AI features?"),
1022+
detail: localize('hideChatSetupDetail', "You can restore AI features by running the '{0}' command.", CHAT_SETUP_ACTION_LABEL.value),
1023+
primaryButton: localize('hideChatSetupButton', "Hide AI Features")
10241024
});
10251025

10261026
if (!confirmed) {

0 commit comments

Comments
 (0)