conflict in en.json

This commit is contained in:
Jonathan Rainville 2018-05-18 13:39:29 -04:00
parent 94f0d98e28
commit 50103a8c02
2 changed files with 10 additions and 17 deletions

View File

@ -3,7 +3,6 @@
"Contract Name": "Contract Name", "Contract Name": "Contract Name",
"New Application": "New Application", "New Application": "New Application",
"create a barebones project meant only for contract development": "create a barebones project meant only for contract development", "create a barebones project meant only for contract development": "create a barebones project meant only for contract development",
"language to use (default: en)": "language to use (default: en)",
"create a working dapp with a SimpleStorage contract": "create a working dapp with a SimpleStorage contract", "create a working dapp with a SimpleStorage contract": "create a working dapp with a SimpleStorage contract",
"filename to output logs (default: none)": "filename to output logs (default: none)", "filename to output logs (default: none)": "filename to output logs (default: none)",
"level of logging to display": "level of logging to display", "level of logging to display": "level of logging to display",
@ -26,9 +25,6 @@
"custom gas limit (default: %s)": "custom gas limit (default: %s)", "custom gas limit (default: %s)": "custom gas limit (default: %s)",
"run tests": "run tests", "run tests": "run tests",
"resets embarks state on this dapp including clearing cache": "resets embarks state on this dapp including clearing cache", "resets embarks state on this dapp including clearing cache": "resets embarks state on this dapp including clearing cache",
"Graph will not include undeployed contracts": "Graph will not include undeployed contracts",
"Graph will not include functions": "Graph will not include functions",
"Graph will not include events": "Graph will not include events",
"generates documentation based on the smart contracts configured": "generates documentation based on the smart contracts configured", "generates documentation based on the smart contracts configured": "generates documentation based on the smart contracts configured",
"Upload your dapp to a decentralized storage": "Upload your dapp to a decentralized storage", "Upload your dapp to a decentralized storage": "Upload your dapp to a decentralized storage",
"output the version number": "output the version number", "output the version number": "output the version number",
@ -42,12 +38,7 @@
"dashboard start": "dashboard start", "dashboard start": "dashboard start",
"loaded plugins": "loaded plugins", "loaded plugins": "loaded plugins",
"loading solc compiler": "loading solc compiler", "loading solc compiler": "loading solc compiler",
"Cannot upload: {{platform}} node is not running on {{url}}.": "Cannot upload: {{platform}} node is not running on {{url}}.",
"http:// Cannot upload: {{platform}} node is not running on {{url}}.": "http:// Cannot upload: {{platform}} node is not running on {{url}}.",
"Cannot upload:": "Cannot upload:",
"node is not running on": "node is not running on",
"compiling solidity contracts": "compiling solidity contracts", "compiling solidity contracts": "compiling solidity contracts",
"Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}:{{port}}.": "Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}:{{port}}.",
"%s doesn't have a compatible contract compiler. Maybe a plugin exists for it.": "%s doesn't have a compatible contract compiler. Maybe a plugin exists for it.", "%s doesn't have a compatible contract compiler. Maybe a plugin exists for it.": "%s doesn't have a compatible contract compiler. Maybe a plugin exists for it.",
"assuming %s to be an interface": "assuming %s to be an interface", "assuming %s to be an interface": "assuming %s to be an interface",
"{{className}}: couldn't find instanceOf contract {{parentContractName}}": "{{className}}: couldn't find instanceOf contract {{parentContractName}}", "{{className}}: couldn't find instanceOf contract {{parentContractName}}": "{{className}}: couldn't find instanceOf contract {{parentContractName}}",
@ -79,15 +70,15 @@
"to immediatly exit (alias: exit)": "to immediatly exit (alias: exit)", "to immediatly exit (alias: exit)": "to immediatly exit (alias: exit)",
"The web3 object and the interfaces for the deployed contracts and their methods are also available": "The web3 object and the interfaces for the deployed contracts and their methods are also available", "The web3 object and the interfaces for the deployed contracts and their methods are also available": "The web3 object and the interfaces for the deployed contracts and their methods are also available",
"versions in use": "versions in use", "versions in use": "versions in use",
"language to use (default: en)": "language to use (default: en)",
"executing": "executing", "executing": "executing",
"finished deploying": "finished deploying",
"writing file": "writing file", "writing file": "writing file",
"errors found while generating": "errors found while generating", "errors found while generating": "errors found while generating",
"deploying to swarm!": "deploying to swarm!",
"adding %s to swarm": "adding %s to swarm",
"error uploading to swarm": "error uploading to swarm",
"Looking for documentation? You can find it at": "Looking for documentation? You can find it at", "Looking for documentation? You can find it at": "Looking for documentation? You can find it at",
"Ready": "Ready", "Ready": "Ready",
"Graph will not include undeployed contracts": "Graph will not include undeployed contracts",
"Graph will not include functions": "Graph will not include functions",
"Graph will not include events": "Graph will not include events",
"Embark Blockchain Using: %s": "Embark Blockchain Using: %s", "Embark Blockchain Using: %s": "Embark Blockchain Using: %s",
"running: %s": "running: %s", "running: %s": "running: %s",
"Initializing Embark Template....": "Initializing Embark Template....", "Initializing Embark Template....": "Initializing Embark Template....",
@ -110,5 +101,5 @@
"downloading {{packageName}} {{version}}....": "downloading {{packageName}} {{version}}....", "downloading {{packageName}} {{version}}....": "downloading {{packageName}} {{version}}....",
"Swarm node is offline...": "Swarm node is offline...", "Swarm node is offline...": "Swarm node is offline...",
"Swarm node detected...": "Swarm node detected...", "Swarm node detected...": "Swarm node detected...",
"file not found, creating it...": "file not found, creating it..." "Ethereum node (version unknown)": "Ethereum node (version unknown)"
} }

View File

@ -15,6 +15,7 @@ describe('embark.Blockchain', function () {
let config = { let config = {
networkType: 'custom', networkType: 'custom',
genesisBlock: false, genesisBlock: false,
accountsConfig: {},
geth_bin: 'geth', geth_bin: 'geth',
datadir: false, datadir: false,
mineWhenNeeded: false, mineWhenNeeded: false,
@ -40,7 +41,7 @@ describe('embark.Blockchain', function () {
fast: false, fast: false,
light: false light: false
}; };
let blockchain = new Blockchain(config, 'geth'); let blockchain = new Blockchain(config, {}, 'geth');
assert.deepEqual(blockchain.config, config); assert.deepEqual(blockchain.config, config);
done(); done();
@ -54,6 +55,7 @@ describe('embark.Blockchain', function () {
genesisBlock: 'foo/bar/genesis.json', genesisBlock: 'foo/bar/genesis.json',
geth_bin: 'geth', geth_bin: 'geth',
datadir: '/foo/datadir/', datadir: '/foo/datadir/',
accountsConfig: {},
mineWhenNeeded: true, mineWhenNeeded: true,
rpcHost: 'someserver', rpcHost: 'someserver',
rpcPort: 12345, rpcPort: 12345,
@ -77,7 +79,7 @@ describe('embark.Blockchain', function () {
fast: false, fast: false,
light: false light: false
}; };
let blockchain = new Blockchain(config, 'geth'); let blockchain = new Blockchain(config, {}, 'geth');
assert.deepEqual(blockchain.config, config); assert.deepEqual(blockchain.config, config);
done(); done();