Skip to content

Commit

Permalink
Updates to quickpick titles
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Nov 30, 2022
1 parent 65a297f commit 2d337ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -1131,9 +1131,9 @@
"jupyter.configuration.jupyter.diagnostics.reservedPythonNames.enabled.markdownDescription": "Whether to show warnings about Python file names that could potentially [override Python packages](https://aka.ms/JupyterKernelStartFailureOverrideReservedName).",
"jupyter.configuration.jupyter.diagnostics.reservedPythonNames.exclude.markdownDescription": "Configure [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) for excluding files and folders from from being warned about [overriding Python packages](https://aka.ms/JupyterKernelStartFailureOverrideReservedName).",
"DataScience.localKernelFinderDisplayName": "Local Kernels",
"DataScience.localKernelSpecs": "Local Kernel Specs",
"DataScience.localKernelSpecs": "Local Kernel Specs...",
"DataScience.pickLocalKernelSpecTitle": "Select a Local Kernel spec",
"DataScience.localPythonEnvironments": "Local Python Environments",
"DataScience.localPythonEnvironments": "Local Python Environments...",
"DataScience.pickLocalKernelPythonEnvTitle": "Select a Local Python Environment",
"DataScience.universalRemoteKernelFinderDisplayName": "Remote - {0}",
"DataScience.remoteKernelFinderDisplayName": "Current Remote",
Expand All @@ -1142,7 +1142,7 @@
"DataScience.kernelPickerSelectLocalKernelSpecTitle": "Select a Local Kernel Spec",
"DataScience.kernelPickerSelectPythonEnvironmentTitle": "Select a Local Python Environment",
"DataScience.kernelPickerSelectKernelFromRemoteTitle": "Select a Kernel from {0}",
"DataScience.UserJupyterServerUrlProviderDisplayName": "Existing Jupyter Server",
"DataScience.UserJupyterServerUrlProviderDisplayName": "Existing Jupyter Server...",
"DataScience.UserJupyterServerUrlProviderDetail": "Connect to an existing Jupyter Server",
"DataScience.UserJupyterServerUrlAlreadyExistError": "A Jupyter Server with the same URL already exists."
}
6 changes: 3 additions & 3 deletions src/platform/common/utils/localize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1421,16 +1421,16 @@ export namespace DataScience {
{ key: 'DataScience.failedToInstallPandas', comment: ['{Locked="Pandas"}'] },
'Failed to install Pandas to use the Data Viewer.'
);
export const localKernelSpecs = () => localize('DataScience.localKernelSpecs', 'Local Kernel Specs');
export const localKernelSpecs = () => localize('DataScience.localKernelSpecs', 'Local Kernel Specs...');
export const pickLocalKernelSpecTitle = () =>
localize('DataScience.pickLocalKernelSpecTitle', `Select a Local Kernel spec`);

export const localPythonEnvironments = () =>
localize('DataScience.localPythonEnvironments', 'Local Python Environments');
localize('DataScience.localPythonEnvironments', 'Local Python Environments...');
export const pickLocalKernelPythonEnvTitle = () =>
localize('DataScience.pickLocalKernelPythonEnvTitle', `Select a Local Python Environment`);
export const UserJupyterServerUrlProviderDisplayName = () =>
localize('DataScience.UserJupyterServerUrlProviderDisplayName', 'Existing Jupyter Server');
localize('DataScience.UserJupyterServerUrlProviderDisplayName', 'Existing Jupyter Server...');
export const UserJupyterServerUrlProviderDetail = () =>
localize('DataScience.UserJupyterServerUrlProviderDetail', 'Connect to an existing Jupyter Server');
export const UserJupyterServerUrlAlreadyExistError = () =>
Expand Down

0 comments on commit 2d337ef

Please sign in to comment.