class NumbersAndWords::Translations::Hu
Public Instance Methods
Source
# File lib/numbers_and_words/translations/hu.rb, line 14 def hundreds(number, options = {}) super(number, options.merge(separator: '')) end
Calls superclass method
NumbersAndWords::Translations::Families::Latin#hundreds
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