You are here

function msnf_locale in Multistep Nodeform 6

Implementation of hook_locale().

File

./msnf.module, line 903
Main functions for module "Multistep Nodeform".

Code

function msnf_locale($op = 'groups', $group = NULL) {
  switch ($op) {
    case 'groups':
      return array(
        'msnf' => t('Multistep Nodeform'),
      );
    case 'info':
      $info['msnf']['refresh callback'] = 'msnf_locale_refresh';
      $info['msnf']['format'] = FALSE;
      return $info;
  }
}