Numbers spell out with gender

Hi community

I tried to get the feminine of "one" in spanish but when I tried, in Spanish the result is "uno" instead of "una". Any ideas?

let attributedString = AttributedString(localized: "uno")
attributedString.languageIdentifier = "es"

var morphology = Morphology()
morphology.grammaticalGender = .feminine
attributedString.morphology = morphology
attributedString.inflect = .explicit(morphology)

print(String(attributedString.inflected().characters)) // uno

Thanks in advance

Numbers spell out with gender
 
 
Q