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 {