change tagline #6344

Closed
drewhancock wants to merge 42 commits from drewhancock-patch-1 into odysee
Showing only changes of commit 5a43b5f566 - Show all commits

View file

@ -37,12 +37,12 @@ function FileViewCount(props: Props) {
return ( return (
<span className="media__subtitle--centered"> <span className="media__subtitle--centered">
{isLive && {livestream &&
__('%viewer_count% currently %viewer_state%', { __('%viewer_count% currently %viewer_state%', {
viewer_count: activeViewers === undefined ? '...' : activeViewers, viewer_count: activeViewers === undefined ? '...' : activeViewers,
viewer_state: isLive ? __('watching') : __('waiting'), viewer_state: isLive ? __('watching') : __('waiting'),
})} })}
{!isLive && {!livestream &&
activeViewers === undefined && activeViewers === undefined &&
(viewCount !== 1 ? __('%view_count% views', { view_count: formattedViewCount }) : __('1 view'))} (viewCount !== 1 ? __('%view_count% views', { view_count: formattedViewCount }) : __('1 view'))}
{!SIMPLE_SITE && <HelpLink href="https://lbry.com/faq/views" />} {!SIMPLE_SITE && <HelpLink href="https://lbry.com/faq/views" />}