From f88186dacc8571fbc90da0d8e44a519e935aa64a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristofer=20Rolf=20S=C3=B6derstr=C3=B6m?= Date: Thu, 19 Oct 2023 09:26:43 +0200 Subject: [PATCH] Update app.py --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 5511129..328825e 100644 --- a/app.py +++ b/app.py @@ -92,7 +92,7 @@ class App: self.progress_bar.start() # Setting path and files glob_file = get_path(path) - info_path = 'I will transcribe all eligible audio/video files in the path: {}\n\nContinue?'.format(path) + info_path = 'Continue?' answer = messagebox.askyesno("Confirmation", info_path) if not answer: self.progress_bar.stop() @@ -107,7 +107,7 @@ class App: messagebox.showinfo("Files not found error!", 'Nothing found, choose another folder.') pass except ValueError: - messagebox.showinfo("Language error!", 'See {} for supported languages'.format(error_language)) + messagebox.showinfo("Invalid language name, you might have to clear the default text to continue!") # Hide progress bar self.progress_bar.stop() self.progress_bar.pack_forget()