Skip to content

Commit

Permalink
Tweak merge editor dev command names (#155978)
Browse files Browse the repository at this point in the history
  • Loading branch information
hediet committed Jul 22, 2022
1 parent 86e7410 commit 82fda35
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ export class MergeEditorCopyContentsToJSON extends Action2 {
category: 'Merge Editor (Dev)',
title: {
value: localize(
'merge.dev.copyContents',
'Copy Contents of Inputs, Base and Result as JSON'
'merge.dev.copyState',
'Copy Merge Editor State as JSON'
),
original: 'Copy Contents of Inputs, Base and Result as JSON',
original: 'Copy Merge Editor State as JSON',
},
icon: Codicon.layoutCentered,
f1: true,
Expand Down Expand Up @@ -75,7 +75,7 @@ export class MergeEditorCopyContentsToJSON extends Action2 {

notificationService.info({
name: localize('mergeEditor.name', 'Merge Editor'),
message: localize('mergeEditor.successfullyCopiedMergeEditorContents', "Successfully copied merge editor contents"),
message: localize('mergeEditor.successfullyCopiedMergeEditorContents', "Successfully copied merge editor state"),
});
}
}
Expand All @@ -87,10 +87,10 @@ export class MergeEditorOpenContents extends Action2 {
category: 'Merge Editor (Dev)',
title: {
value: localize(
'merge.dev.openContents',
'Open Contents of Inputs, Base and Result from JSON'
'merge.dev.openState',
'Open Merge Editor State from JSON'
),
original: 'Open Contents of Inputs, Base and Result from JSON',
original: 'Open Merge Editor State from JSON',
},
icon: Codicon.layoutCentered,
f1: true,
Expand Down

0 comments on commit 82fda35

Please sign in to comment.