From 0ae61ea08883952d04705a7092e0a880e7a3432e Mon Sep 17 00:00:00 2001 From: baldurk Date: Fri, 3 Nov 2017 14:52:04 +0000 Subject: [PATCH] Fix translation string being incorrectly split --- qrenderdoc/Windows/Dialogs/LiveCapture.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/qrenderdoc/Windows/Dialogs/LiveCapture.cpp b/qrenderdoc/Windows/Dialogs/LiveCapture.cpp index 24b6dab3c..4bb470752 100644 --- a/qrenderdoc/Windows/Dialogs/LiveCapture.cpp +++ b/qrenderdoc/Windows/Dialogs/LiveCapture.cpp @@ -669,9 +669,8 @@ void LiveCapture::openCapture(CaptureLog *log) RDDialog::critical( this, tr("No active replay context"), tr("This capture is on remote host %1 and there is no active replay context on that " - "host.\n") + - tr("You can either save the log locally, or switch to a replay context on %1.") - .arg(m_Hostname)); + "host.\nYou can either save the log locally, or switch to a replay context on %1.") + .arg(m_HostFriendlyname)); return; }