If you could not find the Quick tabs tab name in the Translate Interface. you can add the following function in the template.php.
function YOURTHEMENAME_quicktabs_tabs($quicktabs, $active_tab = 'none') {
$output = '';
$tabs_count = count($quicktabs['tabs']);
if ($tabs_count <= 0) {
return $output;
}
$index = 1;
$output .= '<ul class="quicktabs_tabs quicktabs-style-'. drupal_strtolower($quicktabs['style']) .'">';
foreach ($quicktabs['tabs'] as $i => $tab) {
$class = 'qtab-'. $i;
// Add first, last and active classes to the list of tabs to help out themers.
$class .= ($i == $active_tab ? ' active' : '');
$class .= ($index == 1 ? ' first' : '');
$class .= ($index == $tabs_count ? ' last': '');
$attributes_li = drupal_attributes(array('class' => $class));
$options = _quicktabs_construct_link_options($quicktabs, $i);
$output .= '<li'. $attributes_li .'>'. l(t($tab['title']), $_GET['q'], $options) .'</li>';
$index++;
}
$output .= '</ul>';
return $output;
}
Refresh the strings in the Translate Interface and then you could search your Quick tabs tab name for translation.
Reference: Translation of quicktabs tab text

Hello!!
Also I try doing it, ‘overriding’ in template.php, but i can’t translate the tabs tittle. Thanks a lot!!!
Best Regards
Luis H
LikeLike
Good to know that the post could help =D
LikeLike
Thank you very much, very handy!!
LikeLike
You are welcome and thanks for your comment. =D
LikeLike