Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.


Wich is the best way for supporting multilanguage site in smarty template?
I have read http://smarty.incutio.com/?page=SmartyMultilanguageSupport and http://www.smarty.net/docsv2/fr/language.config.variables.tpl and now
I can't make a decision wich option I will to use.
Are there other options?

Thank's .

share|improve this question

3 Answers

Someone might find this interesting. Basically lang variable to get the current language and loads a file via config_load. Both are basically the same, just that your first link has all the functions needed packed into a small module.

http://www.freesoftwaremagazine.com/articles/creating_multilingual_website_smarty

share|improve this answer

I use a $_get['lang'] to get the language to be used. In the template, for every pages I get 2 ifs, one if EN another if FR and I generate the code accordingly.

The header footer and meta data comes from database and based on the language, the row required by the language will be fetched.

share|improve this answer

I read language from cookies and set/change it with http request. Based on the languge used, I just change field names (in php) to query from database (including all strings on page - they are stored for each language in different fields - I know that this is not very scalable, but will be enough for this kind of sites). Additionally I set one smarty variable to language code and when needed (rarely, because strings are already localised), I use smarty {if $language ...} structures to change output.

share|improve this answer

Your Answer

 
discard

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