Manager: show project name in account-info page

This commit is contained in:
David Anderson 2013-05-16 11:00:07 -07:00
parent 21d5d8c7f3
commit 89ccacd589
1 changed files with 4 additions and 3 deletions

View File

@ -382,9 +382,10 @@ void CAccountInfoPage::OnPageChanged( wxWizardExEvent& event ) {
m_pAccountManagerLinkLabelStaticCtrl->Hide();
}
m_pTitleStaticCtrl->SetLabel(
_("Identify your account ")
);
wxString str;
wxString name = wxString(pc.name.c_str(), wxConvUTF8);
str.Printf(_("Identify your account at %s"), name.c_str());
m_pTitleStaticCtrl->SetLabel(str);
if (!IS_ACCOUNTMANAGERWIZARD() && !IS_ACCOUNTMANAGERUPDATEWIZARD()) {
if (pc.client_account_creation_disabled) {