-
Notifications
You must be signed in to change notification settings - Fork 6
/
i18n.js
23 lines (23 loc) · 830 Bytes
/
i18n.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module.exports = {
token: 'Token',
from: 'From',
to: 'To',
amount: 'Amount',
bridge: 'Bridge',
balance: 'Balance',
yourTransactions: 'Your Transactions',
noTransaction: 'There is not any transaction yet.',
processing: 'Processing...',
completed: 'Completed',
messages: {
unsupportedPair: 'Unsupported Pair',
errorConnect: 'Please connect your wallet!',
errorWallet: 'No wallet found!',
errorChain: 'Please switch to {chain} chain!',
errorMin: 'Amount is less than minimum!',
errorMax: 'Amount is more than maximum!',
errorBalance: 'Amount is more than your balance!',
errorAmount: 'Amount is more than available!',
depositSuccessful: 'Deposit completed! Bridging is being processed.'
}
};