~michaelforrest/use-case-mapper/trunk

« back to all changes in this revision

Viewing changes to vendor/rails/activesupport/lib/active_support/locale/en.yml

  • Committer: Michael Forrest
  • Date: 2010-10-15 16:28:50 UTC
  • Revision ID: michael.forrest@canonical.com-20101015162850-tj2vchanv0kr0dun
refrozeĀ gems

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
en:
 
2
  date:
 
3
    formats:
 
4
      # Use the strftime parameters for formats.
 
5
      # When no format has been given, it uses default.
 
6
      # You can provide other formats here if you like!
 
7
      default: "%Y-%m-%d"
 
8
      short: "%b %d"
 
9
      long: "%B %d, %Y"
 
10
      
 
11
    day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
 
12
    abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
 
13
      
 
14
    # Don't forget the nil at the beginning; there's no such thing as a 0th month
 
15
    month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
 
16
    abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
 
17
    # Used in date_select and datime_select.
 
18
    order: [ :year, :month, :day ]
 
19
 
 
20
  time:
 
21
    formats:
 
22
      default: "%a, %d %b %Y %H:%M:%S %z"
 
23
      short: "%d %b %H:%M"
 
24
      long: "%B %d, %Y %H:%M"
 
25
    am: "am"
 
26
    pm: "pm"
 
27
      
 
28
# Used in array.to_sentence.
 
29
  support:
 
30
    array:
 
31
      words_connector: ", "
 
32
      two_words_connector: " and "
 
33
      last_word_connector: ", and "