Skip to content

Commit

Permalink
More fixes to pre-release (#22641)
Browse files Browse the repository at this point in the history
Further followup to
#22640
  • Loading branch information
Kartik Raj committed Dec 13, 2023
1 parent d3fe64c commit 6084fe8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/client/common/utils/localize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 6084fe8

Please sign in to comment.