I've had spotty performance when trying to use i18n with Heroku. Everything works perfectly fine on localhost:3000
I'm running Ruby 1.8.7 and Rails 3.0.3. I'm on the Bamboo stack 1.8.7.
Specifically, I've 'internationalized' my patients#new form (and the _form that goes with it) I'm passing the param at the end of the URL to set the internationalization in motion:
http://myapp.heroku.com/patients/new?locale=en
http://myapp.heroku.com/patients/new?locale=sp
In my application controller I have
class ApplicationController < ActionController::Base
before_filter :set_locale
def set_locale
I18n.locale = params[:locale]
end
end
I have the content libraries, including errors, in en.yml and sp.yml. There's also a Devise.en.yml file in there.
The problem seems to be that Heroku can't "hold" the spanish part.
So, if I bring up http://myapp.heroku.com/patients/new?locale=sp, I can correctly see the form in Spanish. If I purposely make a validation error (like leave a field blank) it will give me the errors in Spanish and render the spanish form again, as expected.
However, if I make a second validation error (after getting the error-page), it renders the English form. On this second submit, I also notice that the URL is now http://myapp.heroku.com/patients.
So, it's like this: 1. http://myapp.heroku.com/patients/new?locale=sp.. make validation error.... 2. renders Spanish form with spanish errors. URL at top is now http://myapp.heroku.com/patients 3. Resubmit again with errors and English renders, with English errors.
Any ideas why the "sp" doesn't persist to the second bad submit? (Step 3 renders Spanish, as expected, on localhost:3000...btw.)
Thanks.