Skip to content

Instantly share code, notes, and snippets.

@insin
Last active August 29, 2015 14:01
Show Gist options
  • Save insin/2a0482efa207f261b167 to your computer and use it in GitHub Desktop.
Save insin/2a0482efa207f261b167 to your computer and use it in GitHub Desktop.
Newforms locale API (speculative)
forms.addLocale('fr', {
b: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_')
, B: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_')
, DATE_INPUT_FORMATS: [
'%d/%m/%Y', '%d/%m/%y'
, '%d %b %Y', '%d %b %y'
, '%d %B %Y', '%d %B %y'
]
, DATETIME_INPUT_FORMATS: [
'%d/%m/%Y %H:%M:%S'
, '%d/%m/%Y %H:%M'
, '%d/%m/%Y'
]
})
forms.setDefaultLocale('fr')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment