diff --git a/UI/data/locale/en-US.ini b/UI/data/locale/en-US.ini index e62f38a26..cb35ba2b0 100644 --- a/UI/data/locale/en-US.ini +++ b/UI/data/locale/en-US.ini @@ -420,7 +420,7 @@ Output.ConnectFail.Disconnected="Disconnected from server." # output streaming-related messages Output.StreamEncodeError.Title="Encoding error" Output.StreamEncodeError.Msg="An encoder error occurred while streaming." -Output.StreamEncodeError.Msg.LastError="An encoder error occurred while streaming:\n\n%1" +Output.StreamEncodeError.Msg.LastError="An encoder error occurred while streaming:

%1" # output recording-related messages Output.RecordFail.Title="Failed to start recording" @@ -430,7 +430,7 @@ Output.RecordNoSpace.Msg="There is not sufficient disk space to continue recordi Output.RecordError.Title="Recording error" Output.RecordError.Msg="An unspecified error occurred while recording." Output.RecordError.EncodeErrorMsg="An encoder error occurred while recording." -Output.RecordError.EncodeErrorMsg.LastError="An encoder error occurred while recording:\n\n%1" +Output.RecordError.EncodeErrorMsg.LastError="An encoder error occurred while recording:

%1" # output recording messages Output.BadPath.Title="Bad File Path" diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index 943e8cac1..7e90a9da9 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -7730,8 +7730,8 @@ void OBSBasic::RecordingStop(int code, QString last_error) errorDescription = Str("Output.RecordError.Msg"); if (use_last_error && !last_error.isEmpty()) - dstr_printf(errorMessage, "%s\n\n%s", errorDescription, - QT_TO_UTF8(last_error)); + dstr_printf(errorMessage, "%s

%s", + errorDescription, QT_TO_UTF8(last_error)); else dstr_copy(errorMessage, errorDescription);