How to translate functionality "Category Following"?
 steam                
                
                     ✭
steam                
                
                     ✭                
            Hi,
Many thanks for the new functionality "Category Following" on vanilla 2.6
Can someone tell me how to translate "Category Following" strings "All" and "Following" ?
I have been write translation on my locale files and deleted cache but nothing translated.
Thanks
0          
             
         
            
Comments
Is this a bug?
Yes, you are correct. That is a bug. In functions.render.php it needs to be
$linkName = t(val('name', $selectedLink));at this place:function linkDropDown($links, $extraClasses = '', $label) { $output = ''; $selectedKey = 0; foreach($links as $i => $link) { if (val('active', $link)) { $selectedKey = $i; break; } } $selectedLink = val($selectedKey, $links); $extraClasses = trim($extraClasses); $linkName = val('name', $selectedLink);I'll do a PR on GitHub
No, I'll file an issue. It is more complex than that...
Thanks @R_J