How i can use a helper inside a {{ }}

Hi, I translate my words with this instruction for example

{{lang-helper 'Example'}}

My problem is that I have an input with a placeholder field that I want to translate

{{input class='form-control' value=model.person placeholder='Name'}}

So I want to translate Name, i try

{{input class=‘form-control’ value=model.person placeholder=lang-helper ‘Name’}}

but I have an error

Resolved with

{{input class=‘form-control’ value=model.person placeholder= (lang-helper ‘Name’)}}

1 Like