forked from microsoft/vscode-isort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.nls.json
18 lines (18 loc) · 1.97 KB
/
package.nls.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"extension.description": "Import Organization support for Python files using `isort`.",
"command.restartServer": "Restart Server",
"settings.args.description": "Arguments passed in. Each argument is a separate string in the array.",
"settings.check.description": "Controls whether to run `isort` and report import sort issues.",
"settings.severity.description": "Mapping from severity of `isort` message type to severity shown in problem window.",
"settings.serverEnabled.description" : "Controls whether to run `isort` in server mode. Setting this to false disables import sorting via Code Actions or Organize Imports, and only the `isort: Sort Imports` command is supported.",
"settings.path.description": "When set to a path to `isort` binary, extension will use that for linting. NOTE: Using this option may slowdown linting.",
"settings.importStrategy.description": "Defines where `isort` is imported from. This setting may be ignored if `isort.path` is set.",
"settings.importStrategy.useBundled.description": "Always use the bundled version of `isort`.",
"settings.importStrategy.fromEnvironment.description": "Use `isort` from environment, fallback to bundled version only if `isort` is not available in the environment.",
"settings.interpreter.description": "When set to a path to Python executable, extension will use that to launch the server and any subprocess.",
"settings.showNotifications.description": "Controls when notifications are shown by this extension.",
"settings.showNotifications.off.description": "All notifications are turned off, any errors or warnings are still available in the logs.",
"settings.showNotifications.onError.description": "Notifications are shown only in the case of an error.",
"settings.showNotifications.onWarning.description": "Notifications are shown for errors and warnings.",
"settings.showNotifications.always.description": "Notifications are shown for anything that the server chooses to show."
}