You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NumberToWordsConverterconv = newNumberToWordsConverter(Container.englishContainer().getIntegerConverter(),
newEnglishValues().pluralForms());
returnconv.asWords(3750); //== > The result will be "three thousand seven hunder..." this is correct
But if i do this
If i i do something like this
NumberToWordsConverterconv = newNumberToWordsConverter(Container.czechContainer().getIntegerConverter(),
newCzechValues().pluralForms());
returnconv.asWords(3750); //== > The result will be "tri milliony sedm .... this is wrong, a whole order of magnitude wrong
I found the problem to be that in CzechValues::pluralForms
//No default entry existsreturnArrays.asList(newCzechPluralForms("tisíc", "tisíce", "tisíc", GenderType...);
//In contrast one exist for EnglishreturnArrays.asList(newEnglishPluralForms(""), newEnglishPluralForms("thousand"),
Same applies error for German and other languages
The text was updated successfully, but these errors were encountered:
Hi
If I do something like this
But if i do this
If i i do something like this
I found the problem to be that in
CzechValues::pluralForms
Same applies error for German and other languages
The text was updated successfully, but these errors were encountered: