function menu_translation_table_data in Translation table 6
Same name and namespace in other branches
- 7 modules/menu.translation_table.inc \menu_translation_table_data()
Implementation of 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;
}