diff --git a/Extension/src/LanguageServer/extension.ts b/Extension/src/LanguageServer/extension.ts index 09bbcace1d..2351b97497 100644 --- a/Extension/src/LanguageServer/extension.ts +++ b/Extension/src/LanguageServer/extension.ts @@ -551,7 +551,7 @@ async function installCompiler(sender?: any): Promise { break; case "darwin": { const title = localize('install.compiler.mac.title', 'The clang compiler will now be installed'); - const detail = localize('install.compiler.mac.detail', 'You may be prompted to type your password to authorize the installation in the VS Code terminal window.'); + const detail = localize('install.compiler.mac.detail', 'You may be prompted to type your password in the VS Code terminal window to authorize the installation.'); const response = await vscode.window.showInformationMessage(title, { modal: true, detail }, ok); if (response === ok) { const terminal = vscode.window.createTerminal('Install C++ Compiler'); @@ -585,7 +585,7 @@ async function installCompiler(sender?: any): Promise { })(); if (installCommand) { const title = localize('install.compiler.linux.title', 'The gcc compiler will now be installed'); - const detail = localize('install.compiler.linux.detail', 'You may be prompted to type your password to authorize the installation in the VS Code terminal window.'); + const detail = localize('install.compiler.linux.detail', 'You may be prompted to type your password in the VS Code terminal window to authorize the installation.'); const response = await vscode.window.showInformationMessage(title, { modal: true, detail }, ok); if (response === ok) { const terminal = vscode.window.createTerminal('Install C++ Compiler');