mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11055
This commit is contained in:
parent
681967e989
commit
5f34a40dd6
|
@ -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
|
||||
|
|
|
@ -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
|
||||
);
|
||||
}
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue