You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/remote/browser/remoteExplorer.ts
+3-1
Original file line number
Diff line number
Diff line change
@@ -314,7 +314,9 @@ class OnAutoForwardedAction extends Disposable {
314
314
}
315
315
316
316
privatelinkMessage(){
317
-
returnnls.localize('remote.tunnelsView.notificationLink',"[See all forwarded ports](command:{0}.focus)",TunnelPanel.ID);
317
+
returnnls.localize(
318
+
{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}']},
319
+
"[See all forwarded ports]({0})",`command:${TunnelPanel.ID}.focus`);
value: nls.localize('workspace.tooltip',"Virtual workspace on {0}\n\n[Some features](command:{1}) are not available for resources located on a virtual file system.",workspaceLabel,LIST_WORKSPACE_UNSUPPORTED_EXTENSIONS_COMMAND_ID),
304
+
value: nls.localize(
305
+
{key: 'workspace.tooltip2',comment: ['{0} is a remote location name, e.g. GitHub','[Some features]({1}) is a link. Only translate `Some features`. Do not change brackets and parentheses or {1}']},
306
+
"Virtual workspace on {0}\n\n[Some features]({1}) are not available for resources located on a virtual file system.",
ariaLabel=trusted ? localize('status.ariaTrustedWindow',"This window is trusted.") :
375
375
localize('status.ariaUntrustedWindow',"Restricted Mode: Some features are disabled because this window is not trusted.");
376
376
toolTip=trusted ? ariaLabel : {
377
-
value: localize('status.tooltipUntrustedWindow',"Running in Restricted Mode\n\n\Some [features are disabled](command:{0}) because this [window is not trusted](command:{1}).",LIST_WORKSPACE_UNSUPPORTED_EXTENSIONS_COMMAND_ID,MANAGE_TRUST_COMMAND_ID),
377
+
value: localize(
378
+
{key: 'status.tooltipUntrustedWindow2',comment: ['[abc]({n}) are links. Only translate `features are disabled` and `window is not trusted`. Do not change brackets and parentheses or {n}']},
379
+
"Running in Restricted Mode\n\nSome [features are disabled]({0}) because this [window is not trusted]({1}).",
ariaLabel=trusted ? localize('status.ariaTrustedFolder',"This folder is trusted.") :
385
390
localize('status.ariaUntrustedFolder',"Restricted Mode: Some features are disabled because this folder is not trusted.");
386
391
toolTip=trusted ? ariaLabel : {
387
-
value: localize('status.tooltipUntrustedFolder',"Running in Restricted Mode\n\n\Some [features are disabled](command:{0}) because this [folder is not trusted](command:{1}).",LIST_WORKSPACE_UNSUPPORTED_EXTENSIONS_COMMAND_ID,MANAGE_TRUST_COMMAND_ID),
392
+
value: localize(
393
+
{key: 'status.tooltipUntrustedFolder2',comment: ['[abc]({n}) are links. Only translate `features are disabled` and `folder is not trusted`. Do not change brackets and parentheses or {n}']},
394
+
"Running in Restricted Mode\n\nSome [features are disabled]({0}) because this [folder is not trusted]({1}).",
ariaLabel=trusted ? localize('status.ariaTrustedWorkspace',"This workspace is trusted.") :
395
405
localize('status.ariaUntrustedWorkspace',"Restricted Mode: Some features are disabled because this workspace is not trusted.");
396
406
toolTip=trusted ? ariaLabel : {
397
-
value: localize('status.tooltipUntrustedWorkspace',"Running in Restricted Mode\n\n\Some [features are disabled](command:{0}) because this [workspace is not trusted](command:{1}).",LIST_WORKSPACE_UNSUPPORTED_EXTENSIONS_COMMAND_ID,MANAGE_TRUST_COMMAND_ID),
407
+
value: localize(
408
+
{key: 'status.tooltipUntrustedWorkspace2',comment: ['[abc]({n}) are links. Only translate `features are disabled` and `workspace is not trusted`. Do not change brackets and parentheses or {n}']},
409
+
"Running in Restricted Mode\n\nSome [features are disabled]({0}) because this [workspace is not trusted]({1}).",
0 commit comments