diff --git a/static/app-strings.json b/static/app-strings.json index 385ff366a..3c100116e 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -989,6 +989,20 @@ "Share usage data with LBRY inc.": "Share usage data with LBRY inc.", "Required": "Required", "Email %help_link% or join our %chat_link% if you encounter any trouble verifying.": "Email %help_link% or join our %chat_link% if you encounter any trouble verifying.", - "Show reposts": "Show reposts", - "Show reposts from the creators you follow.": "Show reposts from the creators you follow." + "Only apply a few tags that are relevant to your content, and use the Mature tag as appropriate. Tag abuse will not be tolerated.": "Only apply a few tags that are relevant to your content, and use the Mature tag as appropriate. Tag abuse will not be tolerated.", + "Add relevant tags...": "Add relevant tags...", + "try again in a few seconds.": "try again in a few seconds.", + "Any": "Any", + "Video": "Video", + "Document": "Document", + "Duration": "Duration", + "Long": "Long", + "Short": "Short", + "How Fresh": "How Fresh", + "This Default": "This Default", + "Sorry, your request returned no results or timed out. Modify your options or %again%": "Sorry, your request returned no results or timed out. Modify your options or %again%", + "Image": "Image", + "Model": "Model", + "Binary": "Binary", + "Other": "Other" } diff --git a/ui/component/claimListDiscover/view.jsx b/ui/component/claimListDiscover/view.jsx index cfdd66985..f58335bcc 100644 --- a/ui/component/claimListDiscover/view.jsx +++ b/ui/component/claimListDiscover/view.jsx @@ -236,7 +236,7 @@ function ClaimListDiscover(props: Props) { ), }} > - Sorry, your request timed out. Modify your options or %again% + Sorry, your request returned no results or timed out. Modify your options or %again%
@@ -412,6 +412,9 @@ function ClaimListDiscover(props: Props) { {type === CS.CLAIM_REPOST && __('Repost')} {type === CS.FILE_VIDEO && __('Video')} {type === CS.FILE_AUDIO && __('Audio')} + {type === CS.FILE_IMAGE && __('Image')} + {type === CS.FILE_MODEL && __('Model')} + {type === CS.FILE_BINARY && __('Other')} {type === CS.FILE_DOCUMENT && __('Document')} {type === CS.CONTENT_ALL && __('Any')} @@ -420,39 +423,40 @@ function ClaimListDiscover(props: Props) { })} - {options.claim_type !== CS.CLAIM_CHANNEL && - options.claim_type !== CS.CLAIM_REPOST && - JSON.stringify(options.stream_types) !== JSON.stringify([CS.FILE_DOCUMENT]) && ( - <> - {/* DURATIONS FIELD */} -