search page translated
This commit is contained in:
parent
85aa35122e
commit
6bd1dccbb8
2 changed files with 8 additions and 4 deletions
|
@ -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."
|
||||
}
|
|
@ -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} />
|
||||
|
|
Loading…
Reference in a new issue