msginit 电子邮件地址命令行参数?

发布于 2024-07-25 06:05:00 字数 520 浏览 3 评论 0原文

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

msginit prompts for an email address. Is there a way to tell msginit what email address to use without being prompted for it such as a command line argument?

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青春有你 2024-08-01 06:05:01

您的问题是由于 msginit 使用 /usr/lib64/gettext/user-email 提示您输入电子邮件。 如果您使用 --no-translator 选项运行 msginit,它应该假设它正在以非交互方式运行,并且不会提示您:

msginit --no-translator -l es_MX -o spanish.po -i hellogt.pot

Your problem is due to msginit using /usr/lib64/gettext/user-email to prompt for your email. If you instead run msginit with the --no-translator option it should assume it's being run non-interactively and not prompt you:

msginit --no-translator -l es_MX -o spanish.po -i hellogt.pot
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文