MGR: Fix welcome message in Account Manager Wizard completion page

svn path=/trunk/boinc/; revision=23561
This commit is contained in:
Charlie Fenton 2011-05-19 09:13:28 +00:00
parent ce31ad0511
commit 0c2308e5a6
1 changed files with 2 additions and 2 deletions

View File

@ -250,7 +250,7 @@ void CCompletionPage::OnPageChanged( wxWizardExEvent& event ) {
wxString strWelcome;
strWelcome.Printf(
_("Welcome to %s!"),
pWAP->project_config.name.c_str()
pWAP->m_strProjectName.c_str()
);
m_pCompletionWelcome->Show();
@ -261,7 +261,7 @@ void CCompletionPage::OnPageChanged( wxWizardExEvent& event ) {
if (pSkinAdvanced->IsBranded()) {
strBrandedMessage.Printf(
_("You are now using %s to manage accounts."),
pWAP->project_config.name.c_str()
pWAP->m_strProjectName.c_str()
);
} else {
strBrandedMessage = _("You are now using this account manager.");