Class: Babosa::Transliterator::Serbian

Inherits:
Latin
  • Object
show all
Defined in:
lib/babosa/transliterator/serbian.rb

Constant Summary collapse

APPROXIMATIONS =
Cyrillic.const_get(:APPROXIMATIONS).merge({
  "Ð" => "Dj",
  "Č" => "Ch",
  "Š" => "Sh",
  "č" => "ch",
  "đ" => "dj",
  "š" => "sh",
  "Ћ" => "C",
  "Ц" => "C",
  "Ч" => "Ch",
  "Ђ" => "Dj",
  "Џ" => "Dz",
  "Х" => "H",
  "Ј" => "J",
  "Љ" => "Lj",
  "Њ" => "Nj",
  "ц" => "c",
  "ћ" => "c",
  "ч" => "ch",
  "ђ" => "dj",
  "џ" => "dz",
  "х" => "h",
  "ј" => "j",
  "љ" => "lj",
  "њ" => "nj"
})

Instance Attribute Summary

Attributes inherited from Base

#approximations

Method Summary

Methods inherited from Base

#[], #initialize, #transliterate

Constructor Details

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