How to escape curly braces in Angular's $localize function?

Viewed 347

If i try to translate the following text:

{example}

like this:

$localize`{example}`

The text will disappear in the translated build.

Is there a way to escape the curly braces?

1 Answers

Try writing:

       $localize`${'{'}example}`      
Related