fix: transfer message

This commit is contained in:
Thomas Zarebczan 2020-01-13 13:42:07 -05:00 committed by Sean Yesmunt
parent 2690ea7fe3
commit e023658591

View file

@ -110,17 +110,28 @@ export default function YoutubeTransferStatus(props: Props) {
properties={false} properties={false}
/> />
) : ( ) : (
<p className="section--padded"> <div>
<I18nMessage <p className="section--padded">
tokens={{ <I18nMessage
statusLink: <Button button="link" href={STATUS_URL + statusToken} label={__('here')} />, tokens={{
channelName, channelName,
}} }}
> >
%channelName% has not finished syncing and is not ready to be transferred to your account. You %channelName% is not yet ready to be transferred. Please allow up to one week, though it is
can check the status %statusLink% or check back later. frequently faster.
</I18nMessage> </I18nMessage>
</p> </p>
<p className="section--padded">
<I18nMessage
tokens={{
statusLink: <Button button="link" href={STATUS_URL + statusToken} label={__('here')} />,
faqLink: <Button button="link" label={__('FAQ')} href="https://lbry.com/faq/youtube" />,
}}
>
You can check your status %statusLink%. This %faqLink% explains the program in more detail.
</I18nMessage>
</p>
</div>
)} )}
</div> </div>
); );