File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 5757 return kTTTOtherPluralRule ;
5858}
5959
60+ static NSString * TTTTraditionalChinesePluralRuleForCount (NSUInteger count) {
61+ return kTTTOtherPluralRule ;
62+ }
63+
6064static NSString * TTTCzechPluralRuleForCount (NSUInteger count) {
6165 switch (count) {
6266 case 1 :
209213 pluralRule = TTTArabicPluralRuleForCount (count);
210214 } else if ([languageCode hasPrefix: @" zh-Hans" ]) {
211215 pluralRule = TTTSimplifiedChinesePluralRuleForCount (count);
216+ } else if ([languageCode hasPrefix: @" zh-Hant" ]) {
217+ pluralRule = TTTTraditionalChinesePluralRuleForCount (count);
212218 } else if ([languageCode hasPrefix: @" cs" ]) {
213219 pluralRule = TTTCzechPluralRuleForCount (count);
214220 } else if ([languageCode hasPrefix: @" en" ]) {
You can’t perform that action at this time.
0 commit comments