【发布时间】:2016-11-23 13:36:17
【问题描述】:
我在后端使用 Symfony 并通过 twig 渲染模板。 对于翻译,我使用以下指南,效果很好。 https://symfony.com/doc/current/translation.html
作品:
{{ "Active Option" | trans({}, 'frontend', app.request.locale) }}
但问题是,我有一些必须翻译的单词在 angularJS 变量中。 我有多个用于翻译的 .xlf 文件,并且我知道 angular.translate。 但我不想实现它。
{{ '{{' }} item.optionTitle {{ '}}' | trans({}, 'option', app.request.locale) }}
谁能解释我如何用 twig translate 转换 angularJS 变量的值?
【问题讨论】:
标签: php angularjs symfony translation