Intents.stringsdict 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>There are ${count} options matching ‘${content}’. - 2</key>
  6. <dict>
  7. <key>NSStringLocalizedFormatKey</key>
  8. <string>有 %#@count_option@ 符合「 ${content} 」。</string>
  9. <key>count_option</key>
  10. <dict>
  11. <key>NSStringFormatSpecTypeKey</key>
  12. <string>NSStringPluralRuleType</string>
  13. <key>NSStringFormatValueTypeKey</key>
  14. <string>%ld</string>
  15. <key>other</key>
  16. <string>%ld 個選項</string>
  17. </dict>
  18. </dict>
  19. <key>There are ${count} options matching ‘${visibility}’.</key>
  20. <dict>
  21. <key>NSStringLocalizedFormatKey</key>
  22. <string>有 %#@count_option@ 符合「 ${visibility} 」。</string>
  23. <key>count_option</key>
  24. <dict>
  25. <key>NSStringFormatSpecTypeKey</key>
  26. <string>NSStringPluralRuleType</string>
  27. <key>NSStringFormatValueTypeKey</key>
  28. <string>%ld</string>
  29. <key>other</key>
  30. <string>%ld 個選項</string>
  31. </dict>
  32. </dict>
  33. </dict>
  34. </plist>