You are here

function quicktabs_locale in Quick Tabs 6.3

Same name and namespace in other branches
  1. 6.2 quicktabs.module \quicktabs_locale()

Implementation of hook_locale().

File

./quicktabs.module, line 777

Code

function quicktabs_locale($op = 'groups', $group = NULL) {
  switch ($op) {
    case 'groups':
      return array(
        'quicktabs' => t('Quick Tabs'),
      );
    case 'info':
      $info['quicktabs']['refresh callback'] = 'quicktabs_locale_refresh';
      $info['quicktabs']['format'] = FALSE;
      return $info;
  }
}