fix: minor copy edits
To support https://lbry.com/faq/thumbnails-and-covers (should we hyperlink this on these 2 pages?) And help: https://github.com/lbryio/lbry-desktop/issues/3113
This commit is contained in:
parent
da83a78dd7
commit
1bee7367ec
4 changed files with 16 additions and 7 deletions
|
@ -888,5 +888,8 @@
|
||||||
"with lbry.tv to receive notifications related to new content.": "with lbry.tv to receive notifications related to new content.",
|
"with lbry.tv to receive notifications related to new content.": "with lbry.tv to receive notifications related to new content.",
|
||||||
"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)",
|
||||||
|
"Cover (Minimum: 1000 x 160, (10:1.6)": "Cover (Minimum size: 1000 x 160, (10:1.6)",
|
||||||
|
"Minimum size: 800x450 (16:9)": "Minimum size: 800x450 (16:9)"
|
||||||
|
}
|
||||||
|
|
|
@ -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={'(300 x 300)'}
|
recommended={'(Minimum size: 300x300, (1:1)'}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<SelectAsset
|
<SelectAsset
|
||||||
onUpdate={v => handleCoverChange(v)}
|
onUpdate={v => handleCoverChange(v)}
|
||||||
currentValue={params.coverUrl}
|
currentValue={params.coverUrl}
|
||||||
assetName={'Cover'}
|
assetName={'Cover'}
|
||||||
recommended={'(1000 x 160)'}
|
recommended={'(Minimum size: 1000 x 160, (10:1.6)'}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<FormField
|
<FormField
|
||||||
|
|
|
@ -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" />.{' '}
|
||||||
{__('Recommended size: 800x450 (16:9)')}
|
{__('Minimum size: 800x450 (16:9)')}
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
)}
|
)}
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -23,8 +23,14 @@ class ModalDownloading extends React.PureComponent<Props> {
|
||||||
{downloadComplete ? (
|
{downloadComplete ? (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<p>{__('Click "Begin Upgrade" to start the upgrade process.')}</p>
|
<p>{__('Click "Begin Upgrade" to start the upgrade process.')}</p>
|
||||||
<p>{__('The app will close, and you will be prompted to install the latest version of LBRY.')}</p>
|
<p>
|
||||||
<p>{__('To launch installation manually, close LBRY and run the command below in the terminal.')}</p>
|
{__(
|
||||||
|
'The app will close (if not, quit with CTRL-Q), and you will be prompted to install the latest version of LBRY.'
|
||||||
|
)}
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
{__('To launch installation manually, close LBRY (CTRL-Q) and run the command below in the terminal.')}
|
||||||
|
</p>
|
||||||
<blockquote>sudo dpkg -i {downloadItem}</blockquote>
|
<blockquote>sudo dpkg -i {downloadItem}</blockquote>
|
||||||
<p>{__('After the install is complete, please reopen the app.')}</p>
|
<p>{__('After the install is complete, please reopen the app.')}</p>
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
|
|
Loading…
Add table
Reference in a new issue