Bachir Soussi Chiadmi 092758ecb0 updated i18n i10n_update workflwo imachecache_actions vor 3 Jahren
..
README.txt 092758ecb0 updated i18n i10n_update workflwo imachecache_actions vor 3 Jahren
i18n_sync.api.php eeba51cea6 initial commit of starter install drupal 7 vor 9 Jahren
i18n_sync.features.inc eeba51cea6 initial commit of starter install drupal 7 vor 9 Jahren
i18n_sync.info 092758ecb0 updated i18n i10n_update workflwo imachecache_actions vor 3 Jahren
i18n_sync.install eeba51cea6 initial commit of starter install drupal 7 vor 9 Jahren
i18n_sync.module 092758ecb0 updated i18n i10n_update workflwo imachecache_actions vor 3 Jahren
i18n_sync.modules.inc eeba51cea6 initial commit of starter install drupal 7 vor 9 Jahren
i18n_sync.node.inc 092758ecb0 updated i18n i10n_update workflwo imachecache_actions vor 3 Jahren
i18n_sync.test eeba51cea6 initial commit of starter install drupal 7 vor 9 Jahren
i18n_sync.variable.inc eeba51cea6 initial commit of starter install drupal 7 vor 9 Jahren

README.txt


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

This module will handle content synchronization across 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'),
...
);