1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="utf-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>There are ${count} options matching ‘${content}’. - 2</key>
- <dict>
- <key>NSStringLocalizedFormatKey</key>
- <string>有 %#@count_option@ 符合「 ${content} 」。</string>
- <key>count_option</key>
- <dict>
- <key>NSStringFormatSpecTypeKey</key>
- <string>NSStringPluralRuleType</string>
- <key>NSStringFormatValueTypeKey</key>
- <string>%ld</string>
- <key>other</key>
- <string>%ld 個選項</string>
- </dict>
- </dict>
- <key>There are ${count} options matching ‘${visibility}’.</key>
- <dict>
- <key>NSStringLocalizedFormatKey</key>
- <string>有 %#@count_option@ 符合「 ${visibility} 」。</string>
- <key>count_option</key>
- <dict>
- <key>NSStringFormatSpecTypeKey</key>
- <string>NSStringPluralRuleType</string>
- <key>NSStringFormatValueTypeKey</key>
- <string>%ld</string>
- <key>other</key>
- <string>%ld 個選項</string>
- </dict>
- </dict>
- </dict>
- </plist>
|