You are here

function content_translation_table_data in Translation table 6

Implementation of hook_translation_table_data().

File

modules/content.translation_table.inc, line 11
Translation table for the cck module.

Code

function content_translation_table_data() {
  $items['cck'] = array(
    'title' => 'CCK',
    'description' => 'Edit CCK translations',
    'form' => 'content_translation_table_cck_form',
    'file' => 'modules/content.translation_table.inc',
  );
  return $items;
}