welcome() { messagebox -y 10 -x 70 -h $"Welcome" $"Welcome to the ${DEFAULT_TITLE}.\n\n\nPress [Enter] to continue." } finish() { OK_LABEL=$"Exit" messagebox -y 10 -x 70 -h $"Finish" $"Installation was successfully finished." } dialog_no_harddrive_found() { OK_LABEL=$"abort" messagebox $"No appropriate harddrive found.\nInstallation failed." } dialog_select_target_harddrive() { menubox $"Select installation target drive:" $(for i in ${ALL_DISKS}; do echo "${i}:";done) }