commonMain.com.michaeltroger.latintocyrillic.alphabets.SerbianAlphabet.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of latin-to-cyrillic Show documentation
Show all versions of latin-to-cyrillic Show documentation
A Kotlin Multiplatform Library for Latin to Cyrillic transliteration
The newest version!
package com.michaeltroger.latintocyrillic.alphabets
internal class SerbianAlphabet : LatinCyrillicAlphabet() {
override val latinToCyrillicAlphabet: Map by lazy {
hashMapOf(
"A" to "А",
"B" to "Б",
"V" to "В",
"G" to "Г",
"Dž" to "Џ",
"D" to "Д",
"Đ" to "Ђ",
"E" to "Е",
"Ž" to "Ж",
"Z" to "З",
"I" to "И",
"J" to "Ј",
"K" to "К",
"Lj" to "Љ",
"L" to "Л",
"M" to "М",
"Nj" to "Њ",
"N" to "Н",
"O" to "О",
"P" to "П",
"R" to "Р",
"S" to "С",
"T" to "Т",
"Ć" to "Ћ",
"U" to "У",
"F" to "Ф",
"H" to "Х",
"C" to "Ц",
"Č" to "Ч",
"Š" to "Ш",
"a" to "а",
"b" to "б",
"v" to "в",
"g" to "г",
"dž" to "џ",
"d" to "д",
"đ" to "ђ",
"e" to "е",
"ž" to "ж",
"z" to "з",
"i" to "и",
"j" to "ј",
"k" to "к",
"lj" to "љ",
"l" to "л",
"m" to "м",
"nj" to "њ",
"n" to "н",
"o" to "о",
"p" to "п",
"r" to "р",
"s" to "с",
"t" to "т",
"ć" to "ћ",
"u" to "у",
"f" to "ф",
"h" to "х",
"c" to "ц",
"č" to "ч",
"š" to "ш"
)
}
}