-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathen.ts
3182 lines (3182 loc) · 149 KB
/
en.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="en_US" sourcelanguage="zh_CN">
<context>
<name></name>
<message>
<source>选择模型文件所在的文件夹</source>
<translation type="vanished">Select the folder where the model file is located</translation>
</message>
<message>
<source>选择缓存文件夹</source>
<translation type="vanished">Select cache folder</translation>
</message>
<message>
<source>选择音频文件</source>
<translation type="vanished">Select Target File</translation>
</message>
<message>
<source>模型未加载!进程退出</source>
<translation type="vanished">The model has not been loaded</translation>
</message>
<message>
<source>存在无效文件:</source>
<translation type="vanished">Invalid file exists:</translation>
</message>
<message>
<source> 开始 </source>
<translation type="obsolete"> Start </translation>
</message>
<message>
<source>退出</source>
<translation type="vanished">Quit</translation>
</message>
<message>
<source>是否要退出程序?</source>
<translation type="vanished">DoYou want to Quit?</translation>
</message>
<message>
<location filename="faster_whisper_gui/convertModel.py" line="35"/>
<source>Use local file is True, found applicable local cache:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="faster_whisper_gui/convertModel.py" line="40"/>
<location filename="faster_whisper_gui/convertModel.py" line="49"/>
<source>Not a valid model name:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="faster_whisper_gui/convertModel.py" line="45"/>
<source>No valid local cache was found and will download:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="faster_whisper_gui/convertModel.py" line="55"/>
<source>Download model: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="faster_whisper_gui/convertModel.py" line="58"/>
<source>target model: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="faster_whisper_gui/convertModel.py" line="60"/>
<source>Initializing</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="faster_whisper_gui/convertModel.py" line="79"/>
<source>
Initialization complete!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="faster_whisper_gui/convertModel.py" line="81"/>
<source>
Failed to complete initialization!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="faster_whisper_gui/convertModel.py" line="84"/>
<source>Convert</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="faster_whisper_gui/convertModel.py" line="96"/>
<source>
Over</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AboutPageNavigationInterface</name>
<message>
<source>
使用本软件即代表您已阅读并同意以下用户协议:
· 您同意在遵守您所在国家或地区的法律法规的前提下使用此软件。
· 您不得实施包括但不限于以下行为,也不得为任何违反法律法规的行为提供便利:
- 反对宪法所规定的基本原则的。
- 危害国家安全、泄露国家秘密、颠覆国家政权,破坏国家统一的。
- 损害国家荣誉和利益的。
- 煽动民族仇恨、民族歧视,破坏民族团结的。
- 破坏国家宗教政策,宣扬邪教和封建迷信的。
- 散布谣言,扰乱社会秩序,破坏社会稳定的。
- 散布淫秽色情、赌博、暴力、凶杀、恐怖主义或教唆犯罪的。
- 侮辱或诽谤他人,侵害他人合法权益的。
- 含有法律、行政法规禁止的其他内容的。
· 因您的数据的产生、收集、处理、使用等任何相关事项存在违反法律法规等情况而造成的全部后果及责任均由您自行承担。
</source>
<translation type="vanished">
By using this software, you have read and agreed to the following user agreement:
· You agree to use this software in compliance with the laws of your country or region.
· You may not perform, including, but not limited to, the following acts, nor facilitate any violation of laws and regulations:
-those who oppose the basic principles laid down in the Constitution.
-endangering national security, divulging state secrets, subverting state power and undermining national unity.
-harming the honor and interests of the country.
-inciting national hatred and racial discrimination.
-sabotaging the country's religious policy and promoting cults.
-spreading rumors, disturbing social order and undermining social stability.
-spreading pornography, gambling, violence, murder, terrorism or abetting crime.
-insulting or slandering others and infringing upon the legitimate rights and interests of others.
-containing other contents prohibited by law.
· All consequences and responsibilities caused by violations of the law in any related matters such as the generation, collection,
processing and use of your data shall be borne by you.
</translation>
</message>
<message>
<location filename="faster_whisper_gui/aboutPageNavigationInterface.py" line="103"/>
<source>
使用本软件即代表您已阅读并同意以下用户协议:
· 您同意在遵守您所在国家或地区的法律法规的前提下使用此软件。
· 您不得实施包括但不限于以下行为,也不得为任何违反法律法规的行为提供便利:
- 反对宪法所规定的基本原则的。
- 危害国家安全、泄露国家秘密、颠覆国家政权,破坏国家统一的。
- 损害国家荣誉和利益的。
- 煽动民族仇恨、民族歧视,破坏民族团结的。
- 破坏国家宗教政策,宣扬邪教和封建迷信的。
- 散布谣言,扰乱社会秩序,破坏社会稳定的。
- 散布淫秽色情、赌博、暴力、凶杀、恐怖主义或教唆犯罪的。
- 侮辱或诽谤他人,侵害他人合法权益的。
- 含有法律、行政法规禁止的其他内容的。
· 因您的数据的产生、收集、处理、使用等任何相关事项存在违反法律法规等情况而造成的全部后果及责任均由您自行承担。
· 本软件不保证其服务不会中断,对服务的及时性、安全性、准确性也都不作保证。
· 本软件不对任何因使用本软件而可能遭致的意外或损失承担责任。
· 本软件所提供的任何信息、内容、材料、产品和服务均不构成任何投资建议。您应自行独立判断并承担可能的风险。
· 本软件完全免费,您不应该直接将本软件安装包本体用于商业售卖。
</source>
<translation>By using this software, you have read and agreed to the following user agreement:
· You agree to use this software in compliance with the laws of your country or region.
· You may not perform, including, but not limited to, the following acts, nor facilitate any violation of laws and regulations:
-those who oppose the basic principles laid down in the Constitution.
-endangering national security, divulging state secrets, subverting state power and undermining national unity.
-harming the honor and interests of the country.
-inciting national hatred and racial discrimination.
-sabotaging the country's religious policy and promoting cults.
-spreading rumors, disturbing social order and undermining social stability.
-spreading pornography, gambling, violence, murder, terrorism or abetting crime.
-insulting or slandering others and infringing upon the legitimate rights and interests of others.
-containing other contents prohibited by law.
· All consequences and responsibilities caused by violations of the law in any related matters such as the generation, collection,
processing and use of your data shall be borne by you.
</translation>
</message>
<message>
<location filename="faster_whisper_gui/aboutPageNavigationInterface.py" line="111"/>
<source>生成式人工智能程序用户协议</source>
<translation>Agreement</translation>
</message>
<message>
<location filename="faster_whisper_gui/aboutPageNavigationInterface.py" line="130"/>
<source>请我喝杯咖啡吧</source>
<translation>I just want a cup of latte</translation>
</message>
<message>
<source>协议</source>
<translation type="vanished">Agreement</translation>
</message>
</context>
<context>
<name>CustomMessageBox</name>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="602"/>
<source>确定</source>
<translation>OK</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="603"/>
<source>取消</source>
<translation>Cancel</translation>
</message>
</context>
<context>
<name>CustomTableView</name>
<message>
<source>复制</source>
<translation type="vanished">copy</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="340"/>
<source>复制字幕</source>
<translation>Copy As Subtitles</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="345"/>
<source>复制字幕内容</source>
<translation>only copy content</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="350"/>
<source>提前开始时间戳</source>
<translation>advance start timestamp</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="355"/>
<source>延后开始时间戳</source>
<translation>delay start timestamp</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="360"/>
<source>提前结束时间戳</source>
<translation>advance end timestamp</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="365"/>
<source>延后结束时间戳</source>
<translation>delay end timestamp</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="369"/>
<source>删除字幕行</source>
<translation>delete subtitles lines</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="377"/>
<source>设置说话人</source>
<translation>set speaker</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="382"/>
<source>合并字幕行</source>
<translation>merge subtitle lines</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="415"/>
<source>调整时间戳</source>
<translation>adjust timestamp</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="416"/>
<source>输入调整时长(ms)</source>
<translation>enter duration to adjust (ms)</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="524"/>
<source>说话人</source>
<translation>Speaker</translation>
</message>
<message>
<location filename="faster_whisper_gui/tableViewInterface.py" line="525"/>
<source>输入说话人</source>
<translation>Input speaker</translation>
</message>
</context>
<context>
<name>DemucsPageNavigation</name>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="125"/>
<source>使用 Demucs4.0 模型的 AVS(自动人声分离)方案</source>
<oldsource>使用 Demucs4.0 模型的 AVE(自动人声提取)方案</oldsource>
<translation>AVS(Automatic Vocal Separation) based on Demucs4.0</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="150"/>
<source>提取</source>
<translation>Extraction</translation>
</message>
</context>
<context>
<name>DemucsParamGroupWidget</name>
<message>
<source>All Stems</source>
<translation type="vanished">所有音轨</translation>
</message>
<message>
<source>Vocals</source>
<translation type="vanished">仅人声</translation>
</message>
<message>
<source>Other</source>
<translation type="vanished">仅其它</translation>
</message>
<message>
<source>Bass</source>
<translation type="vanished">仅贝斯声</translation>
</message>
<message>
<source>Drums</source>
<translation type="vanished">仅鼓声</translation>
</message>
<message>
<source>Vocals and Others</source>
<translation type="vanished">人声、背景声二分</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="36"/>
<source>所有音轨</source>
<translation>All Stems</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="37"/>
<source>仅人声</source>
<translation>Vocals</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="38"/>
<source>仅其它</source>
<translation>Other</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="39"/>
<source>仅贝斯声</source>
<translation>Bass</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="40"/>
<source>仅鼓点声</source>
<translation>Drums</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="42"/>
<source>人声、背景声二分</source>
<translation>Vocals and Others dichotomy</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="62"/>
<source>Demucs 参数</source>
<translation>Demucs Options</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="83"/>
<source>分段采样的段间重叠度,该值不宜过小,以免影响分段之间的分离结果的融合度</source>
<translation>The overlap between segments sampled by segments .Should not be too small, so as not to affect the fusion of the separation results between segments</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="85"/>
<source>采样重叠度</source>
<translation>Overlap</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="100"/>
<source>Demucs 是一个极其消耗计算机内存和显存的模型,
世界上没有任何计算机能够直接使用该模型处理长时音频数据
因此数据将按照该值所示的秒数,分段处理,值越大将越消耗计算机资源,但效果可能会有提升</source>
<translation>Demucs is a model that consumes extremely much computer memory and video memory.
No computer in the world can directly use this model to process long-term audio data.
Therefore, the data will be processed in segments according to the number of seconds shown by the value. The higher the value, the more computer resources will be consumed, but the effect may be improved</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="102"/>
<source>分段长度(s)</source>
<translation>Segment Length(s)</translation>
</message>
<message>
<location filename="faster_whisper_gui/demucsPageNavigationInterface.py" line="117"/>
<source>输出音轨</source>
<translation>Choose Stems</translation>
</message>
</context>
<context>
<name>EditSpeakerMessageBox</name>
<message>
<source>说话人</source>
<translation type="vanished">Speaker</translation>
</message>
<message>
<source>输入说话人</source>
<translation type="vanished">Input speaker</translation>
</message>
<message>
<source>确定</source>
<translation type="vanished">OK</translation>
</message>
<message>
<source>取消</source>
<translation type="vanished">Cancel</translation>
</message>
</context>
<context>
<name>FileNameListView</name>
<message>
<location filename="faster_whisper_gui/fileNameListViewInterface.py" line="73"/>
<source>存在无效文件:</source>
<translation>Invalid file :</translation>
</message>
<message>
<location filename="faster_whisper_gui/fileNameListViewInterface.py" line="80"/>
<source>存在无效文件,已剔除</source>
<translation>Invalid file exists and has been removed</translation>
</message>
<message>
<location filename="faster_whisper_gui/fileNameListViewInterface.py" line="102"/>
<source>已知的字幕格式文件已忽略:</source>
<translation>The known subtitle format file has been ignored:</translation>
</message>
<message>
<location filename="faster_whisper_gui/fileNameListViewInterface.py" line="157"/>
<source>不包含音频流的文件将被忽略:</source>
<translation>Files that do not contain audio streams are ignored:</translation>
</message>
<message>
<location filename="faster_whisper_gui/fileNameListViewInterface.py" line="195"/>
<source>重复添加的文件将被忽略:</source>
<translation>Repeatedly added files are ignored:</translation>
</message>
<message>
<source>剔除文件</source>
<translation type="vanished">Ignore Files</translation>
</message>
<message>
<source>存在无效文件,已剔除
</source>
<translation type="vanished">Invalid file , ignored
</translation>
</message>
<message>
<source>已知的字幕格式文件已忽略
</source>
<translation type="vanished">ignored subtitle files
</translation>
</message>
<message>
<location filename="faster_whisper_gui/fileNameListViewInterface.py" line="120"/>
<source>选择音频文件</source>
<translation>Select Target File</translation>
</message>
<message>
<source>忽略无效文件</source>
<translation type="vanished">Invalid file ignored</translation>
</message>
<message>
<source>不包含音频流的文件将被忽略:
</source>
<translation type="vanished">Files that do not contain audio streams are ignored:
</translation>
</message>
<message>
<source>忽略已存在的文件</source>
<translation type="vanished">ignored files in list</translation>
</message>
<message>
<source>重复添加的文件将被忽略:
</source>
<translation type="vanished">Repeatedly added files are ignored:
</translation>
</message>
<message>
<location filename="faster_whisper_gui/fileNameListViewInterface.py" line="246"/>
<source>音视频文件列表</source>
<translation>Audio-Video Files List</translation>
</message>
</context>
<context>
<name>HomePageNavigationinterface</name>
<message>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="18"/>
<source>Home</source>
<translation>Home</translation>
</message>
<message>
<source>faster-whisper 为主要后端的 ASR 及 AVE 软件</source>
<translation type="vanished">ASR and AVE software with faster-whisper as the main backend</translation>
</message>
<message>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="18"/>
<source>faster-whisper 为主要后端的 ASR 及 AVS 软件</source>
<translation>ASR and AVS software with faster-whisper as the main backend</translation>
</message>
<message>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="36"/>
<source>Demucs</source>
<translation>Demucs</translation>
</message>
<message>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="38"/>
<source>自动人声提取</source>
<translation>Automatic Vocal Extraction</translation>
</message>
<message>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="41"/>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="54"/>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="64"/>
<source>进入</source>
<translation>Enter</translation>
</message>
<message>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="49"/>
<source>faster-whisper</source>
<translation>faster-whisper</translation>
</message>
<message>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="51"/>
<source>自动人声识别</source>
<translation>Automatic Vocal Recognition</translation>
</message>
<message>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="53"/>
<source>设置参数</source>
<translation>Set Parameters</translation>
</message>
<message>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="61"/>
<source>whisperX</source>
<translation>whisperX</translation>
</message>
<message>
<location filename="faster_whisper_gui/homePageNavigationInterface.py" line="63"/>
<source>字幕后处理</source>
<translation>Subtitle Post-Processing</translation>
</message>
</context>
<context>
<name>MainWindows</name>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="174"/>
<source>选择缓存文件夹</source>
<translation>Select cache folder</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1033"/>
<source>对齐失败,检查 fasterwhispergui.log 文件可能会获取更多信息</source>
<translation>Alignment failed. Checking the fasterwhispergui.log file may get error messages</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1210"/>
<source>选择音频文件</source>
<translation>Select Target File</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="212"/>
<source>需要模型所在目录或者有效的模型名称。</source>
<translation>Model-dir or Model-name is needed.</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="159"/>
<source>Home</source>
<translation>Home</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="160"/>
<source>声乐分离</source>
<oldsource>声乐移除</oldsource>
<translation>Vocal Separation</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="161"/>
<source>模型参数</source>
<translation>Model Option</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="162"/>
<source>人声活动检测</source>
<translation>Voice Activity Detection</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="163"/>
<source>转写参数</source>
<translation>Transcribe Option</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="164"/>
<source>执行转写</source>
<translation>Process</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="165"/>
<source>whiperX及字幕编辑</source>
<translation>whisperX And Subtitle Edit</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="167"/>
<source>设置</source>
<translation>Setting</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="218"/>
<source>加载本地模型</source>
<translation>Load local model</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="221"/>
<source>在线下载模型</source>
<translation>Download Model Online</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="248"/>
<source>加载模型</source>
<translation>Load Model</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="248"/>
<source>模型加载中,请稍候</source>
<translation>Please wait a moment while the model is loading</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="321"/>
<location filename="faster_whisper_gui/mainWindows.py" line="405"/>
<source>模型未加载!进程退出</source>
<translation>The model has not been loaded</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="339"/>
<source> 取消 </source>
<translation> Cancel </translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="407"/>
<location filename="faster_whisper_gui/mainWindows.py" line="418"/>
<location filename="faster_whisper_gui/mainWindows.py" line="897"/>
<location filename="faster_whisper_gui/mainWindows.py" line="950"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1031"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1048"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1085"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1134"/>
<source>错误</source>
<translation>Error</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="407"/>
<source>模型未加载!</source>
<translation>The model has not been loaded!</translation>
</message>
<message>
<source>存在无效文件:</source>
<translation type="vanished">Invalid file exists:</translation>
</message>
<message>
<source> 取消</source>
<translation type="vanished"> Cancel</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="449"/>
<source>音频处理</source>
<translation>Audio process</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="449"/>
<source>正在处理中</source>
<translation>on processing</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="442"/>
<location filename="faster_whisper_gui/mainWindows.py" line="459"/>
<location filename="faster_whisper_gui/mainWindows.py" line="479"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1358"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1371"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1373"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1376"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1415"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1460"/>
<source>取消</source>
<translation>Cancel</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="211"/>
<source>模型名称错误</source>
<translation>Model Name Error</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="419"/>
<source>没有选择有效的音视频文件作为转写对象</source>
<translation>No valid audio and video file is selected</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="460"/>
<source>是否取消操作?</source>
<translation>Do you want to cancel pocess?</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="467"/>
<source>已取消</source>
<translation>Canceled</translation>
</message>
<message>
<source> 开始</source>
<translation type="vanished"> Process</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="472"/>
<source>开始</source>
<translation>Start</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="479"/>
<source>操作已被用户取消</source>
<translation>The operation has been cancelled by the user</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="635"/>
<location filename="faster_whisper_gui/mainWindows.py" line="948"/>
<location filename="faster_whisper_gui/mainWindows.py" line="976"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1015"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1132"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1323"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1340"/>
<source>结束</source>
<translation>Over</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="644"/>
<source>成功</source>
<translation>Succeed</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="645"/>
<source>转写完成</source>
<translation>Over</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="665"/>
<source>转写结束</source>
<translation>transcribe over</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="665"/>
<source>是否跳转到输出目录?</source>
<translation>Go To Output Page?</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="894"/>
<source>Model Convert only Work In Onlie-Mode</source>
<translation>Model Convert only Work In Onlie-Mode</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="898"/>
<source>转换功能仅在在线模式下工作</source>
<translation>Convert function only work in online-mode</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="908"/>
<source>Convert Model: </source>
<translation>Convert Model: </translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="940"/>
<source>加载完成</source>
<translation>Load Over</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="942"/>
<source>加载结束</source>
<translation>Load Over</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="944"/>
<source>模型加载成功</source>
<translation>Model load successful</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="952"/>
<source>加载失败,退出并检查 fasterWhispergui.log 文件可能会获取错误信息。</source>
<translation>Failed to load Model, exit and check for file "fasterwhispergui.log" may get error information.</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="967"/>
<source>选择模型文件所在的文件夹</source>
<translation>Select the folder where the model file is located</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="976"/>
<location filename="faster_whisper_gui/mainWindows.py" line="997"/>
<source>保存文件</source>
<translation>Save to files</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="979"/>
<source>保存完成</source>
<translation>Saved</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="980"/>
<source>字幕文件已保存</source>
<translation>Subtitle Files saved</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="997"/>
<source>输出字幕文件</source>
<translation>Output to files</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1015"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1026"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1059"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1119"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1132"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1143"/>
<source>WhisperX</source>
<translation>WhisperX</translation>
</message>
<message>
<source>对齐失败,退出软件后检查 fasterwhispergui.log 文件可能会获取错误信息</source>
<translation type="vanished">Alignment failed. Checking the fasterwhispergui.log file after exiting the software may get error messages</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1027"/>
<source>时间戳对齐结束</source>
<translation>Over</translation>
</message>
<message>
<source>对齐失败,退出软件后检查 fasterwhispergui.log 文件可能会获取更多信息</source>
<translation type="vanished">Alignment failed. Checking the fasterwhispergui.log file after exiting the software may get error messages</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1050"/>
<source>没有有效的 音频-字幕 转写结果,无法进行对齐</source>
<translation>No valid audio-subtitle transliteration result, unable to align</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1059"/>
<source>时间戳对齐</source>
<translation>Timestamp alignment</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1087"/>
<source>没有有效的 音频-字幕 转写结果,无法输出人声分离结果</source>
<translation>No valid audio-subtitle transliteration result, unable to output human voice separation result</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1119"/>
<source>声源分离</source>
<translation>Speaker diarize</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1134"/>
<source>声源分离失败,退出软件后检查 fasterwhispergui.log 文件可能会获取错误信息</source>
<translation>Sound source separation failed. Checking the fasterwhispergui.log file after exiting the software may get error messages</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1144"/>
<source>声源分离结束</source>
<translation>Over</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1206"/>
<source>选择语言</source>
<translation>Choose Language</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1206"/>
<source>必须选择正确的字幕语言</source>
<translation>Must choose the correct subtitle language</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1216"/>
<source>文件无效</source>
<translation>The file is invalid</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1217"/>
<source>不是音视频文件或文件无法找到音频流,请检查文件及文件格式</source>
<translation>Not an audio / video file or the file cannot find the audio stream. Please check the file and file format</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1249"/>
<source>选择字幕文件</source>
<translation>Select a subtitle file</translation>
</message>
<message>
<source>无效文件</source>
<translation type="vanished">Invalid file</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1259"/>
<source>必须要有有效的字幕文件</source>
<translation>There must be a valid subtitle file</translation>
</message>
<message>
<source>读取字幕文件失败</source>
<translation type="vanished">failed to read subtitle file</translation>
</message>
<message>
<source>读取失败 文件可能使用了不同的编码
检查 fasterwhispergui.log 文件可能会获取更多信息</source>
<translation type="vanished">read files failed this file may use a different encoding
Checking the fasterwhispergui.log file after exiting the software may get error messages</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1259"/>
<source>没有字幕文件</source>
<translation>No Subtitle Files</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1273"/>
<source>读取失败</source>
<translation>Failed to read subtitle file</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1273"/>
<source>读取字幕文件失败
检查日志文件可能会获取更多信息</source>
<translation>Failed to read subtitle file \n check log file to get more information</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1307"/>
<source>提取</source>
<translation>Extraction</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1315"/>
<source>音频重采样</source>
<translation>Resample Audio</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1317"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1412"/>
<source>音轨分离</source>
<translation>Tracks Separation</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1319"/>
<source>保存音频文件</source>
<translation>Save To Audio Files</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1321"/>
<source>加载模型...</source>
<translation>Load Model ...</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1326"/>
<source>下载模型...</source>
<translation>Download Model ...</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1336"/>
<source>分离完成</source>
<translation>Separation Over</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1337"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1341"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1412"/>
<source>Demucs</source>
<translation>Demucs</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1337"/>
<source>音轨分离成功</source>
<translation>Separation Succeed</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1341"/>
<source>分离失败</source>
<translation>Separation Failed</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1358"/>
<source>确定取消?</source>
<translation>Cancel?</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1370"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1373"/>
<source>正在取消操作</source>
<translation>Cancaling</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1376"/>
<source>用户取消操作</source>
<translation>The user cancels the operation</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1385"/>
<source>文件错误</source>
<translation>File Error</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1385"/>
<source>没有选择有效的音视频文件</source>
<translation>No valid audio and video file is selected</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1444"/>
<location filename="faster_whisper_gui/mainWindows.py" line="1482"/>
<source>卸载模型失败</source>
<translation>failed to unload model</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1444"/>
<source>未加载模型</source>
<translation>model is not loaded</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1451"/>
<source>模型正在使用</source>
<translation>model is running</translation>
</message>
<message>
<location filename="faster_whisper_gui/mainWindows.py" line="1451"/>
<source>语音识别正在运行</source>