Skip to content

tasarozan/alphabet-translator

Repository files navigation

alphabet-translator

Build Status Coverage Status

Translate latin, cyrillic(Bulgarian, Ukrainian or Macedonian), Greek alphabets to each other

Installation

Install the library

npm i alphabet-translator

Usage

Currently you have 4 language choices but more are coming!

1- 'cyrillic-macedonian' 2- 'cyrillic-bulgarian' 3- 'cyrillic-ukrainian' 4- 'greek'

const alphabetTranslator = require('alphabet-translator')

alphabetTranslator(string, targetLanguage, originalLanguage)

targetLanguage is 'greek' and originalLanguage is 'latin' by default!

Examples

For latin to latin to cyrillic-macedonian;

const alphabetTranslator = require('alphabet-translator')

alphabetTranslator('sinus', 'cyrillic-macedonian')
//output 'синус'

For latin to cyrillic-bulgarian;

const alphabetTranslator = require('alphabet-translator')

alphabetTranslator('hello', 'cyrillic-bulgarian')
//output 'хeллo'

For latin to cyrillic-ukrainian;

const alphabetTranslator = require('alphabet-translator')

alphabetTranslator('translator', 'cyrillic-ukrainian')
//output 'tрaнслatoр'

For latin to greek;

const alphabetTranslator = require('alphabet-translator')

alphabetTranslator('alphabet', 'greek')
//output 'αλπηαβετ'

For greek to latin;

const alphabetTranslator = require('alphabet-translator')

alphabetTranslator('oζαν', 'latin', 'greek')
//output 'ozan'

For greek to cyrillic-ukrainian;

const alphabetTranslator = require('alphabet-translator')

alphabetTranslator('σινψσ', 'cyrillic-ukrainian', 'greek')
//output 'сiнус'

License

MIT License

Copyright (c) 2021 Ozan Taşar

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.