add i18n for blockchain node logs

This commit is contained in:
Jonathan Rainville 2018-05-22 15:51:32 -04:00
parent 0be35e87f9
commit f935fee566
2 changed files with 6 additions and 4 deletions

View File

@ -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');
});
}

View File

@ -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"
}