Str and cleanup

This commit is contained in:
infinite-persistence 2022-06-22 20:44:43 +08:00
parent 3bfdd7e920
commit 9e4ac047ca
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0
3 changed files with 9 additions and 5 deletions

View file

@ -344,6 +344,7 @@
"Today": "Today", "Today": "Today",
"All time": "All time", "All time": "All time",
"Share on Reddit": "Share on Reddit", "Share on Reddit": "Share on Reddit",
"Share on WhatsApp": "Share on WhatsApp",
"Share on Facebook": "Share on Facebook", "Share on Facebook": "Share on Facebook",
"Share on Twitter": "Share on Twitter", "Share on Twitter": "Share on Twitter",
"Share on Telegram": "Share on Telegram", "Share on Telegram": "Share on Telegram",
@ -1478,7 +1479,7 @@
"how the program works": "how the program works", "how the program works": "how the program works",
"Claim Now": "Claim Now", "Claim Now": "Claim Now",
"I want to sync my content to %site_name% and the LBRY network and agree to %terms%. I have also read and understand %faq%.": "I want to sync my content to %site_name% and the LBRY network and agree to %terms%. I have also read and understand %faq%.", "I want to sync my content to %site_name% and the LBRY network and agree to %terms%. I have also read and understand %faq%.": "I want to sync my content to %site_name% and the LBRY network and agree to %terms%. I have also read and understand %faq%.",
"This will verify you are an active YouTuber with over 300 subscribers and original content. Channel names cannot be changed once chosen, please be extra careful. %learn_more%.": "This will verify you are an active YouTuber with over 300 subscribers and original content. Channel names cannot be changed once chosen, please be extra careful. %learn_more%.", "This will verify you are an active YouTuber with over %count% subscribers and original content. Channel names cannot be changed once chosen, please be extra careful. %learn_more%.": "This will verify you are an active YouTuber with over %count% subscribers and original content. Channel names cannot be changed once chosen, please be extra careful. %learn_more%.",
"Invite sent to %email%": "Invite sent to %email%", "Invite sent to %email%": "Invite sent to %email%",
"Log in to reply": "Log in to reply", "Log in to reply": "Log in to reply",
"Coveted Creator L9: Whoa Baby!": "Coveted Creator L9: Whoa Baby!", "Coveted Creator L9: Whoa Baby!": "Coveted Creator L9: Whoa Baby!",
@ -2017,6 +2018,8 @@
"Connect your bank account to Odysee to receive donations directly from users": "Connect your bank account to Odysee to receive donations directly from users", "Connect your bank account to Odysee to receive donations directly from users": "Connect your bank account to Odysee to receive donations directly from users",
"Connect your bank account": "Connect your bank account", "Connect your bank account": "Connect your bank account",
"Please enter the name on the card": "Please enter the name on the card", "Please enter the name on the card": "Please enter the name on the card",
"Special characters and numbers are not allowed:": "Special characters and numbers are not allowed",
"Name must be less than 48 characters long": "Name must be less than 48 characters long",
"Name on card": "Name on card", "Name on card": "Name on card",
"Manage Card": "Manage Card", "Manage Card": "Manage Card",
"Card details": "Card details", "Card details": "Card details",

View file

@ -97,12 +97,12 @@ export default function FileReactions(props: Props) {
return ( return (
<> <>
{channelTitle && !isCollection && ( {channelTitle && !isCollection && (
<NudgeFloating <NudgeFloating
name="nudge:support-acknowledge" name="nudge:support-acknowledge"
text={__('Let %channel% know you enjoyed this!', { channel: channelTitle })} text={__('Let %channel% know you enjoyed this!', { channel: channelTitle })}
/> />
)} )}
<div className={'ratio-wrapper'}> <div className={'ratio-wrapper'}>
<Button <Button

View file

@ -197,6 +197,7 @@ export default function YoutubeSync(props: Props) {
<div className="help--card-actions"> <div className="help--card-actions">
<I18nMessage <I18nMessage
tokens={{ tokens={{
count: 100,
learn_more: ( learn_more: (
<Button <Button
button="link" button="link"
@ -206,8 +207,8 @@ export default function YoutubeSync(props: Props) {
), ),
}} }}
> >
This will verify you are an active YouTuber with over 100 subscribers and original content. Channel This will verify you are an active YouTuber with over %count% subscribers and original content.
names cannot be changed once chosen, please be extra careful. %learn_more%. Channel names cannot be changed once chosen, please be extra careful. %learn_more%.
</I18nMessage> </I18nMessage>
</div> </div>
</Form> </Form>