From e50fbd4cddfdb8e26f77907ca0e71bac8120d244 Mon Sep 17 00:00:00 2001 From: jessop Date: Thu, 26 Mar 2020 12:28:48 -0400 Subject: [PATCH] gets status after ffmpeg find --- static/app-strings.json | 14 +++++++++++--- ui/redux/actions/settings.js | 1 + 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/static/app-strings.json b/static/app-strings.json index 01e87d204..07c500e56 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -1036,7 +1036,6 @@ "Your video has a bitrate over 5 mbps. We suggest transcoding to provide viewers the best experience.": "Your video has a bitrate over 5 mbps. We suggest transcoding to provide viewers the best experience.", "Almost there": "Almost there", "More Channels": "More Channels", - "Known Tags": "Known Tags", "You aren’t blocking any channels": "You aren’t blocking any channels", "When you block a channel, all content from that channel will be hidden.": "When you block a channel, all content from that channel will be hidden.", "View top claims for %normalized_uri%": "View top claims for %normalized_uri%", @@ -1077,5 +1076,14 @@ "Select some tags to help us show you interesting things.": "Select some tags to help us show you interesting things.", "You are currently following %followingCount% tags": "You are currently following %followingCount% tags", "Back": "Back", - "Nice! You are currently following %followingCount% creators": "Nice! You are currently following %followingCount% creators" -} + "Nice! You are currently following %followingCount% creators": "Nice! You are currently following %followingCount% creators", + "Experimental Transcoding": "Experimental Transcoding", + "A Folder containing FFmpeg": "A Folder containing FFmpeg", + "Check again": "Check again", + "FFmpeg could not be found. Navigate to it or Install, Then %check_again% or quit and restart the app. %learn_more%": "FFmpeg could not be found. Navigate to it or Install, Then %check_again% or quit and restart the app. %learn_more%", + "FFmpeg is correctly configured. %learn_more%": "FFmpeg is correctly configured. %learn_more%", + "Finnish": "Finnish", + "Kannada": "Kannada", + "Transcoding this %size%MB file should take under %processTime% %units%.": "Transcoding this %size%MB file should take under %processTime% %units%.", + "FFmpeg not configured. More in %settings_link%.": "FFmpeg not configured. More in %settings_link%." +} \ No newline at end of file diff --git a/ui/redux/actions/settings.js b/ui/redux/actions/settings.js index 3eb7917ff..60f03f4b2 100644 --- a/ui/redux/actions/settings.js +++ b/ui/redux/actions/settings.js @@ -28,6 +28,7 @@ export function doFindFFmpeg() { type: LOCAL_ACTIONS.FINDING_FFMPEG_STARTED, }); return Lbry.ffmpeg_find().then(done => { + dispatch(doGetDaemonStatus()); dispatch({ type: LOCAL_ACTIONS.FINDING_FFMPEG_COMPLETED, });