编程与开发,写代码也是一种创作方式

当提示

hint: The '.git/hooks/pre-commit' hook was ignored because it's not set as executable.
hint: You can disable this warning with `git config advice.ignoredHook false`.

是因为钩子文件没有运行权限,根据情况赋予钩子文件执行权限即可,例如:

chmod 700 .git/hooks/pre-commit

生成.mo文件

  • 在根目录创建文件夹:language/zh_CN/LC_MESSAGES
  • 在该文件夹下创建test.po文件:
msgid "Welcome to My PHP Application"
msgstr "欢迎访问我的PHP应用"
  • 在Linux命令行中进入该目录,并执行msgfmt -o test.mo test.po
若环境没有msgfmt工具,请顺手安装:
sudo apt-get install gettext
或
yum install gettext-devel