localise workspace trust strings for exts

This commit is contained in:
SteVen Batten 2021-04-22 07:44:24 -07:00
parent 5c39e705cc
commit ed16789225
4 changed files with 5 additions and 3 deletions

View file

@ -47,7 +47,7 @@
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "This extension calls the `tasks.executeTask()` API, which requires trust to run."
"description": "%workspaceTrust%"
}
},
"contributes": {

View file

@ -1,6 +1,7 @@
{
"description": "Extension to add task support for npm scripts.",
"displayName": "NPM support for VS Code",
"workspaceTrust": "This extension calls the `tasks.executeTask()` API, which requires trust to run.",
"config.npm.autoDetect": "Controls whether npm scripts should be automatically detected.",
"config.npm.runSilent": "Run npm commands with the `--silent` option.",
"config.npm.packageManager": "The package manager used to run scripts.",

View file

@ -20,7 +20,7 @@
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "The extension requires workspace trust when the `php.validate.executablePath` setting will load a version of PHP in the workspace."
"description": "%workspaceTrust%"
}
},
"contributes": {

View file

@ -7,5 +7,6 @@
"commands.categroy.php": "PHP",
"command.untrustValidationExecutable": "Disallow PHP validation executable (defined as workspace setting)",
"displayName": "PHP Language Features",
"description": "Provides rich language support for PHP files."
"description": "Provides rich language support for PHP files.",
"workspaceTrust": "The extension requires workspace trust when the `php.validate.executablePath` setting will load a version of PHP in the workspace."
}