diff --git a/src/Humanizer/Localisation/NumberToWords/BulgarianNumberToWordsConverter.cs b/src/Humanizer/Localisation/NumberToWords/BulgarianNumberToWordsConverter.cs index aa56d0aed..27f0fa666 100644 --- a/src/Humanizer/Localisation/NumberToWords/BulgarianNumberToWordsConverter.cs +++ b/src/Humanizer/Localisation/NumberToWords/BulgarianNumberToWordsConverter.cs @@ -59,14 +59,6 @@ static string Convert(long input, GrammaticalGender gender, bool isOrdinal, bool var lastOrdinalSubstitution = ""; - if (input / 1000000000000 > 0) - { - if (isOrdinal) - lastOrdinalSubstitution = Convert(input / 1000000000000, gender, false) + " трилион" + - GetEndingForGender(gender, input); - input %= 1000000000000; - } - if (input / 1000000000 > 0) { parts.Add(input < 2000000000 ? "един милиард" : Convert(input / 1000000000, gender, false) + " милиарда");