You are here

function qtip_i18n_string_refresh in qTip (Stylish jQuery Tooltips) 7.2

Implements hook_i18n_string_refresh().

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

File

./qtip.module, line 887

Code

function qtip_i18n_string_refresh($group) {
  if ($group === 'qtip') {
    qtip_i18n_update_strings();
  }
  return TRUE;
}