Reputation: 73
How to i18n a bootstrap tooltip title
<i data-toggle="tooltip" title="words to be translated">hover here</i>
I have tried to put an i18n text mark but can't find the text to be translated in the .xlf file
Upvotes: 1
Views: 2927
Reputation: 1974
Like in the documentation
You can define what are the attributes to be binded i18n-x :
<i data-toggle="tooltip" i18n-title title="words to be translated">hover here</i>
Upvotes: 6