Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须使用 msgfmt 将文件 .po 编译为 .mo,因此我安装了 gettext(最新版本)并对chmod 777我的整个文件夹执行此操作。
chmod 777
当我编译文件时:
msgfmt /home/myuser/file.po -o /home/myuser/file.mo
没有错误,没有生命信号,什么都没有。
我该如何解决?
您必须更改命令的顺序:
至:
msgfmt -o /home/myuser/file.mo /home/myuser/file.po
msgfmt 的用法可以通过以下方式获得:
msgfmt --help