What is the best approach in order to localize images (buttons and other content) in a i18n rails app?
|
|
I usually inject the locale name in every path or in the image name. In the first case, create different folders for different locales
In the second case
I usually prefer the second solution because there are many assets I don't need to localize and I often need to keep translated/common assets in the same folders to take advantage of convenction-over-configuration pattern. |
||
|
|
|
|
In a recent app I tried i18n translations for the first time with some success, although the code may be a bit messy. In the application_controller I have:
This basically looks up the appropriate language from the subdomain specified, so http://en.mysite.com is in English and http://it.mysite.com is in Italian. Next is your views, where you simply use:
Lastly, in config/locales create a en.yml file with the translations required:
The Italian file contains:
|
||
|
|
|
|
what about images used in css as backgrounds ? |
||
|
