TwigBridge
TwigBridge copied to clipboard
Detecting language strings
trafficstars
What is the filter for strings in Twig templates to be detected for translation?
{{ 'TEXT' }}
^ will this be detected?
Are you talking about __() translate with json file?
Then add __ to twigbridge config:
'functions' => [ 'elixir', 'head', 'last', 'mix', '__', ],
Then use in templates:
{{ __('TEXT') }}