(Text)
| 15 | |
| 16 | # make a simple function that will translate any language to english |
| 17 | def text_translator(Text): |
| 18 | translator = Translator() |
| 19 | translated = translator.translate(Text, dest="en") |
| 20 | return translated.text |
| 21 | |
| 22 | |
| 23 | text_translator( |
no outgoing calls
no test coverage detected