class NumbersAndWords::Translations::Hu

Public Instance Methods

hundreds(number, options = {}) click to toggle source
# File lib/numbers_and_words/translations/hu.rb, line 14
def hundreds(number, options = {})
  super(number, options.merge(separator: ''))
end
tens_with_ones(numbers, options = {}) click to toggle source
# File lib/numbers_and_words/translations/hu.rb, line 9
def tens_with_ones(numbers, options = {})
  ones, tens = numbers
  [t(:tens_with_ones)[tens], t([options[:prefix], :ones_with_tens].join('.'))[ones]].join
end