You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message=localize('closeTheWindow.message',"A chat request is in progress. Are you sure you want to close the window?");
170
+
break;
171
+
caseShutdownReason.LOAD:
172
+
message=localize('changeWorkspace.message',"A chat request is in progress. Are you sure you want to change the workspace?");
173
+
break;
174
+
caseShutdownReason.RELOAD:
175
+
message=localize('reloadTheWindow.message',"A chat request is in progress. Are you sure you want to reload the window?");
176
+
break;
177
+
default:
178
+
message=isMacintosh ? localize('quit.message',"A chat request is in progress. Are you sure you want to quit?") : localize('exit.message',"A chat request is in progress. Are you sure you want to exit?");
179
+
break;
180
+
}
181
+
182
+
constresult=awaitthis.dialogService.confirm({
183
+
message,
184
+
detail: localize('quit.detail',"The chat request will be cancelled if you continue.")
0 commit comments