CoderDennis / elm-time-format / Time.Format.I18n.I_fr_fr

French values for day and month names.

dayShort : Time.Weekday -> String

Day short name.

dayName : Time.Weekday -> String

Day full name.

monthShort : Time.Month -> String

Month short name.

monthName : Time.Month -> String

Month full name.

dayOfMonthWithSuffix : Basics.Bool -> Basics.Int -> String

Returns a common French idiom for days of month. Pad indicates space pad the day of month value so single digit outputs have space padding to make them same length as double digit days of month.

Note that the French idiom is to use the ordinal number for the first day of the month (1er janvier) and cardinal numbers for all other days (15 janvier). This method doesn't pad the value on the right even if the pad argument is true.