You are here

function comment_i18n_sync_options in Internationalization 7

Comment module. Implements hook_i18n_sync_options().

File

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

Code

function comment_i18n_sync_options($entity_type, $bundle_name) {
  if ($entity_type == 'node') {
    $fields['comment'] = array(
      'title' => t('Comment settings'),
    );
    return $fields;
  }
}