Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@
"Interpreters.condaInheritEnvMessage": "We noticed you're using a conda environment. If you are experiencing issues with this environment in the integrated terminal, we recommend that you let the Python extension change \"terminal.integrated.inheritEnv\" to false in your user settings.",
"Logging.CurrentWorkingDirectory": "cwd:",
"InterpreterQuickPickList.quickPickListPlaceholder": "Current: {0}",
"InterpreterQuickPickList.enterPath.detail": "Enter or browse the path to an existing Python Interpreter",
"InterpreterQuickPickList.enterPath.label": "Enter Interpreter Path...",
"InterpreterQuickPickList.enterPath.placeholder": "Enter path to a Python Interpreter.",
"InterpreterQuickPickList.browsePath.label": "Browse...",
"InterpreterQuickPickList.browsePath.detail": "Browse your file system to select a Python Interpreter.",
"InterpreterQuickPickList.enterPath.detail": "Enter path or find an existing interpreter",
"InterpreterQuickPickList.enterPath.label": "Enter interpreter path...",
"InterpreterQuickPickList.enterPath.placeholder": "Enter path to a Python interpreter.",
"InterpreterQuickPickList.browsePath.label": "Find...",
"InterpreterQuickPickList.browsePath.detail": "Browse your file system to find a Python interpreter.",
"Common.bannerLabelYes": "Yes",
"Common.bannerLabelNo": "No",
"Common.doNotShowAgain": "Do not show again",
Expand Down
13 changes: 5 additions & 8 deletions src/client/common/utils/localize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,18 +176,15 @@ export namespace InterpreterQuickPickList {
'Current: {0}'
);
export const enterPath = {
detail: localize(
'InterpreterQuickPickList.enterPath.detail',
'Enter or browse the path to an existing Python Interpreter'
),
label: localize('InterpreterQuickPickList.enterPath.label', 'Enter Interpreter Path...'),
placeholder: localize('InterpreterQuickPickList.enterPath.placeholder', 'Enter path to a Python Interpreter.')
detail: localize('InterpreterQuickPickList.enterPath.detail', 'Enter path or find an existing interpreter'),
label: localize('InterpreterQuickPickList.enterPath.label', 'Enter interpreter path...'),
placeholder: localize('InterpreterQuickPickList.enterPath.placeholder', 'Enter path to a Python interpreter.')
};
export const browsePath = {
label: localize('InterpreterQuickPickList.browsePath.label', 'Browse...'),
label: localize('InterpreterQuickPickList.browsePath.label', 'Find...'),
detail: localize(
'InterpreterQuickPickList.browsePath.detail',
'Browse your file system to select a Python Interpreter.'
'Browse your file system to find a Python interpreter.'
),
openButtonLabel: localize('python.command.python.setInterpreter.title', 'Select Interpreter')
};
Expand Down