88 lines
2.5 KiB
JavaScript
88 lines
2.5 KiB
JavaScript
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity.
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
export default {
|
|
button: {
|
|
add: `Add`,
|
|
cancel: `Cancel`,
|
|
create: `Create`,
|
|
done: `Done`,
|
|
next: `Next`
|
|
},
|
|
details: {
|
|
address: {
|
|
hint: `the wallet contract address`,
|
|
label: `wallet address`
|
|
},
|
|
dayLimitMulti: {
|
|
hint: `amount of ETH spendable without confirmations`,
|
|
label: `wallet day limit`
|
|
},
|
|
description: {
|
|
hint: `the local description for this wallet`,
|
|
label: `wallet description (optional)`
|
|
},
|
|
descriptionMulti: {
|
|
hint: `the local description for this wallet`,
|
|
label: `wallet description (optional)`
|
|
},
|
|
name: {
|
|
hint: `the local name for this wallet`,
|
|
label: `wallet name`
|
|
},
|
|
nameMulti: {
|
|
hint: `the local name for this wallet`,
|
|
label: `wallet name`
|
|
},
|
|
ownerMulti: {
|
|
hint: `the owner account for this contract`,
|
|
label: `from account (contract owner)`
|
|
},
|
|
ownersMulti: {
|
|
label: `other wallet owners`
|
|
},
|
|
ownersMultiReq: {
|
|
hint: `number of required owners to accept a transaction`,
|
|
label: `required owners`
|
|
}
|
|
},
|
|
info: {
|
|
added: `added`,
|
|
copyAddress: `copy address to clipboard`,
|
|
created: `{name} has been {deployedOrAdded} at`,
|
|
dayLimit: `The daily limit is set to {dayLimit} ETH.`,
|
|
deployed: `deployed`,
|
|
numOwners: `{numOwners} owners are required to confirm a transaction.`,
|
|
owners: `The following are wallet owners`
|
|
},
|
|
steps: {
|
|
details: `wallet details`,
|
|
info: `wallet informaton`,
|
|
type: `wallet type`
|
|
},
|
|
type: {
|
|
multisig: {
|
|
description: `Create/Deploy a {link} Wallet`,
|
|
label: `Multi-Sig wallet`,
|
|
link: `standard multi-signature`
|
|
},
|
|
watch: {
|
|
description: `Add an existing wallet to your accounts`,
|
|
label: `Watch a wallet`
|
|
}
|
|
}
|
|
};
|