Sentence casing on terminal link text

Fixes microsoft/vscode-remote-release#4363
This commit is contained in:
Alex Ross 2021-02-02 16:23:40 +01:00
parent 3debe29229
commit 507e210014

View file

@ -236,9 +236,9 @@ export class TerminalLinkManager extends DisposableStore {
let fallbackLabel: string;
if (this._tunnelService.canTunnel(URI.parse(uri))) {
fallbackLabel = nls.localize('followForwardedLink', "Follow Link using Forwarded Port");
fallbackLabel = nls.localize('followForwardedLink', "Follow link using forwarded port");
} else {
fallbackLabel = nls.localize('followLink', "Follow Link");
fallbackLabel = nls.localize('followLink', "Follow link");
}
const markdown = new MarkdownString('', true);