3

如果您在 Settings.bundle 中构建子窗格,您最终会得到几个 .plist 文件。当需要本地化您的项目时,您会发现创建相应的 .strings 文件有点乏味(我知道我会这样做)。

这是一个方便的列表 bash 脚本,它将 (i) 查找标签,(ii) 提取以下标签的内容,然后 (iii) 将该值输出到 ibtool 所需的 "string" = "string" 格式的文本文件.

您将输入和输出文件名作为参数传递。

#!/bin/sh
echo "// Generated by plist2strings. Manual edits will be overwritten the next time this script runs.\n/* A single strings file, whose title is specified in your preferences schema. The strings files provide the localized content to display to the user for each of your preferences. */\n" > plist2stringstmp
sed -n '
# look for a "#" at the end of the line
/<key>Title<\/key>$/ {
# Found one - now read in the next line
 N
# delete the "#" and the new line character, 
 s/.*<\(string\)>\(.*\)<\/\1>/"\2" = "\2"/gp
}' $1 > plist2stringstmp2
cat plist2stringstmp plist2stringstmp2 > $2
rm plist2stringstmp plist2stringstmp2

复制-N-粘贴到文本文件中。我将我的保存为 plist2strings。一定要给它执行权限。例如,在终端执行:

macbook:~ foo$ chmod 755 plist2strings

要从 Settings.bundle 目录的根目录执行脚本(如果保存到您的用户文件夹),只需使用以下语法:

macbook:~ foo$ ~/plist2strings mysettings.plist en.lprog/mysettings.strings

如果该文件夹中尚不存在 mysettings.strings,它将创建它。如果它已经存在,它将自动覆盖它而不会发出警告。

希望有人觉得这很有用。并且随意使用(和滥用)你认为合适的(警告购买者;-)。如果您做出任何有用的更改,请考虑将它们发回此处以供其他人欣赏。

快乐本地化!

~ 扎克

4

3 回答 3

3

我使用这个更好的快速修复版本(它只是删除重复项)。

#!/bin/sh
echo "// Generated by plist2strings. Manual edits will be overwritten the next time this script runs.\n/* A single strings file, whose title is specified in your preferences schema. The strings files provide the localized content to display to the user for each of your preferences. */\n" > plist2stringstmp
sed -n '
# look for a "#" at the end of the line
/<key>Title<\/key>$/ {
# Found one - now read in the next line
 N
# delete the "#" and the new line character, 
 s/.*<\(string\)>\(.*\)<\/\1>/"\2" = "\2"/gp
}' $1 > plist2stringstmp2
cat plist2stringstmp2 | sort | uniq > tmp
cat plist2stringstmp2 >> plist2stringstmp 
mv plist2stringstmp $2
rm plist2stringstmp2

TODO:从标题数组中提取字符串,如下所示:

<key>Titles</key>
            <array>
                <string>STH</string>
                <string>STH2</string>
                <string>STH3</string>
            </array>
于 2011-06-07T15:32:46.043 回答
1

这是一种旧思路。不过,感谢 OP Zack,我使用原始脚本已经有一段时间了。

我决定编辑脚本以从标题数组中提取字符串,如 Descent89 所建议的那样。

此外,通过使用 2addr sed 语法,它现在更具可读性。我的版本不排序也不删除重复项,因为使用 Titles Arrays,保持字符串顺序很有用。

这里是 :

#!/bin/sh
echo "// Generated by plist2strings. Manual edits will be overwritten the next time this script runs.\n/* A single strings file, whose title is specified in your preferences schema. The strings files provide the localized content to display to the user for each of your preferences. */\n\n/* String for Title elements */" > $2

sed -n '/<key>Title<\/key>$/,/<\/string>$/ s/.*<\(string\)>\(.*\)<\/\1>/"\2" = "\2";/gp' $1 >> $2

echo "\n/* String for Titles arrays elements */" >> $2

sed -n '/<key>Titles<\/key>$/,/<\/array>$/ s/.*<\(string\)>\(.*\)<\/\1>/"\2" = "\2";/gp' $1 >> $2
于 2016-12-23T21:11:25.137 回答
0

仅供参考,您最终可能会在这里或那里得到一些重复的字符串。如果有人感到有动力,很高兴看到 (a) 重复检查,和/或 (b) 合并现有文件的结果。

于 2009-06-17T14:27:01.010 回答