Same name and namespace in other branches
  1. 8.x-1.x quicktabs.module \quicktabs_i18n_string_refresh() 1 comment

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;
}