// remove Back button - workflow has only one dialog
Wizard::HideBackButton();
// remove Abort button - it's useless
Wizard::HideAbortButton();
}
// umount CD drives (only in the first stage)
map<string,string> unmountedCD = UnmountCD();
// dialog header
string caption = _("Media Check");
// help text - media check (header) 1/7
string help = _("<P><B>Media Check</B></P>") +
// help text - media check 2/7
_("<P>When you have a problem with
installation and are using a CD or DVD installation medium, you should check
whether the medium could be broken.</P>
") +
// help text - media check 3/7
_("<P>Select a drive, insert a medium into the drive, and press <B>Start Check</B>
to perform the check. The check can take several minutes depending on
speed of the drive and size of the medium. The check verifies the MD5 checksum.</P>
") +
// help text - media check 4/7
_("<P>If the check of the medium fails, you should not continue the installation.
It may fail or you may lose your data. You should replace the broken
medium.</P>
") +
// help text - media check 5/7
_("After the check you can insert the next medium and start the procedure again.
The order of the media is irrelevant.") +
// help text - media check 6/7
_("<P><B>Note:</B> You cannot change the medium if it is used by the system. If
it happens during installation, start manual installation and select the media
verification item in the menu.</P>
") +
// help text - media check 7/6
_("<P>If you burn the media yourself, use the <B>pad</B> option in your recording software. It avoids read errors at the end of media during the check.</P>
");
// advice check of the media
string label = _("It is recommended to check all installation media to avoid installation problems.");