我曾用「GNU gettext的」用PHP,並沒有使用poEdit的我能提取PO文件格式在Poedit中提取javascript gettext?
一個馬麗娟工作,但是當我嘗試同樣的事情對我的javascript我的HTML裏面的「腳本」標籤我沒有工作更多,我看不到任何JavaScript支持。
poedit支持幾乎所有的語言,除了JavaScript或我正在做它以一種錯誤的方式 任何人都可以提供工作的例子爲JavaScript? 我跟着你使用poEdit幾乎20種語言,所有的例子,所有的工作除了JavaScript的
從GNU的所有工作實例
的gettext-0.19.7.tar.gz
http://ftp.gnu.org/gnu/gettext/
發現的getText gettext-0.19.7 \ gettext-tools \ examples
這是php examlpe,它的工作原理我需要爲javascript做相同的操作
#[email protected]@ -q
<?
// Example for use of GNU gettext.
// This file is in the public domain.
//
// Source code of the PHP program.
setlocale (LC_ALL, "");
textdomain ("hello-php");
bindtextdomain ("hello-php", "@[email protected]");
echo _("Hello, world!");
echo "\n";
echo printf (_("This program is running as process number %d."),posix_getpid());
echo "\n";
?>
'gettext-parser'是gettext * runtime *,它只做一件事:加載PO/MO文件 - 它甚至在鏈接頁面的第一句話中這樣說。它不會做*字符串提取*,這個問題就是關於這個問題的。 –