Projet

Général

Profil

Paste
Télécharger (651 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / i18n / i18n_sync / README.txt @ 76df55b7

1

    
2
README.txt
3
==========
4
Drupal module: i18n_sync (Synchronization)
5

    
6
This module will handle content synchronization accross translations.
7

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

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

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