i18n update

This commit is contained in:
infinite-persistence 2021-06-01 19:48:55 +08:00 committed by jessopb
parent 315bbe21b1
commit eba8de1cda
2 changed files with 14 additions and 6 deletions

View file

@ -500,6 +500,7 @@
"From --[the tip sender]--": "From",
"From --[initial time]--": "From",
"Not enough Credits": "Not enough Credits",
"Decrease amount to account for transaction fee": "Decrease amount to account for transaction fee",
"You have %credit_amount% in unclaimed rewards.": "You have %credit_amount% in unclaimed rewards.",
"In response to a complaint we received under the US Digital Millennium Copyright Act, we have blocked access to this channel from our applications.": "In response to a complaint we received under the US Digital Millennium Copyright Act, we have blocked access to this channel from our applications.",
"Read More": "Read More",
@ -1663,8 +1664,7 @@
"%balance% available.": "%balance% available.",
"Unlock all tips": "Unlock all tips",
"Unlock All": "Unlock All",
"i got 99 securities but LBC ain't one.": "i got 99 securities but LBC ain't one.",
"i'm a peacock, you gotta let me fly": "i'm a peacock, you gotta let me fly",
"there's so much room for activities": "there's so much room for activities",
"Moon cheese is an acquired taste": "Moon cheese is an acquired taste",
"Nothing found here. Like big tech ethics.": "Nothing found here. Like big tech ethics.",
"Level %current_level%": "Level %current_level%",
@ -1882,6 +1882,8 @@
"View claim details": "View claim details",
"Publishing...": "Publishing...",
"Collection": "Collection",
"Enter a name, @username or URL": "Enter a name, @username or URL:",
"Recipient search": "Recipient search",
"Fetch transaction data for export": "Fetch transaction data for export",
"Fetching data": "Fetching data",
"Download fetched file": "Download fetched file",

View file

@ -162,7 +162,9 @@ class WalletSend extends React.PureComponent<Props> {
min="0"
step="any"
placeholder="12.34"
onChange={(event) => setDraftTransaction({ address: draftTransaction.address, amount: event.target.value })}
onChange={(event) =>
setDraftTransaction({ address: draftTransaction.address, amount: event.target.value })
}
onBlur={handleBlur}
value={draftTransaction.amount}
/>
@ -172,8 +174,10 @@ class WalletSend extends React.PureComponent<Props> {
name="address"
placeholder={'bbFxRyXXXXXXXXXXXZD8nE7XTLUxYnddTs'}
className="form-field--address"
label={__('Recipient Address')}
onChange={(event) => setDraftTransaction({ address: event.target.value, amount: draftTransaction.amount })}
label={__('Recipient address')}
onChange={(event) =>
setDraftTransaction({ address: event.target.value, amount: draftTransaction.amount })
}
onBlur={handleBlur}
value={draftTransaction.address}
/>
@ -189,7 +193,9 @@ class WalletSend extends React.PureComponent<Props> {
!(parseFloat(draftTransaction.amount) > 0.0) ||
parseFloat(draftTransaction.amount) >= balance ||
sendLabel === 'Sending...' ||
(isAddress ? !draftTransaction.address || validateSendTx(draftTransaction.address).address !== '' : !contentClaim)
(isAddress
? !draftTransaction.address || validateSendTx(draftTransaction.address).address !== ''
: !contentClaim)
}
/>
{!!Object.keys(errors).length || (