Hi,
I have set the 'locale' property to 'nl' and added all the extra imports:
import * as localeTexts from './locale.json'
import * as numberingSystems from 'cldr-data/supplemental/numberingSystems.json'
import * as gregorian from 'cldr-data/main/nl/ca-gregorian.json'
import * as numbers from 'cldr-data/main/nl/numbers.json'
import * as timeZoneNames from 'cldr-data/main/nl/timeZoneNames.json'
Vue.use(SchedulePlugin)
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames)
setCulture('nl')
L10n.load(localeTexts)
On desktops it worked fine, but when I look at an iPad, the time format is changed to am/pm instead of 24 hour format.
Does anyone know what i'm doing wrong?