[ $cnt -gt 0 ] && printf '[h3 %s]' "$(l10n TEL)"
seq 1 $cnt |while read c; do
teltype="$(pdi_attrib "$card" TEL $c TYPE)"
+ ttl10="$(l10n "TYPE=$teltype")" # See below: HTML-Escape teltype if there is no translation (translations are always pre escaped)
[ "$teltype" ] \
&& printf '[span .item .TEL [span .type . %s:] %s]' \
- "$(l10n "TYPE=$teltype" |HTML)" \
+ "$([ "$ttl10" = "TYPE=$teltype" ] && { printf %s "$ttl10" |HTML; } || printf %s "$ttl10")" \
"$(pdi_value "$card" TEL $c |pdi_unescape |HTML)" \
|| printf '[span .item .TEL . %s]' \
"$(pdi_value "$card" TEL $c |pdi_unescape |HTML)"