more i18n fixes
This commit is contained in:
parent
4038b527d6
commit
c3fe63fe65
2 changed files with 7 additions and 10 deletions
|
@ -161,7 +161,6 @@
|
|||
"Transaction": "Transaction",
|
||||
"Date": "Date",
|
||||
"Abandon Claim": "Abandon Claim",
|
||||
"fee": "fee",
|
||||
"Find New Tags To Follow": "Find New Tags To Follow",
|
||||
"Aw shucks!": "Aw shucks!",
|
||||
"Search": "Search",
|
||||
|
@ -174,7 +173,6 @@
|
|||
"Site": "Site",
|
||||
"Send a tip to": "Send a tip to",
|
||||
"History": "History",
|
||||
"/wallet": "/wallet",
|
||||
"Pending": "Pending",
|
||||
"You have %s in unclaimed rewards.": "You have %s in unclaimed rewards.",
|
||||
"Download Directory": "Download Directory",
|
||||
|
@ -266,7 +264,6 @@
|
|||
"Downloading stream... not long left now!": "Downloading stream... not long left now!",
|
||||
"Downloading: ": "Downloading: ",
|
||||
"Updates published": "Updates published",
|
||||
"Your updates have been published to LBRY at the address": "Your updates have been published to LBRY at the address",
|
||||
"The updates will take a few minutes to appear for other LBRY users. Until then your file will be listed as \"pending\" under your published files.": "The updates will take a few minutes to appear for other LBRY users. Until then your file will be listed as \"pending\" under your published files.",
|
||||
"Comments": "Comments",
|
||||
"Comment": "Comment",
|
||||
|
@ -355,9 +352,6 @@
|
|||
"Because of the blockchain, some actions require LBRY credits": "Because of the blockchain, some actions require LBRY credits",
|
||||
"allows you to do some neat things, like paying your favorite creators for their content. And no company can stop you.": "allows you to do some neat things, like paying your favorite creators for their content. And no company can stop you.",
|
||||
"LBRY Credits Required": "LBRY Credits Required",
|
||||
" There are a variety of ways to get credits, including more than": " There are a variety of ways to get credits, including more than",
|
||||
"in free rewards for participating in the LBRY beta.": "in free rewards for participating in the LBRY beta.",
|
||||
"Check out the rewards": "Check out the rewards",
|
||||
"Choose a file": "Choose a file",
|
||||
"Choose Tags": "Choose Tags",
|
||||
"The better the tags, the better people will find your content.": "The better the tags, the better people will find your content.",
|
||||
|
|
|
@ -180,10 +180,13 @@ class HelpPage extends React.PureComponent<Props, State> {
|
|||
<Card
|
||||
title={__('View your Log')}
|
||||
subtitle={
|
||||
<React.Fragment>
|
||||
{__('Did something go wrong? Have a look in your log file, or send it to')}{' '}
|
||||
<Button button="link" label={__('support')} href="https://lbry.com/faq/support" />.
|
||||
</React.Fragment>
|
||||
<I18nMessage
|
||||
tokens={{
|
||||
support_link: <Button button="link" label={__('support')} href="https://lbry.com/faq/support" />,
|
||||
}}
|
||||
>
|
||||
Did something go wrong? Have a look in your log file, or send it to %support_link%.
|
||||
</I18nMessage>
|
||||
}
|
||||
actions={
|
||||
<div className="section__actions">
|
||||
|
|
Loading…
Add table
Reference in a new issue