{% trans 'Enter your friend's name and email below, and click "send invite" to invite your friend.' %}
该行已经用单引号包裹,并且该行中还使用了双引号。那么我怎么能在这里逃脱
friend's
呢? 最佳答案
我真的找到了。使用 blocktrans 可以让你在那里拥有任何东西,混合和匹配。 :)
{% blocktrans %}Enter your friend's name and email below, and click "send invite" to invite your friend.{% endblocktrans %}
关于django - 当行已经用单引号包裹时,如何在 trans 中转义单引号?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12663383/