This is the default Estonian config for formatting dates.
Config for en-us.
Copyright (c) 2016 Robin Luiten
module Date.Extra.Config.Config_et_ee exposing (..)
{-| This is the default Estonian config for formatting dates.
@docs config
Copyright (c) 2016 Robin Luiten
-}
import Date
import Date.Extra.Config as Config
import Date.Extra.I18n.I_et_ee as Estonian
{-| Config for en-us.
-}
config : Config.Config
config =
{ i18n =
{ dayShort = Estonian.dayShort
, dayName = Estonian.dayName
, monthShort = Estonian.monthShort
, monthName = Estonian.monthName
, dayOfMonthWithSuffix = Estonian.dayOfMonthWithSuffix
}
, format =
{ date =
"%-d. %b %Y. a"
-- d. M YYYY. a
, longDate =
"%A, %-d. %B %Y"
-- dddd, dd. MMMM yyyy
, time =
"%-H:%M"
-- h:mm
, longTime =
"%-H:%M:%S"
-- h:mm:ss
, dateTime =
"%a, %-d. %b %Y. %-H:%M:%S"
-- date + time
, firstDayOfWeek = Date.Mon
}
}