I was just going through one of the Twig files in the Bolt default theme template, and I came across the following line of code:
{{ __("Unfortunately, no content could be found. Try another page, or go to the <a href=\"%paths_root%\">homepage</a>.", {'%paths_root%': paths.root} ) }}
Now I thought the way you echo something in Twig is as follows:
{{ 'hello there' }}
I googled double underline and found this, but I’m not sure that's the answer to my question.
So what exactly is the double underline in Twig or Bolt?