fine tune the help link

This commit is contained in:
Sandeep Somavarapu 2021-07-23 11:22:15 +02:00
parent 51ca692319
commit b9c8788542
No known key found for this signature in database
GPG key ID: 1FED25EC4646638B

View file

@ -2018,7 +2018,7 @@ export class ExtensionStatusAction extends ExtensionAction {
if (this.extension.gallery.webExtension) {
message = new MarkdownString(localize('user disabled', "You have configured the '{0}' extension to be disabled in {1}. To enable it, please open user settings and remove it from `remote.extensionKind` setting.", this.extension.displayName || this.extension.identifier.id, productName));
} else {
message = new MarkdownString(`${localize('not web tooltip', "The '{0}' extension is not available in {1}.", this.extension.displayName || this.extension.identifier.id, productName)} [${localize('learn more', "Learn More")}](https://aka.ms/vscode-remote-codespaces#_why-is-an-extension-not-installable-in-the-browser)`);
message = new MarkdownString(`${localize('not web tooltip', "The '{0}' extension is not available in {1}", this.extension.displayName || this.extension.identifier.id, productName)} ([${localize('learn more', "learn more")}](https://aka.ms/vscode-remote-codespaces#_why-is-an-extension-not-installable-in-the-browser)).`);
}
this.updateStatus({ icon: infoIcon, message }, true);
return;