diff --git a/lib/core/engine.js b/lib/core/engine.js index 78beadf51..b752bdc33 100644 --- a/lib/core/engine.js +++ b/lib/core/engine.js @@ -413,7 +413,7 @@ class Engine { } startBlockchainNode() { - this.logger.info('Starting Blockchain node in another process'.cyan); + this.logger.info(__('Starting Blockchain node in another process').cyan); this.isRunningBlockchain = true; this.blockchainProcess = new ProcessLauncher({ @@ -434,7 +434,7 @@ class Engine { }); this.blockchainProcess.once('result', constants.blockchain.blockchainReady, () => { - this.logger.info('Blockchain node is ready'.cyan); + this.logger.info(__('Blockchain node is ready').cyan); this.startService('web3'); }); } diff --git a/lib/i18n/locales/en.json b/lib/i18n/locales/en.json index d5b7baa0e..262756428 100644 --- a/lib/i18n/locales/en.json +++ b/lib/i18n/locales/en.json @@ -121,5 +121,7 @@ "DApp available at": "DApp available at", "successfully uploaded to ipfs": "successfully uploaded to ipfs", "finished building DApp and deploying to": "finished building DApp and deploying to", - "instantiated js-ipfs object configured to the current environment (available if ipfs is enabled)": "instantiated js-ipfs object configured to the current environment (available if ipfs is enabled)" -} + "instantiated js-ipfs object configured to the current environment (available if ipfs is enabled)": "instantiated js-ipfs object configured to the current environment (available if ipfs is enabled)", + "Starting Blockchain node in another process": "Starting Blockchain node in another process", + "Blockchain node is ready": "Blockchain node is ready" +} \ No newline at end of file