Skip to content

Commit

Permalink
Fix french date translation
Browse files Browse the repository at this point in the history
Thanks to @Pafzedog; issue #192.
  • Loading branch information
eikek committed Jul 1, 2020
1 parent 3aacc33 commit 84877e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/webapp/src/main/elm/Messages/DateFormat.elm
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ fr : DateTimeMsg
fr =
{ format =
[ DateFormat.dayOfWeekNameAbbreviated
, DateFormat.text ", "
, DateFormat.text ". "
, DateFormat.dayOfMonthSuffix
, DateFormat.text " "
, DateFormat.monthNameFull
, DateFormat.text " "
, DateFormat.dayOfMonthSuffix
, DateFormat.text ", "
, DateFormat.yearNumber
, DateFormat.text ", "
, DateFormat.hourMilitaryNumber
Expand Down Expand Up @@ -231,7 +231,7 @@ toFrenchOrdinalSuffix n =
"er"

else
"e"
""



Expand Down

0 comments on commit 84877e8

Please sign in to comment.