Manager: string tweak

Translatable strings shouldn't have spaces at the end.
This is one case - should fix all of them.
This commit is contained in:
David Anderson 2015-05-29 11:05:11 -07:00
parent 31591a8c81
commit 6b064b57e6
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}
}
}