Change "done" text on datapicker

hello,
i wanna change this text (Done on top right) :
image
on datapicker with time.

My code :

  var calendarDateTime = app.calendar.create({
    inputEl: '#demo-calendar-date-time2',
    timePicker: true,
    dateFormat: { month: 'numeric', day: 'numeric', year: 'numeric', hour: 'numeric', minute: 'numeric' },
    timePickerPlaceholder: 'Seleziona orario',
    toolbarCloseText: 'Fatto',
    disabled: {
      to: yesterday
    }
  });

Already tried with : timePickerPlaceholder, dialog: { buttonOk: 'Fatto', } and smartSelect: { popupCloseLinkText: 'Chiudi', },.

Can someone help me? Thanks

try this timePickerCloseText: 'Some text'

Documentation is here - framework7/src/core/components/calendar/calendar.js at master · framework7io/framework7 · GitHub