Socket
Socket
Sign inDemoInstall

github.com/StalkR/discordgo-translate

Package Overview
Dependencies
4
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    github.com/StalkR/discordgo-translate

Package translate is a Discord bot library to translate messages with Google Translate API. Discord bot setup: Add a Google Translate API key and start the bot. To translate a message into a given language, react to it with the desired language flag. The source language is automatically detected.


Version published

Readme

Source

Discord Translate bot

Build Status Godoc

A Translate bot using discordgo and Google Translate API.

To translate a message into a given language, react to it with the desired language flag. The source language is automatically detected.

Example

import (
  translate "github.com/StalkR/discordgo-translate"
)

b := translate.New("<bot token>", "<Google Translate API token>")
if err := b.Start(); err != nil {
  log.Fatal(err)
}
defer b.Close()

log.Printf("Discord Translate bot running - press CTRL-C to exit")
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt, os.Kill)
<-sc

Acknowledgements

Discord Go bindings: bwmarrin/discordgo (doc).

Inspiration: Smoogle Translate, unfortunately the developers intentionally refuse to translate messages from other bots, so I had to make my own.

Bugs, comments, questions

Create a new issue.

FAQs

Last updated on 04 Aug 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc