i18n update

This commit is contained in:
infiinte-persistence 2020-12-21 21:02:21 +08:00 committed by Sean Yesmunt
parent 5d1b1f5293
commit 0d374725d6
3 changed files with 10 additions and 3 deletions

View file

@ -1536,5 +1536,12 @@
"Expand sidebar - view channels you are following.": "Expand sidebar - view channels you are following.",
"You have found the edge of the internet. %repost% or %publish% your stuff here to claim this spot.": "You have found the edge of the internet. %repost% or %publish% your stuff here to claim this spot.",
"MyFunName": "MyFunName",
"Sign up for full control": "Sign up for full control",
"Unlock new buttons that change things.": "Unlock new buttons that change things.",
"Content to repost": "Content to repost",
"Enter a name or %domain% URL": "Enter a name or %domain% URL",
"Winning amount: %amount%": "Winning amount: %amount%",
"Download or get the app": "Download or get the app",
"This content can be downloaded from lbry.tv, but not displayed. It will display in LBRY Desktop, an app for desktop computers.": "This content can be downloaded from lbry.tv, but not displayed. It will display in LBRY Desktop, an app for desktop computers.",
"--end--": "--end--"
}

View file

@ -321,7 +321,7 @@ function RepostCreate(props: Props) {
{!uri && name && (
<>
<FormField
label={'Content to repost'}
label={__('Content to repost')}
type="text"
name="content_url"
value={enteredContent}
@ -376,7 +376,7 @@ function RepostCreate(props: Props) {
step="any"
placeholder="0.123"
className="form-field--price-amount"
label={<LbcSymbol postfix={__('Support')} size={14} />}
label={<LbcSymbol postfix={__('Support --[button to support a claim]--')} size={14} />}
value={repostBid}
error={repostBidError}
helper={__('Winning amount: %amount%', {

View file

@ -83,7 +83,7 @@ export default function Footer() {
{sections.map(({ name, links }) => {
return (
<div key={name} className="footer__section">
<div className="footer__section-title">{name}</div>
<div className="footer__section-title">{__(name)}</div>
<ul className="ul--no-style">
{/* $FlowFixMe */}
{links.map(({ label, link, navigate }) => {