nerokin
Forum Replies Created
-
Thank you for taking care of the problem. This is indeed not an ideal solution, but it works. Here’s our updated code snippet:
<div>
<span title="{{tooltip}}">
<a href="{{link}}">
<img src="{{icon}}" alt="{{tooltip}}" />
</a>
</span>
</div>We recommend that you extend the functionality of your plugin accordingly.
Why don’t you answer this? I can see that you are answering others. Even though the posts are much more recent than mine. My request is now over 4 days old. I have even identified the problem for you.
If you’re so keen on bad reviews, you can let me know that too. That can be arranged.We just found out that you are placing the translated string into a new
aria-labelattribute.The
aria-labelanddata-tooltipattributes serve different purposes:aria-labelis specifically for accessibility, providing a label for screen readers, whiledata-tooltipis for displaying additional information in a tooltip.So, the translation is not showing up, because it is placed into an
aria-labelwhich will not be displayed on the screen, because it is for screen readers.