I am trying to translate a string inside a placeholder in a twig (timber) template. But I cannot detect the string in WPML string translation.
<input type="text" id="s" name="s" value="" placeholder="{{ __('Search', 'textdomain') }}">
I am trying to translate a string inside a placeholder in a twig (timber) template. But I cannot detect the string in WPML string translation.
<input type="text" id="s" name="s" value="" placeholder="{{ __('Search', 'textdomain') }}">
I managed to assign a variable to context.
$context = Timber::get_context();
$context['search_placeholder'] = __("Suche","pixel_framework");
Timber::fetch('test.twig',$context);
inside twig
<input type="text" id="s" name="s" value="" placeholder=" {{search_placeholder}}">