Skip to content

Commit

Permalink
Adjust a few strings that mention Python (#20900)
Browse files Browse the repository at this point in the history
For #20899 (+ a few
other strings I thought could use some tweaking too)
  • Loading branch information
luabud authored Mar 23, 2023
1 parent 61f93c3 commit be55c97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/client/common/utils/localize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,11 @@ export namespace Interpreters {
'Tip: you can change the Python interpreter used by the Python extension by clicking on the Python version in the status bar',
);
export const installPythonTerminalMessageLinux = l10n.t(
'💡 Please try installing the python package using your package manager. Alternatively you can also download it from https://www.python.org/downloads',
'💡 Please try installing the Python package using your package manager. Alternatively you can also download it from https://www.python.org/downloads',
);

export const installPythonTerminalMacMessage = l10n.t(
'💡 Brew does not seem to be available. Please try to download Python from https://www.python.org/downloads. Alternatively, you can install the python package using some other package manager which is available.',
'💡 Brew does not seem to be available. Please try to download Python from https://www.python.org/downloads. Alternatively, you can install the Python package using some other available package manager.',
);
export const changePythonInterpreter = l10n.t('Change Python Interpreter');
export const selectedPythonInterpreter = l10n.t('Selected Python Interpreter');
Expand Down Expand Up @@ -440,7 +440,7 @@ export namespace CreateEnv {
export const created = l10n.t('Environment created...');
export const installingPackages = l10n.t('Installing packages...');
export const errorCreatingEnvironment = l10n.t('Error while creating virtual environment.');
export const selectPythonPlaceHolder = l10n.t('Select a python to create the virtual environment');
export const selectPythonPlaceHolder = l10n.t('Select a Python installation to create the virtual environment');
export const providerDescription = l10n.t('Creates a `.venv` virtual environment in the current workspace');
export const error = l10n.t('Creating virtual environment failed with error.');
export const tomlExtrasQuickPickTitle = l10n.t('Select optional dependencies to install from pyproject.toml');
Expand Down

0 comments on commit be55c97

Please sign in to comment.