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.",
|
||||
"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",
|
||||
"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)}
|
||||
currentValue={params.thumbnailUrl}
|
||||
assetName={'Thumbnail'}
|
||||
recommended={'(300 x 300)'}
|
||||
recommended={'(Minimum size: 300x300, (1:1)'}
|
||||
/>
|
||||
|
||||
<SelectAsset
|
||||
onUpdate={v => handleCoverChange(v)}
|
||||
currentValue={params.coverUrl}
|
||||
assetName={'Cover'}
|
||||
recommended={'(1000 x 160)'}
|
||||
recommended={'(Minimum size: 1000 x 160, (10:1.6)'}
|
||||
/>
|
||||
|
||||
<FormField
|
||||
|
|
|
@ -175,7 +175,7 @@ class SelectThumbnail extends React.PureComponent<Props, State> {
|
|||
<React.Fragment>
|
||||
{__('Upload your thumbnail to')}{' '}
|
||||
<Button button="link" label={__('spee.ch')} href="https://spee.ch/about" />.{' '}
|
||||
{__('Recommended size: 800x450 (16:9)')}
|
||||
{__('Minimum size: 800x450 (16:9)')}
|
||||
</React.Fragment>
|
||||
)}
|
||||
</p>
|
||||
|
|
|
@ -23,8 +23,14 @@ class ModalDownloading extends React.PureComponent<Props> {
|
|||
{downloadComplete ? (
|
||||
<React.Fragment>
|
||||
<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>{__('To launch installation manually, close LBRY and run the command below in the terminal.')}</p>
|
||||
<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>
|
||||
<p>{__('After the install is complete, please reopen the app.')}</p>
|
||||
</React.Fragment>
|
||||
|
|
Loading…
Add table
Reference in a new issue