i18n update
This commit is contained in:
parent
5d1b1f5293
commit
0d374725d6
3 changed files with 10 additions and 3 deletions
|
@ -1536,5 +1536,12 @@
|
||||||
"Expand sidebar - view channels you are following.": "Expand sidebar - view channels you are following.",
|
"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.",
|
"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",
|
"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--"
|
"--end--": "--end--"
|
||||||
}
|
}
|
||||||
|
|
|
@ -321,7 +321,7 @@ function RepostCreate(props: Props) {
|
||||||
{!uri && name && (
|
{!uri && name && (
|
||||||
<>
|
<>
|
||||||
<FormField
|
<FormField
|
||||||
label={'Content to repost'}
|
label={__('Content to repost')}
|
||||||
type="text"
|
type="text"
|
||||||
name="content_url"
|
name="content_url"
|
||||||
value={enteredContent}
|
value={enteredContent}
|
||||||
|
@ -376,7 +376,7 @@ function RepostCreate(props: Props) {
|
||||||
step="any"
|
step="any"
|
||||||
placeholder="0.123"
|
placeholder="0.123"
|
||||||
className="form-field--price-amount"
|
className="form-field--price-amount"
|
||||||
label={<LbcSymbol postfix={__('Support')} size={14} />}
|
label={<LbcSymbol postfix={__('Support --[button to support a claim]--')} size={14} />}
|
||||||
value={repostBid}
|
value={repostBid}
|
||||||
error={repostBidError}
|
error={repostBidError}
|
||||||
helper={__('Winning amount: %amount%', {
|
helper={__('Winning amount: %amount%', {
|
||||||
|
|
|
@ -83,7 +83,7 @@ export default function Footer() {
|
||||||
{sections.map(({ name, links }) => {
|
{sections.map(({ name, links }) => {
|
||||||
return (
|
return (
|
||||||
<div key={name} className="footer__section">
|
<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">
|
<ul className="ul--no-style">
|
||||||
{/* $FlowFixMe */}
|
{/* $FlowFixMe */}
|
||||||
{links.map(({ label, link, navigate }) => {
|
{links.map(({ label, link, navigate }) => {
|
||||||
|
|
Loading…
Reference in a new issue