mirror of https://github.com/BOINC/boinc.git
MGR: Fix welcome message in Account Manager Wizard completion page
svn path=/trunk/boinc/; revision=23561
This commit is contained in:
parent
ce31ad0511
commit
0c2308e5a6
|
@ -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.");
|
||||
|
|
Loading…
Reference in New Issue