标签: symfony twig
我在应用程序网站中使用了symfony 4,现在我有任务来查找所有文件中翻译的所有variabels ??
例如,我的数组测试内容包含多个变量:
{% for x in test %} {{x|trans }} {% endfor %}
在其他页面中,我有数组test2内容多个变量:
{%for t in test2 %} {{ t|trans }} {% endfor %}
如何查找翻译成所有模板的所有variabels?
感谢高级