Format language Date Picker

I had success with Dateformat() in expressions but I‘m also wondering how to:

  • Make monday as the beginning of my week
  • Change Language to german or others and not only english Weeks/Months like „december etc.“

Stackoverflow says:

var march = moment('2017-03')
console.log(march.format('MMMM')) // 'March'

moment.locale('de') // returns the new locale, in this case 'de'
console.log(march.format('MMMM')) // 'March' still, since the instance was before the locale was set

var deMarch = moment('2017-03')
console.log(deMarch.format('MMMM')) // 'März'

// You can, however, change just the locale of a specific moment
march.locale('es')
console.log(march.format('MMMM')) // 'Marzo'

http://momentjs.com/docs/#/i18n/

With Version 2.8+ maybe also simply via:

moment.locale("de").format('LLL');