我想编写一个小部件,允许管理员在点击“编辑”时编辑网站上的翻译。一些文本附近的按钮。我知道如何获得翻译并在我的控制器中使用此代码:
$translator = $this->get('translator');
$catalogue = new MessageCatalogue();
$catalogue->set('message', 'updated translation message', 'messages');
$translator->getCatalogue()->addCatalogue($catalogue);
我想保存此更新的翻译,但无法找到一种简单的方法来执行此操作。 翻译文件以php数组格式存储。我不能使用JmsTranslationBundle。