respond to PR comments

This commit is contained in:
Sean Yesmunt 2019-06-28 03:09:26 -04:00
parent 344e590a8e
commit 27bca1f478
4 changed files with 4 additions and 2 deletions

View file

@ -41,6 +41,7 @@ function PublishFile(props: Props) {
<FileSelector currentPath={filePath} onFileChosen={handleFileChange} />
{!!isStillEditing && name && (
<p className="help">
{/* @i18nfixme */}
{__("If you don't choose a file, the file from your existing claim")}
{` "${name}" `}
{__('will be used.')}

View file

@ -26,7 +26,7 @@ function PublishFormErrors(props: Props) {
<div>{__('Please wait for thumbnail to finish uploading')}</div>
)}
{!!editingURI && !isStillEditing && !filePath && (
<div>{__('You need to reselect a file after changing the LBRY URL')}</div>
<div>{__('Please reselect a file after changing the LBRY URL')}</div>
)}
</div>
);

View file

@ -16,6 +16,7 @@ function BidHelpText(props: Props) {
} else if (!amountNeededForTakeover) {
bidHelpText = __('Any amount will give you the winning bid.');
} else {
// @i18nfixme
bidHelpText = `${__('If you bid more than')} ${amountNeededForTakeover} LBC, ${__(
'when someone navigates to'
)} ${uri} ${__('it will load your published content')}. ${__(

View file

@ -167,7 +167,7 @@ class SelectThumbnail extends React.PureComponent<Props, State> {
__('Enter a URL for your thumbnail.')
) : (
<React.Fragment>
{__('Upload your thumbnail (.png/.jpg/.jpeg/.gif) to')}{' '}
{__('Upload your thumbnail to')}{' '}
<Button button="link" label={__('spee.ch')} href="https://spee.ch/about" />.{' '}
{__('Recommended size: 800x450 (16:9)')}
</React.Fragment>