Misc updates
This commit is contained in:
parent
27d8f4174c
commit
7613d07c35
7 changed files with 12 additions and 8 deletions
|
@ -176,7 +176,7 @@
|
|||
"Odysee is not responsible for its content, click continue to proceed at your own risk.": "Odysee is not responsible for its content, click continue to proceed at your own risk.",
|
||||
"Yes": "Yes",
|
||||
"No": "No",
|
||||
"These search results are provided by LBRY, Inc.": "These search results are provided by LBRY, Inc.",
|
||||
"These search results are provided by Odysee.": "These search results are provided by Odysee.",
|
||||
"View file": "View file",
|
||||
"Files": "Files",
|
||||
"Channels": "Channels",
|
||||
|
@ -1675,7 +1675,7 @@
|
|||
"POWERED BY %lbry_link%": "POWERED BY %lbry_link%",
|
||||
"Learn more about LBRY Credits on %DOMAIN%": "Learn more about LBRY Credits on %DOMAIN%",
|
||||
"Results boosted by %lbc%": "Results boosted by %lbc%",
|
||||
"Uploaded image will be visible in a few minutes.": "Uploaded image will be visible in a few minutes.",
|
||||
"Uploaded image will be visible in a few minutes after you submit this form.": "Uploaded image will be visible in a few minutes after you submit this form.",
|
||||
"Turn on notifications": "Turn on notifications",
|
||||
"Turn off notifications": "Turn off notifications",
|
||||
"Notifications turned off for %channel%.": "Notifications turned off for %channel%.",
|
||||
|
|
|
@ -129,7 +129,7 @@ function ChannelContent(props: Props) {
|
|||
)}
|
||||
</p>
|
||||
<div className="section__actions">
|
||||
<Button button="link" href="https://odysee.com/@OdyseeHelp:b/copyright:f" label={__('Read More')} />
|
||||
<Button button="link" href="odysee.com/@OdyseeHelp:b/copyright:f" label={__('Read More')} />
|
||||
</div>
|
||||
</section>
|
||||
)}
|
||||
|
|
|
@ -294,7 +294,7 @@ function ChannelForm(props: Props) {
|
|||
{params.coverUrl &&
|
||||
(coverError && isUpload.cover ? (
|
||||
<div className="channel-cover__custom--waiting">
|
||||
<p>{__('Uploaded image will be visible in a few minutes.')}</p>
|
||||
<p>{__('Uploaded image will be visible in a few minutes after you submit this form.')}</p>
|
||||
</div>
|
||||
) : (
|
||||
<img className="channel-cover__custom" src={coverSrc} onError={() => setCoverError(true)} />
|
||||
|
|
|
@ -92,7 +92,9 @@ function ChannelThumbnail(props: Props) {
|
|||
})}
|
||||
>
|
||||
{showDelayedMessage ? (
|
||||
<div className="channel-thumbnail--waiting">{__('This will be visible in a few minutes.')}</div>
|
||||
<div className="channel-thumbnail--waiting">
|
||||
{__('This will be visible in a few minutes after you submit this form.')}
|
||||
</div>
|
||||
) : (
|
||||
<OptimizedImage
|
||||
alt={__('Channel profile picture')}
|
||||
|
|
|
@ -99,7 +99,9 @@ function SelectThumbnail(props: Props) {
|
|||
*/
|
||||
const thumbPreview = (
|
||||
<div className="column__item thumbnail-picker__preview" style={{ backgroundImage: `url(${String(thumbnailSrc)})` }}>
|
||||
{thumbUploaded && thumbnailError !== false && __('This will be visible in a few minutes.')}
|
||||
{thumbUploaded &&
|
||||
thumbnailError !== false &&
|
||||
__('This will be visible in a few minutes after you submit this form.')}
|
||||
<img
|
||||
style={{ display: 'none' }}
|
||||
src={thumbnail}
|
||||
|
|
|
@ -107,7 +107,7 @@ export default function SearchPage(props: Props) {
|
|||
}
|
||||
/>
|
||||
|
||||
<div className="main--empty help">{__('These search results are provided by LBRY, Inc.')}</div>
|
||||
<div className="main--empty help">{__('These search results are provided by Odysee.')}</div>
|
||||
</>
|
||||
)}
|
||||
</section>
|
||||
|
|
|
@ -45,7 +45,7 @@ const YouTubeTOSPage = () => {
|
|||
</p>
|
||||
|
||||
<p>
|
||||
The Services provide an interface for you to interact with LBRY, including to publish, access, or host
|
||||
The Services provide an interface for you to interact with Odysee, including to publish, access, or host
|
||||
Content through LBRY. The LBRY protocol is not owned, operated, or maintained by us. We have no
|
||||
responsibility or liability for LBRY, and the Company has no ability to control third parties’ use of
|
||||
LBRY. We are not able to delete or remove Content that has been published through LBRY and that may be
|
||||
|
|
Loading…
Reference in a new issue