mirror of https://github.com/BOINC/boinc.git
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:
parent
31591a8c81
commit
6b064b57e6
|
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue