I have a custom element which I refer to as follows:
<simple-cost costing.bind="costing" costings-list.bind="costing.services" costing-value.bind="costing.servicesValue"
show-number-items="true"
t="[headertitle]costings.services-headertitle" headertitle="Monthly costs for utilities"
t="[coststitle]costings.services-title" coststitle="All costs are per month"
t="[headerinfo]costings.services-headerinfo" headerinfo="These costs are entered into the cash flow on a monthly basis."
t="[pricetitle]costings.services-pricetitle" pricetitle="per month"
dictionary-items.bind="dictionary.services" calculate.call="costingsService.calculateServicesValue(costing)">
</simple-cost>
The problem is that I am referring to t=
multiple times, and only
t=[headertitle]costings.services.headertitle
is picked up, the subsequent ones are ignored.
How do I get i18n to translate each of the attributes in this custom element?