Same name in other branches
- 8.x-1.x quicktabs.module \quicktabs_i18n_string_refresh()
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.
Fichier
-
./
quicktabs.module, line 407
Code
function quicktabs_i18n_string_refresh($group) {
if ($group === 'quicktabs') {
quicktabs_i18n_update_strings();
}
return TRUE;
}