Missed two translation comments in r35800.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35803 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Pfeiffer 2010-03-10 19:19:16 +00:00
parent 5d1f3d53e2
commit e4872e666e
1 changed files with 2 additions and 2 deletions

View File

@ -259,12 +259,12 @@ BootManagerController::CreatePage(int32 state, WizardView* wizard)
case kStateUninstall:
page = _CreateUninstallPage(frame);
wizard->SetPreviousButtonHidden(false);
wizard->SetNextButtonLabel(TR("Next"));
wizard->SetNextButtonLabel(TR_CMT("Next", "Button"));
break;
case kStateUninstalled:
// TODO prevent overwriting MBR after clicking "Previous"
page = _CreateUninstalledPage(frame);
wizard->SetNextButtonLabel(TR("Done"));
wizard->SetNextButtonLabel(TR_CMT("Done", "Button"));
break;
}