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
ariaLabel=trusted ? localize('status.ariaTrustedWindow',"This window is trusted.") :
448
450
localize('status.ariaUntrustedWindow',"Restricted Mode: Some features are disabled because this window is not trusted.");
451
+
toolTip=trusted ? ariaLabel : {
452
+
value: localize('status.tooltipUntrustedWindow',"Restricted Mode: [Some features](command:{1}) are disabled because this window is not trusted.",LIST_WORKSPACE_UNSUPPORTED_EXTENSIONS_COMMAND_ID),
453
+
isTrusted: true
454
+
};
449
455
break;
450
456
}
451
457
caseWorkbenchState.FOLDER: {
452
458
ariaLabel=trusted ? localize('status.ariaTrustedFolder',"This folder is trusted.") :
453
459
localize('status.ariaUntrustedFolder',"Restricted Mode: Some features are disabled because this folder is not trusted.");
460
+
toolTip=trusted ? ariaLabel : {
461
+
value: localize('status.tooltipUntrustedFolder',"Restricted Mode: [Some features](command:{1}) are disabled because this folder is not trusted",LIST_WORKSPACE_UNSUPPORTED_EXTENSIONS_COMMAND_ID),
462
+
isTrusted: true
463
+
};
454
464
break;
455
465
}
456
466
caseWorkbenchState.WORKSPACE: {
457
467
ariaLabel=trusted ? localize('status.ariaTrustedWorkspace',"This workspace is trusted.") :
458
468
localize('status.ariaUntrustedWorkspace',"Restricted Mode: Some features are disabled because this workspace is not trusted.");
469
+
toolTip=trusted ? ariaLabel : {
470
+
value: localize('status.tooltipUntrustedWorkspace',"Restricted Mode: [Some features](command:{1}) are disabled because this workspace is not trusted",LIST_WORKSPACE_UNSUPPORTED_EXTENSIONS_COMMAND_ID),
0 commit comments