NSDateComponentsFormatter 无法正确翻译德语?
NSDateComponentsFormatter for not correctly translating German?
NSDateComponentsFormatter *formatter;
formatter = [[NSDateComponentsFormatter alloc] init];
formatter.unitsStyle = NSDateComponentsFormatterUnitsStyleShort;
formatter.allowedUnits = NSCalendarUnitDay;
NSString *string = [formatter stringFromTimeInterval:seconds];
这是为德语返回 2 d
,而我期望 2 t
?如果样式更改 NSDateComponentsFormatterUnitsStyleFull
那么我会看到 2 Tage
我也试过法语和俄语比较。看到正确的短字母,即。 2 j
和2 д
分别
任何德国开发人员都可以阐明这一点吗?这是一个已知的错误?使用 iOS 9.3
d
是正确的德语缩写。它指的是拉丁词"dies"(意思是"day")。
NSDateComponentsFormatter *formatter;
formatter = [[NSDateComponentsFormatter alloc] init];
formatter.unitsStyle = NSDateComponentsFormatterUnitsStyleShort;
formatter.allowedUnits = NSCalendarUnitDay;
NSString *string = [formatter stringFromTimeInterval:seconds];
这是为德语返回 2 d
,而我期望 2 t
?如果样式更改 NSDateComponentsFormatterUnitsStyleFull
那么我会看到 2 Tage
我也试过法语和俄语比较。看到正确的短字母,即。 2 j
和2 д
分别
任何德国开发人员都可以阐明这一点吗?这是一个已知的错误?使用 iOS 9.3
d
是正确的德语缩写。它指的是拉丁词"dies"(意思是"day")。