0

I'm using bash and dialog to create curses menu. For example

dialog --menu "Choose Next or Back" 15 50 4 Blah "blah"

this has OK and Cancel buttons.

Is there a way to rename 'OK' button to 'Next' and 'Cancel' button to 'Back'?

Thanks.

Logan Lee
  • 123

1 Answers1

0

Following works

dialog --ok-label "Next" --cancel-label "Back" --menu "Choose Next or Back" 15 50 4 Blah "blah"
Logan Lee
  • 123