Locked the double quote in path.with.spaces. (#13598)

* Locked the double quote in path.with.spaces.
This commit is contained in:
Sean McManus
2025-05-12 19:00:51 -07:00
committed by GitHub
parent 51e5328d24
commit 3c5e0f208e
@@ -1654,7 +1654,8 @@ export class CppProperties {
const compilerPathErrors: string[] = [];
if (compilerPathMayNeedQuotes && !pathExists) {
compilerPathErrors.push(localize("path.with.spaces", 'Compiler path with spaces could not be found. If this was intended to include compiler arguments, surround the compiler path with double quotes (").'));
compilerPathErrors.push(localize({ key: "path.with.spaces", comment: ["{Locked=\"{0}\"} The {0} is a double quote character \", and should be located next to the translation for \"double quotes\"."] },
"Compiler path with spaces could not be found. If this was intended to include compiler arguments, surround the compiler path with double quotes ({0}).", '"'));
telemetry.CompilerPathMissingQuotes = 1;
}