如何将所有 XIB 文件中的所有可本地化字符串提取到一个文件中?

发布于 2024-11-03 03:20:37 字数 134 浏览 3 评论 0原文

我正在寻找一种从 .xib 文件中提取所有可本地化字符串并将其全部保存在一个文件中的方法。

可能这涉及 ibtool ,但我无法确定将所有这些合并到一个翻译字典中的方法(可能是 .strings 、 .plist ) > 或其他)。

I am looking for a way of extracting all localizable strings from .xib files and have all of them saved in a single file.

Probably this involves ibtool but I was not able to determine a way of merging all these in only one translation dictionary (could be .strings, .plist or something else).

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

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

发布评论

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

评论(2

≈。彩虹 2024-11-10 03:20:37

打开终端并 cd 到项目的根目录(或存储所有 XIB 文件的目录)并输入以下命令:

find . -name \*.xib | xargs -t -I '{}' ibtool --generate-strings-file '{}'.txt '{}'

神奇之处在于 find 和 xargs 命令协同工作。 -I 选项生成占位符。 -t 仅用于详细输出(您可以看到已生成并执行了哪些命令)。
它会在同一目录中生成与 xib 文件同名的 txt 文件。
可以改进此命令以将输出连接到一个文件中,但仍然是一个很好的起点。

将它们连接在一起:

您可以使用类似的终端命令将这些新创建的文件连接成一个文件:

find . -name \*.xib.txt | xargs -t -I '{}' cat '{}' > ./xib-strings-concatenated.txt

此命令会将所有字符串放入根目录中的一个文件 xib-strings-concatenated.txt 中。

您可以再次使用 find 和 xargs 删除生成的部分文件(如果需要):

find . -name \*.xib.txt | xargs -t -I '{}' rm -f '{}'

Open terminal and cd to the root directory of the project (or directory where you store all XIB files) and type in this command:

find . -name \*.xib | xargs -t -I '{}' ibtool --generate-strings-file '{}'.txt '{}'

The magic is the find and xargs commands working together. -I option generates placeholder. -t is just for verbose output (you see what commands has been generated and executed).
It generates txts files with the same name as xib files in the same directory.
This command can be improved to concatenate output into one file but still is a good starting point.

Joining them together:

You can concatenate those freshly created files into one using similar terminal command:

find . -name \*.xib.txt | xargs -t -I '{}' cat '{}' > ./xib-strings-concatenated.txt

This command will put all strings into one file xib-strings-concatenated.txt in root directory.

You can delete generated partial files (if you want) using find and xargs again:

find . -name \*.xib.txt | xargs -t -I '{}' rm -f '{}'
∞琼窗梦回ˉ 2024-11-10 03:20:37

现在这容易多了。

在 xcode 中,选择您的项目(不是目标),

然后使用菜单/编辑器/导出进行本地化

xcode 将输出一个 xliff 文件,其中包含整个项目中的所有可本地化字符串。

this is a lot easier now.

in xcode, select your project (not a target)

then use menu/editor/export for localisation

xcode will output an xliff file with all localisable strings from your entire project.

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