in this video Aditya is making a translator using python.very easy.
download python = https://www.python.org/
google languages=
https://www.labnol.org/code/19899-goo...
code -
from googletrans import Translator
do_again = 'yes'
while do_again == 'yes':
language = str(input('what is your language? ')
sentence = str(input('what is your sentence? ')
trans = Translator()
translated_sentence = trans.translate('sentence,src='en',dest=language)
print(translated_sentence.text)
do_again = str(input('do you want to continue')