From 6b064b57e6660010e7c7c27bb34d4c969084d874 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 29 May 2015 11:05:11 -0700 Subject: [PATCH] Manager: string tweak Translatable strings shouldn't have spaces at the end. This is one case - should fix all of them. --- clientgui/ViewProjects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } } }