Thomas T.brhan
Thomas T.brhan

Reputation: 73

Angular 2: i18n bootstrap tooltip title

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

Answers (1)

Julien METRAL
Julien METRAL

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

Related Questions