We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One of the last missing translations are in the Handlebar tables. See for example : app/sprinkles/admin/templates/components/tables/groups.html.twig.
The problem is the Twig translate function is not available inside the verbatim block.
translate
verbatim
The text was updated successfully, but these errors were encountered:
Not sure if this is helpful or not: http://twig.sensiolabs.org/doc/2.x/recipes.html#using-twig-and-angularjs-in-the-same-templates
Sorry, something went wrong.
Escaping the {{ doesn't work :(
{{
So maybe changing Handlebar to {[...
{[
Turns out the solution is even easier : {% endverbatim %}{{translate("DESCRIPTION")}}{% verbatim %}
{% endverbatim %}{{translate("DESCRIPTION")}}{% verbatim %}
Fix #624
7fdf76c
Lol, that will do it I guess.
No branches or pull requests
One of the last missing translations are in the Handlebar tables. See for example : app/sprinkles/admin/templates/components/tables/groups.html.twig.
The problem is the Twig
translate
function is not available inside theverbatim
block.The text was updated successfully, but these errors were encountered: