mirror of https://github.com/embarklabs/embark.git
add i18n for blockchain node logs
This commit is contained in:
parent
0be35e87f9
commit
f935fee566
|
@ -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');
|
||||
});
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
}
|
Loading…
Reference in New Issue