From e5c2bb46f516206e9586f579e636b8fd7cc9ab80 Mon Sep 17 00:00:00 2001 From: maxwell Date: Mon, 8 Nov 2010 10:30:01 -0800 Subject: [PATCH] reverse the years as they are displyed in the birthday dropdown --- app/views/people/edit.html.haml | 2 +- app/views/users/getting_started/_step_1.html.haml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/people/edit.html.haml b/app/views/people/edit.html.haml index f84e95069..98089ec39 100644 --- a/app/views/people/edit.html.haml +++ b/app/views/people/edit.html.haml @@ -34,7 +34,7 @@ %h4 = t('.your_birthday') %br - = select_date @person.profile.birthday, :prompt => true, :default => true, :order => [:month, :day, :year], :start_year => 1930, :end_year => 2000 + = select_date @person.profile.birthday, :prompt => true, :default => true, :order => [:month, :day, :year], :start_year => 2000, :end_year => 1930 %h4 = t('.your_bio') diff --git a/app/views/users/getting_started/_step_1.html.haml b/app/views/users/getting_started/_step_1.html.haml index acf3aff85..c377090d2 100644 --- a/app/views/users/getting_started/_step_1.html.haml +++ b/app/views/users/getting_started/_step_1.html.haml @@ -25,11 +25,11 @@ %h4 Your birthday %br - = select_date @person.profile.birthday, :prompt => true, :default => true, :order => [:month, :day, :year], :start_year => 1930, :end_year => 2000 + = select_date @person.profile.birthday, :prompt => true, :default => true, :order => [:month, :day, :year], :start_year => 2000, :end_year => 1930 %h4 Your bio - = profile.text_area :bio, :value => @profile.bio, :rows => 5, :placeholder => "Fill me out" + = profile.text_area :bio, :value => @profile.bio, :rows => 5, :placeholder => t(".fill_me_out") %h4 Your photo