Jeff Dutil
Jeff Dutil
Like any rails app/engine locales are under config/locales directory https://github.com/spree-contrib/spree_i18n/blob/master/config/locales/de.yml
You'll want to ensure the user/order/shipment or whatever has the users locale saved to the record so that your background process can determine which locale to use & set it...
Yea you'll definitely want it saved to the order as well. That's another thing I've wanted to do, but I'm not currently working on any projects needing it. I really...
That also sounds like a good idea to me.
@mbajur perhaps the translations need to be added to spree_auth_devise for your locale. Unless it's just simply that your application is thinking your current_locale is EN, which would be why...
I've seen that before, but I forget off the top of my head what caused it. I believe it has something to do with https://github.com/spree/spree/blob/master/core/lib/spree/core/controller_helpers/common.rb#L52-L58 being overridden by https://github.com/spree-contrib/spree_i18n/blob/master/lib/spree_i18n/controller_locale_helper.rb#L9-L25 but...
I thought I fixed it, but I don't have time to look into it. I'd recommend just making sure your application uses the spree_i18n version of the method I pointed...
As @alepore pointed out this should just be working... We can't assume users of spree_i18n will be using spree_auth_devise, but I think the fix should be in spree_i18n if it's...
May need to change the form to be loaded by ajax or move the cache key https://github.com/spree/spree/blob/master/frontend/app/views/spree/products/show.html.erb#L1 somewhere else that only wraps the product form in a way that you...
Sounds good to me.