Skip to content

Xavier4492/matrix-translate-bot

 
 

Repository files navigation

translate

A (almost) ready to go standalone maubot to translate words using Google Translate. This is based-on/forked-from https://github.com/maubot/translate ❤️

In comparison too the upstream repo this bot has a auto-translation based on regex match of the room name.

WARNING: this bot sends every message to the google translation API. You chat will not be secret anymore in spite of e2ee enabled in your chat room.

Setup

Requirements

  • A running matrix server with a user account for the bot

Install

git clone git@github.com:motey/matrix-translate-bot.git

cd matrix-translate-bot

docker-compose up

wait until you get the message Please modify the config file to your liking and restart the container. Press ctrl+c to stop the compose stack.

edit ./_state/config/config.yaml to your configuration. See next chapter to enable encription

Enable end2end-encryption

To enable e2ee for your bot you need to set user.credentials.access_token and user.credentials.device_id in your config.yaml.
The easist way for me to obtain these was via curl:

curl -X POST --header 'Content-Type: application/json' -d '{
    "identifier": { "type": "m.id.user", "user": "USERNAME" },
    "password": "PASSWORD",
    "type": "m.login.password"
}' 'https://MATRIXHOSTNAME/_matrix/client/r0/login'

Replace USERNAME with your bot account name, PASSWORD with its password and MATRIXHOSTNAME with the domain of your matrix server.
You will get a reply containing a device id and a access token. Use these to fill out user.credentialsin your config.yaml.

Start

docker-compose up -d

Thats it...

Usage

Command mode

After inviting the bot to your room, simply use the !translate command:

!translate en ru Hello world.

which results in

Translate Bot:
> rubo77
> !translate en ru Hello world.
Привет, мир.

You can also use the alias tr:

!tr en ru Hello world.

The first parameter (source language) can be set to auto or omitted entirely to let Google Translate detect the source language. Additionally, you can reply to a message with !tr <from> <to> (no text) to translate the message you replied to.

Auto mode

Configure plugin_config.auto_translate in config.yaml to match the room(s) you want auto-tranlate to be enabled. You can also enter a regex match pattern to enable auto-translate to a whole class of rooms or certain domains, or whatever you need.

You still need to invite the bot manualy into the room(s).
After that the bot will try to detect the language of every message (based on the enabled languages in plugin_config.auto_translate) and will translate it to every other language configured in plugin_config.auto_translate

ToDo/Planned

  • Enable auto-translate for a room via command

About

A maubot plugin to translate words.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 97.6%
  • Shell 2.4%