Monday, May 6, 2024
35
rated 0 times [  35] [ 0]  / answers: 1 / hits: 25097  / 2 Years ago, tue, february 8, 2022, 10:27:26

I would like to translate words from English to Language X trough terminal




  • If it is possible, what kind of dictionaries there are?


  • Is it possible to use online services like webxicon.org trough terminal?



More From » command-line

 Answers
4

For offline use:



You can install dictd server and use Freedict Dictionary database for word translations.



Install dictd:



sudo apt-get install dictd


dictd



Install translation database. eg. dict-freedict-eng-fra for English to French translation, dict-freedict-eng-spa for English to Spanish translation.



sudo apt-get install dict-freedict-eng-fra
sudo apt-get install dict-freedict-eng-spa


freedictDB



Usage:



View list of databases:



dict -D


Use a particular database eg. for English to Spanish translation:



dict -d fd-eng-spa "how are you?"


snapHowRU



For online use:



Install libtranslate-bin with:



sudo apt-get install libtranslate-bin


eg. using online google translate engine:



echo "what are you doing" | translate-bin -s google -f en -t fr


onlineGoogleTranslate






Offline English dictionary in Terminal:



Installing English dictionary databeses (gcide, wn, devil):



sudo apt-get install dict-gcide
sudo apt-get install dict-wn
sudo apt-get install dict-devil


Installing English Thesaurus database (moby-thesaurus):



sudo apt-get install dict-moby-thesaurus


Usage:




  1. Using a particular database (eg. WordNet - wn):



    dict -d wn "dictionary"

  2. Not specifying a dict-database will output definitions/translations/thesaurus from all available databases. eg.



    dict "dictionary"


[#28285] Tuesday, February 8, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
deringach

Total Points: 412
Total Questions: 107
Total Answers: 101

Location: Palestine
Member since Tue, Jul 20, 2021
3 Years ago
deringach questions
Sat, Oct 30, 21, 17:38, 3 Years ago
Fri, Oct 21, 22, 16:34, 2 Years ago
Tue, Feb 15, 22, 22:33, 2 Years ago
Tue, Feb 7, 23, 03:57, 1 Year ago
;