-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmo_cn.pas
628 lines (621 loc) · 35 KB
/
mo_cn.pas
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
{ MPUI, an MPlayer frontend for Windows
Copyright (C) 2005 Martin J. Fiedler <[email protected]>
Copyright (C) 2006-2013 Huang Chen Bin <[email protected]>
based on work by Martin J. Fiedler <[email protected]>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
}
unit mo_cn;
interface
implementation
uses SysUtils,Windows,Locale,Main,Options,plist,Info,Core,Equalizer,DLyric,OpenDevice;
procedure Activate;
begin
with MainForm do begin
LOCstr_Status_Opening:=UTF8Decode('打开 ...');
LOCstr_Status_Closing:=UTF8Decode('关闭 ...');
LOCstr_Status_Playing:=UTF8Decode('播放');
LOCstr_Status_Paused:=UTF8Decode('暂停/帧进');
LOCstr_Status_Stopped:=UTF8Decode('停止');
LOCstr_Status_Error:=UTF8Decode('不能播放该文件 (点击这里查看更多的信息)');
LOCstr_SetPW_Caption:=UTF8Decode('请输入下列文档的正确解压密码');
LOCstr_VolAsk_Caption:=UTF8Decode('请选择下一个分卷');
LOCstr_Check_Mplayer_Prompt:=UTF8Decode('请检查MPlayer.exe的位置是否正确');
LOCstr_Error1_Prompt:=UTF8Decode('错误代码(');
LOCstr_Error2_Prompt:=UTF8Decode('): 在加载MPlayer时');
LOCstr_CmdLine_Prompt:=UTF8Decode('命令行:');
OSD_Volume_Prompt:='音量';
OSD_ScreenShot_Prompt:='截屏 ';
OSD_Contrast_Prompt:='对比度';
OSD_Brightness_Prompt:='亮度';
OSD_Hue_Prompt:='色调';
OSD_Saturation_Prompt:='饱和度';
OSD_Gamma_Prompt:='灰度';
OSD_Enable_Prompt:='启用';
OSD_Disable_Prompt:='停用';
OSD_VideoTrack_Prompt:='视频轨';
OSD_AudioTrack_Prompt:='音频轨';
OSD_OnTop0_Prompt:='取消置顶';
OSD_OnTop1_Prompt:='总在最上';
OSD_OnTop2_Prompt:='播放时总在最上';
OSD_Auto_Prompt:='自动';
OSD_Custom_Prompt:='自定义';
OSD_Size_Prompt:='尺寸';
OSD_Scale_Prompt:='缩放';
OSD_Balance_Prompt:='声道左右平衡';
OSD_Reset_Prompt:='重置';
OSD_AudioDelay_Prompt:='音频延迟';
OSD_SubDelay_Prompt:='字幕延迟';
OSD_DownSubtitle_Prompt := '下载 字幕';
SubFilter:=UTF8Decode('字幕文件');
AudioFilter:=UTF8Decode('音频文件');
AnyFilter:=UTF8Decode('所有文件');
FontFilter:=UTF8Decode('字体文件');
MediaFilter:=UTF8Decode('媒体文件');
LyricFilter:=UTF8Decode('歌词文件');
BPause.Hint:=LOCstr_Status_Paused;
BOpen.Hint:=UTF8Decode('打开 文件');
BPlaylist.Hint:=UTF8Decode('显示/隐藏 播放列表窗口');
BStreamInfo.Hint:=UTF8Decode('显示/隐藏 文件信息 ...');
BFullscreen.Hint:=UTF8Decode('全屏');
BCompact.Hint:=UTF8Decode('切换到 精简模式');
BMute.Hint:=UTF8Decode('静音');
BSkip.Hint:=UTF8Decode('启用/停止 跳过片头、片尾');
SeekBarSlider.Hint:=UTF8Decode('鼠标中键/右键单击 设置片头/片尾位置');
MPCtrl.Caption:=UTF8Decode('显示菜单和控制面板');
OSDMenu.Caption:=UTF8Decode('OSD 模式');
MNoOSD.Caption:=UTF8Decode('无 OSD');
MDefaultOSD.Caption:=UTF8Decode('默认 OSD');
MTimeOSD.Caption:=UTF8Decode('显示时间');
MFullOSD.Caption:=UTF8Decode('显示总时间');
MFile.Caption:=UTF8Decode('文件');
MOpenFile.Caption:=UTF8Decode('打开 文件 ...');
MOpenDir.Caption:=UTF8Decode('打开 目录 ...');
MOpenURL.Caption:=UTF8Decode('打开 URL ...');
LOCstr_OpenURL_Caption:=UTF8Decode('打开 URL');
LOCstr_OpenURL_Prompt:=UTF8Decode('你想要打开的 URL 是?');
MOpenDrive.Caption:=UTF8Decode('播放 (V)CD/DVD/BlueRay(蓝光)光盘');
MOpenDevices.Caption:=UTF8Decode('打开 设备');
MRFile.Caption:=UTF8Decode('最近打开的文件');
MFClear.Caption:=UTF8Decode('清除列表');
MLoadLyric.Caption:=UTF8Decode('载入歌词...');
MDownloadLyric.Caption:=UTF8Decode('下载歌词...');
MLoadSub.Caption:=UTF8Decode('载入字幕...');
MSubfont.Caption:=UTF8Decode('字幕字体...');
FontTitle:=UTF8Decode('OSD字体...');
MClose.Caption:=UTF8Decode('关闭');
MQuit.Caption:=UTF8Decode('退出');
MView.Caption:=UTF8Decode('查看');
MSizeAny.Caption:=UTF8Decode('自定义尺寸 (');
MSCS.Caption:=UTF8Decode('设置 自定义尺寸');
MSize50.Caption:=UTF8Decode('一半大小 50%');
MSize100.Caption:=UTF8Decode('原始大小 100%');
MSize200.Caption:=UTF8Decode('两倍大小 200%');
MFullscreen.Caption:=BFullscreen.Hint;
MMaxW.Caption:=UTF8Decode('最大化窗口');
MCompact.Caption:=UTF8Decode('精简模式');
MOnTop.Caption:=UTF8Decode('置顶模式');
MNoOnTop.Caption:=UTF8Decode('从不');
MAOnTop.Caption:=UTF8Decode('总是置顶');
MWOnTop.Caption:=UTF8Decode('播放时置顶');
MKaspect.Caption:=UTF8Decode('维持纵横比');
MExpand.Caption:=UTF8Decode('用黑边扩展视频');
MNoExpand.Caption:=UTF8Decode('关');
MSrtExpand.Caption:=UTF8Decode('Srt字幕');
MSubExpand.Caption:=UTF8Decode('Sub字幕');
Hide_menu.Caption:=UTF8Decode('自动隐藏 主菜单');
Mctrl.Caption:=UTF8Decode('自动隐藏 控制面板');
MTM.Caption:=UTF8Decode('切换 显示器');
MSeek.Caption:=LOCstr_Status_Playing;
MPlay.Caption:=LOCstr_Status_Playing;
MPause.Caption:=LOCstr_Status_Paused;
MStop.Caption:=UTF8Decode('停止');
MPrev.Caption:=UTF8Decode('上一个');
MNext.Caption:=UTF8Decode('下一个');
MShowPlaylist.Caption:=UTF8Decode('播放列表 ...');
MSpeed.Caption:=UTF8Decode('播放速度');
MN4X.Caption:=UTF8Decode('1/4倍速');
MN2X.Caption:=UTF8Decode('1/2倍速');
M1X.Caption:=UTF8Decode('1倍速');
M2X.Caption:=UTF8Decode('2倍速');
M4X.Caption:=UTF8Decode('4倍速');
MAudiochannels.Caption:=UTF8Decode('声道');
MStereo.Caption:=UTF8Decode('立体声');
MLchannels.Caption:=UTF8Decode('左声道');
MRchannels.Caption:=UTF8Decode('右声道');
MMute.Caption:=BMute.Hint;
MWheelControl.Caption:=UTF8Decode('鼠标滚轮控制');
MVol.Caption:=UTF8Decode(OSD_Volume_Prompt);
MSize.Caption:=UTF8Decode(OSD_Size_Prompt);
MSkip.Caption:=UTF8Decode('跳过片头片尾');
MIntro.Caption:=UTF8Decode('开始点 ');
MEnd.Caption:=UTF8Decode('结束点 ');
MSIE.Caption:=UTF8Decode('跳过片头片尾');
MSeekF10.Caption:=UTF8Decode('前进 10 秒');
MSeekR10.Caption:=UTF8Decode('后退 10 秒');
MSeekF60.Caption:=UTF8Decode('前进 1 分钟');
MSeekR60.Caption:=UTF8Decode('后退 1 分钟');
MSeekF600.Caption:=UTF8Decode('前进 10 分钟');
MSeekR600.Caption:=UTF8Decode('后退 10 分钟');
MExtra.Caption:=UTF8Decode('工具');
MAudio.Caption:=UTF8Decode(OSD_AudioTrack_Prompt);
MSubtitle.Caption:=UTF8Decode('字幕轨');
MShowSub.Caption:=UTF8Decode('显示/隐藏 字幕');
MVideo.Caption:=UTF8Decode(OSD_VideoTrack_Prompt);
MDVDT.Caption:=UTF8Decode('DVD 标题');
MBRT.Caption:=UTF8Decode('蓝光 标题');
MRmMenu.Caption:=UTF8Decode('返回主菜单');
MRnMenu.Caption:=UTF8Decode('返回最近的菜单');
MVCDT.Caption:=UTF8Decode('VCD 轨');
MCDT.Caption:=UTF8Decode('CD 轨');
MAspects.Caption:=UTF8Decode('纵横比');
MAutoAspect.Caption:=UTF8Decode('自动');
MForce43.Caption:=UTF8Decode('4:3');
MForce169.Caption:=UTF8Decode('16:9');
MForceCinemascope.Caption:=UTF8Decode('2.35:1');
MForce54.Caption:=UTF8Decode('5:4');
MForce85.Caption:=UTF8Decode('16:10');
MForce221.Caption:=UTF8Decode('2.21:1');
MForce11.Caption:=UTF8Decode('1:1');
MForce122.Caption:=UTF8Decode('1.22:1');
MCustomAspect.Caption:=UTF8Decode('自定义 ');
MDeinterlace.Caption:=UTF8Decode('反交错');
MNoDeint.Caption:=UTF8Decode('关');
MSimpleDeint.Caption:=UTF8Decode('简单');
MAdaptiveDeint.Caption:=UTF8Decode('自适应');
MEqualizer.Caption:=UTF8Decode('视频均衡器');
MOptions.Caption:=UTF8Decode('选项 ...');
MLanguage.Caption:=UTF8Decode('语言');
MStreamInfo.Caption:=UTF8Decode('显示文件信息 ...');
MUUni.Caption:=UTF8Decode('使用Unicode显示输出信息');
MShowOutput.Caption:=UTF8Decode('显示 MPlayer 输出信息 ...');
MVideos.Caption:=UTF8Decode('视频');
MAudios.Caption:=UTF8Decode('音频');
MSub.Caption:=UTF8Decode('字幕');
M2ch.Caption:=UTF8Decode('2.0 立体声');
M4ch.Caption:=UTF8Decode('4.0 环绕立体声');
M6ch.Caption:=UTF8Decode('5.1 环绕立体声');
M8ch.Caption:=UTF8Decode('7.1 环绕立体声');
MShot.Caption:=UTF8Decode('截取单帧画面');
MLoadAudio.Caption:=UTF8Decode('载入伴音');
MUloadAudio.Caption:=UTF8Decode('卸载伴音');
MRotate0.Caption:=UTF8Decode('不旋转');
MRotate9.Caption:=UTF8Decode('顺时针旋转90度');
MRotateN9.Caption:=UTF8Decode('逆时针旋转90度');
MScale.Caption:=UTF8Decode(OSD_Scale_Prompt)+' '+MVideos.Caption;
MScale0.Caption:=UTF8Decode(OSD_Reset_Prompt+' '+OSD_Scale_Prompt);
MScale1.Caption:=UTF8Decode('放大');
MScale2.Caption:=UTF8Decode('缩小');
MPan.Caption:=UTF8Decode(OSD_Reset_Prompt+' '+OSD_Balance_Prompt);
MPan0.Caption:=UTF8Decode(OSD_Balance_Prompt+' 向右');
MPan1.Caption:=UTF8Decode(OSD_Balance_Prompt+' 向左');
Mdownloadsubtitle.Caption:=UTF8Decode(OSD_DownSubtitle_Prompt);
MSubStep.Caption:=UTF8Decode('字幕 语句');
MSubStep0.Caption:=UTF8Decode('上一句');
MSubStep1.Caption:=UTF8Decode('下一句');
MAudioDelay.Caption:=UTF8Decode(OSD_AudioDelay_Prompt);
MAudioDelay0.Caption:=UTF8Decode('延迟 +');
MAudioDelay1.Caption:=UTF8Decode('延迟 -');
MAudioDelay2.Caption:=UTF8Decode(OSD_Reset_Prompt+' '+OSD_AudioDelay_Prompt);
SCodepage.Caption:=UTF8Decode('字幕编码');
more1.Caption:=UTF8Decode('更多');
MSubDelay.Caption:=UTF8Decode(OSD_SubDelay_Prompt);
MSubDelay0.Caption:=MAudioDelay0.Caption;
MSubDelay1.Caption:=MAudioDelay1.Caption;
MSubDelay2.Caption:=UTF8Decode(OSD_Reset_Prompt+' '+OSD_SubDelay_Prompt);
MSubScale.Caption:=UTF8Decode(OSD_Scale_Prompt)+' '+MSub.Caption;
MSubScale0.Caption:=MScale1.Caption;
MSubScale1.Caption:=MScale2.Caption;
MSubScale2.Caption:=UTF8Decode(OSD_Reset_Prompt)+' '+MSub.Caption+UTF8Decode(OSD_Scale_Prompt);
MHelp.Caption:=UTF8Decode('帮助');
MKeyHelp.Caption:=UTF8Decode('快捷键 ...');
MAbout.Caption:=UTF8Decode('关于 ...');
end;
OptionsForm.BClose.Caption:=UTF8Decode('关闭');
OptionsForm.HelpText.Text:=UTF8Decode(
'双击左键'^I'切换全屏'^M^J+
'“Ctrl+左键拖曳” 或 “左键+右键拖曳”'^I'调节视频宽高比'^M^J+
'“右键拖曳字幕”'^I'缩放 字幕'^M^J+
'中键'^I'切换滚轮功能'^M^J+
'“Ctrl+滚轮” 或 “右键拖曳” 或 “滚轮+右键”'^I'前进/後退 媒体'^M^J+
'左键 单击'^I'播放/暂停'^M^J+
'左键拖曳'^I'调节窗体位置'^M^J+
'“Shift+左键拖曳” 或 “中键拖曳”'^I'缩放视频'^M^J+
'左键拖曳字幕'^I'调节字幕在屏位置'^M^J+
'左键 单击状态栏时间'^I'切换时间显示模式'^M^J+
'中键/右键 单击进度条滑块'^I'设置片头/片尾'^M^J^M^J+
'如果MPUI目录下存在''MPUI.ini''文件,MPUI将优先读取和保存设置到这个文件'^M^J+
'MPUI将以DVD、VCD、SVCD或蓝光的方式打开包含''VIDEO_TS''、''MPEGAV''、''MPEG2'''^M^J+
'或''BDMV''子目录的目录');
with OptionsForm do begin
ads.Caption:=UTF8Decode('播放视频时自动下载字幕');
Cconfig.Caption:=UTF8Decode('在播放的时候打开配置面板');
Cconfig.Hint:=UTF8Decode('勾选它或添加":cfg=1"到winamp插件路径后,在播放的时候将打开配置面板');
Esubfont.Hint:=UTF8Decode('输入字体的完整路径或系统字体目录下字体的字体名、字体文件名');
Csubfont.Hint:=Esubfont.Hint;
Cosdfont.Hint:=Esubfont.Hint;
Eosdfont.Hint:=Esubfont.Hint;
THelp.Caption:=MainForm.MHelp.Caption;
TAbout.Caption:=UTF8Decode('关于');
LVersionMPUI.Caption:=UTF8Decode('MPUI-hcb 版本:');
LVersionMPlayer.Caption:=UTF8Decode('MPlayer 版本:');
FY.Caption:=UTF8Decode('作者:');
Caption:=UTF8Decode('选项');
BOK.Caption:=UTF8Decode('确定');
BApply.Caption:=UTF8Decode('应用');
BSave.Caption:=UTF8Decode('保存');
TSystem.Caption:=UTF8Decode('系统');
TVideo.Caption:=MainForm.MVideos.Caption;
TAudio.Caption:=MainForm.MAudios.Caption;
TSub.Caption:=MainForm.MSub.Caption;
CSP.Caption:=UTF8Decode('单击画面暂停');
CRS.Caption:=UTF8Decode('启动时使用上次的窗体大小');
CTime.Caption:=UTF8Decode('在状态栏显示系统时间');
CRP.Caption:=UTF8Decode('启动时使用上次的窗体位置');
LAudioOut.Caption:=UTF8Decode('音频输出的驱动:');
CAudioOut.Items[0]:=UTF8Decode('(不解码 音频)');
CAudioOut.Items[1]:=UTF8Decode('(不播放 音频)');
LAudioDev.Caption:=UTF8Decode('DirectSound 输出设备:');
LPostproc.Caption:=UTF8Decode('图像后处理');
CPostproc.Items[0]:=UTF8Decode('关');
CPostproc.Items[1]:=UTF8Decode('自动');
CPostproc.Items[2]:=UTF8Decode('最佳画质');
LOCstr_AutoLocale:=UTF8Decode('(自动-选择)');
Cone.Caption:=UTF8Decode('仅运行一个MPUI实例');
CIndex.Caption:=UTF8Decode('重建 文件索引');
CIndex.Hint:=UTF8Decode('在没有找到索引的情况下重建AVI文件的索引, 从而允许搜索.'^M^J+
'对于损坏的/不完整的下载, 或制作低劣的AVI.');
CSoftVol.Caption:=UTF8Decode('音量增益10倍');
CGUI.Caption:=UTF8Decode('使用Mplayer的GUI');
CGUI.Hint:=UTF8Decode('对于那些没有-nogui选项的Mplayer,也可以勾选此项避免错误');
CRFScr.Caption:=UTF8Decode('右键全屏');
CRFScr.Hint:=UTF8Decode('右键进行切换全屏操作时,右键菜单将不会弹出');
CDr.Caption:=UTF8Decode('直接渲染');
CDr.Hint:=UTF8Decode('打开直接渲染功能(不是所有的编解码器和视频输出都支持),'^M^J+
'警告: 可能导致OSD/字幕损坏!');
double.Caption:=UTF8Decode('双倍缓存');
double.Hint:=UTF8Decode('启用双缓冲. 通过在内存里储存两帧来解决闪烁问题, 在显示'^M^J+
'一帧的同时解码另一帧.会影响OSD. 需要单一缓冲方式两倍的'^M^J+
'内存. 所以不能用于显存很少的显卡.');
CVolnorm.Caption:=UTF8Decode('标准化音量');
CVolnorm.Hint:=UTF8Decode('最大化文件的音量而不失真');
nMsgM.Caption:=UTF8Decode('使用nomsgmodule选项');
nMsgM.Hint:=UTF8Decode('不在每条控制台信息前添加模块名称。对于那些不支持-nomsgmodule选项的Mplayer,'^M^J+
'可以取消勾选此项以避免错误');
nFconf.Caption:=UTF8Decode('使用nofontconfig选项');
nFconf.Hint:=UTF8Decode('对于那些不支持-nofontconfig选项的Mplayer,可以'^M^J+
'取消勾选此项以避免错误');
CSPDIF.Caption:=UTF8Decode('通过S/PDIF输出AC3/DTS');
LCh.Caption:=UTF8Decode('立体声输出模式');
LRot.Caption:=UTF8Decode('旋转视频');
CLS.Caption:=UTF8Decode('弹出 “下载 歌词/字幕” 对话框');
CLS.Hint:=UTF8Decode('当mpui不能找到合适的歌词、字幕时,弹出 “下载 歌词/字幕” 对话框');
SSubcode.Caption:=UTF8Decode('字幕编码:');
SSubfont.Caption:=UTF8Decode('字幕字体:');
SOsdfont.Caption:=UTF8Decode('OSD字体:');
SOsdfont.Hint:=UTF8Decode('最近的Mplayer版本需要单独设置OSD字体');
RMplayer.Caption:=UTF8Decode('Mplayer的位置');
RCMplayer.Caption:=UTF8Decode('Mplayer和MPUI在同一目录下');
CWid.Caption:=UTF8Decode('使用WID');
LMAspect.Caption:=UTF8Decode('显示器的宽高比');
LVideoOut.Caption:=UTF8Decode('视频输出的驱动');
CEq2.Caption:=UTF8Decode('使用软件视频均衡器');
CEq2.Hint:=UTF8Decode('用于不支持硬件亮度对比度控制的显卡/驱动');
CYuy2.Caption:=UTF8Decode('YUY2色域');
CYuy2.Hint:=UTF8Decode('指定使用YV12/I420或422P到YUY2的软件转换.用于当显卡/驱动'^M^J+
'显示YV12速度慢而YUY2速度快的情况.');
CFlip.Caption:=UTF8Decode('上下翻转视频');
CMir.Caption:=UTF8Decode('左右翻转视频');
CVSync.Caption:=UTF8Decode('vsync垂直同步');
CVSync.Hint:=UTF8Decode('对于解决图像撕裂情况有所帮助');
CNi.Caption:=UTF8Decode('使用非交错的AVI解析器');
CNi.Hint:=UTF8Decode('用来处理某些质量差的AVI文件的播放');
CNobps.Caption:=UTF8Decode('不用平均比特率维持AV同步');
CNobps.Hint:=UTF8Decode('不使用平均比特率值来维持AV同步(AVI),'^M^J+
'对某些文件头损坏的AVI文件有帮助');
CFilter.Caption:=UTF8Decode('过滤 拖放的文件');
CFilter.Hint:=UTF8Decode('通过拖放载入文件时,仅载入支持的媒体文件');
CDnav.Caption:=UTF8Decode('使用DVD导航菜单');
CDnav.Hint:=UTF8Decode('如果编译了DVDNav');
CUni.Caption:=UTF8Decode('以UNICODE格式处理字幕');
CUtf.Caption:=UTF8Decode('以UTF-8格式处理字幕');
SFontColor.Caption:=UTF8Decode('字幕颜色');
SOutline.Caption:=UTF8Decode('字幕轮廓颜色');
CEfont.Caption:=UTF8Decode('使用内嵌字体');
CEfont.Hint:=UTF8Decode('允许抽取 Matroska 内嵌字体,这些字体能用于 SSA/ASS 字幕渲染');
CAss.Caption:=UTF8Decode('使用SSA/ASS库渲染字幕');
CAss.Hint:=UTF8Decode('打开 SSA/ASS 字幕渲染,libass 将用于 SSA/ASS'^M^J+
'外部字幕和 Matroska 内部字幕');
CISub.Caption:=UTF8Decode('截图包含字幕');
SFol.Caption:=UTF8Decode('字幕文字轮廓宽度:');
SFsize.Caption:=UTF8Decode('字幕文字大小:');
SFB.Caption:=UTF8Decode('字体模糊半径:');
CWadsp.Caption:=UTF8Decode('使用Winamp的DSP插件(如果编译了Wadsp补丁)');
Clavf.Caption:=UTF8Decode('使用libavformat进行Demux');
Clavf.Hint:=UTF8Decode('对某些不能播放的文件,可以试试这个选项,可能造成时间显示不准确');
CFd.Caption:=UTF8Decode('启用丢帧');
CFd.Hint:=UTF8Decode('跳过一些帧从而在慢的机器上实现A/V同步.视频滤镜不会应用到这些帧上.'^M^J+
'对于B帧解码也会完全跳过');
CAsync.Caption:=UTF8Decode('自动同步');
CAsync.Hint:=UTF8Decode('基于音频延迟的检测逐步调整A/V同步,对于某些不能连续读取、帧速较低'^M^J+
'的文件(如一些屏幕捕捉的视频)反而不是很好');
CCache.Caption:=UTF8Decode('缓存');
CCache.Hint:=UTF8Decode('设定播放 文件/URL的预缓冲(以kBytes为单位),对速度慢的媒体特别有用');
CPriorityBoost.Caption:=UTF8Decode('以高优先级运行');
CPriorityBoost.Hint:=UTF8Decode('使用高的优先级会避免因系统繁忙造成的播放不流畅的现象,'^M^J+
'有时候可能造成其他的一些问题');
LParams.Caption:=UTF8Decode('其它 MPlayer 播放参数:');
LHelp.Caption:=THelp.Caption;
CAddsFiles.Caption:=UTF8Decode('添加连续文件');
SSF.Caption:=UTF8Decode('保存截图的目录');
SLyric.Caption:=UTF8Decode('歌词目录:');
TLyric.Caption:=UTF8Decode('歌词');
TLog.Caption:=UTF8Decode('日志');
Ldlod.Caption:=UTF8Decode('桌面歌词');
LTCL.Caption:=UTF8Decode('文字');
LBCL.Caption:=UTF8Decode('背景');
LHCL.Caption:=UTF8Decode('高亮');
TBa.Caption:=UTF8Decode('全选');
TBn.Caption:=UTF8Decode('无');
TFadd.Caption:=UTF8Decode('添加');
TFdel.Caption:=UTF8Decode('删除');
TFSet.Caption:=UTF8Decode('关联');
TOther.Caption:=UTF8Decode('其他');
CDs.Caption:=UTF8Decode('总是显示视频界面');
RHK.Caption:=UTF8Decode('重置 快捷键');
HK.Columns[0].Caption:=UTF8Decode('快捷键');
HK.Columns[1].Caption:=UTF8Decode('操作');
TUnit.Caption:=UTF8Decode('秒/查寻');
TseekL.Caption:=UTF8Decode('跳跃');
CAV.Caption:=UTF8Decode('libavcodec解码线程数');
HK.Hint:=UTF8Decode('按下快捷键去查找对应的记录,双击记录去修改快捷键');
HK.Items[0].SubItems.Strings[0]:=UTF8Decode('增加视频高度');
HK.Items[1].SubItems.Strings[0]:=UTF8Decode('减小视频高度');
HK.Items[2].SubItems.Strings[0]:=UTF8Decode('减小视频宽度');
HK.Items[3].SubItems.Strings[0]:=UTF8Decode('增加视频宽度');
HK.Items[4].SubItems.Strings[0]:=UTF8Decode('放大字幕');
HK.Items[5].SubItems.Strings[0]:=UTF8Decode('缩小字幕');
HK.Items[6].SubItems.Strings[0]:=UTF8Decode('自定义尺寸');
HK.Items[7].SubItems.Strings[0]:=MainForm.MSize50.Caption;
HK.Items[8].SubItems.Strings[0]:=MainForm.MSize100.Caption;
HK.Items[9].SubItems.Strings[0]:=MainForm.MSize200.Caption;
HK.Items[10].SubItems.Strings[0]:=UTF8Decode('切换视角');
HK.Items[11].SubItems.Strings[0]:=MainForm.MEqualizer.Caption;
HK.Items[12].SubItems.Strings[0]:=UTF8Decode('重置缩放');
HK.Items[13].SubItems.Strings[0]:=UTF8Decode('开始/停止 截取每帧画面');
HK.Items[14].SubItems.Strings[0]:=MainForm.MSubDelay2.Caption;
HK.Items[15].SubItems.Strings[0]:=UTF8Decode('减小音频延迟');
HK.Items[16].SubItems.Strings[0]:=UTF8Decode('增加音频延迟');
HK.Items[17].SubItems.Strings[0]:=UTF8Decode('切换 OSD');
HK.Items[18].SubItems.Strings[0]:=UTF8Decode('重置 视频均衡器');
HK.Items[19].SubItems.Strings[0]:=UTF8Decode('切换反交错(自适应反交错时有效)');
HK.Items[20].SubItems.Strings[0]:=UTF8Decode('放大视频');
HK.Items[21].SubItems.Strings[0]:=UTF8Decode('缩小视频');
HK.Items[22].SubItems.Strings[0]:=UTF8Decode('减小对比');
HK.Items[23].SubItems.Strings[0]:=UTF8Decode('增大对比');
HK.Items[24].SubItems.Strings[0]:=UTF8Decode('减小亮度');
HK.Items[25].SubItems.Strings[0]:=UTF8Decode('增大亮度');
HK.Items[26].SubItems.Strings[0]:=UTF8Decode('减小色调');
HK.Items[27].SubItems.Strings[0]:=UTF8Decode('增大色调');
HK.Items[28].SubItems.Strings[0]:=UTF8Decode('减小饱和');
HK.Items[29].SubItems.Strings[0]:=UTF8Decode('增大饱和');
HK.Items[30].SubItems.Strings[0]:=UTF8Decode('减小音量');
HK.Items[31].SubItems.Strings[0]:=UTF8Decode('增大音量');
HK.Items[32].SubItems.Strings[0]:=UTF8Decode('减小 gamma');
HK.Items[33].SubItems.Strings[0]:=UTF8Decode('增大 gamma');
HK.Items[34].SubItems.Strings[0]:=CFd.Caption;
HK.Items[35].SubItems.Strings[0]:=MainForm.BFullscreen.Hint;
HK.Items[36].SubItems.Strings[0]:=UTF8Decode('切换字幕的对齐方式');
HK.Items[37].SubItems.Strings[0]:=UTF8Decode('向上移动字幕');
HK.Items[38].SubItems.Strings[0]:=UTF8Decode('向下移动字幕');
HK.Items[39].SubItems.Strings[0]:=MainForm.MShowSub.Caption;
HK.Items[40].SubItems.Strings[0]:=MainForm.MShot.Caption;
HK.Items[41].SubItems.Strings[0]:=UTF8Decode('上一句字幕');
HK.Items[42].SubItems.Strings[0]:=UTF8Decode('下一句字幕');
HK.Items[43].SubItems.Strings[0]:=UTF8Decode('减小字幕延迟');
HK.Items[44].SubItems.Strings[0]:=UTF8Decode('增加字幕延迟');
HK.Items[45].SubItems.Strings[0]:=UTF8Decode('DVD菜单 - ')+MainForm.MRmMenu.Caption;
HK.Items[46].SubItems.Strings[0]:=UTF8Decode('DVD菜单 - 选择');
HK.Items[47].SubItems.Strings[0]:=UTF8Decode('DVD菜单 - 向上');
HK.Items[48].SubItems.Strings[0]:=UTF8Decode('DVD菜单 - 向下');
HK.Items[49].SubItems.Strings[0]:=UTF8Decode('DVD菜单 - 向左');
HK.Items[50].SubItems.Strings[0]:=UTF8Decode('DVD菜单 - 向右');
HK.Items[51].SubItems.Strings[0]:=UTF8Decode('DVD菜单 - ')+MainForm.MRnMenu.Caption;
HK.Items[52].SubItems.Strings[0]:=MainForm.MKaspect.Caption;
HK.Items[53].SubItems.Strings[0]:=MainForm.Hide_menu.Caption;
HK.Items[54].SubItems.Strings[0]:=MainForm.Mctrl.Caption;
HK.Items[55].SubItems.Strings[0]:=MainForm.MCompact.Caption;
HK.Items[56].SubItems.Strings[0]:=UTF8Decode('下一个字幕编码 ');
HK.Items[57].SubItems.Strings[0]:=MainForm.MPCtrl.Caption;
HK.Items[58].SubItems.Strings[0]:=MainForm.MMaxW.Caption;
HK.Items[59].SubItems.Strings[0]:=MainForm.MOpenFile.Caption;
HK.Items[60].SubItems.Strings[0]:=MainForm.MOpenURL.Caption;
HK.Items[61].SubItems.Strings[0]:=MainForm.MClose.Caption;
HK.Items[62].SubItems.Strings[0]:=MainForm.MStop.Caption;
HK.Items[63].SubItems.Strings[0]:=MainForm.MPan.Caption;
HK.Items[64].SubItems.Strings[0]:=MainForm.MQuit.Caption;
HK.Items[65].SubItems.Strings[0]:=MainForm.MOpenDir.Caption;
HK.Items[66].SubItems.Strings[0]:=MainForm.MAudioDelay2.Caption;
HK.Items[67].SubItems.Strings[0]:=MainForm.MQuit.Caption;
HK.Items[68].SubItems.Strings[0]:=MainForm.MStereo.Caption;
HK.Items[69].SubItems.Strings[0]:=MainForm.MLchannels.Caption;
HK.Items[70].SubItems.Strings[0]:=MainForm.MRchannels.Caption;
HK.Items[71].SubItems.Strings[0]:=UTF8Decode('向後 '+IntToStr(seekLen)+'秒');
HK.Items[72].SubItems.Strings[0]:=UTF8Decode('向前 '+IntToStr(seekLen)+'秒');
HK.Items[73].SubItems.Strings[0]:=MainForm.MSeekF60.Caption;
HK.Items[74].SubItems.Strings[0]:=MainForm.MSeekR60.Caption;
HK.Items[75].SubItems.Strings[0]:=MainForm.MSeekF600.Caption;
HK.Items[76].SubItems.Strings[0]:=MainForm.MSeekR600.Caption;
HK.Items[77].SubItems.Strings[0]:=UTF8Decode('前进一个章节');
HK.Items[78].SubItems.Strings[0]:=UTF8Decode('後退一个章节');
HK.Items[79].SubItems.Strings[0]:=UTF8Decode('重置 速度');
HK.Items[80].SubItems.Strings[0]:=UTF8Decode('减速');
HK.Items[81].SubItems.Strings[0]:=UTF8Decode('加速');
HK.Items[82].SubItems.Strings[0]:=MainForm.MMute.Caption;
HK.Items[83].SubItems.Strings[0]:=UTF8Decode('切换纵横比');
HK.Items[84].SubItems.Strings[0]:=UTF8Decode('切换字幕');
HK.Items[85].SubItems.Strings[0]:=UTF8Decode('切换视频轨');
HK.Items[86].SubItems.Strings[0]:=UTF8Decode('切换节目');
HK.Items[87].SubItems.Strings[0]:=MainForm.MPan1.Caption;
HK.Items[88].SubItems.Strings[0]:=MainForm.MPan0.Caption;
HK.Items[89].SubItems.Strings[0]:=UTF8Decode('切换音轨');
HK.Items[90].SubItems.Strings[0]:=UTF8Decode('切换 置顶');
HK.Items[91].SubItems.Strings[0]:=MainForm.MShowPlaylist.Caption;
HK.Items[92].SubItems.Strings[0]:=MainForm.MOptions.Caption;
HK.Items[93].SubItems.Strings[0]:=MainForm.MStreamInfo.Caption;
HK.Items[94].SubItems.Strings[0]:=MainForm.MShowOutput.Caption;
HK.Items[95].SubItems.Strings[0]:=MainForm.MIntro.Caption;
HK.Items[96].SubItems.Strings[0]:=MainForm.MEnd.Caption;
HK.Items[97].SubItems.Strings[0]:=MainForm.MSkip.Caption;
HK.Items[98].SubItems.Strings[0]:=MainForm.MPause.Caption;
HK.Items[99].SubItems.Strings[0]:=UTF8Decode('播放/暂停');
HK.Items[100].SubItems.Strings[0]:=MainForm.MPrev.Caption;
HK.Items[101].SubItems.Strings[0]:=MainForm.MNext.Caption;
HK.Items[102].SubItems.Strings[0]:=MainForm.MTM.Caption;
end;
with PlaylistForm do begin
TMLyric.Hint:=UTF8Decode('通过右键菜单,可以改变歌词的编码');
Caption:=UTF8Decode('播放列表');
BPlay.Hint:=UTF8Decode('播放 列表');
BAdd.Hint:=UTF8Decode('添加文件 ...');
BAddDir.Hint:=UTF8Decode('添加目录 ...');
BMoveUp.Hint:=UTF8Decode('上移');
BMoveDown.Hint:=UTF8Decode('下移');
BDelete.Hint:=UTF8Decode('移除所选');
BClear.Hint:=UTF8Decode('清除列表');
CShuffle.Hint:=UTF8Decode('随机播放');
CLoop.Hint:=UTF8Decode('循环播放全部');
COneLoop.Hint:=UTF8Decode('循环播放当前');
BSave.Hint:=UTF8Decode('保存列表...');
TntTabSheet1.Caption:=Caption;
TntTabSheet2.Caption:=UTF8Decode('歌词');
CPA.Caption:=UTF8Decode('自动选择');;
CP0.Caption:=UTF8Decode('系统默认');
MDownloadLyric.Caption:=MainForm.MDownloadLyric.Caption;
MLoadLyric.Caption:=MainForm.MLoadlyric.Caption;
CPO.Caption:=UTF8Decode('其他');
SC.Caption:=UTF8Decode('简体中文');
TC.Caption:=UTF8Decode('繁体中文');
CY0.Caption:=UTF8Decode('Русский (俄文 OEM866)');
CY.Caption:=UTF8Decode('西里尔文');
CY4.Caption:=UTF8Decode('Русский (俄文, 20866,KOI8-R)');
CY6.Caption:=UTF8Decode('Українська (乌克兰文,21866,KOI8-U)');
BG.Caption:=UTF8Decode('Български (保加利亚文)');
AR.Caption:=UTF8Decode('العربية (阿拉伯文)');
TU.Caption:=UTF8Decode('Türkiye (土耳其文)');
HE.Caption:=UTF8Decode('עִבְרִית (希伯来文)');
JA.Caption:=UTF8Decode('日文');
KO.Caption:=UTF8Decode('한국어 (韩文)');
TH.Caption:=UTF8Decode('ภาษาไทย (泰文)');
FR.Caption:=UTF8Decode('Français(法文)');
IC.Caption:=UTF8Decode('íslenska (冰岛文)');
PO.Caption:=UTF8Decode('Português(葡萄牙文)');
GR.Caption:=UTF8Decode('Ελληνικά (希腊文)');
BA.Caption:=UTF8Decode('波罗的海文');
VI.Caption:=UTF8Decode('Việt (越南文1258,windows-1258)');
WE.Caption:=UTF8Decode('西欧(1252,iso-8859-1)');
CE.Caption:=UTF8Decode('中欧');
ND.Caption:=UTF8Decode('Norsk (挪威文)');
i18.Caption:=UTF8Decode('国际');
co.Caption:=UTF8Decode('Hrvatska (克罗地亚文)');
rm.Caption:=UTF8Decode('Română (罗马尼亚文)');
ro.Caption:=UTF8Decode('罗马文');
pg.Caption:=UTF8Decode('ਪੰਜਾਬੀ 旁遮普(古尔木其)文');
gu.Caption:=UTF8Decode('ગુજરાતી (古吉拉特文)');
ma.Caption:=UTF8Decode('മലയാളം (马拉亚拉姆文)');
ka.Caption:=UTF8Decode('ಕನ್ನಡ (卡纳达文)');
oy.Caption:=UTF8Decode('奥里亚文');
am.Caption:=UTF8Decode('অসমীয়া (阿萨姆文)');
te.Caption:=UTF8Decode('తెలుగు (泰卢固文)');
ta.Caption:=UTF8Decode('தமிழ் (泰米尔文)');
be.Caption:=UTF8Decode('বাংলা (孟加拉文)');
dv.Caption:=UTF8Decode('संस्कृतम् (梵文)');
end;
AddDircp:=UTF8Decode('选择一个文件夹');
with EqualizerForm do begin
Caption:=MainForm.MEqualizer.Caption;
BReset.Caption:=UTF8Decode(OSD_Reset_Prompt);
BClose.Caption:=OptionsForm.BClose.Caption;
SBri.Caption:=UTF8Decode(OSD_Brightness_Prompt);
SCon.Caption:=UTF8Decode(OSD_Contrast_Prompt);
SSat.Caption:=UTF8Decode(OSD_Saturation_Prompt);
SHue.Caption:=UTF8Decode(OSD_Hue_Prompt);
end;
with OpenDevicesForm do begin
LVideoDevices.Caption:=UTF8Decode('视频设备');
LAudioDevices.Caption:=UTF8Decode('音频设备');
LCountryCode.Caption:=UTF8Decode('国家代码');
TOpen.Caption:=UTF8Decode('打开');
TScan.Caption:=UTF8Decode('扫描');
TStop.Caption:=UTF8Decode('停止');
TView.Caption:=UTF8Decode('查看');
TPrev.Caption:=UTF8Decode('上一个');
TNext.Caption:=UTF8Decode('下一个');
TClear.Caption:=UTF8Decode('清空列表');
TLoad.Caption:=UTF8Decode('载入列表');
TSave.Caption:=UTF8Decode('保存列表');
HK.Columns[0].Caption:=UTF8Decode('频道');
HK.Columns[1].Caption:=UTF8Decode('频率');
end;
InfoForm.Caption:=UTF8Decode('文件信息');
with DLyricForm do begin
BSearch.Caption:=UTF8Decode('搜索');
LyricListView.Column[1].Caption:=UTF8Decode('歌手');
LyricListView.Column[2].Caption:=UTF8Decode('标题');
SubListView.Column[1].Caption:=UTF8Decode('片名');
SubListView.Column[2].Caption:=UTF8Decode('语言');
SubListView.Column[3].Caption:=UTF8Decode('格式');
SubListView.Column[4].Caption:=UTF8Decode('CD数');
SubListView.Column[5].Caption:=UTF8Decode('下载数');
SubListView.Column[6].Caption:=UTF8Decode('添加日期');
SSubtitle.Caption:=MainForm.MSub.Caption;
slyric.Caption:=UTF8Decode('歌词');
LArtist.Caption:=LyricListView.Column[1].Caption + ':';
LTitle.Caption:=LyricListView.Column[2].Caption + ':';
LSLang.Caption:=SubListView.Column[2].Caption + ':';
LSTitle.Caption:=LTitle.Caption;
BApply.Caption:=OptionsForm.BApply.Caption;
BLApply.Caption:=OptionsForm.BApply.Caption;
BSave.Caption:=OptionsForm.BSave.Caption;
BLSave.Caption:=BSave.Caption;
BSave.Hint:=UTF8Decode('保存 歌词');
BLSave.Hint:=UTF8Decode('保存 字幕');
BClose.Caption:=OptionsForm.BClose.Caption;
BLClose.Caption:=BClose.Caption;
BSSearch.Caption:=BSearch.Caption;
end;
InfoForm.BClose.Caption:=OptionsForm.BClose.Caption;
InfoForm.TCB.Caption:=UTF8Decode('复制信息');
LOCstr_NoInfo:=UTF8Decode('当前无可用的文件信息');
LOCstr_InfoFileName:=UTF8Decode('片名');
LOCstr_InfoFileFormat:=UTF8Decode('格式');
LOCstr_InfoPlaybackTime:=UTF8Decode('片长');
LOCstr_InfoTags:=UTF8Decode('文件 元信息');
LOCstr_InfoVideo:=UTF8Decode('视频');
LOCstr_InfoAudio:=UTF8Decode('音频');
LOCstr_InfoDecoder:=UTF8Decode('解码器');
LOCstr_InfoCodec:=UTF8Decode('编码');
LOCstr_InfoBitrate:=UTF8Decode('位率');
LOCstr_InfoVideoSize:=UTF8Decode('尺寸');
LOCstr_InfoVideoFPS:=UTF8Decode('帧率');
LOCstr_InfoVideoAspect:=UTF8Decode('宽高比');
LOCstr_InfoAudioRate:=UTF8Decode('采样率');
LOCstr_InfoAudioChannels:=UTF8Decode('声道');
IKeyHint:=UTF8Decode('请按下快捷键');
IKeyerror:=UTF8Decode('快捷键已被使用');
IKeyerror1:=UTF8Decode('要覆盖它吗?');
Ccap:=UTF8Decode('章节'); Tcap:=UTF8Decode('轨');
Acap:=UTF8Decode('视角');
end;
begin
RegisterLocale(UTF8Decode('简体中文 (Simplified Chinese)'),Activate,$804,GB2312_CHARSET);
end.