diff --git a/static/app-strings.json b/static/app-strings.json index e22645ee1..2d6ae5e5f 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -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--" } diff --git a/ui/component/repostCreate/view.jsx b/ui/component/repostCreate/view.jsx index e8af9398e..27beb7ed5 100644 --- a/ui/component/repostCreate/view.jsx +++ b/ui/component/repostCreate/view.jsx @@ -321,7 +321,7 @@ function RepostCreate(props: Props) { {!uri && name && ( <> } + label={} value={repostBid} error={repostBidError} helper={__('Winning amount: %amount%', { diff --git a/web/component/footer.jsx b/web/component/footer.jsx index 445322016..37ce1e645 100644 --- a/web/component/footer.jsx +++ b/web/component/footer.jsx @@ -83,7 +83,7 @@ export default function Footer() { {sections.map(({ name, links }) => { return (
-
{name}
+
{__(name)}
    {/* $FlowFixMe */} {links.map(({ label, link, navigate }) => {