From 66468174c293ffcfb8a6b78e129bcc354728e219 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Tue, 26 May 2020 12:26:55 -0400 Subject: [PATCH] fix strings --- ui/page/embedWrapper/view.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/page/embedWrapper/view.jsx b/ui/page/embedWrapper/view.jsx index 288b9d70b..db741bcc7 100644 --- a/ui/page/embedWrapper/view.jsx +++ b/ui/page/embedWrapper/view.jsx @@ -49,9 +49,9 @@ const EmbedWrapperPage = (props: Props) => {
- {loading && } - {noContentFound &&

No content at this link.

} - {isPaidContent &&

Paid content cannot be embedded.

} + {loading && } + {noContentFound &&

{__('No content found.')}

} + {isPaidContent &&

{__('Paid content cannot be embedded.')}

}
)}