From 02f52da66d2485a10bc66ce12fe12c51f15ab673 Mon Sep 17 00:00:00 2001 From: Kartik Raj Date: Tue, 12 Dec 2023 18:52:52 -0800 Subject: [PATCH] More fixes to pre-release --- src/client/common/utils/localize.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/client/common/utils/localize.ts b/src/client/common/utils/localize.ts index ae4d7efa38a2..f09573614108 100644 --- a/src/client/common/utils/localize.ts +++ b/src/client/common/utils/localize.ts @@ -43,9 +43,12 @@ export namespace Diagnostics { export const pylanceDefaultMessage = l10n.t( "The Python extension now includes Pylance to improve completions, code navigation, overall performance and much more! You can learn more about the update and learn how to change your language server [here](https://aka.ms/new-python-bundle).\n\nRead Pylance's license [here](https://marketplace.visualstudio.com/items/ms-python.vscode-pylance/license).", ); - export const invalidSmartSendMessage = l10n.t(`Python is unable to parse the code provided. Please + export const invalidSmartSendMessage = l10n.t( + `Python is unable to parse the code provided. Please turn off Smart Send if you wish to always run line by line or explicitly select code - to force run. See [logs](command:${Commands.ViewOutput}) for more details`); + to force run. See [logs](command:{0}) for more details`, + Commands.ViewOutput, + ); } export namespace Common {