Re: Question about I18n and relation

2010-08-31 Thread MoAX
Someone can do an effort please. I still have no solution. Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email

Re: Question about I18n and relation

2010-08-31 Thread Fran Iglesias
Hi, El 30/08/2010, a las 16:56, MoAX escribió: Informations about my category are retrieved and its title from the i18n table too. But items title and description (in the i18n table) are not retrieved while their informations are. Is a limitation in the Translate Behavior. Related models are

Re: Question about I18n and relation

2010-08-31 Thread MoAX
$this-Category-recursive = -1: $category = $this-Category-read(null, $id) $items = $this-Category-Item-find('all', array('conditions' =   array('category_id' = $id))); Thank you for this tips, it runs very well (even if it is a few more slow and weighty) Best regards. Check out the new

Question about I18n and relation

2010-08-30 Thread MoAX
Hi, I have a question about i18n. I have 2 models linked together (Category hasMany Item) (Item belongsTo Category ;-) ) When I do $this-Category-read(null, $id); in the controller, something not usual happens. Informations about my category are retrieved and its title from the i18n table too.