Skip to content

Commit b5f1185

Browse files
authored
Fix l10n format (#16598)
* fix l10n format * linting
1 parent 6fee715 commit b5f1185

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/standalone/chat/installPackageTool.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ export class InstallPackagesTool implements vscode.LanguageModelTool<IInstallPac
6666
_token: vscode.CancellationToken
6767
): vscode.ProviderResult<vscode.PreparedToolInvocation> {
6868
const packageInstallationPrompt = vscode.l10n.t(
69-
`Install packages into notebook kernel: ${options.input.packageList.join(', ')}`
69+
'Install packages into notebook kernel: {0}',
70+
options.input.packageList.join(', ')
7071
);
7172
const confirmationMessages = {
7273
title: vscode.l10n.t(`Install Packages`),

0 commit comments

Comments
 (0)