Given:
en:
steps:
1: "First step"
2: "Second step"
I'm able to successfully use rails built in translations = t("steps.1").
But text_helpers gem fails = text("steps.1") to find the translation; unless I change 1 to one (which makes it more difficult to iterate over).
Given:
I'm able to successfully use rails built in translations
= t("steps.1").But
text_helpersgem fails= text("steps.1")to find the translation; unless I change1toone(which makes it more difficult to iterate over).