Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SamirPaulb committed Nov 2, 2023
1 parent 59e0fa4 commit 556301d
Show file tree
Hide file tree
Showing 19 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
.env
.build
.env
Binary file modified build/exe.win-amd64-3.10/lib/asyncio/__main__.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/asyncio/base_events.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/charset_normalizer/api.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/charset_normalizer/constant.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/charset_normalizer/utils.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/email/message.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/google/__init__.pyc
Binary file not shown.
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/http/client.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/lib2to3/fixer_util.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/lib2to3/pgen2/tokenize.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/library.zip
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/soupsieve/css_parser.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/speech_recognition/audio.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/urllib3/_request_methods.pyc
Binary file not shown.
Binary file modified build/exe.win-amd64-3.10/lib/urllib3/util/request.pyc
Binary file not shown.
Binary file modified dist/voice-translator-2.0.1-win64.msi
Binary file not shown.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def update_translation():
try:
speech_text = r.recognize_google(audio)
# print(speech_text)
speech_text_transliteration = transliterate_text(speech_text, lang_code=input_lang.get()) if input_lang.get() != 'auto' else speech_text
speech_text_transliteration = transliterate_text(speech_text, lang_code=input_lang.get()) if input_lang.get() not in ('auto', 'en') else speech_text
input_text.insert(tk.END, f"{speech_text_transliteration}\n")
if speech_text.lower() in {'exit', 'stop'}:
keep_running = False
Expand Down

0 comments on commit 556301d

Please sign in to comment.