fix strings

This commit is contained in:
Sean Yesmunt 2020-05-26 12:26:55 -04:00
parent 7562fdcfd5
commit 66468174c2

View file

@ -49,9 +49,9 @@ const EmbedWrapperPage = (props: Props) => {
<FileViewerEmbeddedTitle uri={uri} />
<div className="embed__loading-text">
{loading && <Spinner delayed />}
{noContentFound && <h1>No content at this link.</h1>}
{isPaidContent && <h1>Paid content cannot be embedded.</h1>}
{loading && <Spinner delayed light />}
{noContentFound && <h1>{__('No content found.')}</h1>}
{isPaidContent && <h1>{__('Paid content cannot be embedded.')}</h1>}
</div>
</div>
)}