提交 3f821374 编写于 作者: B Benjamin Pasero

tweak wording (for #31182)

上级 e12f8f5f
......@@ -167,17 +167,17 @@ export class WorkspaceEditingService implements IWorkspaceEditingService {
}
private informUserOnce(): void {
if (product.quality !== 'stable') {
return; // only for stable
}
// if (product.quality !== 'stable') {
// return; // only for stable
// }
if (this.storageService.getBoolean(WorkspaceEditingService.INFO_MESSAGE_KEY)) {
return; // user does not want to see it again
}
// if (this.storageService.getBoolean(WorkspaceEditingService.INFO_MESSAGE_KEY)) {
// return; // user does not want to see it again
// }
const okAction = new Action(
'enterWorkspace.ok',
nls.localize('integrity.ok', "OK"),
const closeAction = new Action(
'enterWorkspace.close',
nls.localize('enterWorkspace.close', "Close"),
null,
true,
() => TPromise.as(true)
......@@ -208,8 +208,8 @@ export class WorkspaceEditingService implements IWorkspaceEditingService {
);
this.messageService.show(Severity.Info, {
message: nls.localize('enterWorkspace.prompt', "The opened workspace changed into a multi-root workspace."),
actions: [okAction, moreInfoAction, dontShowAgainAction]
message: nls.localize('enterWorkspace.prompt', "Learn more about working with multiple folders in VS Code."),
actions: [moreInfoAction, dontShowAgainAction, closeAction]
});
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册