Class: Babosa::Transliterator::Bulgarian

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

Constant Summary collapse

APPROXIMATIONS =
{
  "Ж" => "J",
  "Й" => "I",
  "Х" => "H",
  "Ц" => "C",
  "Щ" => "Sht",
  "Ъ" => "U",
  "Ь" => "I",
  "Ю" => "Iu",
  "Я" => "Ia",
  "ж" => "j",
  "й" => "i",
  "х" => "h",
  "ц" => "c",
  "щ" => "sht",
  "ъ" => "u",
  "ь" => "i",
  "ю" => "iu",
  "я" => "ia"
}.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