MGR: Change strings in Simple View to match changes in Advanced View: "Remaining" -> "Remaining (Estimated)", "Home page"

svn path=/trunk/boinc/; revision=25353
This commit is contained in:
Charlie Fenton 2012-02-28 12:09:44 +00:00
parent 17bfefda26
commit cc1ccf6018
1 changed files with 1 additions and 1 deletions

View File

@ -836,7 +836,7 @@ wxString CSimpleTaskPanel::GetTimeRemainingString(double f) {
} else {
s = FormatTime(f);
}
str.Printf(_("Remaining (Estimated): %s"), s.c_str());
str.Printf(_("Remaining (estimated): %s"), s.c_str());
return str;
}