From f643837ac70875b4360fae17691cd11bc449a851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Gy=C3=B6ngy=C3=B6si?= Date: Thu, 26 Dec 2024 08:50:53 +0100 Subject: [PATCH] Capitalize 'URL' --- src/platform/common/utils/localize.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform/common/utils/localize.ts b/src/platform/common/utils/localize.ts index b8f9382b0d3..1d8e09818bb 100644 --- a/src/platform/common/utils/localize.ts +++ b/src/platform/common/utils/localize.ts @@ -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));