Skip to content

Commit 3c874be

Browse files
authored
Fix UI string (microsoft#165554)
1 parent 952bbb6 commit 3c874be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/typescript-language-features/src/typescriptServiceClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ export default class TypeScriptServiceClient extends Disposable implements IType
370370

371371
let version = this._versionManager.currentVersion;
372372
if (!version.isValid) {
373-
vscode.window.showWarningMessage(vscode.l10n.t("The path {0} doesn\'t point to a valid tsserver install. Falling back to bundled TypeScript version.', version.path"));
373+
vscode.window.showWarningMessage(vscode.l10n.t("The path {0} doesn't point to a valid tsserver install. Falling back to bundled TypeScript version.", version.path));
374374

375375
this._versionManager.reset();
376376
version = this._versionManager.currentVersion;
@@ -481,7 +481,7 @@ export default class TypeScriptServiceClient extends Disposable implements IType
481481
public async openTsServerLogFile(): Promise<boolean> {
482482
if (this._configuration.tsServerLogLevel === TsServerLogLevel.Off) {
483483
vscode.window.showErrorMessage<vscode.MessageItem>(
484-
vscode.l10n.t("TS Server logging is off. Please set `typescript.tsserver.log` and restart the TS server to enable logging"),
484+
vscode.l10n.t("TS Server logging is off. Please set 'typescript.tsserver.log' and restart the TS server to enable logging"),
485485
{
486486
title: vscode.l10n.t("Enable logging and restart TS server"),
487487
})

0 commit comments

Comments
 (0)