in src/client/common/utils/localize.ts [215:301]
name: localize('LanguageService.statusItem.name', 'Python IntelliSense Status'),
text: localize('LanguageService.statusItem.text', 'Partial Mode'),
detail: localize('LanguageService.statusItem.detail', 'Limited IntelliSense provided by Pylance'),
};
export const startingPylance = localize('LanguageService.startingPylance', 'Starting Pylance language server.');
export const startingJedi = localize('LanguageService.startingJedi', 'Starting Jedi language server.');
export const startingNone = localize(
'LanguageService.startingNone',
'Editor support is inactive since language server is set to None.',
);
export const untrustedWorkspaceMessage = localize(
'LanguageService.untrustedWorkspaceMessage',
'Only Pylance is supported in untrusted workspaces, setting language server to None.',
);
export const reloadAfterLanguageServerChange = localize(
'LanguageService.reloadAfterLanguageServerChange',
'Please reload the window switching between language servers.',
);
export const lsFailedToStart = localize(
'LanguageService.lsFailedToStart',
'We encountered an issue starting the language server. Reverting to Jedi language engine. Check the Python output panel for details.',
);
export const lsFailedToDownload = localize(
'LanguageService.lsFailedToDownload',
'We encountered an issue downloading the language server. Reverting to Jedi language engine. Check the Python output panel for details.',
);
export const lsFailedToExtract = localize(
'LanguageService.lsFailedToExtract',
'We encountered an issue extracting the language server. Reverting to Jedi language engine. Check the Python output panel for details.',
);
export const downloadFailedOutputMessage = localize(
'LanguageService.downloadFailedOutputMessage',
'Language server download failed.',
);
export const extractionFailedOutputMessage = localize(
'LanguageService.extractionFailedOutputMessage',
'Language server extraction failed.',
);
export const extractionCompletedOutputMessage = localize(
'LanguageService.extractionCompletedOutputMessage',
'Language server download complete.',
);
export const extractionDoneOutputMessage = localize('LanguageService.extractionDoneOutputMessage', 'done.');
export const reloadVSCodeIfSeachPathHasChanged = localize(
'LanguageService.reloadVSCodeIfSeachPathHasChanged',
'Search paths have changed for this Python interpreter. Please reload the extension to ensure that the IntelliSense works correctly.',
);
}
export namespace Http {
export const downloadingFile = localize('downloading.file', 'Downloading {0}...');
export const downloadingFileProgress = localize('downloading.file.progress', '{0}{1} of {2} KB ({3}%)');
}
export namespace Experiments {
export const inGroup = localize('Experiments.inGroup', "Experiment '{0}' is active");
export const optedOutOf = localize('Experiments.optedOutOf', "Experiment '{0}' is inactive");
}
export namespace Interpreters {
export const discovering = localize('Interpreters.DiscoveringInterpreters', 'Discovering Python Interpreters');
export const refreshing = localize('Interpreters.RefreshingInterpreters', 'Refreshing Python Interpreters');
export const condaInheritEnvMessage = localize(
'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.',
);
export const environmentPromptMessage = localize(
'Interpreters.environmentPromptMessage',
'We noticed a new virtual environment has been created. Do you want to select it for the workspace folder?',
);
export const entireWorkspace = localize('Interpreters.entireWorkspace', 'Select at workspace level');
export const clearAtWorkspace = localize('Interpreters.clearAtWorkspace', 'Clear at workspace level');
export const selectInterpreterTip = localize(
'Interpreters.selectInterpreterTip',
'Tip: you can change the Python interpreter used by the Python extension by clicking on the Python version in the status bar',
);
export const pythonInterpreterPath = localize('Interpreters.pythonInterpreterPath', 'Python interpreter path: {0}');
}
export namespace InterpreterQuickPickList {
export const globalGroupName = localize('InterpreterQuickPickList.globalGroupName', 'Global');
export const workspaceGroupName = localize('InterpreterQuickPickList.workspaceGroupName', 'Workspace');
export const quickPickListPlaceholder = localize(
'InterpreterQuickPickList.quickPickListPlaceholder',
'Selected Interpreter: {0}',
);
export const enterPath = {