Skip to content
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions ui/component/youtubeTransferStatus/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,13 @@
{isNotElligible && (
<I18nMessage
tokens={{
here: <Button button="link" href="https://help.odysee.tv/category-syncprogram/" label={__('here')} />,
here: (
<Button
button="link"
href="https://help.odysee.tv/category-syncprogram/limits/#requirements/"
label={__('here')}
/>
),
email: SITE_HELP_EMAIL,
}}
>
Expand Down Expand Up @@ -281,7 +287,11 @@
: __('You will be able to claim your channel once it has finished syncing.')}{' '}
{youtubeImportPending &&
__('You will not be able to edit the channel or content until the transfer process completes.')}{' '}
<Button button="link" label={__('Learn More')} href="https://help.odysee.tv/category-syncprogram/" />
<Button
button="link"
label={__('Learn More')}
href="https://help.odysee.tv/category-syncprogram/category-walkthrough/claimingyourchannel/"
/>
</p>

{/* Self-Sync Alternative - Only show for experimental UI users */}
Expand Down Expand Up @@ -328,7 +338,7 @@
try {
await navigator.clipboard.writeText(firstAvailableToken);
} catch (err) {
console.log('Failed to copy token:', err);

Check warning on line 341 in ui/component/youtubeTransferStatus/view.jsx

View workflow job for this annotation

GitHub Actions / lint

Unexpected console statement
}
}}
/>
Expand Down Expand Up @@ -380,7 +390,7 @@
<Button
button="link"
label={__('How to use')}
href="https://help.odysee.tv/category-syncprogram/synctool/"
href="https://help.odysee.tv/category-syncprogram/"
/>
</div>
</div>
Expand Down
9 changes: 5 additions & 4 deletions ui/page/youtubeSync/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export default function YoutubeSync(props: Props) {
<Card
title={__('Sync your YouTube channel to %site_name%', { 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.`,
`Bring your YouTube videos to %site_name% without manual uploads. We'll guide you through linking your channel and getting started.`,
{
site_name: IS_WEB ? SITE_NAME : 'Odysee',
}
Expand All @@ -134,7 +134,7 @@ export default function YoutubeSync(props: Props) {
{nameError ? (
<span className="error__text">{nameError}</span>
) : (
__('Your desired %site_name% channel name', { site_name: IS_WEB ? SITE_NAME : 'Odysee' })
__('Choose your %site_name% channel name', { site_name: IS_WEB ? SITE_NAME : 'Odysee' })
)}
</label>
<div className="form-field__prefix">@</div>
Expand Down Expand Up @@ -178,13 +178,14 @@ export default function YoutubeSync(props: Props) {
<Button
button="link"
label={__('how the program works')}
href="https://help.odysee.tv/category-syncprogram/limits/"
href="https://help.odysee.tv/category-syncprogram/whatisyoutubesync/"
/>
),
site_name: SITE_NAME,
}}
>
I want to sync my content to %site_name%. I have also read and understand %faq%.
I want to sync my content to %site_name%. I have read and agree to %terms%, and I understand
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

prob not worth it given the translations.

%faq%.
</I18nMessage>
}
/>
Expand Down
7 changes: 4 additions & 3 deletions ui/scss/component/_shorts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ body:has(.main--shorts-page):not(:has(.navigation__overlay--active)) {
.shorts-page__side-panel {
position: fixed;
top: 0;
right: -600px;
width: 600px;
right: -720px;
width: 720px;
height: 100vh;
background: var(--color-card-background);
border-left: 1px solid var(--color-border);
Expand Down Expand Up @@ -393,7 +393,8 @@ body:has(.main--shorts-page):not(:has(.navigation__overlay--active)) {

@media (max-width: 1180px) and (min-width: $breakpoint-small) {
.shorts-page__side-panel {
width: 400px;
width: 440px;
right: -440px;
.claim-preview__text {
flex-direction: column !important;
}
Expand Down
Loading