When hovering over a timestamp generated by DiscussionTools on an RTL wiki (tested on arwiki and arzwiki), the tooltip text containing English characters and numbers is displayed in the wrong visual order due to bidirectional text rendering issues. Instead of showing "8 years ago", the tooltip visually displays "years ago 8".
Steps to Reproduce:
- Visit a discussion page on Arabic Wikipedia (e.g., User talk:Vermont).
- Your interface language should be an LTR lang
- Hover your cursor over a comment timestamp to trigger the title tooltip.
<a href="https://ar.wikipedia.org/wiki/%D9%86%D9%82%D8%A7%D8%B4_%D8%A7%D9%84%D9%85%D8%B3%D8%AA%D8%AE%D8%AF%D9%85:Vermont#c-Bachounda-2018-03-24T17:08:00.000Z" class="ext-discussiontools-init-timestamplink" title="8 years ago" data-event-name="discussiontools.permalink-copied">17:08، 24 مارس 2018 (ت ع م)</a>
Expected Result:
The tooltip should correctly read "8 years ago".
I guess Wrapping the string with LRI (Left-to-Right Isolate, U+2066) at the beginning and PDI (Pop Directional Isolate, U+2069) at the end would force the browser to render the tooltip correctly as LTR.
