i18n update
This commit is contained in:
parent
315bbe21b1
commit
eba8de1cda
2 changed files with 14 additions and 6 deletions
|
@ -500,6 +500,7 @@
|
||||||
"From --[the tip sender]--": "From",
|
"From --[the tip sender]--": "From",
|
||||||
"From --[initial time]--": "From",
|
"From --[initial time]--": "From",
|
||||||
"Not enough Credits": "Not enough Credits",
|
"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.",
|
"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.",
|
"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",
|
"Read More": "Read More",
|
||||||
|
@ -1663,8 +1664,7 @@
|
||||||
"%balance% available.": "%balance% available.",
|
"%balance% available.": "%balance% available.",
|
||||||
"Unlock all tips": "Unlock all tips",
|
"Unlock all tips": "Unlock all tips",
|
||||||
"Unlock All": "Unlock All",
|
"Unlock All": "Unlock All",
|
||||||
"i got 99 securities but LBC ain't one.": "i got 99 securities but LBC ain't one.",
|
"there's so much room for activities": "there's so much room for activities",
|
||||||
"i'm a peacock, you gotta let me fly": "i'm a peacock, you gotta let me fly",
|
|
||||||
"Moon cheese is an acquired taste": "Moon cheese is an acquired taste",
|
"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.",
|
"Nothing found here. Like big tech ethics.": "Nothing found here. Like big tech ethics.",
|
||||||
"Level %current_level%": "Level %current_level%",
|
"Level %current_level%": "Level %current_level%",
|
||||||
|
@ -1882,6 +1882,8 @@
|
||||||
"View claim details": "View claim details",
|
"View claim details": "View claim details",
|
||||||
"Publishing...": "Publishing...",
|
"Publishing...": "Publishing...",
|
||||||
"Collection": "Collection",
|
"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",
|
"Fetch transaction data for export": "Fetch transaction data for export",
|
||||||
"Fetching data": "Fetching data",
|
"Fetching data": "Fetching data",
|
||||||
"Download fetched file": "Download fetched file",
|
"Download fetched file": "Download fetched file",
|
||||||
|
|
|
@ -162,7 +162,9 @@ class WalletSend extends React.PureComponent<Props> {
|
||||||
min="0"
|
min="0"
|
||||||
step="any"
|
step="any"
|
||||||
placeholder="12.34"
|
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}
|
onBlur={handleBlur}
|
||||||
value={draftTransaction.amount}
|
value={draftTransaction.amount}
|
||||||
/>
|
/>
|
||||||
|
@ -172,8 +174,10 @@ class WalletSend extends React.PureComponent<Props> {
|
||||||
name="address"
|
name="address"
|
||||||
placeholder={'bbFxRyXXXXXXXXXXXZD8nE7XTLUxYnddTs'}
|
placeholder={'bbFxRyXXXXXXXXXXXZD8nE7XTLUxYnddTs'}
|
||||||
className="form-field--address"
|
className="form-field--address"
|
||||||
label={__('Recipient Address')}
|
label={__('Recipient address')}
|
||||||
onChange={(event) => setDraftTransaction({ address: event.target.value, amount: draftTransaction.amount })}
|
onChange={(event) =>
|
||||||
|
setDraftTransaction({ address: event.target.value, amount: draftTransaction.amount })
|
||||||
|
}
|
||||||
onBlur={handleBlur}
|
onBlur={handleBlur}
|
||||||
value={draftTransaction.address}
|
value={draftTransaction.address}
|
||||||
/>
|
/>
|
||||||
|
@ -189,7 +193,9 @@ class WalletSend extends React.PureComponent<Props> {
|
||||||
!(parseFloat(draftTransaction.amount) > 0.0) ||
|
!(parseFloat(draftTransaction.amount) > 0.0) ||
|
||||||
parseFloat(draftTransaction.amount) >= balance ||
|
parseFloat(draftTransaction.amount) >= balance ||
|
||||||
sendLabel === 'Sending...' ||
|
sendLabel === 'Sending...' ||
|
||||||
(isAddress ? !draftTransaction.address || validateSendTx(draftTransaction.address).address !== '' : !contentClaim)
|
(isAddress
|
||||||
|
? !draftTransaction.address || validateSendTx(draftTransaction.address).address !== ''
|
||||||
|
: !contentClaim)
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
{!!Object.keys(errors).length || (
|
{!!Object.keys(errors).length || (
|
||||||
|
|
Loading…
Reference in a new issue