You are here

function book_i18n_sync_options in Internationalization 7

Book module. Implements hook_i18n_sync_options().

File

i18n_sync/i18n_sync.modules.inc, line 13
Internationalization (i18n) package. Synchronization of translations

Code

function book_i18n_sync_options($entity_type, $bundle_name) {
  if ($entity_type == 'node') {
    return array(
      'parent' => array(
        'title' => t('Book outline'),
        'description' => t('Set the translated parent for each translation if possible.'),
      ),
    );
  }
}