*** empty log message ***

svn path=/trunk/boinc/; revision=11055
This commit is contained in:
David Anderson 2006-09-01 00:01:33 +00:00
parent 681967e989
commit 5f34a40dd6
3 changed files with 12 additions and 3 deletions

View File

@ -9616,3 +9616,12 @@ Rom 31 Aug 2006
AccountInfoPage.cpp
AccountManagerPropertiesPage.cpp, .h
ProjectPropertiesPage.cpp
David 31 Aug 2006
- manager: say "choose password" only if user is picking new password.
otherwise say "enter password".
- manager: if user leaves email address blank,
ask for email address, not account key
clientgui/
AccountInfoPage.cpp

View File

@ -457,13 +457,13 @@ void CAccountInfoPage::OnPageChanging( wxWizardExEvent& event )
if (strPassword.Length() < iMinLength) {
if (IS_ATTACHTOPROJECTWIZARD()) {
strMessage.Printf(
_("The minimum password length for this project is %d. Please choose a different password."),
_("The minimum password length for this project is %d. Please enter a different password."),
iMinLength
);
}
if (IS_ACCOUNTMANAGERWIZARD()) {
strMessage.Printf(
_("The minimum password length for this account manager is %d. Please choose a different password."),
_("The minimum password length for this account manager is %d. Please enter a different password."),
iMinLength
);
}

View File

@ -75,7 +75,7 @@ bool CValidateEmailAddress::Validate(wxWindow *parent) {
if (val.Length() == 0) {
ok = FALSE;
m_errormsg = _("Please specify an account key to continue.");
m_errormsg = _("Please specify an email address");
} else if (!reEmail.Matches(val)) {
ok = FALSE;
m_errormsg = _("Invalid email address; please enter a valid email address");