是否可以将两个 .po 翻译文件合并在一起?

发布于 2024-08-07 20:14:40 字数 216 浏览 5 评论 0原文

我们有两个 .po 文件,每个文件来自一个软件的不同分支。

我们需要将它们合并到一个 .po 文件中。

两个文件之间存在重复项,理想的处理方式是(一致地)优先使用一个文件的字符串。

我们有一个 SUSE 系统,因此 --output-file 似乎没有忽略/合并重复项的行为,而根据我从网络搜索中找到的手册页,Sun 版本具有这种行为。 (我们手头没有 Sun 机器!)

We have two .po files, each from different branches of a piece of software.

We need to combine these into a single .po file.

There are duplicates between the two files, and the ideal handling would be for one file's strings to be favoured (consistently).

We have a SUSE system so the --output-file doesn't seem to have the behaviour of ignoring/merging duplicates which the Sun version has according to a man page I found from a web search. (We do not have a Sun machine handy!)

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

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

发布评论

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

评论(3

傻比既视感 2024-08-14 20:14:40

您正在寻找的是 msgcat util,它连接并合并指定的 PO 字典。

这是 gettext utils 的一部分,有关更多信息,请参阅 msgcat 上的 gettext 手册页

What you are looking for is the msgcat util, it concatenates and merges the specified PO dictionaries.

This is part of gettext utils, for more information please consult gettext manual page on msgcat.

黒涩兲箜 2024-08-14 20:14:40

你可以使用poedit。
要合并当前的 po 文件,您必须打开它并单击:

  • 目录 > 目录。从 POT 文件更新。
  • 将过滤器设置为所有文件并选择您的第二个 .po 文件

Poedit 将向您显示新的 & 文件。过时的字符串

you can use poedit.
To merge your current po-file, you must to open it and click:

  • Catalog > Update from POT-file.
  • Set the filter to all files and select your second.po file

Poedit will show you new & obsolete strings

帝王念 2024-08-14 20:14:40

我使用 msgmerge

msgmerge [old_file.po] [new_file.po] > output.po

它对我有用,但请注意,它会进行愚蠢的合并,它会丢弃 old_file 中的条目(新文件项覆盖旧文件项)。

I use msgmerge:

msgmerge [old_file.po] [new_file.po] > output.po

It works for me, but be aware that it does a silly merge, it is, it discards the entries in the old_file (new file items overwrites old one items).

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