@@ -84,7 +84,7 @@ export class HideTestAction extends Action2 {
84
84
constructor ( ) {
85
85
super ( {
86
86
id : TestCommandId . HideTestAction ,
87
- title : localize ( 'hideTest' , 'Hide Test' ) ,
87
+ title : localize2 ( 'hideTest' , 'Hide Test' ) ,
88
88
menu : {
89
89
id : MenuId . TestItem ,
90
90
group : 'builtin@2' ,
@@ -106,7 +106,7 @@ export class UnhideTestAction extends Action2 {
106
106
constructor ( ) {
107
107
super ( {
108
108
id : TestCommandId . UnhideTestAction ,
109
- title : localize ( 'unhideTest' , 'Unhide Test' ) ,
109
+ title : localize2 ( 'unhideTest' , 'Unhide Test' ) ,
110
110
menu : {
111
111
id : MenuId . TestItem ,
112
112
order : ActionOrder . HideTest ,
@@ -130,7 +130,7 @@ export class UnhideAllTestsAction extends Action2 {
130
130
constructor ( ) {
131
131
super ( {
132
132
id : TestCommandId . UnhideAllTestsAction ,
133
- title : localize ( 'unhideAllTests' , 'Unhide All Tests' ) ,
133
+ title : localize2 ( 'unhideAllTests' , 'Unhide All Tests' ) ,
134
134
} ) ;
135
135
}
136
136
@@ -180,7 +180,7 @@ export class DebugAction extends RunVisibleAction {
180
180
constructor ( ) {
181
181
super ( TestRunProfileBitset . Debug , {
182
182
id : TestCommandId . DebugAction ,
183
- title : localize ( 'debug test' , 'Debug Test' ) ,
183
+ title : localize2 ( 'debug test' , 'Debug Test' ) ,
184
184
icon : icons . testingDebugIcon ,
185
185
menu : testItemInlineAndInContext ( ActionOrder . Debug , TestingContextKeys . hasDebuggableTests . isEqualTo ( true ) ) ,
186
186
} ) ;
@@ -191,7 +191,7 @@ export class CoverageAction extends RunVisibleAction {
191
191
constructor ( ) {
192
192
super ( TestRunProfileBitset . Coverage , {
193
193
id : TestCommandId . RunWithCoverageAction ,
194
- title : localize ( 'run with cover test' , 'Run Test with Coverage' ) ,
194
+ title : localize2 ( 'run with cover test' , 'Run Test with Coverage' ) ,
195
195
icon : icons . testingCoverageIcon ,
196
196
menu : testItemInlineAndInContext ( ActionOrder . Coverage , TestingContextKeys . hasCoverableTests . isEqualTo ( true ) ) ,
197
197
} ) ;
@@ -202,7 +202,7 @@ export class RunUsingProfileAction extends Action2 {
202
202
constructor ( ) {
203
203
super ( {
204
204
id : TestCommandId . RunUsingProfileAction ,
205
- title : localize ( 'testing.runUsing' , 'Execute Using Profile...' ) ,
205
+ title : localize2 ( 'testing.runUsing' , 'Execute Using Profile...' ) ,
206
206
icon : icons . testingDebugIcon ,
207
207
menu : {
208
208
id : MenuId . TestItem ,
@@ -238,7 +238,7 @@ export class RunAction extends RunVisibleAction {
238
238
constructor ( ) {
239
239
super ( TestRunProfileBitset . Run , {
240
240
id : TestCommandId . RunAction ,
241
- title : localize ( 'run test' , 'Run Test' ) ,
241
+ title : localize2 ( 'run test' , 'Run Test' ) ,
242
242
icon : icons . testingRunIcon ,
243
243
menu : testItemInlineAndInContext ( ActionOrder . Run , TestingContextKeys . hasRunnableTests . isEqualTo ( true ) ) ,
244
244
} ) ;
@@ -249,7 +249,7 @@ export class SelectDefaultTestProfiles extends Action2 {
249
249
constructor ( ) {
250
250
super ( {
251
251
id : TestCommandId . SelectDefaultTestProfiles ,
252
- title : localize ( 'testing.selectDefaultTestProfiles' , 'Select Default Profile' ) ,
252
+ title : localize2 ( 'testing.selectDefaultTestProfiles' , 'Select Default Profile' ) ,
253
253
icon : icons . testingUpdateProfiles ,
254
254
category,
255
255
} ) ;
@@ -274,7 +274,7 @@ export class ContinuousRunTestAction extends Action2 {
274
274
constructor ( ) {
275
275
super ( {
276
276
id : TestCommandId . ToggleContinousRunForTest ,
277
- title : localize ( 'testing.toggleContinuousRunOn' , 'Turn on Continuous Run' ) ,
277
+ title : localize2 ( 'testing.toggleContinuousRunOn' , 'Turn on Continuous Run' ) ,
278
278
icon : icons . testingTurnContinuousRunOn ,
279
279
precondition : ContextKeyExpr . or (
280
280
TestingContextKeys . isContinuousModeOn . isEqualTo ( true ) ,
@@ -307,7 +307,7 @@ export class ContinuousRunUsingProfileTestAction extends Action2 {
307
307
constructor ( ) {
308
308
super ( {
309
309
id : TestCommandId . ContinousRunUsingForTest ,
310
- title : localize ( 'testing.startContinuousRunUsing' , 'Start Continous Run Using...' ) ,
310
+ title : localize2 ( 'testing.startContinuousRunUsing' , 'Start Continous Run Using...' ) ,
311
311
icon : icons . testingDebugIcon ,
312
312
menu : [
313
313
{
@@ -530,7 +530,7 @@ abstract class ExecuteSelectedAction extends ViewAction<TestingExplorerView> {
530
530
531
531
export class GetSelectedProfiles extends Action2 {
532
532
constructor ( ) {
533
- super ( { id : TestCommandId . GetSelectedProfiles , title : localize ( 'getSelectedProfiles' , 'Get Selected Profiles' ) } ) ;
533
+ super ( { id : TestCommandId . GetSelectedProfiles , title : localize2 ( 'getSelectedProfiles' , 'Get Selected Profiles' ) } ) ;
534
534
}
535
535
536
536
/**
@@ -556,7 +556,7 @@ export class GetSelectedProfiles extends Action2 {
556
556
557
557
export class GetExplorerSelection extends ViewAction < TestingExplorerView > {
558
558
constructor ( ) {
559
- super ( { id : TestCommandId . GetExplorerSelection , title : localize ( 'getExplorerSelection' , 'Get Explorer Selection' ) , viewId : Testing . ExplorerViewId } ) ;
559
+ super ( { id : TestCommandId . GetExplorerSelection , title : localize2 ( 'getExplorerSelection' , 'Get Explorer Selection' ) , viewId : Testing . ExplorerViewId } ) ;
560
560
}
561
561
562
562
/**
@@ -640,7 +640,7 @@ export class RunAllAction extends RunOrDebugAllTestsAction {
640
640
super (
641
641
{
642
642
id : TestCommandId . RunAllAction ,
643
- title : localize ( 'runAllTests' , 'Run All Tests' ) ,
643
+ title : localize2 ( 'runAllTests' , 'Run All Tests' ) ,
644
644
icon : icons . testingRunAllIcon ,
645
645
keybinding : {
646
646
weight : KeybindingWeight . WorkbenchContrib ,
@@ -658,7 +658,7 @@ export class DebugAllAction extends RunOrDebugAllTestsAction {
658
658
super (
659
659
{
660
660
id : TestCommandId . DebugAllAction ,
661
- title : localize ( 'debugAllTests' , 'Debug All Tests' ) ,
661
+ title : localize2 ( 'debugAllTests' , 'Debug All Tests' ) ,
662
662
icon : icons . testingDebugIcon ,
663
663
keybinding : {
664
664
weight : KeybindingWeight . WorkbenchContrib ,
@@ -676,7 +676,7 @@ export class CoverageAllAction extends RunOrDebugAllTestsAction {
676
676
super (
677
677
{
678
678
id : TestCommandId . RunAllWithCoverageAction ,
679
- title : localize ( 'runAllWithCoverage' , 'Run All Tests with Coverage' ) ,
679
+ title : localize2 ( 'runAllWithCoverage' , 'Run All Tests with Coverage' ) ,
680
680
icon : icons . testingCoverageIcon ,
681
681
keybinding : {
682
682
weight : KeybindingWeight . WorkbenchContrib ,
0 commit comments