Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.45 KB

README.md

File metadata and controls

54 lines (37 loc) · 1.45 KB

Iuliia

Transliterate Cyrillic → Latin in every possible way

Transliteration means representing Cyrillic data (mainly names and geographic locations) with Latin letters. It is used for international passports, visas, green cards, driving licenses, mail and goods delivery etc.

Iuliia makes transliteration as easy as:

import it.orlov.iuliia.Schema.MOSMETRO
import it.orlov.iuliia.translate

fun main() {
    println(MOSMETRO.translate("Юлия"))
}

Why use Iuliia

  • 20 transliteration schemas (rule sets), including all main international and Russian standards.
  • Correctly implements not only the base mapping, but all the special rules for letter combinations and word endings ( AFAIK, Iuliia is the only library which does so).

For schema details and other information, see iuliia.ru (in Russian).

Issues and limitations

Installation

Gradle

dependencies {
    implementation 'it.orlov.iuliia:iuliia:1.0.1'
}

Maven

<dependency>
    <groupId>it.orlov.iuliia</groupId>
    <artifactId>iuliia</artifactId>
    <version>1.0.1</version>
</dependency>

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Make sure to add or update tests as appropriate.