我正在尝试在translator.default
中使用Controller
服务,但是我试图通过trans
方法翻译的任何消息都会返回未翻译的密钥。
/**
* @Route("/testT")
*/
public function testTAction(Request $req)
{
$translator = $this->get('translator.default');
$translated = $translator->trans('Hello from the other side');
die(dump($translated));
}
为了确保我的钥匙已正确装入,我已完成以下检查:
php app/console translation:update it --dump-messages
输出以下内容:
Translation Messages Extractor and Dumper
=========================================
// Generating "it" translation files for "app folder"
// Parsing templates...
// Loading translation files...
Messages extracted for domain "messages" (1 messages)
-----------------------------------------------------
* Hello from the other side
[OK] 1 messages were successfully extracted
我的密钥存储在<root>/app/resources/translations/messages.it.yml
下
和我的语言环境,在请求翻译的密钥时设置得很好:
$translator = $this->get('translator.default');
die(dump($translator->getLocale()));
如果在我的控制器中调用,则会生成以下输出:“it”,我认为这是正确的。那么:我哪里错了?
修改
这是我的<root>/app/Resources/translations/messages.it.yml
Hello from the other side: Ciao dall'altra parte
以下是我<root>/app/config/config.yml
framework:
translator: { fallbacks: it }
我正在使用dev配置,但没有任何内容与那里的翻译有关。