We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ead21ee commit bd39897Copy full SHA for bd39897
extensions/positron-assistant/src/tools.ts
@@ -296,7 +296,9 @@ export function registerAssistantTools(
296
language: 'text', // Not actually a bash command
297
confirmationMessages: {
298
title: vscode.l10n.t('Install Python Packages'),
299
- message: vscode.l10n.t('Positron Assistant wants to install {0}, is this okay?', packageNames)
+ message: options.input.packages.length === 1
300
+ ? vscode.l10n.t('Positron Assistant wants to install the package {0}. Is this okay?', packageNames)
301
+ : vscode.l10n.t('Positron Assistant wants to install the following packages: {0}. Is this okay?', packageNames)
302
},
303
};
304
return result;
0 commit comments