@@ -82,7 +82,7 @@ export class SettingsTreeIndicatorsLabel implements IDisposable {
82
82
private createWorkspaceTrustElement ( ) : HTMLElement {
83
83
const workspaceTrustElement = $ ( 'span.setting-item-workspace-trust' ) ;
84
84
const workspaceTrustLabel = new SimpleIconLabel ( workspaceTrustElement ) ;
85
- workspaceTrustLabel . text = '$(warning) ' + localize ( 'workspaceUntrustedLabel' , "Setting value not effective " ) ;
85
+ workspaceTrustLabel . text = '$(warning) ' + localize ( 'workspaceUntrustedLabel' , "Setting value not applied " ) ;
86
86
const contentFallback = localize ( 'trustLabel' , "The setting value can only be applied in a trusted workspace." ) ;
87
87
88
88
const contentMarkdownString = contentFallback + ` [${ localize ( 'manageWorkspaceTrust' , "Manage Workspace Trust" ) } ](manage-workspace-trust).` ;
@@ -181,8 +181,8 @@ export class SettingsTreeIndicatorsLabel implements IDisposable {
181
181
this . scopeOverridesElement . style . display = 'inline' ;
182
182
this . scopeOverridesElement . classList . add ( 'with-custom-hover' ) ;
183
183
184
- this . scopeOverridesLabel . text = '$(warning) ' + localize ( 'policyLabelText' , "Setting value not effective " ) ;
185
- const contentFallback = localize ( 'policyDescription' , "This setting is managed by your organization and its effective value cannot be changed." ) ;
184
+ this . scopeOverridesLabel . text = '$(warning) ' + localize ( 'policyLabelText' , "Setting value not applied " ) ;
185
+ const contentFallback = localize ( 'policyDescription' , "This setting is managed by your organization and its applied value cannot be changed." ) ;
186
186
const contentMarkdownString = contentFallback + ` [${ localize ( 'policyFilterLink' , "View policy settings" ) } ](policy-settings).` ;
187
187
const content : ITooltipMarkdownString = {
188
188
markdown : {
@@ -359,12 +359,12 @@ export function getIndicatorsLabelAriaLabel(element: SettingsTreeSettingElement,
359
359
360
360
// Add workspace trust text
361
361
if ( element . isUntrusted ) {
362
- ariaLabelSections . push ( localize ( 'workspaceUntrustedAriaLabel' , "Workspace untrusted; setting value will not take effect " ) ) ;
362
+ ariaLabelSections . push ( localize ( 'workspaceUntrustedAriaLabel' , "Workspace untrusted; setting value not applied " ) ) ;
363
363
}
364
364
365
365
const profilesEnabled = userDataProfilesService . isEnabled ( ) ;
366
366
if ( element . hasPolicyValue ) {
367
- ariaLabelSections . push ( localize ( 'policyDescriptionAccessible' , "Setting managed by organization policy; value will not take effect " ) ) ;
367
+ ariaLabelSections . push ( localize ( 'policyDescriptionAccessible' , "Managed by organization policy; setting value not applied " ) ) ;
368
368
} else if ( profilesEnabled && element . matchesScope ( ConfigurationTarget . APPLICATION , false ) ) {
369
369
ariaLabelSections . push ( localize ( 'applicationSettingDescriptionAccessible' , "Setting value retained when switching profiles" ) ) ;
370
370
} else {
0 commit comments