svn path=/trunk/boinc/; revision=18753

This commit is contained in:
David Anderson 2009-07-28 18:20:29 +00:00
parent 31e9916f7d
commit 0d807fd254
1 changed files with 2 additions and 2 deletions

View File

@ -769,13 +769,13 @@ void CViewTransfers::GetDocStatus(wxInt32 item, wxString& strBuffer) const {
if (project->upload_backoff) {
wxString x;
FormatTime(project->upload_backoff, x);
strBuffer += _("(project backoff: ") + x + _(")");
strBuffer += _(" (project backoff: ") + x + _(")");
}
} else {
if (project->download_backoff) {
wxString x;
FormatTime(project->download_backoff, x);
strBuffer += _("(project backoff: ") + x + _(")");
strBuffer += _(" (project backoff: ") + x + _(")");
}
}
}