Skip to content

Commit

Permalink
fix: Lowercase french locale months and weekdays (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
awallace authored and iamkun committed Jun 13, 2019
1 parent 43cbfd3 commit e5a257c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/locale/fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import dayjs from 'dayjs'

const locale = {
name: 'fr',
weekdays: 'Dimanche_Lundi_Mardi_Mercredi_Jeudi_Vendredi_Samedi'.split('_'),
months: 'Janvier_Février_Mars_Avril_Mai_Juin_Juillet_Août_Septembre_Octobre_Novembre_Décembre'.split('_'),
weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
monthsShort: 'janv_févr_mars_avril_mai_juin_juil_août_sept_oct_nov_déc'.split('_'),
weekStart: 1,
formats: {
Expand Down

0 comments on commit e5a257c

Please sign in to comment.