saribe / eModal

Easy Modal for bootstrap, is a simple way to create modal dialogs using javascript.
http://saribe.github.io/eModal
271 stars 97 forks source link

translate confirm modal button #96

Open mdeglas opened 3 years ago

mdeglas commented 3 years ago

Hi, I'm trying to use confirm modal. All works well but I block on how to translate the buttons text.

I have set the option label to "Yes" and in the modal I would like to replace in the 2 buttons the text "No" and "Yes" by "Non" and "Oui".

How can I do that ?

var options = {
          label: 'Yes',
          message: "Ma question ?",
          title: "Mon titre",
          size: eModal.size.md
        };

        eModal.confirm(options)
          .then(confirmCallback);

thanks for your help