Why DateComponentsFormatter.localizedString(from:unitsStyle:)
does not work for weekday
?
let twoDays = DateComponents(day: 2)
let threeWeeks = DateComponents(weekday: 3)
DateComponentsFormatter.localizedString(from: twoDays, unitsStyle: .full) ?? "found nil" // "2 days"
DateComponentsFormatter.localizedString(from: threeWeeks, unitsStyle: .full) ?? "found nil" // returns "found nil"