You are here

function quicktabs_i18n_string_refresh in Quick Tabs 7.3

Implements hook_i18n_string_refresh().

Refresh translations for all user-generated strings managed by quicktabs. This will load all strings inputted via the quicktabs user interface and register them (and their translations, if there are any) with the i18n_strings system.

File

./quicktabs.module, line 407

Code

function quicktabs_i18n_string_refresh($group) {
  if ($group === 'quicktabs') {
    quicktabs_i18n_update_strings();
  }
  return TRUE;
}