I whipped up a quick action to take some selected text and open Google Translate with it. Swap out the source, sl, and target, tl, with your most commonly used languages.
sl
tl
Install script
// Menu: JA → EN// Description: Translate selected text into with Google Translate.// Author: Brandon Pittman// Shortcut: ctrl j import "@johnlindquist/kit"; const origin = "https://translate.google.com";const text = await getSelectedText();const sl = "ja";const tl = "en";const op = "translate"; const url = encodeURI(`${origin}/?sl=${sl}&tl=${tl}&text=${text}&op=${op}`); exec(`open "${url}"`, { encoding: "utf8" });