Skip to content

Commit ef74999

Browse files
authored
No text to speech when a change is applied (fix microsoft#213667) (microsoft#213804)
1 parent 6dc91d8 commit ef74999

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vs/workbench/contrib/chat/common/chatModel.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6+
import { localize } from 'vs/nls';
67
import { asArray, firstOrDefault } from 'vs/base/common/arrays';
78
import { DeferredPromise } from 'vs/base/common/async';
89
import { Emitter, Event } from 'vs/base/common/event';
@@ -251,7 +252,7 @@ export class Response implements IResponse {
251252
} else if (part.kind === 'command') {
252253
return part.command.title;
253254
} else if (part.kind === 'textEditGroup') {
254-
return '';
255+
return localize('editsSummary', "Made changes.");
255256
} else if (part.kind === 'progressMessage') {
256257
return '';
257258
} else if (part.kind === 'confirmation') {

0 commit comments

Comments
 (0)