This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/sites/all/modules/i18n/i18nsync
2017-07-26 13:27:55 +02:00
..
i18nsync.info New module 'Internationalization' 2017-07-26 13:27:55 +02:00
i18nsync.install New module 'Internationalization' 2017-07-26 13:27:55 +02:00
i18nsync.module New module 'Internationalization' 2017-07-26 13:27:55 +02:00
README.txt New module 'Internationalization' 2017-07-26 13:27:55 +02:00

README.txt
==========
Drupal module: i18nsync (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['i18nsync_fields_node'] = array(
  'field1' => t('Field 1 name'),
  'field2' => t('Field 2 name'),
  ...
);

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