Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Aeschlimann <martinae@microsoft.com>2021-06-09 13:16:30 +0300
committerGitHub <noreply@github.com>2021-06-09 13:16:30 +0300
commitb4c1bd0a9b03c749ea011b06c6d2676c8091a70c (patch)
tree93d2c352a5b283e89fc9626e08784c298c0cf2c7 /src/vs/workbench/contrib/remote/browser/remoteExplorer.ts
parentf8b576c274b74b7d15743f60df951834ebde55bf (diff)
parent33d504f8455b5c0ddf27d529739ca17bb634092d (diff)
Merge pull request #125817 from microsoft/aeschli/1257861.57.0
aeschli/125786
Diffstat (limited to 'src/vs/workbench/contrib/remote/browser/remoteExplorer.ts')
-rw-r--r--src/vs/workbench/contrib/remote/browser/remoteExplorer.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/remote/browser/remoteExplorer.ts b/src/vs/workbench/contrib/remote/browser/remoteExplorer.ts
index 33a5e367bc0..db88121bccb 100644
--- a/src/vs/workbench/contrib/remote/browser/remoteExplorer.ts
+++ b/src/vs/workbench/contrib/remote/browser/remoteExplorer.ts
@@ -314,7 +314,9 @@ class OnAutoForwardedAction extends Disposable {
}
private linkMessage() {
- return nls.localize('remote.tunnelsView.notificationLink', "[See all forwarded ports](command:{0}.focus)", TunnelPanel.ID);
+ return nls.localize(
+ { key: 'remote.tunnelsView.notificationLink2', comment: ['[See all forwarded ports]({0}) is a link. Only translate `See all forwarded ports`. Do not change brackets and parentheses or {0}'] },
+ "[See all forwarded ports]({0})", `command:${TunnelPanel.ID}.focus`);
}
private async showNotification(tunnel: RemoteTunnel) {