Skip to content

Commit 3c5e0f2

Browse files
authored
Locked the double quote in path.with.spaces. (#13598)
* Locked the double quote in path.with.spaces.
1 parent 51e5328 commit 3c5e0f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Extension/src/LanguageServer/configurations.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,8 @@ export class CppProperties {
16541654

16551655
const compilerPathErrors: string[] = [];
16561656
if (compilerPathMayNeedQuotes && !pathExists) {
1657-
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 (").'));
1657+
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\"."] },
1658+
"Compiler path with spaces could not be found. If this was intended to include compiler arguments, surround the compiler path with double quotes ({0}).", '"'));
16581659
telemetry.CompilerPathMissingQuotes = 1;
16591660
}
16601661

0 commit comments

Comments
 (0)