NSLocalizedString 带有空注释?

发布于 2024-12-05 04:24:18 字数 501 浏览 0 评论 0原文

我发现这个使用 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 技术交流群。

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

发布评论

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

评论(2

想你的星星会说话 2024-12-12 04:24:18

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.

扮仙女 2024-12-12 04:24:18

第一个参数是 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.

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