You are here

function msnf_locale_refresh in Multistep Nodeform 6

Refresh strings.

1 string reference to 'msnf_locale_refresh'
msnf_locale in ./msnf.module
Implementation of hook_locale().

File

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

Code

function msnf_locale_refresh() {
  module_load_include('inc', 'msnf', 'includes/msnf.steps');
  $steps = msnf_steps();
  foreach ($steps as $step) {
    _msnf_i18nstrings_step_update($step);
  }
  return TRUE;

  // Meaning it completed with no issues
}