--- trunk/installer/ncurses-gui/common.sh 2010/05/31 20:58:59 1058 +++ trunk/installer/ncurses-gui/common.sh 2010/05/31 20:59:19 1059 @@ -15,11 +15,13 @@ [[ -z ${height} ]] && height=0 [[ -z ${width} ]] && width=0 + [[ -z ${OK_LABEL} ]] && OK_LABEL="Next" + dialog \ --colors \ --title "${header}" \ --backtitle "${TITLE}" \ - --ok-label "Next" \ + --ok-label "${OK_LABEL}" \ --msgbox "${text}" "${height}" "${width}" } @@ -104,4 +106,4 @@ } welcome() { messagebox "Welcome" "Welcome to the Magellan-Linux Installer.\n\n\nPress [Enter] to continue." 10 45; } -finish() { messagebox "Finish" "Installation successfully finished." 10 40; } +finish() { OK_LABEL="Exit" messagebox "Finish" "Installation successfully finished." 10 40; }