Remove "Visual Studio" name from strings

This commit is contained in:
Chris Dias 2015-12-02 16:49:45 -08:00
parent d194e65958
commit d302d35699

View file

@ -947,7 +947,7 @@ if (Env.enableTasks) {
},
'owner': {
'type': 'string',
'description': nls.localize('JsonSchema.problemMatcher.owner', 'The owner of the problem inside Visual Studio Code. Can be omitted if base is specified. Defaults to \'external\' if omitted and base is not specified.')
'description': nls.localize('JsonSchema.problemMatcher.owner', 'The owner of the problem inside Code. Can be omitted if base is specified. Defaults to \'external\' if omitted and base is not specified.')
},
'severity': {
'type': 'string',
@ -1040,7 +1040,7 @@ if (Env.enableTasks) {
'properties': {
'cwd': {
'type': 'string',
'description': nls.localize('JsonSchema.options.cwd', 'The current working directory of the executed program or script. If omitted Visual Studio Code\'s current workspace root is used.')
'description': nls.localize('JsonSchema.options.cwd', 'The current working directory of the executed program or script. If omitted Code\'s current workspace root is used.')
},
'env': {
'type': 'object',
@ -1125,12 +1125,12 @@ if (Env.enableTasks) {
},
'isBuildCommand': {
'type': 'boolean',
'description': nls.localize('JsonSchema.tasks.build', 'Maps this task to Visual Studio Code\'s default build command.'),
'description': nls.localize('JsonSchema.tasks.build', 'Maps this task to Code\'s default build command.'),
'default': true
},
'isTestCommand': {
'type': 'boolean',
'description': nls.localize('JsonSchema.tasks.test', 'Maps this task to Visual Studio Code\'s default test command.'),
'description': nls.localize('JsonSchema.tasks.test', 'Maps this task to Code\'s default test command.'),
'default': true
},
'problemMatcher': {
@ -1172,4 +1172,4 @@ if (Env.enableTasks) {
let jsonRegistry = <jsonContributionRegistry.IJSONContributionRegistry>Registry.as(jsonContributionRegistry.Extensions.JSONContribution);
jsonRegistry.registerSchema(schemaId, schema);
jsonRegistry.addSchemaFileAssociation('/.vscode/tasks.json', schemaId);
}
}