Skip to content

Commit

Permalink
Capitalize 'URL' (#16340)
Browse files Browse the repository at this point in the history
  • Loading branch information
gy-mate authored Jan 6, 2025
1 parent f165c66 commit b73e796
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform/common/utils/localize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,9 @@ export namespace DataScience {
export const noKernelConnected = l10n.t('No kernel connected');
export const jupyterSelectUriCommandLabel = l10n.t('Enter the URL of the running Jupyter Server...');
export const jupyterSelectUriInputTitle = l10n.t('Enter the URL of the running Jupyter Server');
export const jupyterSelectUriInputPlaceholder = l10n.t('Enter the url of the running Jupyter Server');
export const jupyterSelectUriInputPlaceholder = l10n.t('Enter the URL of the running Jupyter Server');
export const connectToToTheJupyterServer = (url: string) => l10n.t('Connect to the Jupyter Server {0}', url);
export const enterOrSelectRemoteJupyterPlaceholder = l10n.t('Enter a remote url, or select a remote server');
export const enterOrSelectRemoteJupyterPlaceholder = l10n.t('Enter a remote URL, or select a remote server');
export const selectRemoteJupyterPlaceholder = l10n.t('Select a remote server');
export const jupyterServerLastConnectionForQuickPickDescription = (date: Date) =>
l10n.t('Last connected {0}', fromNow(date, true, false, false));
Expand Down

0 comments on commit b73e796

Please sign in to comment.