提交 021f5b33 编写于 作者: S Sandeep Somavarapu

Improve install dependencies message

上级 a1e908b3
......@@ -164,11 +164,11 @@ export class ExtensionManagementService implements IExtensionManagementService {
if (!dependencies.length) {
return this.downloadAndInstall(compatibleVersion);
}
const message = nls.localize('installDependecies', "This extension has dependencies. Would you like to install them along with it?");
const message = nls.localize('installDependecies', "Would you also like to install dependencies of {0}?", extension.displayName);
const options = [
nls.localize('installWithDependenices', "Install With Dependencies"),
nls.localize('installWithoutDependenices', "Install only this"),
nls.localize('close', "Close")
nls.localize('installWithDependenices', "Yes"),
nls.localize('installWithoutDependenices', "No"),
nls.localize('cancel', "Cancel")
];
return this.choiceService.choose(Severity.Info, message, options)
.then(value => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册