-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathcn-mpveasysettings.ts
3019 lines (2997 loc) · 176 KB
/
cn-mpveasysettings.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="zh_CN" sourcelanguage="zh_CN">
<context>
<name>MainWindow</name>
<message>
<location filename="../mainwindow.ui" line="35"/>
<location filename="../mainwindow.ui" line="7509"/>
<location filename="../mainwindow.ui" line="7863"/>
<source>MPV-EASY设置</source>
<translation>MPV-EASY设置</translation>
</message>
<message>
<source><html><head/><body><p>调整后点击“确定”并重新运行MPV-EASY Player才会生效</p></body></html></source>
<translation type="vanished"><html><head/><body><p>调整后点击“确定”并重新运行MPV-EASY Player才会生效</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="207"/>
<source>常规</source>
<translation>常规</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="225"/>
<source>视频</source>
<translation>视频</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="234"/>
<source>音频</source>
<translation>音频</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="261"/>
<location filename="../mainwindow.ui" line="5411"/>
<location filename="../mainwindow.ui" line="6391"/>
<source>快捷键</source>
<translation>快捷键</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="279"/>
<source>其他</source>
<translation>其他</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="288"/>
<location filename="../mainwindow.ui" line="6577"/>
<source>文件关联</source>
<translation>文件关联</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="297"/>
<location filename="../mainwindow.ui" line="6777"/>
<location filename="../mainwindow.ui" line="6938"/>
<source>关闭UAC</source>
<translation></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="306"/>
<location filename="../mainwindow.ui" line="7024"/>
<source>关于</source>
<translation>关于</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="982"/>
<source>MPV-EASY无边框GUI的主色调:</source>
<translation>MPV-EASY无边框GUI的主色调:</translation>
</message>
<message>
<source><html><head/><body><p>1.【MPV-EASY无边框GUI】是一个不基于mpv的完整的GUI前端,此模式下mpv会转到后端运行,所以【MPV-EASY设置】界面中和mpv原生GUI有关的设置都会被自动禁用,也就是说,如果你想使用这些设置,请选择【mpv原生GUI】.<br/>2.【MPV-EASY无边框GUI】对mpv保持高度的兼容性,在此模式下依旧可以享受mpv的各种特性.比如,除了【esc】,其他快捷键会直接转发给mpv,你仍然可以使用键盘控制和使用各种lua脚本.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>1.【MPV-EASY无边框GUI】是一个不基于mpv的完整的GUI前端,此模式下mpv会转到后端运行,所以【MPV-EASY设置】界面中和mpv原生GUI有关的设置都会被自动禁用,也就是说,如果你想使用这些设置,请选择【mpv原生GUI】.<br/>2.【MPV-EASY无边框GUI】对mpv保持高度的兼容性,在此模式下依旧可以享受mpv的各种特性.比如,除了【esc】,其他快捷键会直接转发给mpv,你仍然可以使用键盘控制和使用各种lua脚本.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1346"/>
<source>运行模式</source>
<translation>运行模式</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="738"/>
<source>MPV-EASY无边框GUI的背景色:</source>
<translation>MPV-EASY无边框GUI的背景色:</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="3437"/>
<source>仿高斯模糊*</source>
<oldsource>仿动态高斯模糊*</oldsource>
<translation>仿高斯模糊*</translation>
</message>
<message>
<source><html><head/><body><p>帧率越高,仿高斯模糊的背景变化和视频画面的同步率越高,生效时cpu使用量也更多,但效率也越高。<br/>例如:<br/>帧率为24时,cpu使用率约为3%,而帧率为60时,cpu使用率仅约6%。</p></body></html></source>
<oldsource><html><head/><body><p>帧率越高,仿高斯模糊的背景变化和视频画面的同步率越高,生效时cpu使用量也更多,但效率也越高。<br/>例如:<br/>帧率为24时,cpu使用率约为5%,而帧率为48时,cpu使用率仅约7%。</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>帧率越高,仿高斯模糊的背景变化和视频画面的同步率越高,生效时cpu使用量也更多,但效率也越高。<br/>例如:<br/>帧率为24时,cpu使用率约为3%,而帧率为60时,cpu使用率仅约6%。</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="3451"/>
<source>帧率*:</source>
<translation>帧率*:</translation>
</message>
<message>
<source><html><head/><body><p>调节范围:120到255<br/>值越大,仿高斯模糊效果越明显,但逼真度也可能越低.</p></body></html></source>
<oldsource>调节范围:120到255
值越大,仿高斯模糊效果越明显,但逼真度也可能越低.
</oldsource>
<translation type="vanished"><html><head/><body><p>调节范围:120到255<br/>值越大,仿高斯模糊效果越明显,但逼真度也可能越低.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="3520"/>
<source>效果*:</source>
<translation>效果*:</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1552"/>
<source>注意事项</source>
<translation>注意事项</translation>
</message>
<message>
<source><html><head/><body><p>调节范围5-255.<br/>数值越小越透明.</p></body></html></source>
<oldsource><html><head/><body><p>调节范围5-255.</p><p>数值越小越透明.</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>调节范围5-255.<br/>数值越小越透明.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="676"/>
<source>半透明效果*</source>
<translation>半透明效果*</translation>
</message>
<message>
<source><html><head/><body><p>原生3=理论:★★★★★ 目前:★★★★★<br/>支持中文路径,由于windows对脚本的读取不友好,如果脚本依旧因为中文路径问题无法运行请使用其他运行模式</p></body></html></source>
<translation type="vanished"><html><head/><body><p>原生3=理论:★★★★★ 目前:★★★★★<br/>支持中文路径,由于windows对脚本的读取不友好,如果脚本依旧因为中文路径问题无法运行请使用其他运行模式</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1440"/>
<source>原生3</source>
<translation>原生3</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1578"/>
<source>运行模式注意事项:</source>
<translation>运行模式注意事项:</translation>
</message>
<message>
<source><html><head/><body><p>1.【原生1】【原生3】运行模式:【相对路径】以MPV-EASY Player.exe的路径作为参照物.<br/>2.其他运行模式:【相对路径】以mpv.exe的路径作为参照物.<br/>3.因此,当使用lua、js等脚本来增强mpv的功能时,如果脚本中使用【mp.utils.write_file】等命令+【相对路径】生成文件,此文件在【MPV-EASY运行模式】改变后,会因为参照物的改变生成在不同路径下.</p></body></html></source>
<oldsource><html><head/><body><p>1.【原生1】运行模式:【相对路径】以MPV-EASY Player.exe的路径作为参照物.<br/>2.非【原生1】运行模式:【相对路径】以mpv.exe的路径作为参照物.<br/>3.因此,当使用lua、js等脚本来增强mpv的功能时,如果脚本中使用【mp.utils.write_file】等命令+【相对路径】生成文件,此文件在【MPV-EASY运行模式】改变后,会因为参照物的改变生成在不同路径下.</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>1.【原生1】【原生3】运行模式:【相对路径】以MPV-EASY Player.exe的路径作为参照物.<br/>2.其他运行模式:【相对路径】以mpv.exe的路径作为参照物.<br/>3.因此,当使用lua、js等脚本来增强mpv的功能时,如果脚本中使用【mp.utils.write_file】等命令+【相对路径】生成文件,此文件在【MPV-EASY运行模式】改变后,会因为参照物的改变生成在不同路径下.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1648"/>
<source>常规(1)</source>
<translation>常规(1)</translation>
</message>
<message>
<source><html><head/><body><p>启用后会记住播放进度+【打开最近播放的文件】菜单项显示播放历史(注重隐私的话,请慎用)<br/>【打开最近播放的文件】-【刷新】可以手动更新播放历史<br/>对于播放列表文件(.m3u),【打开最近播放的文件】只会记录其中最后播放的那个文件<br/>此功能会对播放列表功能造成干扰,2个【忽略播放进度】可以消除干扰问题<br/>禁用此选项后会清除所有播放进度和播放历史</p></body></html></source>
<translation type="vanished"><html><head/><body><p>启用后会记住播放进度+【打开最近播放的文件】菜单项显示播放历史(注重隐私的话,请慎用)<br/>【打开最近播放的文件】-【刷新】可以手动更新播放历史<br/>对于播放列表文件(.m3u),【打开最近播放的文件】只会记录其中最后播放的那个文件<br/>此功能会对播放列表功能造成干扰,2个【忽略播放进度】可以消除干扰问题<br/>禁用此选项后会清除所有播放进度和播放历史</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1681"/>
<source>记住播放进度和播放历史*</source>
<oldsource>记住播放进度和播放列表*</oldsource>
<translation>记住播放进度和播放历史*</translation>
</message>
<message>
<source><html><head/><body><p>功能:<br/>立刻删除所有播放进度文件<br/>解决理论上进度文件太多导致的性能下降问题<br/>清理【打开最近播放的文件】菜单项<br/>注意:此功能不会清理正在播放的文件产生的历史记录</p></body></html></source>
<translation type="vanished"><html><head/><body><p>功能:<br/>立刻删除所有播放进度文件<br/>解决理论上进度文件太多导致的性能下降问题<br/>清理【打开最近播放的文件】菜单项<br/>注意:此功能不会清理正在播放的文件产生的历史记录</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1726"/>
<source>清理*</source>
<translation>清理*</translation>
</message>
<message>
<source><html><head/><body><p>仅【记住播放进度和播放历史】勾选时有效<br/>适用场景:所有播放行为<br/>激活后,仍旧记录播放历史但会忽略进度从头开始播放.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>仅【记住播放进度和播放历史】勾选时有效<br/>适用场景:所有播放行为<br/>激活后,仍旧记录播放历史但会忽略进度从头开始播放.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1764"/>
<source>忽略播放进度*</source>
<translation>忽略播放进度*</translation>
</message>
<message>
<source><html><head/><body><p>仅【记住播放进度和播放历史】勾选时有效<br/>适用场景: 针对播放手动、自动生成的播放列表及直接播放.m3u播放列表文件<br/>激活后,仍旧记录播放历史但会忽略进度从头开始播放.<br/>此参数能够解决播放播放列表与播放进度功能之间的干扰问题</p></body></html></source>
<translation type="vanished"><html><head/><body><p>仅【记住播放进度和播放历史】勾选时有效<br/>适用场景: 针对播放手动、自动生成的播放列表及直接播放.m3u播放列表文件<br/>激活后,仍旧记录播放历史但会忽略进度从头开始播放.<br/>此参数能够解决播放播放列表与播放进度功能之间的干扰问题</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1784"/>
<source>忽略播放进度(仅播放列表)*</source>
<translation>忽略播放进度(仅播放列表)*</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1805"/>
<source>自动加载为播放列表*</source>
<translation>自动加载为播放列表*</translation>
</message>
<message>
<source><html><head/><body><p>控制高级播放列表的快捷键请参考【快捷键】界面</p></body></html></source>
<translation type="vanished"><html><head/><body><p>控制高级播放列表的快捷键请参考【快捷键】界面</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>高级播放列表保存路径*</p></body></html></source>
<translation type="vanished"><html><head/><body><p>高级播放列表保存路径*</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1835"/>
<source>更改</source>
<translation>更改</translation>
</message>
<message>
<source><html><head/><body><p>不勾选时会切换到【自动音量】功能,运行后自动使用上次调整后的音量,而不总是100%音量</p></body></html></source>
<translation type="vanished"><html><head/><body><p>不勾选时会切换到【自动音量】功能,运行后自动使用上次调整后的音量,而不总是100%音量</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1883"/>
<source>启动时自动重置音量至*</source>
<translation>启动时自动重置音量至*</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1945"/>
<source>播放时播放界面置顶显示</source>
<translation>播放时播放界面置顶显示</translation>
</message>
<message>
<source><html><head/><body><p>恢复播放后会再次自动开启置顶显示.<br/>仅【播放时播放界面置顶显示】开启时生效</p></body></html></source>
<translation type="vanished"><html><head/><body><p>恢复播放后会再次自动开启置顶显示.<br/>仅【播放时播放界面置顶显示】开启时生效</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1961"/>
<source>播放暂停时自动暂时取消置顶显示*</source>
<translation>播放暂停时自动暂时取消置顶显示*</translation>
</message>
<message>
<source><html><head/><body><p>恢复播放界面后会再次自动开始播放.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>恢复播放界面后会再次自动开始播放.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1973"/>
<source>最小化播放界面时自动暂停播放*</source>
<translation>最小化播放界面时自动暂停播放*</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1980"/>
<source>播放结束不关闭播放界面</source>
<translation>播放结束不关闭播放界面</translation>
</message>
<message>
<source><html><head/><body><p>针对单个文件:重复播放&lt;当前文件&gt;(次数:无限).<br/>针对播放列表:重复播放&lt;当前文件&gt;(次数:无限)<br/>请根据使用场景有选择性的开启【重复播放】与【循环播放】<br/>【重复播放】优先级高于【循环播放】,不建议同时开启<br/>想要重复播放单个文件时:<br/>如果不使用【跳过片头】,【重复播放】效果更佳<br/>如果使用【跳过片头】,【循环播放】效果更佳</p></body></html></source>
<translation type="vanished"><html><head/><body><p>针对单个文件:重复播放&lt;当前文件&gt;(次数:无限).<br/>针对播放列表:重复播放&lt;当前文件&gt;(次数:无限)<br/>请根据使用场景有选择性的开启【重复播放】与【循环播放】<br/>【重复播放】优先级高于【循环播放】,不建议同时开启<br/>想要重复播放单个文件时:<br/>如果不使用【跳过片头】,【重复播放】效果更佳<br/>如果使用【跳过片头】,【循环播放】效果更佳</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1998"/>
<source>重复播放*</source>
<translation>重复播放*</translation>
</message>
<message>
<source><html><head/><body><p>针对单个文件:重复播放&lt;当前文件&gt;(次数:无限).<br/>针对播放列表:循环播放&lt;播放列表&gt;(次数:无限)<br/>请根据使用场景有选择性的开启【重复播放】与【循环播放】<br/>【重复播放】优先级高于【循环播放】,不建议同时开启<br/>想要重复播放单个文件时:<br/>如果不使用【跳过片头】,【重复播放】效果更佳<br/>如果使用【跳过片头】,【循环播放】效果更佳</p></body></html></source>
<translation type="vanished"><html><head/><body><p>针对单个文件:重复播放&lt;当前文件&gt;(次数:无限).<br/>针对播放列表:循环播放&lt;播放列表&gt;(次数:无限)<br/>请根据使用场景有选择性的开启【重复播放】与【循环播放】<br/>【重复播放】优先级高于【循环播放】,不建议同时开启<br/>想要重复播放单个文件时:<br/>如果不使用【跳过片头】,【重复播放】效果更佳<br/>如果使用【跳过片头】,【循环播放】效果更佳</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2014"/>
<source>循环播放*</source>
<translation>循环播放*</translation>
</message>
<message>
<source><html><head/><body><p>仅在循环播放激活时生效.<br/>当播放列表第一遍播放完毕后,从第二遍开始播放列表会以随机顺序播放.<br/>启用菜单中的【循环随机播放】可以让播放列表立刻生成一次随机顺序.</p></body></html></source>
<oldsource><html><head/><body><p>仅在循环播放激活时生效.<br/>当播放列表第一遍播放完毕后,从第二遍开始播放列表会以随机顺序播放</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>仅在循环播放激活时生效.<br/>当播放列表第一遍播放完毕后,从第二遍开始播放列表会以随机顺序播放.<br/>启用菜单中的【循环随机播放】可以让播放列表立刻生成一次随机顺序.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2026"/>
<source>随机播放*</source>
<translation>随机播放*</translation>
</message>
<message>
<source><html><head/><body><p>用法和注意事项请参考【跳过片头】的提示,不要忘记时间之前的【+】【-】号<br/>比如跳过50秒片尾输入 -00:-50<br/>比如跳过1分30秒片尾输入 -01:-30 或 -02:+30(减2分钟加30秒)<br/>如果写成-01:30则会变成只跳过30秒片尾(减1分钟加30秒)</p></body></html></source>
<translation type="vanished"><html><head/><body><p>用法和注意事项请参考【跳过片头】的提示,不要忘记时间之前的【+】【-】号<br/>比如跳过50秒片尾输入 -00:-50<br/>比如跳过1分30秒片尾输入 -01:-30 或 -02:+30(减2分钟加30秒)<br/>如果写成-01:30则会变成只跳过30秒片尾(减1分钟加30秒)</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>跳过片尾*</p></body></html></source>
<translation type="vanished"><html><head/><body><p>跳过片尾*</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>强烈建议使用下面这种直观的方式启用此功能,注意时间之前的【+】【-】号<br/>比如跳过50秒片头输入 +00:+50 或 +01:-10 (1分钟减10秒)<br/>比如跳过1分30秒片头输入 +01:+30 或 +02:-30<br/>比如跳过62分50秒片头输入 +01:+02:+50 或 +02:-57:-10<br/>【跳过片头】优先级高于【播放进度】,2者都启用时播放起始点以前者为准</p></body></html></source>
<translation type="vanished"><html><head/><body><p>强烈建议使用下面这种直观的方式启用此功能,注意时间之前的【+】【-】号<br/>比如跳过50秒片头输入 +00:+50 或 +01:-10 (1分钟减10秒)<br/>比如跳过1分30秒片头输入 +01:+30 或 +02:-30<br/>比如跳过62分50秒片头输入 +01:+02:+50 或 +02:-57:-10<br/>【跳过片头】优先级高于【播放进度】,2者都启用时播放起始点以前者为准</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>跳过片头*</p></body></html></source>
<translation type="vanished"><html><head/><body><p>跳过片头*</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>请勿和【跳过片尾】同时使用.此设置适用【跳过片尾】效果不好的场景<br/>用法和注意事项请参考【跳过片头】的提示,不要忘记时间之前的【+】【-】号<br/>比如从跳过片头后播放50秒输入 +00:+50</p></body></html></source>
<translation type="vanished"><html><head/><body><p>请勿和【跳过片尾】同时使用.此设置适用【跳过片尾】效果不好的场景<br/>用法和注意事项请参考【跳过片头】的提示,不要忘记时间之前的【+】【-】号<br/>比如从跳过片头后播放50秒输入 +00:+50</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>播放时长*</p></body></html></source>
<translation type="vanished"><html><head/><body><p>播放时长*</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2098"/>
<source><html><head/><body><p><span style=" font-size:18pt;">&lt;</span></p></body></html></source>
<translation><html><head/><body><p><span style=" font-size:18pt;">&lt;</span></p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>以下设置适用于MPV-EASY无边框GUI</p></body></html></source>
<translation type="vanished"><html><head/><body><p>以下设置适用于MPV-EASY无边框GUI</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>生效时会消耗额外的cpu资源(约3%-6%).</p></body></html></source>
<oldsource><html><head/><body><p>生效时会消耗额外的cpu资源(约3%-6%).<br/>如果引发性能或者稳定性问题,请勿选择此项.</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>生效时会消耗额外的cpu资源(约3%-6%).</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="3410"/>
<source>OSC的仿高斯模糊:</source>
<translation>OSC的仿高斯模糊:</translation>
</message>
<message>
<source><html><head/><body><p>3.点击下方【设置默认程序】按钮,控制面板会自动打开,首次打开请耐心等待其加载完毕.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>3.点击下方【设置默认程序】按钮,控制面板会自动打开,首次打开请耐心等待其加载完毕.</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>6.在出现的界面中勾选需要关联的文件格式,点击保存即可.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>6.在出现的界面中勾选需要关联的文件格式,点击保存即可.</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>4.在加载完毕的控制面板中,点击左侧栏中的【MPV-EASY Player】.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>4.在加载完毕的控制面板中,点击左侧栏中的【MPV-EASY Player】.</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>5.点击右边界面下方的【选择此程序的默认值】.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>5.点击右边界面下方的【选择此程序的默认值】.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="6605"/>
<source>已关闭UAC时可跳过这些步骤</source>
<translation>已关闭UAC时可跳过这些步骤</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="6617"/>
<location filename="../mainwindow.ui" line="6871"/>
<source>1.点击下方按钮,windows文件资源管理器会自动打开到程序所在文件夹.</source>
<translation>1.点击下方按钮,windows文件资源管理器会自动打开到程序所在文件夹.</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="6638"/>
<location filename="../mainwindow.ui" line="6895"/>
<source>打开程序文件夹</source>
<translation>打开程序文件夹</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="7163"/>
<source>资源</source>
<translation>资源</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="7231"/>
<source>MPV-EASY Player使用以下技术构建</source>
<translation>MPV-EASY Player使用以下技术构建</translation>
</message>
<message>
<source><html><head/><body><p>注意:有些功能的语言切换在重新运行后才会生效</p></body></html></source>
<translation type="vanished"><html><head/><body><p>注意:有些功能的语言切换在重新运行后才会生效</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2124"/>
<source>常规(2)</source>
<translation>常规(2)</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2130"/>
<source>【临时设置菜单】注意事项:</source>
<oldsource>系统托盘【临时设置菜单】注意事项:</oldsource>
<translation>【临时设置菜单】注意事项:</translation>
</message>
<message>
<source><html><head/><body><p>使用【MPV原生GUI】时,用来快速打开此设置界面,推荐开启.<br/>且系统托盘菜单带有临时设置等额外功能.</p></body></html></source>
<oldsource><html><head/><body><p>用来快速打开此设置界面,使用【MPV原生GUI】时,推荐开启.<br/>且系统托盘菜单带有临时设置等额外功能.</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>使用【MPV原生GUI】时,用来快速打开此设置界面,推荐开启.<br/>且系统托盘菜单带有临时设置等额外功能.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2189"/>
<source>MPV-EASY设置跟随运行至系统托盘*</source>
<translation>MPV-EASY设置跟随运行至系统托盘*</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2204"/>
<source>鼠标悬停在系统托盘图标上时就立刻显示菜单(无此功能)</source>
<translation>鼠标悬停在系统托盘图标上时就立刻显示菜单(无此功能)</translation>
</message>
<message>
<source><html><head/><body><p>启用后,点击此菜单项会跳出资源管理器,选中文件后即可播放<br/>当选中多个文件并打开时,这些文件会以播放列表形式播放.<br/>再次点击此菜单项,资源管理器会显示最后打开的路径.<br/>注重隐私的话,请慎用.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>启用后,点击此菜单项会跳出资源管理器,选中文件后即可播放<br/>当选中多个文件并打开时,这些文件会以播放列表形式播放.<br/>再次点击此菜单项,资源管理器会显示最后打开的路径.<br/>注重隐私的话,请慎用.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2222"/>
<source>临时菜单显示【打开文件...】菜单项*</source>
<translation>临时菜单显示【打开文件...】菜单项*</translation>
</message>
<message>
<source><html><head/><body><p>1:不显示音量和文件名<br/>2:只显示音量<br/>3:只显示文件名<br/>4:同时显示音量和文件名</p></body></html></source>
<translation type="vanished"><html><head/><body><p>1:不显示音量和文件名<br/>2:只显示音量<br/>3:只显示文件名<br/>4:同时显示音量和文件名</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>标题栏样式*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>标题栏样式*:</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="476"/>
<source>GUI模式</source>
<oldsource>模式(1)</oldsource>
<translation>GUI模式</translation>
</message>
<message>
<source><html><head/><body><p>MPV-EASY运行模式*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>MPV-EASY运行模式*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>兼容 =理论:★★★★ 目前:★★★★<br/>对mpv的干扰,中文路径,配置读取有高兼容度</p></body></html></source>
<oldsource><html><head/><body><p>兼容 =理论:★★★★ 目前:★★★★ 对mpv的干扰,中文路径,配置读取有高兼容度</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>兼容 =理论:★★★★ 目前:★★★★<br/>对mpv的干扰,中文路径,配置读取有高兼容度</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1377"/>
<source>兼容</source>
<translation>兼容</translation>
</message>
<message>
<source><html><head/><body><p>原生1=理论:★★★★★ 目前:★★★★☆<br/>支持中文路径,目前几乎可达到理论品质</p></body></html></source>
<oldsource><html><head/><body><p>原生1=理论:★★★★★ 目前:★★★★☆支持中文路径,目前几乎可达到理论品质</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>原生1=理论:★★★★★ 目前:★★★★☆<br/>支持中文路径,目前几乎可达到理论品质</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1400"/>
<source>原生1</source>
<translation>原生1</translation>
</message>
<message>
<source><html><head/><body><p>原生2=理论:★★★★ 目前:★★★★<br/>支持中文路径,由于windows对脚本的读取不友好,如果脚本依旧因为中文路径问题无法运行请使用其他运行模式</p></body></html></source>
<oldsource><html><head/><body><p>原生2=理论:★★★★ 目前:★★★ 放于非中文路径可达到理论品质</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>原生2=理论:★★★★ 目前:★★★★<br/>支持中文路径,由于windows对脚本的读取不友好,如果脚本依旧因为中文路径问题无法运行请使用其他运行模式</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1420"/>
<source>原生2</source>
<translation>原生2</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="509"/>
<source>MPV-EASY无边框GUI</source>
<translation>MPV-EASY无边框GUI</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="537"/>
<source>MPV原生GUI</source>
<translation>MPV原生GUI</translation>
</message>
<message>
<source><html><head/><body><p>使用【MPV原生GUI】时,如果开启多实例,建议关闭和置顶有关的设置,防止非置顶窗口接受不到命令.</p></body></html></source>
<oldsource><html><head/><body><p>如果开启多实例,建议关闭和置顶有关的设置,防止非置顶窗口接受不到命令.</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>使用【MPV原生GUI】时,如果开启多实例,建议关闭和置顶有关的设置,防止非置顶窗口接受不到命令.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1468"/>
<source>只允许运行一个mpv实例*</source>
<translation>只允许运行一个mpv实例*</translation>
</message>
<message>
<source><html><head/><body><p>idle #空闲<br/>belownormal #低于普通<br/>normal #普通<br/>abovenormal #高于普通<br/>high #高<br/>realtime #实时<br/>警告:使用【实时】优先级可能会导致系统锁死</p></body></html></source>
<translation type="vanished"><html><head/><body><p>idle #空闲<br/>belownormal #低于普通<br/>normal #普通<br/>abovenormal #高于普通<br/>high #高<br/>realtime #实时<br/>警告:使用【实时】优先级可能会导致系统锁死</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>MPV进程优先级*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>MPV进程优先级*:</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="482"/>
<source>MPV-EASY GUI模式:</source>
<translation>MPV-EASY GUI模式:</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1373"/>
<source>兼容 =理论:★★★★ 目前:★★★★
对mpv的干扰,中文路径,配置读取有高兼容度</source>
<translation>兼容 =理论:★★★★ 目前:★★★★
对mpv的干扰,中文路径,配置读取有高兼容度</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1396"/>
<source>原生1=理论:★★★★★ 目前:★★★★☆
支持中文路径,目前几乎可达到理论品质</source>
<translation>原生1=理论:★★★★★ 目前:★★★★☆
支持中文路径,目前几乎可达到理论品质</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1416"/>
<source>原生2=理论:★★★★ 目前:★★★★
支持中文路径,由于windows对脚本的读取不友好,如果脚本依旧因为中文路径问题无法运行请使用其他运行模式</source>
<translation>原生2=理论:★★★★ 目前:★★★★
支持中文路径,由于windows对脚本的读取不友好,如果脚本依旧因为中文路径问题无法运行请使用其他运行模式</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1436"/>
<source>原生3=理论:★★★★★ 目前:★★★★★
支持中文路径,由于windows对脚本的读取不友好,如果脚本依旧因为中文路径问题无法运行请使用其他运行模式</source>
<translation>原生3=理论:★★★★★ 目前:★★★★★
支持中文路径,由于windows对脚本的读取不友好,如果脚本依旧因为中文路径问题无法运行请使用其他运行模式</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1558"/>
<source>GUI模式注意事项:</source>
<translation>GUI模式注意事项:</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1778"/>
<source>仅【记住播放进度和播放历史】勾选时有效
适用场景: 播放列表中存在非单个文件时.
激活后,仍旧记录播放历史但会忽略进度从头开始播放.
此参数能够解决播放播放列表与播放进度功能之间的干扰问题</source>
<translation>仅【记住播放进度和播放历史】勾选时有效
适用场景: 播放列表中存在非单个文件时.
激活后,仍旧记录播放历史但会忽略进度从头开始播放.
此参数能够解决播放播放列表与播放进度功能之间的干扰问题</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1798"/>
<source>把文件夹下的“同一类别”的文件自动加载至播放列表.
激活后,播放文件夹下的任意一个文件此功能就会生效
“同一类别”区分方式:视频、音频、图片.
播放列表按照文件名排序
【记住播放进度和播放历史】会对此功能造成干扰,【忽略播放进度(仅播放列表)】功能可以解决干扰问题</source>
<translation>把文件夹下的“同一类别”的文件自动加载至播放列表.
激活后,播放文件夹下的任意一个文件此功能就会生效
“同一类别”区分方式:视频、音频、图片.
播放列表按照文件名排序
【记住播放进度和播放历史】会对此功能造成干扰,【忽略播放进度(仅播放列表)】功能可以解决干扰问题</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2334"/>
<source>视频(1)</source>
<translation>视频(1)</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2348"/>
<source>调整宽高比? 宽高比修改为:</source>
<translation>调整宽高比? 宽高比修改为:</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2439"/>
<source>允许掉帧? 掉帧模式:</source>
<translation>允许掉帧? 掉帧模式:</translation>
</message>
<message>
<source><html><head/><body><p>如出现画面显示不正常可能需切换硬解模式.<br/>此参数通常和硬解模式搭配使用,gpu默认启用gpu-hq<br/>和硬解模式不匹配时mpv会自动切换回软解.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>如出现画面显示不正常可能需切换硬解模式.<br/>此参数通常和硬解模式搭配使用,gpu默认启用gpu-hq<br/>和硬解模式不匹配时mpv会自动切换回软解.</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>输出驱动*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>输出驱动*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>d3d11va和d3d11va-copy仅适用于win8+操作系统<br/>cuda,cuda-copy,nvdec,nvdec-copy仅适用于支持CUDA的NVIDIA显卡</p></body></html></source>
<translation type="vanished"><html><head/><body><p>d3d11va和d3d11va-copy仅适用于win8+操作系统<br/>cuda,cuda-copy,nvdec,nvdec-copy仅适用于支持CUDA的NVIDIA显卡</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2527"/>
<source>允许硬解? 硬解模式*:</source>
<translation>允许硬解? 硬解模式*:</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2615"/>
<source>旋转视频画面? 画面旋转角度:</source>
<translation>旋转视频画面? 画面旋转角度:</translation>
</message>
<message>
<source><html><head/><body><p>查看【快捷键】-【禁用鼠标左键的播放暂停功能】及提示信息,可解决拖放后的自动暂停问题.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>查看【快捷键】-【禁用鼠标左键的播放暂停功能】及提示信息,可解决拖放后的自动暂停问题.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2655"/>
<source>鼠标按住画面移动能更改窗口位置*</source>
<translation>鼠标按住画面移动能更改窗口位置*</translation>
</message>
<message>
<source><html><head/><body><p>播放倍速:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>播放倍速:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>no #自动合适(所有情况下)<br/>yes #永远实际大小<br/>downscale-big #自动合适(画面大于窗口大小时)</p></body></html></source>
<translation type="vanished"><html><head/><body><p>no #自动合适(所有情况下)<br/>yes #永远实际大小<br/>downscale-big #自动合适(画面大于窗口大小时)</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>画面不与窗口一同缩放*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>画面不与窗口一同缩放*:</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2780"/>
<source>窗口靠近边缘时自动吸附</source>
<translation>窗口靠近边缘时自动吸附</translation>
</message>
<message>
<source><html><head/><body><p>勾选后建议同时改动以下设置项:<br/>启用【视频】-【鼠标按住画面移动能更改窗口位置】<br/>启用【快捷键】-【禁用鼠标左键的播放暂停功能】<br/>禁用【快捷键】-【禁用单击鼠标滚轮关闭播放窗口功能】</p></body></html></source>
<translation type="vanished"><html><head/><body><p>勾选后建议同时改动以下设置项:<br/>启用【视频】-【鼠标按住画面移动能更改窗口位置】<br/>启用【快捷键】-【禁用鼠标左键的播放暂停功能】<br/>禁用【快捷键】-【禁用单击鼠标滚轮关闭播放窗口功能】</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2793"/>
<source>视频播放界面不显示边框和标题栏*</source>
<translation>视频播放界面不显示边框和标题栏*</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="3007"/>
<source>音频(1)</source>
<translation>音频(1)</translation>
</message>
<message>
<source><html><head/><body><p>默认声道:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>默认声道:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>计量单位:百分比<br/>调节最大音量的顺序:<br/>正确的音轨-&gt;100%软件音量-&gt;正确的声道-&gt;100%系统音量-&gt;扬声器最大音量-&gt;此参数<br/>不推荐设为100.0以上的值,除非其他调节音量的方式都尝试过<br/>可调节的音量值能超出100%,最高到你设定的值<br/>130.0时,音量最大值为正常值(100.0)的2倍<br/>音量调整的太高时可能会导致破音和声音失真.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>计量单位:百分比<br/>调节最大音量的顺序:<br/>正确的音轨-&gt;100%软件音量-&gt;正确的声道-&gt;100%系统音量-&gt;扬声器最大音量-&gt;此参数<br/>不推荐设为100.0以上的值,除非其他调节音量的方式都尝试过<br/>可调节的音量值能超出100%,最高到你设定的值<br/>130.0时,音量最大值为正常值(100.0)的2倍<br/>音量调整的太高时可能会导致破音和声音失真.</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>可调节的音量最大值*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>可调节的音量最大值*:</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="3184"/>
<location filename="../mainwindow.ui" line="3618"/>
<source>OSC(播放控制界面)</source>
<translation>OSC(播放控制界面)</translation>
</message>
<message>
<source><html><head/><body><p>显示并能控制暂停、进度等功能的整块区域.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>显示并能控制暂停、进度等功能的整块区域.</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>never:不显示OSC<br/>auto:按需自动显示OSC<br/>always:总是显示OSC</p></body></html></source>
<translation type="vanished"><html><head/><body><p>never:不显示OSC<br/>auto:按需自动显示OSC<br/>always:总是显示OSC</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSC显示模式*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSC显示模式*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSC样式:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSC样式:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>进度条样式:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>进度条样式:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSC界面放大倍数:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSC界面放大倍数:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>全屏时OSC界面放大倍数:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>全屏时OSC界面放大倍数:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>调节范围:0到1(0:整个视频区域,1:仅OSC所在的视频区域)</p></body></html></source>
<oldsource><html><head/><body><p>鼠标在多大区域移动不会激活OSC:</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>调节范围:0到1(0:整个视频区域,1:仅OSC所在的视频区域)</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>调整的值以像素为单位,bottombar向上调整,topbar向下调整<br/>调整值超过窗口高度会导致osc看不见,发生此情况请设置值为0或较小的值.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>调整的值以像素为单位,bottombar向上调整,topbar向下调整<br/>调整值超过窗口高度会导致osc看不见,发生此情况请设置值为0或较小的值.</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>2种bar样式OSC位置调整(Y轴)*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>2种bar样式OSC位置调整(Y轴)*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>多少毫秒后自动隐藏OSC界面*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>多少毫秒后自动隐藏OSC界面*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>值为999999999时,可以变相让OSC界面总是显示<br/>此选项同时也会作用于【***毫秒后自动隐藏OSC界面】<br/>OSC界面真正隐藏前要经过:等待隐藏时间+淡出时间</p></body></html></source>
<translation type="vanished"><html><head/><body><p>值为999999999时,可以变相让OSC界面总是显示<br/>此选项同时也会作用于【***毫秒后自动隐藏OSC界面】<br/>OSC界面真正隐藏前要经过:等待隐藏时间+淡出时间</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSC界面隐藏前淡出时间(毫秒)*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSC界面隐藏前淡出时间(毫秒)*:</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4081"/>
<source><html><head/><body><p>调节范围:0到255(0:不透明,255:透明)</p></body></html></source>
<oldsource><html><head/><body><p>OSC透明度:</p></body></html></oldsource>
<translation><html><head/><body><p>调节范围:0到255(0:不透明,255:透明)</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>【MPV-EASY无边框GUI】的菜单中:<br/>黑色分隔线之间都是临时设置菜单.<br/>临时设置立即生效,临时设置不会保存.</p><p>【MPV原生GUI】的系统托盘菜单中:<br/>灰色分隔线之间都是临时设置菜单.<br/>临时设置立即生效,临时设置不会保存.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>【MPV-EASY无边框GUI】的菜单中:<br/>黑色分隔线之间都是临时设置菜单.<br/>临时设置立即生效,临时设置不会保存.</p><p>【MPV原生GUI】的系统托盘菜单中:<br/>灰色分隔线之间都是临时设置菜单.<br/>临时设置立即生效,临时设置不会保存.</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>2种box样式OSC位置调整(XY轴)*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>2种box样式OSC位置调整(XY轴)*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSC透明度*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSC透明度*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>外部OSC样式文件存放路径:data\mpv-easy-data\osc-style(选择其他路径下的lua文件不会生效)<br/>勾选此参数且下方输入框为空时使用默认外部OSC样式,推荐设置:【osc样式:box】、【进度条样式:bar】、【osc透明度:45】<br/>mpv原版osc.lua文件内容请参考 github.com/mpv-player/mpv/blob/master/player/lua/osc.lua 外部OSC样式文件都是从这个文件修改而来<br/>例如:osc-***-bottombar-knob-100-180.lua 这个文件的命名使用【名字-osc样式-进度条样式-osc透明度.lua】组合而成<br/>意思是这个外部osc在【osc样式:bottombar】、【进度条样式:knob】、【osc透明度在:100-180之间】才会获得最佳效果<br/>修改osc-style文件夹中的OSC样式文件(.lua)后,需要再次使用【选择】功能,点击确定,重新运行后才会生效<br/>外部OSC文件是MPV内置OSC的一个拷贝,2者共享同一份OSC设置,所以此界面中的设置对外部OSC一样有效<br/>如果你熟悉lua脚本和ASS,那么通过修改osc.lua可以创造出属于自己的OSC外观样式、布局<br/>最低限度也可以修改那些没有给出的设置,比如修改OSC背景色<br/>开启并调整osc设置后可以体验软件No1调整后的多种全新样式</p></body></html></source>
<translation type="vanished"><html><head/><body><p>外部OSC样式文件存放路径:data\mpv-easy-data\osc-style(选择其他路径下的lua文件不会生效)<br/>勾选此参数且下方输入框为空时使用默认外部OSC样式,推荐设置:【osc样式:box】、【进度条样式:bar】、【osc透明度:45】<br/>mpv原版osc.lua文件内容请参考 github.com/mpv-player/mpv/blob/master/player/lua/osc.lua 外部OSC样式文件都是从这个文件修改而来<br/>例如:osc-***-bottombar-knob-100-180.lua 这个文件的命名使用【名字-osc样式-进度条样式-osc透明度.lua】组合而成<br/>意思是这个外部osc在【osc样式:bottombar】、【进度条样式:knob】、【osc透明度在:100-180之间】才会获得最佳效果<br/>修改osc-style文件夹中的OSC样式文件(.lua)后,需要再次使用【选择】功能,点击确定,重新运行后才会生效<br/>外部OSC文件是MPV内置OSC的一个拷贝,2者共享同一份OSC设置,所以此界面中的设置对外部OSC一样有效<br/>如果你熟悉lua脚本和ASS,那么通过修改osc.lua可以创造出属于自己的OSC外观样式、布局<br/>最低限度也可以修改那些没有给出的设置,比如修改OSC背景色<br/>开启并调整osc设置后可以体验软件No1调整后的多种全新样式</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4157"/>
<source>使用非默认OSC外观样式*:</source>
<translation>使用非默认OSC外观样式*:</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4170"/>
<source>选择</source>
<translation>选择</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4209"/>
<source>缓冲进度(播放非本地文件时显示)</source>
<translation>缓冲进度(播放非本地文件时显示)</translation>
</message>
<message>
<source><html><head/><body><p>none:隐藏缓冲进度.<br/>slider:进度条样式为【bar】时不适用.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>none:隐藏缓冲进度.<br/>slider:进度条样式为【bar】时不适用.</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>缓冲进度样式*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>缓冲进度样式*:</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="550"/>
<source>MPV-EASY无边框GUI的外观:</source>
<translation>MPV-EASY无边框GUI的外观:</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="565"/>
<source>深色风格</source>
<translation>深色风格</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="581"/>
<source>浅色风格</source>
<translation>浅色风格</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="270"/>
<source>菜单</source>
<translation>菜单</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="694"/>
<source>仿高斯模糊生效</source>
<oldsource>仿高斯模糊不生效</oldsource>
<translation>仿高斯模糊生效</translation>
</message>
<message>
<source><html><head/><body><p>界面圆角大小:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>界面圆角大小:</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="1309"/>
<source>颜色渐变进度条</source>
<translation>颜色渐变进度条</translation>
</message>
<message>
<source><html><head/><body><p>把文件夹下的“所有文件”自动加载至播放列表.<br/>激活后,播放文件夹下的任意一个文件此功能就会生效<br/>“所有文件”只包括支持播放的音频视频格式文件<br/>播放列表按照文件名排序<br/>【记住播放进度和播放历史】会对此功能造成干扰,【忽略播放进度(仅播放列表)】功能可以解决干扰问题</p></body></html></source>
<translation type="vanished"><html><head/><body><p>把文件夹下的“所有文件”自动加载至播放列表.<br/>激活后,播放文件夹下的任意一个文件此功能就会生效<br/>“所有文件”只包括支持播放的音频视频格式文件<br/>播放列表按照文件名排序<br/>【记住播放进度和播放历史】会对此功能造成干扰,【忽略播放进度(仅播放列表)】功能可以解决干扰问题</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2808"/>
<source>调节范围:5%-100%
基于可用桌面区域计算.
注意:
不支持以像素作为计量单位.
最小宽度:640px.</source>
<translation>调节范围:5%-100%
基于可用桌面区域计算.
注意:
不支持以像素作为计量单位.
最小宽度:640px.</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="2815"/>
<source>初始窗口最大尺寸(宽度x高度)*:</source>
<translation>初始窗口最大尺寸(宽度x高度)*:</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="3379"/>
<source>进度条拖动时实时更新进度</source>
<translation>进度条拖动时实时更新进度</translation>
</message>
<message>
<source><html><head/><body><p>此选项生效条件:<br/>1.进度条样式为bar.<br/>2.缓冲进度样式为bar.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>此选项生效条件:<br/>1.进度条样式为bar.<br/>2.缓冲进度样式为bar.</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4273"/>
<source>缓冲进度和进度条分开显示*</source>
<translation>缓冲进度和进度条分开显示*</translation>
</message>
<message>
<source><html><head/><body><p>缓冲进度透明度*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>缓冲进度透明度*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>当鼠标停留在能激活OSC的区域时,OSC界面真正隐藏前要经过的时间:<br/>【MPV-EASY无边框GUI】:等待隐藏时间<br/>【MPV原生GUI】:等待隐藏时间+淡出时间</p></body></html></source>
<translation type="vanished"><html><head/><body><p>当鼠标停留在能激活OSC的区域时,OSC界面真正隐藏前要经过的时间:<br/>【MPV-EASY无边框GUI】:等待隐藏时间<br/>【MPV原生GUI】:等待隐藏时间+淡出时间</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSC和画面一起缩放:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSC和画面一起缩放:</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4462"/>
<location filename="../mainwindow.ui" line="5303"/>
<source>是</source>
<translation>是</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4478"/>
<location filename="../mainwindow.ui" line="5319"/>
<source>否</source>
<translation>否</translation>
</message>
<message>
<source><html><head/><body><p>进度条显示视频文件的:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>进度条显示视频文件的:</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4524"/>
<source>剩余时长</source>
<translation>剩余时长</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4540"/>
<source>总时长</source>
<translation>总时长</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4568"/>
<source>OSC添加可以显示的信息:</source>
<translation>OSC添加可以显示的信息:</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4574"/>
<source>硬解</source>
<translation>硬解</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4581"/>
<source>帧数</source>
<translation>帧数</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4588"/>
<location filename="../mainwindow.ui" line="5669"/>
<source>音轨</source>
<translation>音轨</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4595"/>
<source>大小</source>
<translation>大小</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4602"/>
<location filename="../mainwindow.cpp" line="5107"/>
<source>音量</source>
<translation>音量</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4609"/>
<location filename="../mainwindow.ui" line="5659"/>
<source>字幕</source>
<translation>字幕</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4616"/>
<source>置顶</source>
<translation>置顶</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4623"/>
<source>实例</source>
<translation>实例</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4630"/>
<source>进度</source>
<translation>进度</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4637"/>
<source>字幕缩放</source>
<translation>字幕缩放</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4644"/>
<source>播放倍速</source>
<translation>播放倍速</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4651"/>
<source>MPV版本</source>
<translation>MPV版本</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4658"/>
<source>分辨率</source>
<translation>分辨率</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4665"/>
<source>声道</source>
<translation>声道</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4672"/>
<source>文件名</source>
<translation>文件名</translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4734"/>
<source>OSD(屏幕显示控制信息)</source>
<translation>OSD(屏幕显示控制信息)</translation>
</message>
<message>
<source><html><head/><body><p>画面中使用文字、图形短暂显示目前播放进度、音量等信息的区块(无控制功能).</p></body></html></source>
<oldsource><html><head/><body><p>画面种使用文字、图形短暂显示目前播放进度、音量等信息的区块(无控制功能).</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>画面中使用文字、图形短暂显示目前播放进度、音量等信息的区块(无控制功能).</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>勾选+【OSD文字显示的内容】不同的值,可以使OSD获得以下效果<br/>勾选+【0】=进度条和文字都不显示<br/>勾选+【1】=仅使用进度条显示进度<br/>勾选+【2】或【3】=进度条与文字和百分比一起显示进度</p></body></html></source>
<translation type="vanished"><html><head/><body><p>勾选+【OSD文字显示的内容】不同的值,可以使OSD获得以下效果<br/>勾选+【0】=进度条和文字都不显示<br/>勾选+【1】=仅使用进度条显示进度<br/>勾选+【2】或【3】=进度条与文字和百分比一起显示进度</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="4768"/>
<source>显示OSD进度条*</source>
<oldsource>显示OSC进度条*</oldsource>
<translatorcomment>显示OSD进度条*</translatorcomment>
<translation>显示OSD进度条*</translation>
</message>
<message>
<source><html><head/><body><p>OSD进度条宽度(%)</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSD进度条宽度(%)</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSD进度条粗细:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSD进度条粗细:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>调节范围:-1到1<br/>(1=底部,0.5=默认,0=中间,-1=顶部)</p></body></html></source>
<oldsource><html><head/><body><p>移动滑块时显示的并非最终值,仅作为精细调节时的参考<br/>OSD进度条位置请以滑动结束后的计算结果为准<br/>计算结果中: 1=底部,0.5=默认,0=中间,-1=顶部</p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p>调节范围:-1到1<br/>(1=底部,0.5=默认,0=中间,-1=顶部)</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSD进度条位置(Y轴)*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSD进度条位置(Y轴)*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSD字体大小:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSD字体大小:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSD文字信息位置(XY轴):</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSD文字信息位置(XY轴):</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSD文字信息和左右窗口边框之间的距离:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSD文字信息和左右窗口边框之间的距离:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSD文字信息和上下窗口边框之间的距离:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSD文字信息和上下窗口边框之间的距离:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>0 #仅字幕<br/>1 #音量+定位<br/>2 #音量+定位+计时器<br/>3 #音量+定位+计时器+总时间</p></body></html></source>
<translation type="vanished"><html><head/><body><p>0 #仅字幕<br/>1 #音量+定位<br/>2 #音量+定位+计时器<br/>3 #音量+定位+计时器+总时间</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>OSD文字显示的内容*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>OSD文字显示的内容*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>勾选【显示OSD进度条】且【OSD文字显示的内容】值不为0时生效</p></body></html></source>
<translation type="vanished"><html><head/><body><p>勾选【显示OSD进度条】且【OSD文字显示的内容】值不为0时生效</p></body></html></translation>
</message>
<message>
<location filename="../mainwindow.ui" line="5165"/>
<source>总是显示OSD进度条(非全屏时)*</source>
<oldsource>总是显示OSD进度条(不自动隐藏)*</oldsource>
<translation>总是显示OSD进度条(非全屏时)*</translation>
</message>
<message>
<source><html><head/><body><p>注意:【总是显示OSD进度条(不自动隐藏)】【显示OSD进度条】【OSD文字显示的内容】的值会影响此参数且优先级更高<br/>比如:勾选【总是显示OSD进度条(不自动隐藏)】+msg=跳转时显示OSD文字和进度条<br/>no:跳转时什么都不显示<br/>bar:仅显示进度条<br/>msg:仅显示文字<br/>msg-bar:进度条和文字都显示</p></body></html></source>
<translation type="vanished"><html><head/><body><p>注意:【总是显示OSD进度条(不自动隐藏)】【显示OSD进度条】【OSD文字显示的内容】的值会影响此参数且优先级更高<br/>比如:勾选【总是显示OSD进度条(不自动隐藏)】+msg=跳转时显示OSD文字和进度条<br/>no:跳转时什么都不显示<br/>bar:仅显示进度条<br/>msg:仅显示文字<br/>msg-bar:进度条和文字都显示</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>跳转(快进快退)时的OSD样式*:</p></body></html></source>
<translation type="vanished"><html><head/><body><p>跳转(快进快退)时的OSD样式*:</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>计量单位:像素<br/>值为0时将不显示阴影<br/>注意:启用阴影可以极大改善白色画面下OSD文字的可阅读性,<br/>但同时也会影响OSD进度条(较粗时)的美观性.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>计量单位:像素<br/>值为0时将不显示阴影<br/>注意:启用阴影可以极大改善白色画面下OSD文字的可阅读性,<br/>但同时也会影响OSD进度条(较粗时)的美观性.</p></body></html></translation>
</message>