search page translated

This commit is contained in:
Intnick 2017-05-26 02:38:55 +02:00
parent 85aa35122e
commit 6bd1dccbb8
2 changed files with 8 additions and 4 deletions

View file

@ -163,5 +163,9 @@
"wallet (lbryum)": "wallet (lbryum)",
"interface": "interface",
"Platform": "Platform",
"Installation ID": "Installation ID"
"Installation ID": "Installation ID",
"Search Results for": "Search Results for",
"These search results are provided by LBRY, Inc.": "These search results are provided by LBRY, Inc.",
"Exact URL": "Exact URL",
"This is the resolution of a LBRY URL and not controlled by LBRY Inc.": "This is the resolution of a LBRY URL and not controlled by LBRY Inc."
}

View file

@ -17,14 +17,14 @@ class SearchPage extends React.Component{
{ lbryuri.isValid(query) ?
<section className="section-spaced">
<h3 className="card-row__header">
Exact URL <ToolTip label="?" body="This is the resolution of a LBRY URL and not controlled by LBRY Inc."
{__("Exact URL")} <ToolTip label="?" body={__("This is the resolution of a LBRY URL and not controlled by LBRY Inc.")}
className="tooltip--header" />
</h3>
<FileTile uri={lbryuri.normalize(query)} showEmpty={FileTile.SHOW_EMPTY_PUBLISH} />
</section> : '' }
<section className="section-spaced">
<h3 className="card-row__header">
Search Results for {query} <ToolTip label="?" body="These search results are provided by LBRY, Inc."
{__("Search Results for")} {query} <ToolTip label="?" body={__("These search results are provided by LBRY, Inc.")}
className="tooltip--header" />
</h3>
<FileListSearch query={query} />