You are here

function quicktabs_translation_table_data in Translation table 6

Same name and namespace in other branches
  1. 7 modules/quicktabs.translation_table.inc \quicktabs_translation_table_data()

Implementation of hook_translation_table_data().

File

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

Code

function quicktabs_translation_table_data() {
  $items['quicktabs'] = array(
    'title' => 'Quick Tabs',
    'description' => 'Edit quick tabs translations',
    'form' => 'quicktabs_translation_table_quicktabs_form',
    'file' => 'modules/quicktabs.translation_table.inc',
  );
  return $items;
}