diff --git a/static/app-strings.json b/static/app-strings.json index b367b61b1..e3965510f 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -1194,5 +1194,10 @@ "Earnings may also include any LBC you've sent yourself or added as support. We are working on making this more accurate. Check your wallet page for the correct total balance.": "Earnings may also include any LBC you've sent yourself or added as support. We are working on making this more accurate. Check your wallet page for the correct total balance.", "Add A Password": "Add A Password", "Hide reposts": "Hide reposts", - "You will not see reposts by people you follow or receive email notifying about them.": "You will not see reposts by people you follow or receive email notifying about them." + "You will not see reposts by people you follow or receive email notifying about them.": "You will not see reposts by people you follow or receive email notifying about them.", + "Sorry, your request timed out. Modify your options or %again%": "Sorry, your request timed out. Modify your options or %again%", + "Pause at any time to select a thumbnail from your video": "Pause at any time to select a thumbnail from your video", + "For video content, use MP4s in H264/AAC format and a friendly bitrate (under 5 mbps) and resolution (720p) for more reliable streaming.": "For video content, use MP4s in H264/AAC format and a friendly bitrate (under 5 mbps) and resolution (720p) for more reliable streaming.", + "this channel": "this channel", + "Share this channel": "Share this channel" } diff --git a/ui/component/claimListDiscover/view.jsx b/ui/component/claimListDiscover/view.jsx index 4dd1d4879..f610187de 100644 --- a/ui/component/claimListDiscover/view.jsx +++ b/ui/component/claimListDiscover/view.jsx @@ -267,6 +267,7 @@ function ClaimListDiscover(props: Props) { didNavigateForward || (!loading && claimSearchResult && + claimSearchResult.length && claimSearchResult.length < CS.PAGE_SIZE * page && claimSearchResult.length % CS.PAGE_SIZE === 0); @@ -574,7 +575,7 @@ function ClaimListDiscover(props: Props) { 'claim-search__input-special': !followed.includes(tag), })} > - {followed.includes(tag) && typeof tag === 'string' && toCapitalCase(__(tag))} + {followed.includes(tag) && typeof tag === 'string' && toCapitalCase(tag)} {tag === CS.TAGS_ALL && __('Any')} {tag === CS.TAGS_FOLLOWED && __('Following')} {!followed.includes(tag) && tag !== CS.TAGS_ALL && tag !== CS.TAGS_FOLLOWED && __('Other')} diff --git a/ui/page/discover/view.jsx b/ui/page/discover/view.jsx index 654cc206c..8cce7176e 100644 --- a/ui/page/discover/view.jsx +++ b/ui/page/discover/view.jsx @@ -72,7 +72,7 @@ function DiscoverPage(props: Props) { headerLabel = ( - {(tag === CS.TAGS_ALL && __('All Content')) || (tag === CS.TAGS_FOLLOWED && __('Followed Tags')) || __(tag)} + {(tag === CS.TAGS_ALL && __('All Content')) || (tag === CS.TAGS_FOLLOWED && __('Followed Tags')) || tag} ); } else {