Skip to content

Commit

Permalink
changed syntax in locales to be compatible with psych
Browse files Browse the repository at this point in the history
  • Loading branch information
masche842 committed Oct 26, 2011
1 parent 49515e9 commit 81cff2b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion config/locales/de.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,10 @@ de:
abbr_day_names: [So, Mo, Di, Mi, Do, Fr, Sa]
month_names: [~, Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember]
abbr_month_names: [~, Jan, Feb, Mär, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez]
order: [ :day, :month, :year ]
order:
- :day
- :month
- :year
time:
formats:
default: "%d. %b. %Y, %H:%M Uhr"
Expand Down
5 changes: 4 additions & 1 deletion config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,10 @@ en:
month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
# Used in date_select and datime_select.
order: [ :year, :month, :day ]
order:
- :year
- :month
- :day
time:
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
Expand Down

0 comments on commit 81cff2b

Please sign in to comment.