From 1bee7367ec91f4034fd897984fcc32f2216c05af Mon Sep 17 00:00:00 2001
From: Thomas Zarebczan
Date: Tue, 19 Nov 2019 22:29:24 -0500
Subject: [PATCH] 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
---
static/app-strings.json | 7 +++++--
ui/component/channelEdit/view.jsx | 4 ++--
ui/component/selectThumbnail/view.jsx | 2 +-
ui/modal/modalDownloading/view.jsx | 10 ++++++++--
4 files changed, 16 insertions(+), 7 deletions(-)
diff --git a/static/app-strings.json b/static/app-strings.json
index 25f645b5d..803ee4e0e 100644
--- a/static/app-strings.json
+++ b/static/app-strings.json
@@ -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."
-}
\ No newline at end of file
+ "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)"
+}
diff --git a/ui/component/channelEdit/view.jsx b/ui/component/channelEdit/view.jsx
index 8c9dccc11..e5996fe0b 100644
--- a/ui/component/channelEdit/view.jsx
+++ b/ui/component/channelEdit/view.jsx
@@ -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)'}
/>
handleCoverChange(v)}
currentValue={params.coverUrl}
assetName={'Cover'}
- recommended={'(1000 x 160)'}
+ recommended={'(Minimum size: 1000 x 160, (10:1.6)'}
/>
{
{__('Upload your thumbnail to')}{' '}
.{' '}
- {__('Recommended size: 800x450 (16:9)')}
+ {__('Minimum size: 800x450 (16:9)')}
)}