| 1 |
README.txt
|
| 2 |
==========
|
| 3 |
Drupal module: i18nsync (Synchronization)
|
| 4 |
|
| 5 |
This module will handle content synchronization accross translations.
|
| 6 |
|
| 7 |
The available list of fields to synchronize will include standard node fields and cck fields.
|
| 8 |
To have aditional fields, add the list in a variable in the settings.php file, like this:
|
| 9 |
|
| 10 |
// Available fields for synchronization, for all node types
|
| 11 |
$conf['i18nsync_fields_node'] = array(
|
| 12 |
'field1' => t('Field 1 name'),
|
| 13 |
'field2' => t('Field 2 name'),
|
| 14 |
.......................
|
| 15 |
);
|
| 16 |
|
| 17 |
// More fields for a specific content type 'nodetype' only
|
| 18 |
$conf['i18nsync_fields_node_nodetype'] = array(
|
| 19 |
'field3' => t('Field 3 name'),
|
| 20 |
.......
|
| 21 |
);
|