Skip to content

Commit

Permalink
Remove "Visual Studio" name from strings
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdias committed Dec 3, 2015
1 parent d194e65 commit d302d35
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down Expand Up @@ -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': {
Expand Down Expand Up @@ -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);
}
}

0 comments on commit d302d35

Please sign in to comment.