Cocoa 中未本地化的字体集合名称

发布于 2024-10-11 06:20:47 字数 192 浏览 0 评论 0原文

我正在使用 [[NSFontManager sharedFontManager] collectionNames] 获取所有集合,但我看到一些未翻译的字符串(例如“com.apple.AllFonts”)。有办法本地化它们吗?我看到 Font Book 确实成功翻译了它们。也许我做错了什么。

谢谢,

-阿尔贝

I'm getting all collections using [[NSFontManager sharedFontManager] collectionNames], but I see some untranslated strings (such as "com.apple.AllFonts"). There is a way to localize them? I see that Font Book does translate them successfully. Maybe I am doing something wrong.

Thanks,

—Albe

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

冷情 2024-10-18 06:20:47

Apple 在其所有内部集合名称中都添加了“com.apple”前缀,这可能是为了避免冲突。根据您正在执行的操作,您可以:

  • 跳过任何以“com.apple”开头的集合名称 - 它们不是由用户创建的集合。
  • 如果集合以“com.apple”开头,则将其拆分并仅获取名称的最后一部分。像 if ([name hasPrefix:@"com.apple"]) name = [[name ComponentsSeparatedByString:@"."] objectAtIndex:2]; 之类的东西就可以了。

Apple prefixes all of its internal collection names with "com.apple", probably to avoid conflicts. Depending on what you're doing, you could:

  • Skip any collection name that begins with "com.apple" -- they're not collections created by the user.
  • If a collection begins with "com.apple", split it and just get the last part of the name. Something like if ([name hasPrefix:@"com.apple"]) name = [[name componentsSeparatedByString:@"."] objectAtIndex:2]; would work.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文