Transliterate Cyrillic → Latin in every possible way
This is the C# port of the Python iuliia package
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:
IuliiaTranslator.Translate("Юлия Щеглова", Schemas.Mosmetro);
> "Yuliya Scheglova"
- 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.
- Simple API and zero third-party dependencies.
Install-Package Iuliia -Version 2.0.4
IuliiaTranslator.Translate("Юлия Щеглова", Schemas.Mosmetro);
> "Yuliya Scheglova"
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.