You are here

function field_translation_table_data in Translation table 7

Implements hook_translation_table_data().

File

modules/field.translation_table.inc, line 11
Translation table for fields

Code

function field_translation_table_data() {
  $items['field'] = array(
    'title' => 'Field',
    'description' => 'Edit field translations',
    'form' => 'field_translation_table_form',
    'file' => 'modules/field.translation_table.inc',
  );
  return $items;
}