Configure::write('Translate.models', array(
'Node' => array(
'fields' => array(
'title' => 'titleTranslation',
'excerpt' => 'excerptTranslation',
'body' => 'bodyTranslation',
),
'translateModel' => 'Nodes.Node',
),
'Block' => array(
'fields' => array(
'title' => 'titleTranslation',
'body' => 'bodyTranslation',
),
'translateModel' => 'Blocks.Block',
),
'Link' => array(
'fields' => array(
'title' => 'titleTranslation',
'description' => 'descriptionTranslation',
),
'translateModel' => 'Menus.Link',
),
// I ADDED HERE
'Contact' => array(
'fields' => array(
'title' => 'titleTranslation',
'body' => 'bodyTranslation',
'name' => 'nameTranslation',
),
'translateModel' => 'Contacts.Message',
),
));