Skip to content

Commit baf85b9

Browse files
authored
Replace word "browse" with "find" (microsoft#11460)
* Replace word browse with find * Replacing browse with find in the right file * formatting package.nls.json file * Formatting localize.ts and package.nls.json with prettier
1 parent 7d316f0 commit baf85b9

2 files changed

Lines changed: 10 additions & 13 deletions

File tree

package.nls.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,11 +146,11 @@
146146
"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.",
147147
"Logging.CurrentWorkingDirectory": "cwd:",
148148
"InterpreterQuickPickList.quickPickListPlaceholder": "Current: {0}",
149-
"InterpreterQuickPickList.enterPath.detail": "Enter or browse the path to an existing Python Interpreter",
150-
"InterpreterQuickPickList.enterPath.label": "Enter Interpreter Path...",
151-
"InterpreterQuickPickList.enterPath.placeholder": "Enter path to a Python Interpreter.",
152-
"InterpreterQuickPickList.browsePath.label": "Browse...",
153-
"InterpreterQuickPickList.browsePath.detail": "Browse your file system to select a Python Interpreter.",
149+
"InterpreterQuickPickList.enterPath.detail": "Enter path or find an existing interpreter",
150+
"InterpreterQuickPickList.enterPath.label": "Enter interpreter path...",
151+
"InterpreterQuickPickList.enterPath.placeholder": "Enter path to a Python interpreter.",
152+
"InterpreterQuickPickList.browsePath.label": "Find...",
153+
"InterpreterQuickPickList.browsePath.detail": "Browse your file system to find a Python interpreter.",
154154
"Common.bannerLabelYes": "Yes",
155155
"Common.bannerLabelNo": "No",
156156
"Common.doNotShowAgain": "Do not show again",

src/client/common/utils/localize.ts

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -176,18 +176,15 @@ export namespace InterpreterQuickPickList {
176176
'Current: {0}'
177177
);
178178
export const enterPath = {
179-
detail: localize(
180-
'InterpreterQuickPickList.enterPath.detail',
181-
'Enter or browse the path to an existing Python Interpreter'
182-
),
183-
label: localize('InterpreterQuickPickList.enterPath.label', 'Enter Interpreter Path...'),
184-
placeholder: localize('InterpreterQuickPickList.enterPath.placeholder', 'Enter path to a Python Interpreter.')
179+
detail: localize('InterpreterQuickPickList.enterPath.detail', 'Enter path or find an existing interpreter'),
180+
label: localize('InterpreterQuickPickList.enterPath.label', 'Enter interpreter path...'),
181+
placeholder: localize('InterpreterQuickPickList.enterPath.placeholder', 'Enter path to a Python interpreter.')
185182
};
186183
export const browsePath = {
187-
label: localize('InterpreterQuickPickList.browsePath.label', 'Browse...'),
184+
label: localize('InterpreterQuickPickList.browsePath.label', 'Find...'),
188185
detail: localize(
189186
'InterpreterQuickPickList.browsePath.detail',
190-
'Browse your file system to select a Python Interpreter.'
187+
'Browse your file system to find a Python interpreter.'
191188
),
192189
openButtonLabel: localize('python.command.python.setInterpreter.title', 'Select Interpreter')
193190
};

0 commit comments

Comments
 (0)