NSLocalizedString 带有空注释?
我发现这个使用 NSLocalizedString 的好例子: NSLocalizedString() 的第二个参数是什么?< /a>
NSLocalizedString(@"Save",@"Title of the Save button in the theme saving dialog");
.
/* Title of the Save button in the theme saving dialog */
"Save" = "Save";
但是如果 NSLocalizedString 中的注释为空怎么办?这意味着什么?它会自动知道在 localize.strings 中哪里可以找到翻译后的单词吗?
谢谢
i found this good example to use NSLocalizedString : What is the second parameter of NSLocalizedString()?
NSLocalizedString(@"Save",@"Title of the Save button in the theme saving dialog");
.
/* Title of the Save button in the theme saving dialog */
"Save" = "Save";
But what if the comment in NSLocalizedString is empty ?what does is mean? Will it automatically know where to find the translated word in localize.strings?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该评论是为 genstrings< 保留的/a> 帮助某人(可能不是技术人员)将本地化字符串翻译成新语言的工具。
The comment is reserved for the genstrings tool to help someone, who may or may not be technical, translate your localized strings into new languages.
第一个参数是 localized.strings 的键。第二个参数是注释,旨在帮助翻译。它根本不会影响应用程序的行为,因此它是空还是零并不重要。
The first parameter is the key into localizable.strings. The second parameter is a comment meant to assist in translation. It won't effect the behavior of the application at all, so it doesn't strictly matter if it's empty or nil.