我在此有类似问题:。 为什么T Django从另一个目录的模板档案中生成当地档案?
然而,我不理解解决办法。 我的结构:
Project
App1
locale
templates
App2
locale
templates
templates
somefilethatneedstranslation.html
我现在从第1号上诉中指挥这一指挥:
python ../manage.py App1 -l nl
它为App1地方文件夹中的App1模板制作了一个文件。
However I want my global templates to be translated aswell.. 注: I do NOT want a locale folder in my project root, so I tried adding a symlink to the templates folder from App1 but it does not append the translation results to the App1/locale/po file
from the App1 folder
ln -s ../templates/locale/* translations
python ../manage.py App1 -l nl --symlinks
我失踪了什么?
注:
模板夹
python ../manage.py templates -l nl
也许会奏效,但是由于显然模版不是安装的器具,我似乎忽略了显而易见的......。