CW *_* II 5 linux gettext internationalization
msginit提示输入电子邮件地址.有没有办法告诉msginit使用什么电子邮件地址而不提示它,如命令行参数?
cat >hellogt.cxx <<EOF
// hellogt.cxx
#include <libintl.h>
#include <locale.h>
#include <iostream>
int main (){
setlocale(LC_ALL, "");
bindtextdomain("hellogt", "./");
textdomain( "hellogt" );
std::cout << gettext("hello, world!") << std::endl;
}
EOF
g++ -ohellogt hellogt.cxx
xgettext -d hellogt -o hellogt.pot hellogt.cxx
msginit -l es_MX -o spanish.po -i hellogt.pot
Run Code Online (Sandbox Code Playgroud)
Dav*_*veR 10
您的问题是由于msginit使用/usr/lib64/gettext/user-email提示您的电子邮件.如果您msginit使用该--no-translator选项运行它应该假设它是以非交互方式运行而不是提示您:
msginit --no-translator -l es_MX -o spanish.po -i hellogt.pot
Run Code Online (Sandbox Code Playgroud)