Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Baeumer <dirkb@microsoft.com>2017-03-24 17:31:38 +0300
committerDirk Baeumer <dirkb@microsoft.com>2017-03-24 17:31:54 +0300
commit7c223972367b8ade5362d738606f3b910d0fbb42 (patch)
tree8c818a73c45faa322f67f5c69695c494ef813b33
parentacb29bf42587495dceaad0814dc01b1db3e57e14 (diff)
Fixes #19235: Wording in tasks warning message
-rw-r--r--src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts
index 6ba302a2a4c..89159e2459f 100644
--- a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts
+++ b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts
@@ -768,7 +768,7 @@ class TaskService extends EventEmitter implements ITaskService {
if (active.same && active.background) {
this.messageService.show(Severity.Info, nls.localize('TaskSystem.activeSame', 'The task is already active and in watch mode. To terminate the task use `F1 > terminate task`'));
} else {
- throw new TaskError(Severity.Warning, nls.localize('TaskSystem.active', 'There is an active running task right now. Terminate it first before executing another task.'), TaskErrors.RunningTask);
+ throw new TaskError(Severity.Warning, nls.localize('TaskSystem.active', 'There is already a task running. Terminate it first before executing another task.'), TaskErrors.RunningTask);
}
}
return executeResult.promise;