gettext:将 dgettext() 字符串提取到 domain.po 文件

发布于 2024-08-07 17:24:31 字数 227 浏览 5 评论 0原文

我有具有多个域的程序,一些源文件包含具有不同文本域的 dgettext() 调用。

如何将 gettext-strings 提取到多个 .po 文件?例如,调用 dgettext('one', 'Hello') 应转到 one.po,而 dgettext('two', 'Bye') 则应转到 Two.po 。 xgettext 只是忽略文本域并将所有内容放入单个文件中。

I have program with multiple domains, some source files contain dgettext() calls with different text domains.

How to extract gettext-strings to multiple .po files? For example, call dgettext('one', 'Hello') should go to one.po, and dgettext('two', 'Bye') to two.po. xgettext just ignores text domain and puts everything in single file.

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

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

发布评论

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

评论(2

农村范ル 2024-08-14 17:24:31

首先,您需要一种分离域的方法。

例如,假设您有一个用于 lib 的域和一个用于 app 的域,然后为 dgettext() 调用创建一个快捷方式;

_app(msg) -> dgettext("app", msg);

一个用于 lib 域:

_lib(msg) -> dgettext("lib", msg);

在您的代码中添加这些调用,如下所示;

show_message(_app("Choose a directory to save your work."));
show_message(_lib("No space left on device."));

请记住,在初始化应用程序时,您需要为两个域调用 bindtextdomain()

要提取它们,您需要在源树中包含这些标记的所有文件名上为 xgettext 指定不同的关键字:

xgettext --keyword=_app -d domain1 filenames...
xgettext --keyword=_lib -d domain2 filenames...

最后,将两个 .po 文件编译为其二进制 .mo 变体并复制/安装他们到正确的位置。

First you need a way of separating the domains.

For instance, let's say you have a domain for lib and one for app, then create a shortcut for the dgettext() call;

_app(msg) -> dgettext("app", msg);

and one for the lib domain:

_lib(msg) -> dgettext("lib", msg);

Add these calls all over your code, like this;

show_message(_app("Choose a directory to save your work."));
show_message(_lib("No space left on device."));

Remember that you need to call bindtextdomain() for both domains when initializing your application.

To extract them you need to specify different keywords to xgettext on all the filenames in your source tree that contains these markers:

xgettext --keyword=_app -d domain1 filenames...
xgettext --keyword=_lib -d domain2 filenames...

Finally, compile both of the .po files into their binary .mo variant and copy/install them to the right location.

濫情▎り 2024-08-14 17:24:31

如果您使用的是 Linux,请使用 gtranslator 程序来操作 *.po 并测试您的 *.po 文件。

If you are using linux, use gtranslator program to manipulate *.po and test your *.po files.

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