diff --git a/clientgui/ViewProjects.cpp b/clientgui/ViewProjects.cpp index 0f2f3179e9..a914e8d5fd 100644 --- a/clientgui/ViewProjects.cpp +++ b/clientgui/ViewProjects.cpp @@ -1178,7 +1178,7 @@ void CViewProjects::GetDocStatus(wxInt32 item, wxString& strBuffer) const { wxDateTime dtNow(wxDateTime::Now()); if (dtNextRPC > dtNow) { wxTimeSpan tsNextRPC(dtNextRPC - dtNow); - append_to_status(strBuffer, _("Communication deferred ") + tsNextRPC.Format()); + append_to_status(strBuffer, _("Communication deferred ") + wxString(" ") + tsNextRPC.Format()); } } }