*** empty log message ***

svn path=/trunk/boinc/; revision=9473
This commit is contained in:
Rom Walton 2006-02-15 02:38:38 +00:00
parent d309548281
commit 635ff61e2e
2 changed files with 19 additions and 4 deletions

View File

@ -1864,6 +1864,9 @@ Rom 14 Feb 2006
- Spec Change: Transfers should be 0% until data is actually transfered. - Spec Change: Transfers should be 0% until data is actually transfered.
- Spec Change: Warn a user that aborting a file transfer will invalidate - Spec Change: Warn a user that aborting a file transfer will invalidate
a task and report an error. a task and report an error.
- Add some comments around the Update Now menu item so the localizers
know what information is expected and make the string contruction
the same as with the other menu items.
clientgui/ clientgui/
ViewTransfers.cpp ViewTransfers.cpp

View File

@ -355,10 +355,22 @@ bool CMainFrame::CreateMenu() {
_("Attach to an account manager") _("Attach to an account manager")
); );
} else { } else {
// %s is the project name
// i.e. 'BOINC', 'GridRepublic'
strMenuName.Printf(
_("&Synchronize with %s"),
ami.acct_mgr_name.c_str()
);
// %s is the project name
// i.e. 'BOINC', 'GridRepublic'
strMenuDescription.Printf(
_("Get current settings from %s"),
ami.acct_mgr_name.c_str()
);
menuTools->Append( menuTools->Append(
ID_TOOLSAMUPDATENOW, ID_TOOLSAMUPDATENOW,
_("&Synchronize with ")+wxString(ami.acct_mgr_name.c_str()), strMenuName,
_("Get current settings from ")+wxString(ami.acct_mgr_name.c_str()) strMenuDescription
); );
} }
@ -429,8 +441,8 @@ bool CMainFrame::CreateMenu() {
"get latest preferences, and possibly get more work.") "get latest preferences, and possibly get more work.")
); );
if (is_acct_mgr_detected) { if (is_acct_mgr_detected) {
// %s is the application name // %s is the project name
// i.e. 'BOINC Manager', 'GridRepublic Manager' // i.e. 'BOINC', 'GridRepublic'
strMenuName.Printf( strMenuName.Printf(
_("&Defect from %s"), _("&Defect from %s"),
ami.acct_mgr_name.c_str() ami.acct_mgr_name.c_str()