1.1.7 • Published 5 years ago

translingual v1.1.7

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
5 years ago

Translingual - Multilingual transliteration - Phonetic translation using transcription.

npm version node version npm downloads Gitter Total alerts Language grade: JavaScript Scrutinizer Code Quality Known Vulnerabilities License Repo size Build status Beerpay Liberapay GitHub stars

Install

$ npm i -g translingual

Usage

Via bash:

$ trans 'Hello world!' en ru
# "Эллoу Вoурлд!"

As code:

const trans = require('translingual');

var result = trans.ling('Hello world!', 'en', 'ru');
console.log(result); // This will print: "Эллoу Вoурлд!"

Or using vanilla JS in your browser:

<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/translingual@1.1.7/dist/translingual.min.js"></script>
<script type="text/javascript">
	var result = Trans.ling('Hello world!', 'en', 'ru');
	console.log(result); // This will print: "Эллoу Вoурлд!"
</script>

See live Demo

Description

This small and cool module can phonatically visualize a sentense from one language to another. For this I use transcription. I translate a sentense from any of the supported original languages to transcription, and from that I form back a sentense on any currently supported language.

NOTE: Semitic languages like Hebrew and Arabic are really problematic to translate into transcription.

Spported Languages

Roadmap

  • Add more languages.

License

APACHE-2.0 (see the LICENSE files in the repository).

Donate

Have fun and if you like it, leave a tip for a cup of beer or directly donate to our cause

1.1.7

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago