copy changes
This commit is contained in:
parent
201417efcf
commit
4b6c772adc
9 changed files with 22 additions and 30 deletions
|
@ -17,7 +17,6 @@
|
|||
"No results": "No results",
|
||||
"Home": "Home",
|
||||
"Subscriptions": "Subscriptions",
|
||||
"Publishes": "Publishes",
|
||||
"Library": "Library",
|
||||
"Following": "Following",
|
||||
"The tags you follow will change what's trending for you.": "The tags you follow will change what's trending for you.",
|
||||
|
@ -41,7 +40,6 @@
|
|||
"Content": "Content",
|
||||
"FAQ": "FAQ",
|
||||
"Title": "Title",
|
||||
"Titular Title": "Titular Title",
|
||||
"Description": "Description",
|
||||
"Description of your content": "Description of your content",
|
||||
"Price": "Price",
|
||||
|
@ -335,7 +333,6 @@
|
|||
"Remove tag": "Remove tag",
|
||||
"Add tag": "Add tag",
|
||||
"No tags added": "No tags added",
|
||||
"My description for this and that": "My description for this and that",
|
||||
"Choose a thumbnail": "Choose a thumbnail",
|
||||
"Take a snapshot from your video": "Take a snapshot from your video",
|
||||
"Upload your thumbnail to": "Upload your thumbnail to",
|
||||
|
@ -613,7 +610,7 @@
|
|||
"Sign In to LBRY": "Sign In to LBRY",
|
||||
"Check Your Email": "Check Your Email",
|
||||
"sign in": "sign in",
|
||||
"An email was sent to %email%. Follow the link to %verify_text%. This will update automatically.": "An email was sent to %email%. Follow the link to %verify_text%. This will update automatically.",
|
||||
"An email was sent to %email%. Follow the link to %verify_text%.": "An email was sent to %email%. Follow the link to %verify_text%.",
|
||||
"Resend Email": "Resend Email",
|
||||
"Sync your balance and preferences across devices.": "Sync your balance and preferences across devices.",
|
||||
"Add Email": "Add Email",
|
||||
|
@ -628,7 +625,6 @@
|
|||
"Latest Transactions": "Latest Transactions",
|
||||
"Looks like you don't have any transactions.": "Looks like you don't have any transactions.",
|
||||
"If Sync is on, LBRY will backup your wallet and preferences. If disabled, you are responsible for keeping a backup.": "If Sync is on, LBRY will backup your wallet and preferences. If disabled, you are responsible for keeping a backup.",
|
||||
"View My Publishes": "View My Publishes",
|
||||
"Your update is now pending on LBRY. It will take a few minutes to appear for other users.": "Your update is now pending on LBRY. It will take a few minutes to appear for other users.",
|
||||
"Your file is now pending on LBRY. It will take a few minutes to appear for other users.": "Your file is now pending on LBRY. It will take a few minutes to appear for other users.",
|
||||
"Upload will continue in the background, please do not shut down immediately. Leaving the app running helps the network, thank you!": "Upload will continue in the background, please do not shut down immediately. Leaving the app running helps the network, thank you!",
|
||||
|
@ -841,7 +837,6 @@
|
|||
"gaming, crypto": "gaming, crypto",
|
||||
"Autocomplete": "Autocomplete",
|
||||
"Followed Tags": "Followed Tags",
|
||||
"Add tags that are relevant to your content. If mature content, ensure it is tagged mature. Tag abuse and missing mature tags will not be tolerated.": "Add tags that are relevant to your content. If mature content, ensure it is tagged mature. Tag abuse and missing mature tags will not be tolerated.",
|
||||
"%selectTagsLabel% (%number% left)": "%selectTagsLabel% (%number% left)",
|
||||
"Matching": "Matching",
|
||||
"Please check your deposit amount.": "Please check your deposit amount.",
|
||||
|
@ -860,7 +855,6 @@
|
|||
"view all claims": "view all claims",
|
||||
"Top claims at lbry://%name%": "Top claims at lbry://%name%",
|
||||
"Last Updated": "Last Updated",
|
||||
"Total Publishes": "Total Publishes",
|
||||
"Are you sure? Type %name% to confirm that you wish to delete the channel.": "Are you sure? Type %name% to confirm that you wish to delete the channel.",
|
||||
"You're about to permanently delete a channel. Content published under this channel will be orphaned and their signing channel invalid. Content sync programs using this channel will fail.": "You're about to permanently delete a channel. Content published under this channel will be orphaned and their signing channel invalid. Content sync programs using this channel will fail.",
|
||||
"You are signed into lbry.tv which automatically shares data with LBRY inc. %signout_button%.": "You are signed into lbry.tv which automatically shares data with LBRY inc. %signout_button%.",
|
||||
|
|
|
@ -61,7 +61,7 @@ function ChannelAbout(props: Props) {
|
|||
<ClaimTags uri={uri} type="large" />
|
||||
</div>
|
||||
|
||||
<label>{__('Total Publishes')}</label>
|
||||
<label>{__('Total Uploads')}</label>
|
||||
<div className="media__info-text">{claim.meta.claims_in_channel}</div>
|
||||
|
||||
<label>{__('Last Updated')}</label>
|
||||
|
|
|
@ -176,7 +176,7 @@ function PublishForm(props: Props) {
|
|||
empty={__('No tags added')}
|
||||
limitSelect={TAGS_LIMIT}
|
||||
help={__(
|
||||
'Add tags that are relevant to your content. If mature content, ensure it is tagged mature. Tag abuse and missing mature tags will not be tolerated.'
|
||||
"Add tags that are relevant to your content so those who're looking for it can find it more easily. If mature content, ensure it is tagged mature. Tag abuse and missing mature tags will not be tolerated."
|
||||
)}
|
||||
placeholder={__('gaming, crypto')}
|
||||
onSelect={newTags => {
|
||||
|
|
|
@ -27,7 +27,7 @@ function PublishText(props: Props) {
|
|||
type="text"
|
||||
name="content_title"
|
||||
label={__('Title')}
|
||||
placeholder={__('Titular Title')}
|
||||
placeholder={__('Descriptive titles work best')}
|
||||
disabled={disabled}
|
||||
value={title}
|
||||
onChange={e => updatePublishForm({ title: e.target.value })}
|
||||
|
@ -37,7 +37,9 @@ function PublishText(props: Props) {
|
|||
type={advancedEditor ? 'markdown' : 'textarea'}
|
||||
name="content_description"
|
||||
label={__('Description')}
|
||||
placeholder={__('My description for this and that')}
|
||||
placeholder={__(
|
||||
'What is your content about? Use this space to include any other relevant details you may like to share about your content and channel.'
|
||||
)}
|
||||
value={description}
|
||||
disabled={disabled}
|
||||
onChange={value => updatePublishForm({ description: advancedEditor ? value : value.target.value })}
|
||||
|
|
|
@ -140,10 +140,8 @@ class SelectThumbnail extends React.PureComponent<Props, State> {
|
|||
<div className="column column--space-between">
|
||||
<div className="column__item thumbnail-preview" style={{ backgroundImage: `url(${thumbnail})` }} />
|
||||
<div className="column__item">
|
||||
<p>
|
||||
Upload complete. <Button button="link" href={thumbnail} label={__('View thumbnail')} />.
|
||||
</p>
|
||||
<div className="card__actions">
|
||||
<p>{__('Upload complete.')}</p>
|
||||
<div className="section__actions">
|
||||
<Button button="link" label={__('New thumbnail')} onClick={resetThumbnailStatus} />
|
||||
</div>
|
||||
</div>
|
||||
|
@ -152,7 +150,7 @@ class SelectThumbnail extends React.PureComponent<Props, State> {
|
|||
</React.Fragment>
|
||||
)}
|
||||
{status === THUMBNAIL_STATUSES.READY && (
|
||||
<div className="card__actions">
|
||||
<div className="section__actions">
|
||||
<Button
|
||||
button="link"
|
||||
label={__('Enter a thumbnail URL')}
|
||||
|
@ -169,11 +167,13 @@ class SelectThumbnail extends React.PureComponent<Props, State> {
|
|||
)}
|
||||
|
||||
{status === THUMBNAIL_STATUSES.IN_PROGRESS && <p>{__('Uploading thumbnail')}...</p>}
|
||||
<p className="help">
|
||||
{status === THUMBNAIL_STATUSES.API_DOWN
|
||||
? __('Enter a URL for your thumbnail.')
|
||||
: __('Upload your thumbnail to %domain%. Recommended size is 16:9.', { domain: DOMAIN })}
|
||||
</p>
|
||||
{status !== THUMBNAIL_STATUSES.COMPLETE && (
|
||||
<p className="help">
|
||||
{status === THUMBNAIL_STATUSES.API_DOWN
|
||||
? __('Enter a URL for your thumbnail.')
|
||||
: __('Upload your thumbnail to %domain%. Recommended size is 16:9.', { domain: DOMAIN })}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -180,11 +180,11 @@ function SideNavigation(props: Props) {
|
|||
PAGES.UPLOADS,
|
||||
uploadCount ? (
|
||||
<span>
|
||||
{__('Publishes')}
|
||||
{__('Uploads')}
|
||||
<Spinner type="small" />
|
||||
</span>
|
||||
) : (
|
||||
__('Publishes')
|
||||
__('Uploads')
|
||||
),
|
||||
ICONS.PUBLISH
|
||||
),
|
||||
|
|
|
@ -21,11 +21,7 @@ export default function WebUploadList(props: Props) {
|
|||
!!uploadCount && (
|
||||
<Card
|
||||
title={__('Currently Uploading')}
|
||||
subtitle={
|
||||
uploadCount > 1
|
||||
? __('You files are currently uploading. This will update automatically.')
|
||||
: __('Your file is currently uploading. This will update automatically.')
|
||||
}
|
||||
subtitle={uploadCount > 1 ? __('You files are currently uploading.') : __('Your file is currently uploading.')}
|
||||
body={
|
||||
<section>
|
||||
{/* $FlowFixMe */}
|
||||
|
|
|
@ -56,7 +56,7 @@ class ModalPublishSuccess extends React.PureComponent<Props> {
|
|||
<div className="section__actions">
|
||||
<Button
|
||||
button="primary"
|
||||
label={__('View My Publishes')}
|
||||
label={__('View My Uploads')}
|
||||
onClick={() => {
|
||||
clearPublish();
|
||||
navigate(`/$/${PAGES.UPLOADS}`);
|
||||
|
|
|
@ -61,7 +61,7 @@ function FileListPublished(props: Props) {
|
|||
<WebUploadList />
|
||||
{!!(urls && urls.length) && (
|
||||
<Card
|
||||
title={__('Publishes')}
|
||||
title={__('Uploads')}
|
||||
titleActions={
|
||||
<div className="card__actions--inline">
|
||||
{fetching && <Spinner type="small" />}
|
||||
|
|
Loading…
Add table
Reference in a new issue