diff --git a/lang/main.json b/lang/main.json index 3e398633a..78a8249d1 100644 --- a/lang/main.json +++ b/lang/main.json @@ -387,6 +387,7 @@ "failedToStart": "Live streaming failed to start", "buttonTooltip": "Start / Stop live stream", "streamIdRequired": "Please fill in the stream id in order to launch the live streaming.", + "streamIdHelp": "Where do I find this?", "error": "Live streaming failed. Please try again.", "busy": "All recorders are currently busy. Please try again later." } diff --git a/modules/UI/recording/Recording.js b/modules/UI/recording/Recording.js index 26153f8b5..bed6be570 100644 --- a/modules/UI/recording/Recording.js +++ b/modules/UI/recording/Recording.js @@ -51,6 +51,9 @@ function _requestLiveStreamId() { const streamIdRequired = APP.translation.generateTranslationHTML( "liveStreaming.streamIdRequired"); + const streamIdHelp + = APP.translation.generateTranslationHTML( + "liveStreaming.streamIdHelp"); return new Promise(function (resolve, reject) { dialog = APP.UI.messageHandler.openDialogWithStates({ @@ -60,7 +63,8 @@ function _requestLiveStreamId() { ``, + autofocus>
+ `+streamIdHelp+`
`, persistent: false, buttons: [ {title: cancelButton, value: false},