我制作了我自己的文件,并用我自己的语言翻译了捆绑字段。它正在我的 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 %}
以使用我的翻译文件吗?
翻译适用于定义的语言,但我复制文件翻译并实现我的语言,因为捆绑包中不存在。