Displaying 1 result from an estimated 1 matches for "ab00ab".
Did you mean:
0x00ab
2009 Mar 28
10
Use fixtures within fixtures?
Heya,
I''m using globalize2 and have following problem with my fixtures:
categories.yml:
one:
parent_id: two
color: #ff00aa
two:
color: #00ff11
three:
parent_id: two
color: #ab00ab
category_translations.yml
one-en:
id: one
locale: en
name: Cars
one-es:
id: one
locale: es
name: Coches
two-en:
id: two
locale: en
name: Start
two-es:
id: two
locale: es
name: Inicio
three-en:
id: three
locale: en
name: Bicycles
three-es:
id: three
locale: es...