我想让这个图像而不是显示翻译是空的还是不存在的
<img class="partners-logo" src="{{ 'page.image.path' | trans | raw }}">
所以,我能像下面的代码那样围绕它包装一个逻辑循环吗?
{% if {{ 'page.image.path' | trans }} is not null %}
<img class="partners-logo" src="{{ 'page.image.path' | tran
我发现文本翻译应用编程接口行为与上的在线翻译之间存在一些差异
我正在翻译的英文文本(到西班牙语)是:
"*Add the shallot, tomatoes, peppers and red pepper flakes and cook, stirring often, until slightly softened and aromatic, about 4 minutes*"
当我使用Microsoft Text Translation python API时,将调用以下URL…
http://api.microsofttranslator.com/v2/Http.svc/
在尝试将字符串There is %product_count% item in your cart.转换为Il y a %products_count% article dans votre panier时,我得到了前面的Il y a %products_count% article dans votre panier。就像%products_count%被看作是一个字符串。
谢谢
我们生成的翻译文件带有稍后填充的占位符,但是在修改前面的单词的语言中遇到了问题。
例如,我们编写了一个翻译模板,如下所示:
because of %name%, you.....
这是有问题的,因为在法语中,如果%name%以元音开头或不以元音开头,‘的’的翻译是不同的。
例如,如果这个人是Andy,它应该是:
d' Andy
然而,对于Steve来说,这将是:
de Steve
处理这个案子最好的方法是什么?
我可以看到类似的问题已经在英语不定冠词(a vs an) 中得到了解决,但我想知道是否有一种更聪明的方法来解决它,而不是为我们遇到的每种情况定制一个过滤器(我们使用多种语言,我