@@ -242,7 +242,7 @@ def version_higher(version1, version2, subversion_level=99) -> int:
242242 return 2
243243 if i >= subversion_level :
244244 break
245- # must be completly equal
245+ # must be completely equal
246246 return 0
247247
248248config ['app_version' ] = app_version
@@ -1793,7 +1793,7 @@ def update_queue_table(self):
17931793 if row ['frame' ].winfo_exists ():
17941794 row ['frame' ].destroy ()
17951795
1796- # Udate queue tab title
1796+ # Update queue tab title
17971797 new_name = f'{ t ("tab_queue" )} ({ len (self .queue .jobs ) - len (self .queue .get_waiting_jobs ()) - len (self .queue .get_running_jobs ())} /{ len (self .queue .jobs )} )'
17981798 old_name = self .tabview ._name_list [1 ]
17991799 if new_name != old_name :
@@ -1981,7 +1981,7 @@ def _on_queue_row_open_partial(self, job: TranscriptionJob):
19811981 pass
19821982
19831983 def launch_editor (self , file = '' ):
1984- # Launch the editor in a seperate process so that in can stay running even if noScribe quits.
1984+ # Launch the editor in a separate process so that in can stay running even if noScribe quits.
19851985 # Source: https://stackoverflow.com/questions/13243807/popen-waiting-for-child-process-even-when-the-immediate-child-has-terminated/13256908#13256908
19861986 # set system/version dependent "start_new_session" analogs
19871987
@@ -2633,7 +2633,7 @@ def find_speaker(diarization, transcript_start, transcript_end) -> str:
26332633 self .update_queue_table ()
26342634
26352635 self .logn ()
2636- self .logn (t ('start_identifiying_speakers ' ), 'highlight' )
2636+ self .logn (t ('start_identifying_speakers ' ), 'highlight' )
26372637 self .logn (t ('loading_pyannote' ))
26382638 # self.set_progress(1, 100, job.speaker_detection)
26392639
@@ -2842,7 +2842,7 @@ def __init__(self, d):
28422842 # get time of the segment in milliseconds
28432843 start = round (segment .start * 1000.0 )
28442844 end = round (segment .end * 1000.0 )
2845- # if we skipped a part at the beginning of the audio we have to add this here again, otherwise the timestaps will not match the original audio:
2845+ # if we skipped a part at the beginning of the audio we have to add this here again, otherwise the timestamps will not match the original audio:
28462846 orig_audio_start = job .start + start
28472847 orig_audio_end = job .start + end
28482848
0 commit comments