提交 ed1adb66 编写于 作者: M Matt Bierner

Fix some wording on restart alert messages

上级 ad023e4b
...@@ -32,7 +32,7 @@ class ConfigureLocaleAction extends Action { ...@@ -32,7 +32,7 @@ class ConfigureLocaleAction extends Action {
'{', '{',
`\t// ${nls.localize('displayLanguage', 'Defines VSCode\'s display language.')}`, `\t// ${nls.localize('displayLanguage', 'Defines VSCode\'s display language.')}`,
`\t// ${nls.localize('doc', 'See {0} for a list of supported languages.', 'https://go.microsoft.com/fwlink/?LinkId=761051')}`, `\t// ${nls.localize('doc', 'See {0} for a list of supported languages.', 'https://go.microsoft.com/fwlink/?LinkId=761051')}`,
`\t// ${nls.localize('restart', 'Changing the value requires to restart VSCode.')}`, `\t// ${nls.localize('restart', 'Changing the value requires restarting VSCode.')}`,
`\t"locale":"${Platform.language}"`, `\t"locale":"${Platform.language}"`,
'}' '}'
].join('\n'); ].join('\n');
......
...@@ -577,7 +577,7 @@ class TaskService extends EventEmitter implements ITaskService { ...@@ -577,7 +577,7 @@ class TaskService extends EventEmitter implements ITaskService {
? ExecutionEngine.Process ? ExecutionEngine.Process
: ExecutionEngine.Unknown; : ExecutionEngine.Unknown;
if (currentExecutionEngine !== this.getExecutionEngine()) { if (currentExecutionEngine !== this.getExecutionEngine()) {
this.messageService.show(Severity.Info, nls.localize('TaskSystem.noHotSwap', 'Changing the task execution engine requires to restart VS Code. The change is ignored.')); this.messageService.show(Severity.Info, nls.localize('TaskSystem.noHotSwap', 'Changing the task execution engine requires restarting VS Code. The change is ignored.'));
} }
}); });
lifecycleService.onWillShutdown(event => event.veto(this.beforeShutdown())); lifecycleService.onWillShutdown(event => event.veto(this.beforeShutdown()));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册