This commit is contained in:
Sandeep Somavarapu
2019-04-12 10:09:28 +02:00
parent f1f37c212e
commit 55270a468b
2 changed files with 15 additions and 3 deletions

View File

@@ -42,10 +42,10 @@ const configurationEntrySchema: IJSONSchema = {
enum: ['application', 'machine', 'window', 'resource'],
default: 'window',
enumDescriptions: [
nls.localize('scope.application.description', "Application specific configuration, which can be configured only in application user settings."),
nls.localize('scope.machine.description', "Machine specific configuration, which can be configured only in user settings."),
nls.localize('scope.application.description', "Application specific configuration, which can be configured only in local user settings."),
nls.localize('scope.machine.description', "Machine specific configuration, which can be configured only in local and remote user settings."),
nls.localize('scope.window.description', "Window specific configuration, which can be configured in the user or workspace settings."),
nls.localize('scope.resource.description', "Resource specific configuration, which can be configured in the wser, workspace or folder settings.")
nls.localize('scope.resource.description', "Resource specific configuration, which can be configured in the user, workspace or folder settings.")
],
description: nls.localize('scope.description', "Scope in which the configuration is applicable. Available scopes are `window` and `resource`.")
},