aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/locale/en-US.rb
blob: ed457d6f4f890c5a970963349a98624311c7b34a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ :'en-US' => {
    :support => {
      :array => {
        :sentence_connector => 'and'
      }
    },
    :date => {
      :formats => {
        :default => "%Y-%m-%d",
        :short => "%b %d",
        :long => "%B %d, %Y",
      },
      :day_names => Date::DAYNAMES,
      :abbr_day_names => Date::ABBR_DAYNAMES,
      :month_names => Date::MONTHNAMES,
      :abbr_month_names => Date::ABBR_MONTHNAMES,
      :order => [:year, :month, :day]
    },
    :time => {
      :formats => {
        :default => "%a, %d %b %Y %H:%M:%S %z",
        :short => "%d %b %H:%M",
        :long => "%B %d, %Y %H:%M",
      },
      :am => 'am',
      :pm => 'pm'
    }
  }
}