Revert translation
Browse files
app.py
CHANGED
@@ -246,8 +246,8 @@ def clear_text():
|
|
246 |
|
247 |
def translate_text(text_input,text_output):
|
248 |
|
249 |
-
|
250 |
-
|
251 |
return text_input,text_output
|
252 |
|
253 |
|
|
|
246 |
|
247 |
def translate_text(text_input,text_output):
|
248 |
|
249 |
+
text_input = translate(f"{text_input}")
|
250 |
+
text_output = translate(f"{text_output}")
|
251 |
return text_input,text_output
|
252 |
|
253 |
|