Skip to content

Commit

Permalink
Sync updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarebczan committed Oct 30, 2024
1 parent 35d286a commit 8778025
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ui/component/youtubeTransferStatus/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export default function YoutubeTransferStatus(props: Props) {
<div className="help--inline">
{' '}
{__(
'*Not all content may be processed. Click Learn More at the bottom to understand sync limitations '
'*Not all content may be processed, there are limitations based on both Youtube and Odysee activity. Click Learn More at the bottom to see the latest requirements and limits. '
)}{' '}
</div>

Expand Down
24 changes: 17 additions & 7 deletions ui/page/youtubeSync/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,12 @@ export default function YoutubeSync(props: Props) {
) : (
<Card
title={__('Sync your YouTube channel to %site_name%', { site_name: IS_WEB ? SITE_NAME : 'Odysee' })}
subtitle={__('Get your YouTube videos in front of the %site_name% audience.', {
site_name: IS_WEB ? SITE_NAME : 'Odysee',
})}
subtitle={__(
`Don't want to manually upload? Get your YouTube videos in front of the %site_name% audience.`,
{
site_name: IS_WEB ? SITE_NAME : 'Odysee',
}
)}
actions={
<Form onSubmit={handleCreateChannel}>
<fieldset-group class="fieldset-group--smushed fieldset-group--disabled-prefix">
Expand Down Expand Up @@ -175,7 +178,7 @@ export default function YoutubeSync(props: Props) {
<Button
button="link"
label={__('how the program works')}
href="https://help.odysee.tv/category-syncprogram/"
href="https://help.odysee.tv/category-syncprogram/limits/"
/>
),
site_name: SITE_NAME,
Expand Down Expand Up @@ -203,18 +206,25 @@ export default function YoutubeSync(props: Props) {
<div className="help--card-actions">
<I18nMessage
tokens={{
count: 100,
learn_more: (
<Button
button="link"
label={__('Learn more')}
href="https://help.odysee.tv/category-syncprogram/"
/>
),
community_guidelines: (
<Button
button="link"
label={__('Community Guidelines')}
href="https://help.odysee.tv/communityguidelines/"
/>
),
}}
>
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%.
Enrollment in the Odysee Sync Program is based on a manual assessment which requires a channel to
have at least 50,000 monthly views on YouTube, and to be in compliance with Odysee's
%community_guidelines%. %learn_more%.
</I18nMessage>
</div>
</Form>
Expand Down

0 comments on commit 8778025

Please sign in to comment.