Skip to content

Commit a82af22

Browse files
authored
Change "Vote" terminology in chat (microsoft#184204)
1 parent 42015fe commit a82af22

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/vs/workbench/contrib/chat/browser/actions/chatTitleActions.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ import { NOTEBOOK_IS_ACTIVE_EDITOR } from 'vs/workbench/contrib/notebook/common/
2121
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
2222

2323
export function registerChatTitleActions() {
24-
registerAction2(class VoteUpAction extends Action2 {
24+
registerAction2(class MarkHelpfulAction extends Action2 {
2525
constructor() {
2626
super({
27-
id: 'workbench.action.chat.voteUp',
27+
id: 'workbench.action.chat.markHelpful',
2828
title: {
29-
value: localize('interactive.voteUp.label', "Vote Up"),
30-
original: 'Vote Up'
29+
value: localize('interactive.helpful.label', "Helpful"),
30+
original: 'Helpful'
3131
},
3232
f1: false,
3333
category: CHAT_CATEGORY,
@@ -61,13 +61,13 @@ export function registerChatTitleActions() {
6161
}
6262
});
6363

64-
registerAction2(class VoteDownAction extends Action2 {
64+
registerAction2(class MarkUnhelpfulAction extends Action2 {
6565
constructor() {
6666
super({
67-
id: 'workbench.action.chat.voteDown',
67+
id: 'workbench.action.chat.markUnhelpful',
6868
title: {
69-
value: localize('interactive.voteDown.label', "Vote Down"),
70-
original: 'Vote Down'
69+
value: localize('interactive.unhelpful.label', "Unhelpful"),
70+
original: 'Unhelpful'
7171
},
7272
f1: false,
7373
category: CHAT_CATEGORY,

0 commit comments

Comments
 (0)