mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 16:18:58 +01:00
Fix UI string (#165554)
This commit is contained in:
@@ -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;
|
||||
@@ -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"),
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user