I've got some troubles with the couple Rails 3.0.1, Ruby 1.9.2 and my website localization.

The problem is quite simple, i've got something like that in a view :

f.input :zip_code, :label => I18n.t('labels.zip_code')

and a es.yml file :

es:
  labels:
    zip_code: "Este código postal no es valido."

There are no troubles with the en.yml file (it's pure ASCII) but when the website is set with i18n.locale == 'es' I get this error :

incompatible character encodings: UTF-8 and ASCII-8BIT

I have been looking around for quite a while but didn't found a way to use my UTF-8 translation files.

Did some knows how to make it works ?

Thanks for your help.

link|improve this question

This is sort of off topic, but Ryan Bates just posted a railscast (railscasts.com/episodes/256-i18n-backends) on i18n today. If anyone sees this comment the week of 3/6/2011, then in a way this comment is sort of relevant to you. – DJTripleThreat Mar 7 '11 at 18:04
1  
Thanks for the rails cast :) – Nicolas GUILLAUME Apr 15 '11 at 1:27
1  
No problem community ftw :) – DJTripleThreat Apr 15 '11 at 18:26
1  
James has a pretty nice tutorial on his blog, coverings almost all aspects of string encoding in Ruby 1.9. To understand what "external" and "internal" encoding mean, read it at: blog.grayproductions.net/articles/… – Nicolas Marchildon Jul 29 '11 at 18:21
Here's an awesome explanation of encoding on Rails: yehudakatz.com/2010/05/05/… – B Seven Aug 30 '11 at 19:09
feedback

5 Answers

up vote 20 down vote accepted

Ok so problem solved after some hours of googling...

There was actually two bugs in my code. The first one was a file encoding error and the second was the problem with the MySQL Data base configuration.

First, to solve the error caused by MySQL I used this two articles :

http://www.dotkam.com/2008/09/14/configure-rails-and-mysql-to-support-utf-8/

http://www.rorra.com.ar/2010/07/30/rails-3-mysql-and-utf-8/

Second, to solve the file encoding problem I added these 2 lines in my config/environment.rb

Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8

Hopefully this will help someone :)

link|improve this answer
1  
Thanks a bunch!! Had the same problem, and I had everything alright except I was using the mysql gem instead of mysql2. – Amokrane Chentir Mar 9 '11 at 23:38
Same thing happened to me, but I only noticed it when a source code file had a funny ' character in it. I had both mysql and mysql2 gems in my gemfile, I had to remove the old mysql gem. (and alter my database.yml file) – DGM Mar 10 '11 at 3:33
1  
Dude, you saved my day or maybe a week! Thanks! – zigomir Apr 3 '11 at 15:28
feedback

I Solved most of the problems by combining many solutions:

- Make sure 'config.encoding = "utf-8"' is there in application.rb file.
- Make sure you are using 'mysql2' gem
- Putting '# encoding: utf-8' on top of file containing utf-8 characters.
- Above '<App Name>::Application.initialize!' line in environment.rb file, add following two lines:

Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8

http://rorguide.blogspot.com/2011/06/incompatible-character-encodings-ascii.html

link|improve this answer
This answer: stackoverflow.com/a/4804802/72176 has a good way to add the suggested # encoding: UTF-8 to all ruby files. – William Denniss Jan 27 at 11:51
feedback

Make sure you have config.encoding = "utf-8" in your config/application.rb. Also, your example translation file doesn't match the key you're searching for (com_name and first_name) but I suppose that could just be a typo.

link|improve this answer
Oups sry about the exemple. I just took a bad one with no UTF-8 char :p Whatever... i do have config.encoding = "utf-8" in my application.rb and Encoding.default_external = Encoding::UTF_8 in my environment.rb. Thanks :) – Nicolas GUILLAUME Nov 15 '10 at 21:12
It can be very hard to determine where the incompatible data is coming from.. I'd try bisecting your templates in terms of data source.. So try a template with only I18n stuff, another with only data from the database, same for your cache if you have one, etc. If you're using MySQL then try switching to the mysql2 driver and make sure that config/database.yml specifies encoding: utf-8 – noodl Nov 15 '10 at 21:28
Thanks :) Ok so, I checked and can get and display i18n strings from the MySQL DB. But i can't get strings from the i18n file and so far, I don't use cache. – Nicolas GUILLAUME Nov 16 '10 at 12:10
feedback

Are you sure your es.yml file was saved as UTF-8?

If you're on Windows, use http://notepad-plus-plus.org/ to make sure.

link|improve this answer
feedback

Using this unpack function helped me sort this out finally, try this if you get the can't convert error message:

myString.unpack('U*').pack('U*')

link|improve this answer
It sounds a little bit CPU expensive and painful if you have to do it on all the strings... – Nicolas GUILLAUME Apr 10 at 17:26
Wish i could have got any other options to stop this error, but they didn't work for me. I haven't noticed any cpu increase, – flunder Apr 11 at 13:45
know what I'll try the top answer solution again lateron just because and report back – flunder Apr 11 at 13:47
Is your problem comming from characters in the DB or in the view files? – Nicolas GUILLAUME Apr 13 at 0:22
hey haven't found time :/ I've run into this problem while scraping really and only then ~ so before it hits any database. – flunder Apr 13 at 16:54
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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