T00rk / bootstrap-material-datetimepicker

Datepicker for bootstrap-material
http://t00rk.github.io/bootstrap-material-datetimepicker/
MIT License
9 stars 4 forks source link

Localization is not working for Buttons on Datepicker #161

Open Who-Code opened 7 years ago

Who-Code commented 7 years ago

Using Datepicker with locale and using lang: 'de' only changes content language the "OK" and "CANCEL" buttons stay in english

dherediat97 commented 7 years ago

You must change the text of the buttons with this...

 $(document).ready(function() {
$('#datum').bootstrapMaterialDatePicker({
            format: 'DD/MM/YYYY HH:mm:ss',
            lang: 'de',
            weekStart: 1,
            cancelText: 'Stornieren',
            okText: 'Akzeptieren',
            clearText: 'Rücksetzen',
            switchOnClick: true,
            clearButton: true,
            minDate: new Date()
        });
});

Greetings