You are here

function i18n_boxes_locale in Boxes translation 6

Implementation of hook_locale().

File

./i18n_boxes.module, line 48

Code

function i18n_boxes_locale($op = 'groups', $group = NULL) {
  switch ($op) {
    case 'groups':
      return array(
        'boxes' => t('Boxes'),
      );
    case 'info':
      $info['boxes']['refresh callback'] = 'i18n_boxes_locale_refresh';
      $info['boxes']['format'] = TRUE;
      return $info;
  }
}