- Manager: tweak messages in exit dialog

svn path=/trunk/boinc/; revision=23613
This commit is contained in:
David Anderson 2011-05-25 23:13:26 +00:00
parent 1f81d3cb50
commit 660b2ae762
2 changed files with 10 additions and 3 deletions

View File

@ -3184,3 +3184,9 @@ David 25 May 2011
client/
cs_notices.cpp
David 25 May 2011
- Manager: tweak messages in exit dialog
clientgui/
DlgExitMessage.cpp

View File

@ -127,12 +127,12 @@ void CDlgExitMessage::CreateControls()
#ifdef __WXMSW__
strExitMessage.Printf(
_("You have requested to exit the %s,\nwhich allows you to view and manage\nthe science applications running on your computer.\n\nIf you also want to stop running the science applications when you\nexit the Manager, then choose from the following options:"),
_("You have requested to exit the %s,\nwhich allows you to view and manage\nthe tasks running on your computer.\n\nIf you also want to stop running the tasks,\nchoose from the following options:"),
pSkinAdvanced->GetApplicationName().c_str()
);
#else
strExitMessage.Printf(
_("This will shut down %s and its tasks entirely until either the\n%s application or the %s screen saver is run again.\n\nIn most cases, it is better just to close the %s window\nrather than to exit the application; that will allow %s to run its\ntasks at the times you selected in your preferences."),
_("This will shut down %s and its tasks until either the\n%s or the %s screen saver is run again.\n\nIn most cases, it is better just to close the %s window\nrather than to exit the application; that will allow %s to run its\ntasks at the times you selected in your preferences."),
pSkinAdvanced->GetApplicationShortName().c_str(),
pSkinAdvanced->GetApplicationName().c_str(),
pSkinAdvanced->GetApplicationShortName().c_str(),
@ -150,7 +150,8 @@ void CDlgExitMessage::CreateControls()
#ifndef __WXMAC__
strAlwaysExitMessage.Printf(
_("Stop running science applications when exiting the Manager")
_("Stop running tasks when exiting the %s")
pSkinAdvanced->GetApplicationName().c_str(),
);
m_DialogShutdownCoreClient = new wxCheckBox;