From 3e16946f9e38660c64ca7e91fdc605ba29f3bcff Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 15 Feb 2006 00:06:39 +0000 Subject: [PATCH] menu items svn path=/trunk/boinc/; revision=9471 --- checkin_notes | 8 ++++++++ clientgui/MainFrame.cpp | 16 ++++++++-------- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/checkin_notes b/checkin_notes index c10ef81fb7..18c9f9828b 100755 --- a/checkin_notes +++ b/checkin_notes @@ -1851,3 +1851,11 @@ David 14 Feb 2006 user.inc user/ stats.php + +David 14 Feb 2006 + - Manager: rename menu item from "Update now" + to "Synchronize with [name of account manager]". + Fixed some spelling/grammar. + + clientgui/ + MainFrame.cpp diff --git a/clientgui/MainFrame.cpp b/clientgui/MainFrame.cpp index 4d9b26d1cc..2b4f232dba 100644 --- a/clientgui/MainFrame.cpp +++ b/clientgui/MainFrame.cpp @@ -357,8 +357,8 @@ bool CMainFrame::CreateMenu() { } else { menuTools->Append( ID_TOOLSAMUPDATENOW, - _("&Update now"), - _("Reterive the latest settings from the account manager") + _("&Synchronize with ")+wxString(ami.acct_mgr_name.c_str()), + _("Get current settings from ")+wxString(ami.acct_mgr_name.c_str()) ); } @@ -368,17 +368,17 @@ bool CMainFrame::CreateMenu() { menuActivity->AppendRadioItem( ID_FILEACTIVITYRUNALWAYS, _("&Run always"), - _("Does work regardless of preferences") + _("Do work regardless of preferences") ); menuActivity->AppendRadioItem( ID_FILEACTIVITYRUNBASEDONPREPERENCES, _("Run based on &preferences"), - _("Does work according to your preferences") + _("Do work according to your preferences") ); menuActivity->AppendRadioItem( ID_FILEACTIVITYSUSPEND, _("&Suspend"), - _("Stops work regardless of preferences") + _("Stop work regardless of preferences") ); menuActivity->AppendSeparator(); @@ -386,17 +386,17 @@ bool CMainFrame::CreateMenu() { menuActivity->AppendRadioItem( ID_FILENETWORKRUNALWAYS, _("&Network activity always available"), - _("Does network activity regardless of preferences") + _("Do network activity regardless of preferences") ); menuActivity->AppendRadioItem( ID_FILENETWORKRUNBASEDONPREPERENCES, _("Network activity based on &preferences"), - _("Does network activity according to your preferences") + _("Do network activity according to your preferences") ); menuActivity->AppendRadioItem( ID_FILENETWORKSUSPEND, _("&Network activity suspended"), - _("Stops BOINC network activity") + _("Stop BOINC network activity") ); // Advanced menu