Is there a way to auto translate toots in my feed(s)? It is a pain to copy-paste to google translate each time.
@shumbm I am pretty sure, there should exist some addon for your browser to solve this issue. But if you are a Linux user, you can translate any selectable text into English using the next shell-script:
```
curl -Ls "https://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=en&dt=t" --data-urlencode "q=$(xclip -o)" | jq '.[] | select(type == "array" and length==1) | arrays | .[][0]' -r | xclip -i -selection c
```
@zen I want this to be convenient. Using script is even worse that copying to google translate window.