You are here

function menu_translation_table_data in Translation table 7

Same name and namespace in other branches
  1. 6 modules/menu.translation_table.inc \menu_translation_table_data()

Implements hook_translation_table_data().

File

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

Code

function menu_translation_table_data() {
  $items['menu'] = array(
    'title' => 'Menu',
    'description' => 'Edit menu translations',
    'form' => 'menu_translation_table_menu_form',
    'file' => 'modules/menu.translation_table.inc',
  );
  return $items;
}