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
// We will only show the prompt if their are automatic tasks, so taskNames is at least of length 1.
92
+
lettaskNamesPrint: string='('+taskNames[0];
93
+
for(leti=1;i<taskNames.length;i++){
94
+
taskNamesPrint+=', '+taskNames[i];
95
+
}
96
+
taskNamesPrint+=')';
84
97
returnnewPromise<boolean>(resolve=>{
85
-
this.notificationService.prompt(Severity.Info,nls.localize('tasks.run.allowAutomatic',"This folder has tasks defined in \'tasks.json\' that run automatically when you open this folder. Do you allow automatic tasks to run when you open this folder?"),
98
+
this.notificationService.prompt(Severity.Info,nls.localize('tasks.run.allowAutomatic',"This folder has tasks {0} defined in \'tasks.json\' that run automatically when you open this folder. Do you allow automatic tasks to run when you open this folder?",taskNamesPrint),
0 commit comments