the insructions seen to be out of date or something. I was getting errors following:
// More fields for a specific content type 'nodetype' only.
$conf['i18nsync_fields_node_nodetype'] = array(
'field3' => t('Field 3 name'),
...
);
so after some inspection I found this worked for me (example for Ubercart Product):
$conf['i18nsync_fields_node_product']['product'] = array(
'#title' => 'Ubercart Product',
'#options' => array(
'list_price' => 'List Price',
'sell_price' => 'Sell Price',
'cost' => 'Cost',
)
);
note the t() doesn't work in the settings.php file as it has not been included yet. More of a reason to support my other suggestion for a hook.
Comments
Comment #1
damien tournoud commentedI guess you wanted to post this issue under the "internationalization" project.
Comment #2
cpill commentedja! thanks :P
Comment #3
jose reyero commentedThe hook is already there: