金源在线客服

在线咨询

QQ在线咨询

QQ咨询

01Jan

gettext on Windows

gettext on Windows

This is only needed for people who either want to extract message IDs or compile message files (.po). Translation work itself just involves editing existing files of this type, but if you want to create your own message files, or want to test or compile a changed message file, you will need the gettext utilities:

  • Download the following zip files from http://sourceforge.net/projects/gettext
    • gettext-runtime-X.bin.woe32.zip
    • gettext-tools-X.bin.woe32.zip
    • libiconv-X.bin.woe32.zip
  • Extract the 3 files in the same folder (i.e. C:\Program Files\gettext-utils)
  • Update the system PATH:
    • Control Panel > System > Advanced > Environment Variables
    • In the System variables list, click Path, click Edit
    • Add ;C:\Program Files\gettext-utils\bin at the end of the Variable value field

You may also use gettext binaries you have obtained elsewhere, so long as the xgettext --version command works properly. Some version 0.14.4 binaries have been found to not support this command. Do not attempt to use Django translation utilities with a gettext package if the command xgettext --version entered at a Windows command prompt causes a popup window saying "xgettext.exe has generated errors and will be closed by Windows".

上一篇:Beautiful Soup-Python写的一个HTML/XML的解析器
下一篇:Python中的traceback模块