update faq

This commit is contained in:
jessop 2020-03-05 15:00:32 -05:00
parent 88908a9fce
commit c5f33386cf

View file

@ -75,7 +75,7 @@ function PublishFile(props: Props) {
return ( return (
<p className="help--error"> <p className="help--error">
{__(UPLOAD_SIZE_MESSAGE)}{' '} {__(UPLOAD_SIZE_MESSAGE)}{' '}
<Button button="link" label={__('Learn more')} href="https://lbry.com/faq/how-to-publish" /> <Button button="link" label={__('Publishing Guide')} href="https://lbry.com/faq/video-publishing-guide" />
</p> </p>
); );
} }
@ -84,7 +84,7 @@ function PublishFile(props: Props) {
return ( return (
<p className="help--error"> <p className="help--error">
{__('Your video has a bitrate over 8 mbps. We suggest transcoding to provide viewers the best experience.')}{' '} {__('Your video has a bitrate over 8 mbps. We suggest transcoding to provide viewers the best experience.')}{' '}
<Button button="link" label={__('Learn more')} href="https://lbry.com/faq/how-to-publish" /> <Button button="link" label={__('Publishing Guide')} href="https://lbry.com/faq/video-publishing-guide" />
</p> </p>
); );
} }
@ -95,7 +95,7 @@ function PublishFile(props: Props) {
{__( {__(
'Your video may not be the best format. Use MP4s in H264/AAC format and a friendly bitrate (1080p) for more reliable streaming.' 'Your video may not be the best format. Use MP4s in H264/AAC format and a friendly bitrate (1080p) for more reliable streaming.'
)}{' '} )}{' '}
<Button button="link" label={__('Learn more')} href="https://lbry.com/faq/how-to-publish" /> <Button button="link" label={__('Publishing Guide')} href="https://lbry.com/faq/video-publishing-guide" />
</p> </p>
); );
} }
@ -114,7 +114,7 @@ function PublishFile(props: Props) {
{__( {__(
'For video content, use MP4s in H264/AAC format and a friendly bitrate (1080p) for more reliable streaming.' 'For video content, use MP4s in H264/AAC format and a friendly bitrate (1080p) for more reliable streaming.'
)}{' '} )}{' '}
<Button button="link" label={__('Learn more')} href="https://lbry.com/faq/how-to-publish" /> <Button button="link" label={__('Publishing Guide')} href="https://lbry.com/faq/video-publishing-guide" />
</p> </p>
); );
} }