Bachir Soussi Chiadmi 706c96d663 updated modules 9 年之前
..
README.txt f2b8ace9b7 FINAL suepr merge step : added all modules to this super repos 9 年之前
i18n_sync.api.php f2b8ace9b7 FINAL suepr merge step : added all modules to this super repos 9 年之前
i18n_sync.features.inc f2b8ace9b7 FINAL suepr merge step : added all modules to this super repos 9 年之前
i18n_sync.info 706c96d663 updated modules 9 年之前
i18n_sync.install f2b8ace9b7 FINAL suepr merge step : added all modules to this super repos 9 年之前
i18n_sync.module b3221c71e2 security updates 9 年之前
i18n_sync.modules.inc f2b8ace9b7 FINAL suepr merge step : added all modules to this super repos 9 年之前
i18n_sync.node.inc b3221c71e2 security updates 9 年之前
i18n_sync.test f2b8ace9b7 FINAL suepr merge step : added all modules to this super repos 9 年之前
i18n_sync.variable.inc f2b8ace9b7 FINAL suepr merge step : added all modules to this super repos 9 年之前

README.txt


README.txt
==========
Drupal module: i18n_sync (Synchronization)

This module will handle content synchronization accross translations.

The available list of fields to synchronize will include standard node fields and cck fields.
To have aditional fields, add the list in a variable in the settings.php file, like this:

// Available fields for synchronization, for all node types.
$conf['i18n_sync_fields_node'] = array(
'field1' => t('Field 1 name'),
'field2' => t('Field 2 name'),
...
);

// More fields for a specific content type 'nodetype' only.
$conf['i18n_sync_fields_node_nodetype'] = array(
'field3' => t('Field 3 name'),
...
);