0

我制作了我自己的文件,并用我自己的语言翻译了捆绑字段。它正在我的 FOSUserBundle 上工作,我为评论包创建了另一个,但不在 FOSUserComment 中。它在翻译文件夹中。

示例代码:

<button data-url="{{ url("fos_comment_remove_thread_comment", {"id": comment.thread.id, "commentId": comment.id, "value":  constant('FOS\\CommentBundle\\Model\\CommentInterface::STATE_DELETED')}) }}" class="fos_comment_comment_remove">
    {% trans from 'FOSCommentBundle' %}fos_comment_comment_delete{% endtrans %}
</button>

我可以替换{% trans from 'FOSCommentBundle' %}fos_comment_comment_delete{% endtrans %}以使用我的翻译文件吗?

翻译适用于定义的语言,但我复制文件翻译并实现我的语言,因为捆绑包中不存在。

4

1 回答 1

1

我不确定你在那里做了什么。你能说出你在哪里存储文件以及你给翻译文件起什么名字吗?

你也可以使用{{ 'fos_comment_delete'|trans }}

更新您的问题,以便我可以更新我的答案。

于 2017-05-10T11:22:32.563 回答