Skip to content

Commit 6a49a26

Browse files
authored
Fix translation string (microsoft#168359)
Fixes microsoft#168355
1 parent bbfdf87 commit 6a49a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/typescript-language-features/src/tsServer/serverProcess.electron.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ export class ElectronServiceProcessFactory implements TsServerProcessFactory {
257257
let tsServerPath = version.tsServerPath;
258258

259259
if (!fs.existsSync(tsServerPath)) {
260-
vscode.window.showWarningMessage(vscode.l10n.t("The path {0} doesn\'t point to a valid tsserver install. Falling back to bundled TypeScript version.', tsServerPath"));
260+
vscode.window.showWarningMessage(vscode.l10n.t("The path {0} doesn\'t point to a valid tsserver install. Falling back to bundled TypeScript version.", tsServerPath));
261261
versionManager.reset();
262262
tsServerPath = versionManager.currentVersion.tsServerPath;
263263
}

0 commit comments

Comments
 (0)