为什么 genstrings 不将 NSLocalizedStringFromTable 条目转换为 table.strings?

发布于 2024-09-05 16:58:49 字数 351 浏览 6 评论 0原文

在我的源代码中,我有一些行,例如 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 技术交流群。

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

发布评论

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

评论(1

梦里寻她 2024-09-12 16:58:49

Juan,

确保您没有使用 #define 或常量作为表名。请记住,genstrings 不会查看编译后的代码,它只是解析源文件。另外,所有 NSLocalizedStrings 方法实际上只是 NSBundle.h 中定义的宏:

#define NSLocalizedStringFromTable(key, tbl, comment) \
        [[NSBundle mainBundle] localizedStringForKey:(key) value:@"" table:(tbl)]

确保您没有执行以下操作:

#define ENSTRINGS @"en"
...
NSString *info = NSLocalizedStringFromTable( @"Info", ENSTRINGS, @"Title of this view" );

相反,您必须指定表名称:

NSString *info = NSLocalizedStringFromTable( @"Info", @"en", @"Title of this view" );

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:

#define NSLocalizedStringFromTable(key, tbl, comment) \
        [[NSBundle mainBundle] localizedStringForKey:(key) value:@"" table:(tbl)]

Make sure you aren't doing something like:

#define ENSTRINGS @"en"
...
NSString *info = NSLocalizedStringFromTable( @"Info", ENSTRINGS, @"Title of this view" );

Instead, you must specify the table name:

NSString *info = NSLocalizedStringFromTable( @"Info", @"en", @"Title of this view" );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文