Linux中使用Goldendict添加谷歌翻译

  1. 打开Terminal,输入以下命令。(若因缺少相关组件而报错,请用pip install安装相关组件。)
	$ git clone https://github.com/soimort/translate-shell
	$ cd translate-shell/
	$ make
	$ sudo make install
  1. 打开GoldenDict,在菜单编辑-词典-词典来源-程序中,点击添加,勾上已启用,在类型中选Plain Text,在名称填写google,在命令中输入

    trans -e google -s auto -t zh-CN -show-original y -show-original-phonetics n -show-translation y -no-ansi -show-translation-phonetics n -show-prompt-message n -show-languages n -show-original-dictionary n -show-dictionary n -show-alternatives n “%GDWORD%”

    然后点击OK即可。

    (命令中每个参数的具体含义可以在translate-shell的github中找到,大家可以自己调整需要的功能。translate-shell on github)

参考链接
参考链接

你可能感兴趣的:(Linux中使用Goldendict添加谷歌翻译)