Hi there,
I’m doing like below to make this section translatable https://github.com/TryGhost/Ghost/blob/master/core/server/helpers/tpl/subscribe_form.hbs/#L13-L15
- Replaced
{{error.message}}
with{{t error.message}}
. - Added
"Email cannot be blank.": "Email cannot be blank."
in en.json file.
And it’s working fine. My questions are,
- Is what I’m doing correct?
- If so, what are the other error messages to be made translatable?
Thanks.