Class: Hola::Translator
- Inherits:
-
Object
- Object
- Hola::Translator
- Defined in:
- lib/hola_AnansiRafa/translations.rb
Instance Method Summary collapse
- #hi ⇒ Object
-
#initialize(language = "english") ⇒ Translator
constructor
A new instance of Translator.
Constructor Details
#initialize(language = "english") ⇒ Translator
Returns a new instance of Translator.
2 3 4 |
# File 'lib/hola_AnansiRafa/translations.rb', line 2 def initialize(language = "english") @language = language end |
Instance Method Details
#hi ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/hola_AnansiRafa/translations.rb', line 6 def hi case @language when "spanish" "hola mundo" when "korean" "anyoung ha se yo" when "japanese" "Kon'nichiwa sekai" when "swahili" "salamu dunia" when "german" "hallo welt" when "esperanto" "saluton mondo" else "hello world" end end |