update copy

This commit is contained in:
Sean Yesmunt 2019-11-21 09:48:50 -05:00
parent 1bee7367ec
commit b76a09753c
3 changed files with 6 additions and 7 deletions

View file

@ -55,7 +55,6 @@
"Thumbnail": "Thumbnail", "Thumbnail": "Thumbnail",
"Upload your thumbnail (.png/.jpg/.jpeg/.gif) to": "Upload your thumbnail (.png/.jpg/.jpeg/.gif) to", "Upload your thumbnail (.png/.jpg/.jpeg/.gif) to": "Upload your thumbnail (.png/.jpg/.jpeg/.gif) to",
"spee.ch": "spee.ch", "spee.ch": "spee.ch",
"Recommended size: 800x450 (16:9)": "Recommended size: 800x450 (16:9)",
"Price": "Price", "Price": "Price",
"How much will this content cost?": "How much will this content cost?", "How much will this content cost?": "How much will this content cost?",
"Free": "Free", "Free": "Free",
@ -889,7 +888,7 @@
"An email was sent to %email%. Follow the link to %verify_text%. After, this page will update automatically.": "An email was sent to %email%. Follow the link to %verify_text%. After, this page will update automatically.", "An email was sent to %email%. Follow the link to %verify_text%. After, this page will update automatically.": "An email was sent to %email%. Follow the link to %verify_text%. After, this page will update automatically.",
"Your email preferences": "Your email preferences", "Your email preferences": "Your email preferences",
"allow you to receive notifications related to new content.": "allow you to receive notifications related to new content.", "allow you to receive notifications related to new content.": "allow you to receive notifications related to new content.",
"Thumbnail (Minimum size: 300x300, (1:1)": "Thumbnail (Minimum size: 300x300, (1:1)", "Thumbnail (Recommended size: 200x200, (1:1)": "Thumbnail (Recommended size: 300x300, (1:1)",
"Cover (Minimum: 1000 x 160, (10:1.6)": "Cover (Minimum size: 1000 x 160, (10:1.6)", "Cover (Recommended: 1000 x 160, (10:1.6)": "Cover (Recommended size: 1000 x 160, (10:1.6)",
"Minimum size: 800x450 (16:9)": "Minimum size: 800x450 (16:9)" "Recommended size: 800x450 (16:9)": "Recommended size: 800x450 (16:9)"
} }

View file

@ -110,14 +110,14 @@ function ChannelForm(props: Props) {
onUpdate={v => handleThumbnailChange(v)} onUpdate={v => handleThumbnailChange(v)}
currentValue={params.thumbnailUrl} currentValue={params.thumbnailUrl}
assetName={'Thumbnail'} assetName={'Thumbnail'}
recommended={'(Minimum size: 300x300, (1:1)'} recommended={'(Recommended size: 200x200, (1:1)'}
/> />
<SelectAsset <SelectAsset
onUpdate={v => handleCoverChange(v)} onUpdate={v => handleCoverChange(v)}
currentValue={params.coverUrl} currentValue={params.coverUrl}
assetName={'Cover'} assetName={'Cover'}
recommended={'(Minimum size: 1000 x 160, (10:1.6)'} recommended={'(Recommended size: 1000 x 160, (10:1.6)'}
/> />
<FormField <FormField

View file

@ -175,7 +175,7 @@ class SelectThumbnail extends React.PureComponent<Props, State> {
<React.Fragment> <React.Fragment>
{__('Upload your thumbnail to')}{' '} {__('Upload your thumbnail to')}{' '}
<Button button="link" label={__('spee.ch')} href="https://spee.ch/about" />.{' '} <Button button="link" label={__('spee.ch')} href="https://spee.ch/about" />.{' '}
{__('Minimum size: 800x450 (16:9)')} {__('Recommended size: 800x450 (16:9)')}
</React.Fragment> </React.Fragment>
)} )}
</p> </p>