minor i18n fixes
This commit is contained in:
parent
e00f89b890
commit
34c56d8a1b
3 changed files with 5 additions and 4 deletions
|
@ -556,7 +556,6 @@
|
|||
"View on lbry.tv": "View on lbry.tv",
|
||||
"Your Email - ": "Your Email - ",
|
||||
"This information is disclosed only to LBRY, Inc. and not to the LBRY network. It is only required to save account information and earn rewards.": "This information is disclosed only to LBRY, Inc. and not to the LBRY network. It is only required to save account information and earn rewards.",
|
||||
"Rewards Approval to Earn Credits (LBC)": "Rewards Approval to Earn Credits (LBC)",
|
||||
"This step optional. You can continue to use this app without Rewards, but LBC may be needed for some tasks.": "This step optional. You can continue to use this app without Rewards, but LBC may be needed for some tasks.",
|
||||
"Rewards are for human beings only. You'll have to prove you're one of us before you can claim any.": "Rewards are for human beings only. You'll have to prove you're one of us before you can claim any.",
|
||||
"This step is optional. You can continue to use this app without Rewards, but LBC may be needed for some tasks.": "This step is optional. You can continue to use this app without Rewards, but LBC may be needed for some tasks.",
|
||||
|
|
|
@ -165,10 +165,10 @@ function ClaimListDiscover(props: Props) {
|
|||
<p>
|
||||
<I18nMessage
|
||||
tokens={{
|
||||
support: <Button button="link" label={__('contact support')} href="https://lbry.com/faq/support" />,
|
||||
contact_support: <Button button="link" label={__('contact support')} href="https://lbry.com/faq/support" />,
|
||||
}}
|
||||
>
|
||||
If you continue to have issues, please %support%.
|
||||
If you continue to have issues, please %contact_support%.
|
||||
</I18nMessage>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -16,7 +16,9 @@ function BidHelpText(props: Props) {
|
|||
} else if (amountNeededForTakeover === 0) {
|
||||
bidHelpText = __('You currently have the highest bid for this name.');
|
||||
} else if (!amountNeededForTakeover) {
|
||||
bidHelpText = __('Any amount will give you the winning bid.');
|
||||
bidHelpText = __(
|
||||
'Any amount will give you the highest bid, but larger amounts help your content be trusted and discovered.'
|
||||
);
|
||||
} else {
|
||||
bidHelpText = __(
|
||||
'If you bid more than %amount% LBC, when someone navigates to %uri%, it will load your published content. However, you can get a longer version of this URL for any bid.',
|
||||
|
|
Loading…
Reference in a new issue