address translation issue; fixes #72065

This commit is contained in:
Andre Weinand 2019-05-24 10:41:24 +02:00
parent 11132726df
commit e480cea725

View file

@ -147,7 +147,7 @@ class ServerReadyDetector extends vscode.Disposable {
webRoot: args.webRoot || WEB_ROOT
}, session);
} else {
const errMsg = localize('server.ready.chrome.not.installed', "The action 'debugWithChrome' requires the '{0}'", 'Debugger for Chrome');
const errMsg = localize('server.ready.chrome.not.installed', "The action '{0}' requires the '{1}' extension.", 'debugWithChrome', 'Debugger for Chrome');
vscode.window.showErrorMessage(errMsg, { modal: true }).then(_ => undefined);
}
break;