Simple Translator

This Program use Google's undocumented api, service may not be available at some day...

Install

sh cargo install google_translator

Usage

```text

translate --help

Usage: translate [OPTIONS]

Options: -i, --input Input language [default: auto] -o, --output Output language [default: en] -m, --mode Translator mode, 1 - one line, 2 - file, 3 - Interactive [default: 1] -a, --args Args -f, --output file Output File -h, --help Print help information ```

or...

```rust

[tokio::test]

async fn testtranslatemultilines() { let text = vec!["Hello, world!", "내 이름은 민수야.", "나는 20살이야."] .iter() .map(|x| x.tostring()) .collect(); let inputlang = "auto".tostring(); let outputlang = "fr".tostring(); let result = translate(text, inputlang, outputlang).await.unwrap(); dbg!(result); assert!(true); } ```

For example

Hacking

If translation doesn't work well, You can change the API of the source code according to the API format transmitted from inside Google translator.

In source, buildgoogleapiquery function is prepared for multiple lines of input using \r\n, and sendgoogleapiquery function is prepared for multiple lines of output.

If you want to get multiple lines of output, see the comment of sendgoogleapi_query function, you can get values for similar results.

Version

End

The project is a toy project developed based on content that was used for a while while working, and may or may not be improved, error corrected.

Because it uses Google's undocumented API, please be careful when using it.