为什么 genstrings 不将 NSLocalizedStringFromTable 条目转换为 table.strings?
在我的源代码中,我有一些行,例如 NSLocalizedStringFromTable(@"Info", @"en", @"Title of this view")
。当我随后调用 genstrings -o en.lproj ./Classes/*.m 时,我不会得到预期的文件 en.strings
而是 Localized.strings
code>,尽管我在 genstrings-manpage 中读到它会从 NSLocalizedStringFromTable(a, table, c) 函数生成 table.strings 文件。我错了吗?那么我将如何创建 table.strings 文件?
In my source code I have some lines like NSLocalizedStringFromTable(@"Info", @"en", @"Title of this view")
. When I subsequently call genstrings -o en.lproj ./Classes/*.m
I would not get the expected file en.strings
but Localized.strings
, although I've read in the genstrings-manpage that it would generate a table.strings file from NSLocalizedStringFromTable(a, table, c) function. Am I wrong? How would I create a table.strings file then?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Juan,
确保您没有使用 #define 或常量作为表名。请记住,genstrings 不会查看编译后的代码,它只是解析源文件。另外,所有 NSLocalizedStrings 方法实际上只是 NSBundle.h 中定义的宏:
确保您没有执行以下操作:
相反,您必须指定表名称:
Juan,
Make sure you're NOT using a #define or constant for the table name. Remember, genstrings doesn't look at the compiled code, it just parses the source file. Also, all of the NSLocalizedStrings methods are actually just macros defined in NSBundle.h:
Make sure you aren't doing something like:
Instead, you must specify the table name: