Skip to content

Commit

Permalink
Fix UI string (#165554)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz authored Nov 4, 2022
1 parent 952bbb6 commit 3c874be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ export default class TypeScriptServiceClient extends Disposable implements IType

let version = this._versionManager.currentVersion;
if (!version.isValid) {
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"));
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));

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

0 comments on commit 3c874be

Please sign in to comment.