Intents.stringsdict 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>There are %#@count_option@ matching ‘${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>zero</key>
  16. <string>0 options</string>
  17. <key>one</key>
  18. <string>1 option</string>
  19. <key>two</key>
  20. <string>2 options</string>
  21. <key>few</key>
  22. <string>%ld options</string>
  23. <key>many</key>
  24. <string>%ld options</string>
  25. <key>other</key>
  26. <string>%ld options</string>
  27. </dict>
  28. </dict>
  29. <key>There are ${count} options matching ‘${visibility}’.</key>
  30. <dict>
  31. <key>NSStringLocalizedFormatKey</key>
  32. <string>There are %#@count_option@ matching ‘${visibility}’.</string>
  33. <key>count_option</key>
  34. <dict>
  35. <key>NSStringFormatSpecTypeKey</key>
  36. <string>NSStringPluralRuleType</string>
  37. <key>NSStringFormatValueTypeKey</key>
  38. <string>%ld</string>
  39. <key>zero</key>
  40. <string>0 options</string>
  41. <key>one</key>
  42. <string>1 option</string>
  43. <key>two</key>
  44. <string>2 options</string>
  45. <key>few</key>
  46. <string>%ld options</string>
  47. <key>many</key>
  48. <string>%ld options</string>
  49. <key>other</key>
  50. <string>%ld options</string>
  51. </dict>
  52. </dict>
  53. </dict>
  54. </plist>