Class: NumbersAndWords::Strategies::FiguresConverter::Languages::En
- Inherits:
-
Base
- Object
- Base
- NumbersAndWords::Strategies::FiguresConverter::Languages::En
show all
- Includes:
- Families::Latin
- Defined in:
- lib/numbers_and_words/strategies/figures_converter/languages/en.rb
Direct Known Subclasses
EnGb
Instance Attribute Summary
#current_capacity, #parent_figures
Attributes inherited from Base
#decorator, #figures, #language, #options, #translations
Instance Method Summary
collapse
#capacity_iteration, #complex_number_to_words, #complex_tens, #hundreds_number_to_words, #save_parent_figures, #simple_number_to_words, #words_in_capacity
#translate
Methods inherited from Base
#initialize, #run
Instance Method Details
#hundreds ⇒ Object
14
15
16
|
# File 'lib/numbers_and_words/strategies/figures_converter/languages/en.rb', line 14
def hundreds
maybe_union_after_hundreds super({:prefix => maybe_ordinal(:hundreds)})
end
|
#maybe_hyphen_separator ⇒ Object
45
46
47
|
# File 'lib/numbers_and_words/strategies/figures_converter/languages/en.rb', line 45
def maybe_hyphen_separator
@options.remove_hyphen.result
end
|
#maybe_ordinal(type) ⇒ Object
49
50
51
|
# File 'lib/numbers_and_words/strategies/figures_converter/languages/en.rb', line 49
def maybe_ordinal type
@options.ordinal.result type
end
|
#maybe_remove_zero ⇒ Object
57
58
59
|
# File 'lib/numbers_and_words/strategies/figures_converter/languages/en.rb', line 57
def maybe_remove_zero
@options.remove_zero.result
end
|
#maybe_union_after_hundreds(translations) ⇒ Object
53
54
55
|
# File 'lib/numbers_and_words/strategies/figures_converter/languages/en.rb', line 53
def maybe_union_after_hundreds translations
@options.hundreds_with_union.modify_or_leave translations
end
|
#strings_logic ⇒ Object
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# File 'lib/numbers_and_words/strategies/figures_converter/languages/en.rb', line 29
def strings_logic
if @options.pronounced.active?
@options.pronounced.process self, @figures
else
if @figures.capacity_count
number_without_capacity_to_words + complex_number_to_words
elsif @figures.hundreds
hundreds_number_to_words
elsif @figures.tens or @figures.ones
simple_number_to_words
else
[]
end
end
end
|
#tens_with_ones ⇒ Object
22
23
24
25
26
27
|
# File 'lib/numbers_and_words/strategies/figures_converter/languages/en.rb', line 22
def tens_with_ones
super({
:separator => maybe_hyphen_separator,
:prefix => maybe_ordinal(:tens_with_ones)
})
end
|
#zero ⇒ Object
18
19
20
|
# File 'lib/numbers_and_words/strategies/figures_converter/languages/en.rb', line 18
def zero
super({:prefix => maybe_ordinal(:zero)}) unless maybe_remove_zero
end
|