diff --git a/static/app-strings.json b/static/app-strings.json index 22a596020..16c984711 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -1504,5 +1504,6 @@ "Now following %channel%!": "Now following %channel%!", "Turn Back On": "Turn Back On", "Turn Off": "Turn Off", + "Syncing %total_videos% videos from your channel with %total_subs% subscriptions.": "Syncing %total_videos% videos from your channel with %total_subs% subscriptions.", "--end--": "--end--" } diff --git a/ui/component/youtubeTransferStatus/view.jsx b/ui/component/youtubeTransferStatus/view.jsx index 443761b41..82ad90ad9 100644 --- a/ui/component/youtubeTransferStatus/view.jsx +++ b/ui/component/youtubeTransferStatus/view.jsx @@ -102,7 +102,13 @@ export default function YoutubeTransferStatus(props: Props) { body={
{youtubeChannels.map((channel, index) => { - const { lbry_channel_name: channelName, channel_claim_id: claimId, sync_status: syncStatus } = channel; + const { + lbry_channel_name: channelName, + channel_claim_id: claimId, + sync_status: syncStatus, + total_subs: totalSubs, + total_videos: totalVideos, + } = channel; const url = buildURI({ channelName, channelClaimId: claimId }); const transferState = getMessage(channel); const isWaitingForSync = @@ -142,6 +148,12 @@ export default function YoutubeTransferStatus(props: Props) { )} +
+ {__('Syncing %total_videos% videos from your channel with %total_subs% subscriptions.', { + total_videos: totalVideos, + total_subs: totalSubs, + })} +
{__('Claim your channel')}