Missing translation in the Discover page.

This commit is contained in:
infiinte-persistence 2020-09-18 22:13:20 +08:00 committed by Sean Yesmunt
parent ccd1cabe04
commit 631b069f9a
2 changed files with 5 additions and 5 deletions

View file

@ -1031,6 +1031,8 @@
"Recent From Following": "Recent From Following",
"Top Content from Today": "Top Content from Today",
"Top Channels On LBRY": "Top Channels On LBRY",
"Top Channels Of All Time": "Top Channels Of All Time",
"Trending Channels": "Trending Channels",
"Trending Classics": "Trending Classics",
"Trending On LBRY": "Trending On LBRY",
"Trending For Your Tags": "Trending For Your Tags",

View file

@ -32,9 +32,7 @@ function ChannelsFollowingDiscover(props: Props) {
rowData.push({
title: 'Top Channels Of All Time',
link: `/$/${PAGES.DISCOVER}?claim_type=channel&${CS.ORDER_BY_KEY}=${CS.ORDER_BY_TOP}&${CS.FRESH_KEY}=${
CS.FRESH_ALL
}`,
link: `/$/${PAGES.DISCOVER}?claim_type=channel&${CS.ORDER_BY_KEY}=${CS.ORDER_BY_TOP}&${CS.FRESH_KEY}=${CS.FRESH_ALL}`,
options: {
pageSize: 12,
claimType: 'channel',
@ -107,10 +105,10 @@ function ChannelsFollowingDiscover(props: Props) {
button="link"
navigate={link}
iconRight={ICONS.ARROW_RIGHT}
label={title}
label={__(title)}
/>
) : (
<span className="claim-grid__title">{title}</span>
<span className="claim-grid__title">{__(title)}</span>
)}
{help}
</h1>