@@ -6,6 +6,11 @@ export namespace Common {
66 export const uninstall = l10n . t ( 'Uninstall' ) ;
77 export const openInBrowser = l10n . t ( 'Open in Browser' ) ;
88 export const openInEditor = l10n . t ( 'Open in Editor' ) ;
9+ export const browse = l10n . t ( 'Browse' ) ;
10+ export const selectFolder = l10n . t ( 'Select Folder' ) ;
11+ export const viewLogs = l10n . t ( 'View Logs' ) ;
12+ export const yes = l10n . t ( 'Yes' ) ;
13+ export const no = l10n . t ( 'No' ) ;
914}
1015
1116export namespace Interpreter {
@@ -25,3 +30,99 @@ export namespace PackageManagement {
2530 export const enterPackagesPlaceHolder = l10n . t ( 'Enter package names separated by space' ) ;
2631 export const editArguments = l10n . t ( 'Edit arguments' ) ;
2732}
33+
34+ export namespace Pickers {
35+ export namespace Environments {
36+ export const selectExecutable = l10n . t ( 'Select Python Executable' ) ;
37+ export const selectEnvironment = l10n . t ( 'Select a Python Environment' ) ;
38+ }
39+
40+ export namespace Packages {
41+ export const selectOption = l10n . t ( 'Select an option' ) ;
42+ export const installPackages = l10n . t ( 'Install packages' ) ;
43+ export const uninstallPackages = l10n . t ( 'Uninstall packages' ) ;
44+ }
45+
46+ export namespace Managers {
47+ export const selectEnvironmentManager = l10n . t ( 'Select an environment manager' ) ;
48+ export const selectPackageManager = l10n . t ( 'Select a package manager' ) ;
49+ export const selectProjectCreator = l10n . t ( 'Select a project creator' ) ;
50+ }
51+
52+ export namespace Project {
53+ export const selectProject = l10n . t ( 'Select a project, folder or script' ) ;
54+ export const selectProjects = l10n . t ( 'Select one or more projects, folders or scripts' ) ;
55+ }
56+ }
57+
58+ export namespace ProjectViews {
59+ export const noPackageManager = l10n . t ( 'No package manager found' ) ;
60+ export const waitingForEnvManager = l10n . t ( 'Waiting for environment managers to load' ) ;
61+ export const noEnvironmentManager = l10n . t ( 'Environment manager not found' ) ;
62+ export const noEnvironmentManagerDescription = l10n . t (
63+ 'Install an environment manager to get started. If you have installed then it might be loading or errored' ,
64+ ) ;
65+ export const noEnvironmentProvided = l10n . t ( 'No environment provided by:' ) ;
66+ export const noPackages = l10n . t ( 'No packages found' ) ;
67+ }
68+
69+ export namespace VenvManagerStrings {
70+ export const venvManagerDescription = l10n . t ( 'Manages virtual environments created using `venv`' ) ;
71+ export const venvInitialize = l10n . t ( 'Initializing virtual environments' ) ;
72+ export const venvRefreshing = l10n . t ( 'Refreshing virtual environments' ) ;
73+ export const venvGlobalFolder = l10n . t ( 'Select a folder to create a global virtual environment' ) ;
74+ export const venvGlobalFoldersSetting = l10n . t ( 'Venv Folders Setting' ) ;
75+
76+ export const venvErrorNoBasePython = l10n . t ( 'No base Python found' ) ;
77+ export const venvErrorNoPython3 = l10n . t ( 'Did not find any base Python 3' ) ;
78+
79+ export const venvName = l10n . t ( 'Enter a name for the virtual environment' ) ;
80+ export const venvNameErrorEmpty = l10n . t ( 'Name cannot be empty' ) ;
81+ export const venvNameErrorExists = l10n . t ( 'A folder with the same name already exists' ) ;
82+
83+ export const venvCreating = l10n . t ( 'Creating virtual environment' ) ;
84+ export const venvCreateFailed = l10n . t ( 'Failed to create virtual environment' ) ;
85+
86+ export const venvRemoving = l10n . t ( 'Removing virtual environment' ) ;
87+ export const venvRemoveFailed = l10n . t ( 'Failed to remove virtual environment' ) ;
88+
89+ export const installEditable = l10n . t ( 'Install project as editable' ) ;
90+ export const searchingDependencies = l10n . t ( 'Searching for dependencies' ) ;
91+ }
92+
93+ export namespace SysManagerStrings {
94+ export const sysManagerDescription = l10n . t ( 'Manages Global Python installs' ) ;
95+ export const sysManagerRefreshing = l10n . t ( 'Refreshing Global Python interpreters' ) ;
96+ export const sysManagerDiscovering = l10n . t ( 'Discovering Global Python interpreters' ) ;
97+
98+ export const selectInstall = l10n . t ( 'Select packages to install' ) ;
99+ export const selectUninstall = l10n . t ( 'Select packages to uninstall' ) ;
100+
101+ export const packageRefreshError = l10n . t ( 'Error refreshing packages' ) ;
102+ }
103+
104+ export namespace CondaStrings {
105+ export const condaManager = l10n . t ( 'Manages Conda environments' ) ;
106+ export const condaDiscovering = l10n . t ( 'Discovering Conda environments' ) ;
107+ export const condaRefreshingEnvs = l10n . t ( 'Refreshing Conda environments' ) ;
108+
109+ export const condaPackageMgr = l10n . t ( 'Manages Conda packages' ) ;
110+ export const condaRefreshingPackages = l10n . t ( 'Refreshing Conda packages' ) ;
111+ export const condaInstallingPackages = l10n . t ( 'Installing Conda packages' ) ;
112+ export const condaInstallError = l10n . t ( 'Error installing Conda packages' ) ;
113+ export const condaUninstallingPackages = l10n . t ( 'Uninstalling Conda packages' ) ;
114+ export const condaUninstallError = l10n . t ( 'Error uninstalling Conda packages' ) ;
115+
116+ export const condaNamed = l10n . t ( 'Named' ) ;
117+ export const condaPrefix = l10n . t ( 'Prefix' ) ;
118+
119+ export const condaNamedDescription = l10n . t ( 'Create a named conda environment' ) ;
120+ export const condaPrefixDescription = l10n . t ( 'Create environment in your workspace' ) ;
121+ export const condaSelectEnvType = l10n . t ( 'Select the type of conda environment to create' ) ;
122+
123+ export const condaNamedInput = l10n . t ( 'Enter the name of the conda environment to create' ) ;
124+
125+ export const condaCreateFailed = l10n . t ( 'Failed to create conda environment' ) ;
126+ export const condaRemoveFailed = l10n . t ( 'Failed to remove conda environment' ) ;
127+ export const condaExists = l10n . t ( 'Environment already exists' ) ;
128+ }
0 commit comments