Skip to content

Commit f88186d

Browse files
authored
Update app.py
1 parent 3f5c149 commit f88186d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def transcribe_thread(self):
9292
self.progress_bar.start()
9393
# Setting path and files
9494
glob_file = get_path(path)
95-
info_path = 'I will transcribe all eligible audio/video files in the path: {}\n\nContinue?'.format(path)
95+
info_path = 'Continue?'
9696
answer = messagebox.askyesno("Confirmation", info_path)
9797
if not answer:
9898
self.progress_bar.stop()
@@ -107,7 +107,7 @@ def transcribe_thread(self):
107107
messagebox.showinfo("Files not found error!", 'Nothing found, choose another folder.')
108108
pass
109109
except ValueError:
110-
messagebox.showinfo("Language error!", 'See {} for supported languages'.format(error_language))
110+
messagebox.showinfo("Invalid language name, you might have to clear the default text to continue!")
111111
# Hide progress bar
112112
self.progress_bar.stop()
113113
self.progress_bar.pack_forget()

0 commit comments

Comments
 (0)