Using Poedit to parse Twig templates in a Zend Framework 2 application

你离开我真会死。 提交于 2019-12-25 04:33:40

问题


I've downloaded Poedit, and am attempting to parse my Twig templates. A few tutorials online pointed to https://github.com/umpirsky/Twig-Gettext-Extractor which I later found was referenced in a tutorial here http://aromatix.fr/?p=611 (French) with full instructions.

I got the tutorial done, installed umpirsky/twig-gettext-extractor, and when it tries to build the catalog it dies with "cannot execute program". The error popup contains this command:

/path/to/twig-gettext-extractor --sort-output --force-po -o "/var/folders/lw/0f57k9dj617_ntr760qw2lcr0000gp/T/poeditNoXV1p/3extracted.pot" --from-code=UTF-8  -k_ -ktranslate -ksetLabel -ksetValue -ksetLegend -k_refresh -L PHP --files  "vendor/module/core/view/ldp/forgot/email.twig" "vendor/module/core/view/ldp/forgot/index.twig" "vendor/module/core/view/ldp/login/index.twig" "vendor/module/core/view/ldp/main/index.twig" "vendor/module/core/view/ldp/register/index.twig"

At first, I noticed that the random folder that's specified as %o by the Poedit parser (e.g., poeditNoXV1p above) didn't exist. So I "hacked" twig-gettext-extractor and made it assert the existence of the path in the -o parameter. That "kinda" fixed it from the command line, but it still doesn't work from the poedit program.

Has anyone gotten this setup to work?


回答1:


A bug in Poedit 1.5.7 (as you know by now). For other readers' reference:

  • http://www.poedit.net/trac/ticket/552
  • https://groups.google.com/d/topic/poedit/t1HzAIZxKUc/discussion



回答2:


Are you working on windows or *nix?

If you are working on *nix, make sure twig-gettext-extractor can find the php binary.

/usr/local/php54/bin/php /path/to/twig-gettext-extractor --sort-output ...etc

Replace /usr/local/php54/bin/php with the right path in your system.

Also make sure you have the right permissions to run/execute that file.




回答3:


Finally built a GUI for ZF2, to replace PoEdit.

http://php-gettext-po-editor.com



来源:https://stackoverflow.com/questions/19800263/using-poedit-to-parse-twig-templates-in-a-zend-framework-2-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!