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