Fix a translation (#168353)

This commit is contained in:
Tyler James Leonhardt
2022-12-07 15:08:36 -08:00
committed by GitHub
parent e25b892af4
commit eab8c54b30

View File

@@ -257,7 +257,7 @@ export class ElectronServiceProcessFactory implements TsServerProcessFactory {
let tsServerPath = version.tsServerPath;
if (!fs.existsSync(tsServerPath)) {
vscode.window.showWarningMessage(vscode.l10n.t("The path {0} doesn\'t point to a valid tsserver install. Falling back to bundled TypeScript version.', tsServerPath"));
vscode.window.showWarningMessage(vscode.l10n.t("The path {0} doesn\'t point to a valid tsserver install. Falling back to bundled TypeScript version.", tsServerPath));
versionManager.reset();
tsServerPath = versionManager.currentVersion.tsServerPath;
}