Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a rails application in Spanish and I'm having trouble displaying accented characters from JavaScript.

Everything works fine in development, but in production, in the unified /public/assets/application[*fingerprint*].js file, all my special Spanish characters get converted to question marks. I have triple checked that my .js files are indeed in UTF-8, and have also tried changing the extension to .js.erb and putting <%# encoding: utf-8 %> at the top of the files, but still no joy.

I created a new, simple application from scratch just to test this and the problem persists. I've even tried disabling the uglifier gem, just in case, and that didn't work either. My main suspect now is Sprockets, but can't find any information of this happening to anyone else. Has anyone encountered a similar problem?

share|improve this question
Have you set a locale ? – Qumara SixOneTour Feb 12 at 22:15
You mean in the OS? I hadn't, but now I've changed it to es_ES.utf-8 and the problem persists. If you meant inside Rails, I haven't tried that yet (I'm pretty much a Rails n00b and haven't touched I18n yet... maybe I should focus on that next?) – laffinkippah Feb 12 at 22:46
Try in your config/environments/production , there is a commented setting config.I18n.default_locale , change it to your locale , according to this Rails guide. – Qumara SixOneTour Feb 13 at 7:43
I added the line config.i18n.default_locale = :es to config/application.rb as it seemed to make more sense there, but although my application now reports the locale to be es instead of en but the special characters are still missing. – laffinkippah Feb 13 at 16:14
What is your OS? – Qumara SixOneTour Feb 13 at 16:34
show 4 more comments

1 Answer

up vote 0 down vote accepted

OK, so I finally got it working by replacing Rhino with Node.js (I'm required to use jRuby so therubyracer was apparently not a good option either).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.