TwigBridge icon indicating copy to clipboard operation
TwigBridge copied to clipboard

Detecting language strings

Open ghost opened this issue 8 years ago • 1 comments
trafficstars

What is the filter for strings in Twig templates to be detected for translation? {{ 'TEXT' }} ^ will this be detected?

ghost avatar Apr 27 '17 06:04 ghost

Are you talking about __() translate with json file?

Then add __ to twigbridge config:

'functions' => [ 'elixir', 'head', 'last', 'mix', '__', ],

Then use in templates:

{{ __('TEXT') }}

mmodler avatar Apr 27 '17 06:04 mmodler