Class: Babosa::Transliterator::Russian

Inherits:
Cyrillic show all
Defined in:
lib/babosa/transliterator/russian.rb

Constant Summary collapse

APPROXIMATIONS =
{
  "Й" => "I",
  "М" => "M",
  "Х" => "H",
  "Ц" => "Ts",
  "Ш" => "Sh",
  "Щ" => "Sch",
  "Ю" => "U",
  "Я" => "Ya",
  "й" => "i",
  "х" => "h",
  "ц" => "ts",
  "щ" => "sch",
  "ю" => "u"
}.freeze

Instance Attribute Summary

Attributes inherited from Base

#approximations

Method Summary

Methods inherited from Cyrillic

#transliterate

Methods inherited from Base

#[], #initialize, #transliterate

Constructor Details

This class inherits a constructor from Babosa::Transliterator::Base