mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9473
This commit is contained in:
parent
d309548281
commit
635ff61e2e
|
@ -1864,6 +1864,9 @@ Rom 14 Feb 2006
|
|||
- Spec Change: Transfers should be 0% until data is actually transfered.
|
||||
- Spec Change: Warn a user that aborting a file transfer will invalidate
|
||||
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/
|
||||
ViewTransfers.cpp
|
||||
|
|
|
@ -355,10 +355,22 @@ bool CMainFrame::CreateMenu() {
|
|||
_("Attach to an account manager")
|
||||
);
|
||||
} 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(
|
||||
ID_TOOLSAMUPDATENOW,
|
||||
_("&Synchronize with ")+wxString(ami.acct_mgr_name.c_str()),
|
||||
_("Get current settings from ")+wxString(ami.acct_mgr_name.c_str())
|
||||
strMenuName,
|
||||
strMenuDescription
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -429,8 +441,8 @@ bool CMainFrame::CreateMenu() {
|
|||
"get latest preferences, and possibly get more work.")
|
||||
);
|
||||
if (is_acct_mgr_detected) {
|
||||
// %s is the application name
|
||||
// i.e. 'BOINC Manager', 'GridRepublic Manager'
|
||||
// %s is the project name
|
||||
// i.e. 'BOINC', 'GridRepublic'
|
||||
strMenuName.Printf(
|
||||
_("&Defect from %s"),
|
||||
ami.acct_mgr_name.c_str()
|
||||
|
|
Loading…
Reference in New Issue