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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
|
# Simplified Chinese translation of pcsxr.
# Copyright (C) 2008 Wei Mingzhi
# This file is distributed under the same license as the pcsxr package.
# Wei Mingzhi <whistler@openoffice.org>, 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: pcsxr 1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-03-25 19:23+0800\n"
"PO-Revision-Date: 2009-03-25 19:24+0700\n"
"Last-Translator: Wei Mingzhi <whistler@openoffice.org>\n"
"Language-Team: Simplified Chinese <whistler@openoffice.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=gbk\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../libpcsxcore/cdriso.c:125
#, c-format
msgid "Could not open %s.\n"
msgstr "无法打开 %s。\n"
#: ../libpcsxcore/cheat.c:335
#: ../libpcsxcore/cheat.c:454
msgid "(Untitled)"
msgstr "(未命名)"
#: ../libpcsxcore/misc.c:372
#, c-format
msgid "Error opening file: %s"
msgstr "打开文件错误: %s!"
#: ../libpcsxcore/misc.c:390
msgid "CPE files not supported."
msgstr "CPE 文件不被支持!"
#: ../libpcsxcore/misc.c:394
msgid "COFF files not supported."
msgstr "COFF 文件不被支持!"
#: ../libpcsxcore/misc.c:398
msgid "This file does not appear to be a valid PSX file."
msgstr "此文件不是一个合法的 PSX 文件。"
#: ../libpcsxcore/plugins.c:33
#, c-format
msgid "Error loading %s: %s"
msgstr "无法加载 %s: %s"
#: ../libpcsxcore/plugins.c:162
#, c-format
msgid "Could not load GPU plugin %s!"
msgstr "无法加载 GPU 插件 %s!"
#: ../libpcsxcore/plugins.c:228
#, c-format
msgid "Could not load CD-ROM plugin %s!"
msgstr "无法加载 CD-ROM 插件 %s!"
#: ../libpcsxcore/plugins.c:467
#, c-format
msgid "Could not load SPU plugin %s!"
msgstr "无法加载 SPU 插件 %s!"
#: ../libpcsxcore/plugins.c:615
#, c-format
msgid "Could not load Controller 1 plugin %s!"
msgstr "无法加载 \"控制器1\" 插件 %s!"
#: ../libpcsxcore/plugins.c:669
#, c-format
msgid "Could not load Controller 2 plugin %s!"
msgstr "无法加载 \"控制器2\" 插件 %s!"
#: ../libpcsxcore/plugins.c:712
#, c-format
msgid "Could not load NetPlay plugin %s!"
msgstr "无法加载联网游戏插件 %s!"
#: ../libpcsxcore/plugins.c:775
#, c-format
msgid "Error initializing CD-ROM plugin: %d"
msgstr "CD-ROM 插件初始化错误: %d"
#: ../libpcsxcore/plugins.c:777
#, c-format
msgid "Error initializing GPU plugin: %d"
msgstr "GPU 插件初始化错误: %d"
#: ../libpcsxcore/plugins.c:779
#, c-format
msgid "Error initializing SPU plugin: %d"
msgstr "SPU 插件初始化错误: %d"
#: ../libpcsxcore/plugins.c:781
#, c-format
msgid "Error initializing Controller 1 plugin: %d"
msgstr "\"控制器1\" 插件初始化错误: %d"
#: ../libpcsxcore/plugins.c:783
#, c-format
msgid "Error initializing Controller 2 plugin: %d"
msgstr "\"控制器2\" 插件初始化错误: %d"
#: ../libpcsxcore/plugins.c:787
#, c-format
msgid "Error initializing NetPlay plugin: %d"
msgstr "联网游戏插件初始化错误: %d"
#: ../libpcsxcore/plugins.c:790
msgid "Plugins loaded.\n"
msgstr "插件已加载。\n"
#: ../libpcsxcore/psxmem.c:69
msgid "Error allocating memory!"
msgstr "分配内存错误!"
#: ../libpcsxcore/psxmem.c:109
#, c-format
msgid "Could not open BIOS:\"%s\". Enabling HLE Bios!\n"
msgstr "无法打开 BIOS: \"%s\"。使用内部 HLE Bios。\n"
#: ../libpcsxcore/r3000a.c:34
#, c-format
msgid "Running PCSX Version %s (%s).\n"
msgstr "正在运行 PCSX 版本 %s (%s)。\n"
#: ../libpcsxcore/sio.c:99
msgid "Connection closed!\n"
msgstr "连接被关闭!\n"
#: ../libpcsxcore/sio.c:322
#, c-format
msgid "No memory card value was specified - creating a default card %s\n"
msgstr "未指定记忆卡 - 创建一个默认的记忆卡 %s\n"
#: ../libpcsxcore/sio.c:326
#, c-format
msgid "The memory card %s doesn't exist - creating it\n"
msgstr "记忆卡 %s 不存在 - 正在创建\n"
#: ../libpcsxcore/sio.c:342
#, c-format
msgid "Memory card %s failed to load!\n"
msgstr "记忆卡 %s 读取失败!\n"
#: ../libpcsxcore/sio.c:346
#, c-format
msgid "Loading memory card %s\n"
msgstr "加载记忆卡 %s\n"
#: ../gui/Cheat.c:49
msgid " Yes"
msgstr " 是"
#: ../gui/Cheat.c:118
msgid "Add New Cheat"
msgstr "添加新作弊码"
#: ../gui/Cheat.c:126
#: ../gui/Cheat.c:210
msgid "Cheat Description:"
msgstr "作弊码描述:"
#: ../gui/Cheat.c:134
#: ../gui/Cheat.c:219
msgid "Cheat Code:"
msgstr "作弊码:"
#: ../gui/Cheat.c:164
#: ../gui/Cheat.c:259
#: ../gui/LnxMain.c:359
msgid "Error"
msgstr "错误"
#: ../gui/Cheat.c:164
#: ../gui/Cheat.c:259
msgid "Invalid cheat code!"
msgstr "非法作弊码!"
#: ../gui/Cheat.c:202
msgid "Edit Cheat"
msgstr "编辑作弊码"
#: ../gui/Cheat.c:357
msgid "Open Cheat File"
msgstr "打开作弊码文件"
#: ../gui/Cheat.c:367
#: ../gui/Cheat.c:407
msgid "PCSX Cheat Code Files (*.cht)"
msgstr "PCSX 作弊码文件 (*.cht)"
#: ../gui/Cheat.c:372
#: ../gui/Gtk2Gui.c:626
#: ../win32/gui/WndMain.c:1259
#: ../win32/gui/WndMain.c:1340
msgid "All Files"
msgstr "所有文件"
#: ../gui/Cheat.c:397
msgid "Save Cheat File"
msgstr "保存作弊码文件"
#: ../gui/Cheat.c:412
msgid "All Files (*.*)"
msgstr "所有文件 (*.*)"
#: ../gui/Cheat.c:445
#: ../gui/Gtk2Gui.c:377
#: ../gui/Gtk2Gui.c:998
msgid "Error: Glade interface could not be loaded!"
msgstr "错误:无法加载 Glade 界面!"
#: ../gui/Cheat.c:450
msgid "Cheat Codes"
msgstr "作弊码"
#: ../gui/Cheat.c:456
#: ../data/pcsx.glade2:2250
msgid "Enable"
msgstr "启用"
#: ../gui/Cheat.c:462
msgid "Description"
msgstr "描述"
#: ../gui/Gtk2Gui.c:385
#: ../data/pcsx.glade2:517
msgid "Configure PCSX"
msgstr "配置 PCSX"
#: ../gui/Gtk2Gui.c:471
msgid "Select PSX EXE File"
msgstr "选择 PSX EXE 文件"
#: ../gui/Gtk2Gui.c:481
msgid "PlayStation Executable Files"
msgstr "PlayStation 可执行文件"
#: ../gui/Gtk2Gui.c:521
msgid "Not a valid PSX file"
msgstr "不是一个合法的 PSX 文件"
#: ../gui/Gtk2Gui.c:521
msgid "The file does not appear to be a valid Playstation executable"
msgstr "此文件不是一个合法的 PlayStation 可执行文件"
#: ../gui/Gtk2Gui.c:552
#: ../gui/Gtk2Gui.c:675
msgid "CD ROM failed"
msgstr "CD-ROM 失败"
#: ../gui/Gtk2Gui.c:552
#: ../gui/Gtk2Gui.c:675
#: ../win32/gui/WndMain.c:382
#: ../win32/gui/WndMain.c:431
msgid "The CD does not appear to be a valid Playstation CD"
msgstr "此光盘不是一张合法的 PlayStation 光盘。"
#: ../gui/Gtk2Gui.c:560
#: ../gui/Gtk2Gui.c:683
#: ../win32/gui/WndMain.c:388
#: ../win32/gui/WndMain.c:437
msgid "Could not load CD-ROM!"
msgstr "无法加载光盘!"
#: ../gui/Gtk2Gui.c:560
msgid "The CD ROM could not be loaded"
msgstr "无法加载 CD-ROM"
#: ../gui/Gtk2Gui.c:575
msgid "Could not run BIOS"
msgstr "无法运行 BIOS"
#: ../gui/Gtk2Gui.c:575
msgid "Running BIOS is not supported with Internal HLE BIOS."
msgstr "内部 HLE BIOS 不支持直接运行。"
#: ../gui/Gtk2Gui.c:605
msgid "Open PSX Disc Image File"
msgstr "打开 PSX 光盘镜像文件"
#: ../gui/Gtk2Gui.c:621
msgid "PSX Image Files (*.bin, *.img, *.mdf, *.iso)"
msgstr "PS 镜像文件 (*.bin, *.img, *.mdf, *.iso)"
#: ../gui/Gtk2Gui.c:857
#, c-format
msgid "Loaded state %s."
msgstr "已读取存档 %s。"
#: ../gui/Gtk2Gui.c:862
#, c-format
msgid "Error loading state %s!"
msgstr "读取存档 %s 时出错。"
#: ../gui/Gtk2Gui.c:873
#, c-format
msgid "Saved state %s."
msgstr "已保存存档 %s"
#: ../gui/Gtk2Gui.c:875
#, c-format
msgid "Error saving state %s!"
msgstr "保存存档 %s 时出错。"
#: ../gui/Gtk2Gui.c:909
#: ../gui/Gtk2Gui.c:936
msgid "Select State File"
msgstr "选择存档文件"
#: ../gui/Gtk2Gui.c:1040
msgid "Icon"
msgstr "图标"
#: ../gui/Gtk2Gui.c:1046
#: ../win32/gui/WndMain.c:604
msgid "Title"
msgstr "标题"
#: ../gui/Gtk2Gui.c:1052
#: ../win32/gui/WndMain.c:610
msgid "Status"
msgstr "状态"
#: ../gui/Gtk2Gui.c:1058
msgid "ID"
msgstr "ID"
#: ../gui/Gtk2Gui.c:1064
msgid "Name"
msgstr "名称"
#: ../gui/Gtk2Gui.c:1126
#: ../win32/gui/WndMain.c:807
msgid "Deleted"
msgstr "已删除"
#: ../gui/Gtk2Gui.c:1128
#: ../gui/Gtk2Gui.c:1132
#: ../win32/gui/WndMain.c:808
#: ../win32/gui/WndMain.c:811
msgid "Free"
msgstr "空闲"
#: ../gui/Gtk2Gui.c:1130
#: ../win32/gui/WndMain.c:810
msgid "Used"
msgstr "已使用"
#: ../gui/Gtk2Gui.c:1224
msgid "Format this Memory Card?"
msgstr "格式化此记忆卡?"
#: ../gui/Gtk2Gui.c:1226
msgid "If you format the memory card, the card will be empty, and any existing data overwritten."
msgstr "如果您选择格式化记忆卡,记忆卡将被清空,并且任何现有数据都将被覆盖。"
#: ../gui/Gtk2Gui.c:1229
msgid "Format card"
msgstr "格式化记忆卡"
#: ../gui/Gtk2Gui.c:1344
msgid "No space available in the target memory card!"
msgstr "目标记忆卡没有空余位置!"
#: ../gui/Gtk2Gui.c:1489
msgid "Memory Card Manager"
msgstr "记忆卡管理器"
#: ../gui/Gtk2Gui.c:1758
msgid "No configuration required"
msgstr "不需要配置"
#: ../gui/Gtk2Gui.c:1758
msgid "This plugin doesn't need to be configured."
msgstr "此插件需要被配置。"
#: ../gui/Gtk2Gui.c:2017
#, c-format
msgid "Could not open BIOS directory: '%s'\n"
msgstr "无法打开 BIOS 目录: \"%s\"\n"
#: ../gui/Gtk2Gui.c:2049
#: ../gui/Gtk2Gui.c:2143
#: ../gui/LnxMain.c:145
#, c-format
msgid "Could not open directory: '%s'\n"
msgstr "无法打开目录: \"%s\"\n"
#: ../gui/Gtk2Gui.c:2112
msgid "Internal HLE Bios"
msgstr "内部 HLE-Bios"
#: ../gui/Gtk2Gui.c:2204
msgid "Notice"
msgstr "警告"
#: ../gui/LnxMain.c:64
#, c-format
msgid "Creating memory card: %s\n"
msgstr "建立记忆卡: %s\n"
#: ../gui/LnxMain.c:261
msgid ""
" pcsx [options] [file]\n"
"\toptions:\n"
"\t-runcd\t\tRuns CD-ROM\n"
"\t-cdfile FILE\tRuns a CD image file\n"
"\t-nogui\t\tDon't open the GTK GUI\n"
"\t-cfg FILE\tLoads desired configuration file (default: ~/.pcsx/pcsx.cfg)\n"
"\t-psxout\t\tEnable PSX output\n"
"\t-load STATENUM\tLoads savestate STATENUM (1-5)\n"
"\t-h -help\tDisplay this message\n"
"\tfile\t\tLoads file\n"
msgstr ""
" pcsx [选项] [文件]\n"
"\t选项:\n"
"\t-runcd\t\t运行 CD-ROM\n"
"\t-cdfile 文件\t运行一个 CD 镜像文件\n"
"\t-nogui\t\t不使用 GTK 图形界面\n"
"\t-cfg 文件\t加载一个特定的配置文件 (默认为: ~/.pcsx/pcsx.cfg)\n"
"\t-psxout\t\t启用 PSX 输出\n"
"\t-load 编号\t加载指定编号的存档 (1-5)\n"
"\t-h -help\t显示此信息\n"
"\t文件\t\t加载文件\n"
#: ../gui/LnxMain.c:299
#, c-format
msgid "PCSX cannot be configured without using the GUI -- you should restart without -nogui.\n"
msgstr "PCSX 不能在字符界面下配置 -- 请不使用 -nogui 参数重新启动程序\n"
#: ../gui/LnxMain.c:359
msgid "Failed loading plugins!"
msgstr "加载插件失败!"
#: ../gui/LnxMain.c:376
#, c-format
msgid "Could not load CD-ROM!\n"
msgstr "无法加载光盘。\n"
#: ../gui/LnxMain.c:415
#, c-format
msgid "PSX emulator couldn't be initialized.\n"
msgstr "无法初始化 PSX 模拟器。\n"
#: ../gui/Plugin.c:204
#: ../data/pcsx.glade2:1219
#, c-format
msgid "SIO IRQ Always Enabled"
msgstr "SIO IRQ 总是启用"
#: ../gui/Plugin.c:205
#, c-format
msgid "SIO IRQ Not Always Enabled"
msgstr "SIO IRQ 不总是启用"
#: ../gui/Plugin.c:211
#, c-format
msgid "Black & White Mdecs Only Enabled"
msgstr "Black & White Mdecs Only 启用"
#: ../gui/Plugin.c:212
#, c-format
msgid "Black & White Mdecs Only Disabled"
msgstr "Black & White Mdecs Only 禁用"
#: ../gui/Plugin.c:218
#, c-format
msgid "XA Enabled"
msgstr "XA 已启用"
#: ../gui/Plugin.c:219
#, c-format
msgid "XA Disabled"
msgstr "XA 已禁用"
#: ../gui/Plugin.c:285
msgid "Error opening CD-ROM plugin!"
msgstr "无法打开CD-ROM 插件!"
#: ../gui/Plugin.c:287
msgid "Error opening SPU plugin!"
msgstr "无法打开 SPU 插件!"
#: ../gui/Plugin.c:290
msgid "Error opening GPU plugin!"
msgstr "无法打开 GPU 插件!"
#: ../gui/Plugin.c:292
msgid "Error opening Controller 1 plugin!"
msgstr "无法打开 \"控制器 1\" 插件!"
#: ../gui/Plugin.c:294
msgid "Error opening Controller 2 plugin!"
msgstr "无法打开 \"控制器 2\" 插件!"
#: ../gui/Plugin.c:374
msgid "Error closing CD-ROM plugin!"
msgstr "无法关闭 CD-ROM 插件!"
#: ../gui/Plugin.c:376
msgid "Error closing SPU plugin!"
msgstr "无法关闭 SPU 插件!"
#: ../gui/Plugin.c:378
msgid "Error closing Controller 1 Plugin!"
msgstr "无法关闭 \"控制器 1\" 插件!"
#: ../gui/Plugin.c:380
msgid "Error closing Controller 2 plugin!"
msgstr "无法关闭 \"控制器 2\" 插件!"
#: ../gui/Plugin.c:382
msgid "Error closing GPU plugin!"
msgstr "无法关闭 GPU 插件!"
#: ../data/pcsx.glade2:9
msgid "PCSX"
msgstr "PCSX"
#: ../data/pcsx.glade2:23
msgid "_File"
msgstr "文件(_F)"
#: ../data/pcsx.glade2:30
msgid "Run _CD"
msgstr "运行光盘(_C)"
#: ../data/pcsx.glade2:46
msgid "Run _ISO"
msgstr "运行 _ISO"
#: ../data/pcsx.glade2:62
msgid "Run _BIOS"
msgstr "运行 _BIOS"
#: ../data/pcsx.glade2:78
msgid "Run _EXE"
msgstr "运行 _EXE"
#: ../data/pcsx.glade2:99
msgid "E_xit"
msgstr "退出(_X)"
#: ../data/pcsx.glade2:119
msgid "_Emulator"
msgstr "模拟器(_E)"
#: ../data/pcsx.glade2:126
msgid "_Continue"
msgstr "继续(_C)"
#: ../data/pcsx.glade2:141
msgid "_Reset"
msgstr "复位(_R)"
#: ../data/pcsx.glade2:161
msgid "_Switch ISO"
msgstr "更换 ISO(_S)"
#: ../data/pcsx.glade2:182
msgid "_Save State"
msgstr "即时存档(_S)"
#: ../data/pcsx.glade2:189
#: ../data/pcsx.glade2:268
msgid "Slot _1"
msgstr "存档 _1"
#: ../data/pcsx.glade2:198
#: ../data/pcsx.glade2:277
msgid "Slot _2"
msgstr "存档 _2"
#: ../data/pcsx.glade2:207
#: ../data/pcsx.glade2:286
msgid "Slot _3"
msgstr "存档 _3"
#: ../data/pcsx.glade2:216
#: ../data/pcsx.glade2:295
msgid "Slot _4"
msgstr "存档 _4"
#: ../data/pcsx.glade2:225
#: ../data/pcsx.glade2:304
msgid "Slot _5"
msgstr "存档 _5"
#: ../data/pcsx.glade2:234
#: ../data/pcsx.glade2:313
msgid "_Other..."
msgstr "其它(_O)..."
#: ../data/pcsx.glade2:261
msgid "_Load State"
msgstr "即时读档(_L)"
#: ../data/pcsx.glade2:344
msgid "_Configuration"
msgstr "配置(_C)"
#: ../data/pcsx.glade2:351
msgid "_Plugins & BIOS"
msgstr "插件及 BIOS(_P)"
#: ../data/pcsx.glade2:372
msgid "_CPU"
msgstr "_CPU"
#: ../data/pcsx.glade2:387
msgid "_Memory Cards"
msgstr "记忆卡(_M)"
#: ../data/pcsx.glade2:403
msgid "_Netplay"
msgstr "联网游戏(_N)"
#: ../data/pcsx.glade2:423
msgid "Chea_t"
msgstr "作弊码(_T)"
#: ../data/pcsx.glade2:431
msgid "_Browse"
msgstr "浏览(_B)"
#: ../data/pcsx.glade2:445
msgid "_Search"
msgstr "查找(_S)"
#: ../data/pcsx.glade2:474
msgid "_Help"
msgstr "帮助(_H)"
#: ../data/pcsx.glade2:481
msgid "_About PCSX"
msgstr "关于 PCSX(_A)"
#: ../data/pcsx.glade2:617
msgid "Select Folder to Search"
msgstr "选择要查找的文件夹"
#: ../data/pcsx.glade2:633
msgid "Search in:"
msgstr "在此处查找插件:"
#: ../data/pcsx.glade2:906
msgid "Graphics:"
msgstr "图像:"
#: ../data/pcsx.glade2:919
msgid "Sound:"
msgstr "声音:"
#: ../data/pcsx.glade2:934
msgid "Controller 1: "
msgstr "控制器 1:"
#: ../data/pcsx.glade2:949
msgid "Controller 2:"
msgstr "控制器 2:"
#: ../data/pcsx.glade2:964
msgid "CD-ROM:"
msgstr "CD-ROM:"
#: ../data/pcsx.glade2:1002
msgid "<b>Plugins</b>"
msgstr "<b>插件</b>"
#: ../data/pcsx.glade2:1061
msgid "<b>BIOS</b>"
msgstr "<b>BIOS</b>"
#: ../data/pcsx.glade2:1106
msgid "Configure CPU"
msgstr "配置 CPU"
#: ../data/pcsx.glade2:1133
msgid "Enable Debugger"
msgstr "启用调试器"
#: ../data/pcsx.glade2:1151
msgid "SPU IRQ Always Enabled"
msgstr "SPU IRQ 总是启用"
#: ../data/pcsx.glade2:1167
msgid "Black & White Movies"
msgstr "黑白电影"
#: ../data/pcsx.glade2:1183
#: ../win32/gui/WndMain.c:1151
msgid "Enable Console Output"
msgstr "启用控制台输出"
#: ../data/pcsx.glade2:1201
msgid "Enable Interpreter CPU"
msgstr "启用解释执行 CPU"
#: ../data/pcsx.glade2:1235
msgid "Disable CD Audio"
msgstr "禁用 CD 音频"
#: ../data/pcsx.glade2:1251
msgid "Disable XA Decoding"
msgstr "禁用 XA 解码"
#: ../data/pcsx.glade2:1267
#: ../win32/gui/WndMain.c:1153
msgid "Parasite Eve 2, Vandal Hearts 1/2 Fix"
msgstr "Parasite Eve 2, Vandal Hearts 1/2 修正"
#: ../data/pcsx.glade2:1282
#: ../win32/gui/WndMain.c:1154
msgid "InuYasha Sengoku Battle Fix"
msgstr "InuYasha Sengoku 战斗修正"
#: ../data/pcsx.glade2:1298
msgid "<b>Options</b>"
msgstr "<b>选项</b>"
#: ../data/pcsx.glade2:1321
#: ../win32/gui/WndMain.c:1149
msgid "Autodetect"
msgstr "自动检测"
#: ../data/pcsx.glade2:1335
msgid ""
"NTSC\n"
"PAL"
msgstr ""
"NTSC\n"
"PAL"
#: ../data/pcsx.glade2:1349
msgid "<b>System Type</b>"
msgstr "<b>系统类型</b>"
#: ../data/pcsx.glade2:1391
msgid "Configure NetPlay"
msgstr "配置联网游戏"
#: ../data/pcsx.glade2:1473
msgid "<b>NetPlay</b>"
msgstr "<b>联网游戏</b>"
#: ../data/pcsx.glade2:1517
msgid "Configure Memory Cards"
msgstr "配置记忆卡"
#: ../data/pcsx.glade2:1587
#: ../data/pcsx.glade2:1951
msgid "Format"
msgstr "格式化"
#: ../data/pcsx.glade2:1631
#: ../data/pcsx.glade2:1995
msgid "Reload"
msgstr "重新加载"
#: ../data/pcsx.glade2:1673
msgid "<b>Memory Card 1</b>"
msgstr "<b>记忆卡 1</b>"
#: ../data/pcsx.glade2:1728
#: ../data/pcsx.glade2:1772
msgid "Copy"
msgstr "复制"
#: ../data/pcsx.glade2:1819
#: ../data/pcsx.glade2:1866
msgid "Un/Delete"
msgstr "删除/恢复"
#: ../data/pcsx.glade2:2037
msgid "<b>Memory Card 2</b>"
msgstr "<b>记忆卡 2</b>"
#: ../data/pcsx.glade2:2091
msgid ""
"(C) 1999-2003 PCSX Team\n"
"(C) 2005-2006 Ryan Schultz\n"
"(C) 2005-2006 Andrew Burton\n"
"(C) 2008-2009 Wei Mingzhi"
msgstr ""
"(C) 1999-2003 PCSX 开发组\n"
"(C) 2005-2006 Ryan Schultz\n"
"(C) 2005-2006 Andrew Burton\n"
"(C) 2008-2009 Wei Mingzhi"
#: ../data/pcsx.glade2:2095
msgid "A PlayStation emulator."
msgstr "一个 PlayStation 模拟器。"
#: ../data/pcsx.glade2:2097
msgid "PCSX Reloaded"
msgstr "PCSX Reloaded"
#: ../data/pcsx.glade2:2098
msgid ""
"This program is free software; you can redistribute it\n"
"and/or modify it under the terms of the GNU General\n"
"Public License as published by the Free Software\n"
"Foundation; either version 2 of the License, or (at your\n"
"option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be\n"
"useful, but WITHOUT ANY WARRANTY; without even\n"
"the implied warranty of MERCHANTABILITY or\n"
"FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General\n"
"Public License along with this program; if not, write to\n"
"the Free Software Foundation, Inc."
msgstr ""
#: ../data/pcsx.glade2:2127
msgid "translator-credits"
msgstr "Wei Mingzhi <whistler@openoffice.org>"
#: ../data/pcsx.glade2:2146
msgid "Edit Cheat Codes"
msgstr "编辑作弊码"
#: ../data/pcsx.glade2:2182
msgid "<b>Cheat Codes</b>"
msgstr "<b>作弊码</b>"
#: ../data/pcsx.glade2:2200
msgid "gtk-add"
msgstr ""
#: ../data/pcsx.glade2:2210
msgid "gtk-edit"
msgstr ""
#: ../data/pcsx.glade2:2223
msgid "gtk-delete"
msgstr ""
#: ../data/pcsx.glade2:2282
msgid "Disable"
msgstr "禁用"
#: ../data/pcsx.glade2:2300
msgid "gtk-open"
msgstr ""
#: ../data/pcsx.glade2:2313
msgid "gtk-save-as"
msgstr ""
#: ../data/pcsx.glade2:2342
msgid "gtk-close"
msgstr ""
#: ../win32/gui/AboutDlg.c:26
msgid ""
"PCSX - A PlayStation Emulator\n"
"\n"
"Original Authors:\n"
"main coder: linuzappz\n"
"co-coders: shadow\n"
"ex-coders: Nocomp, Pete Bernett, nik3d\n"
"Webmaster: AkumaX"
msgstr ""
"PCSX - 一个 PlayStation 模拟器\n"
"\n"
"原作者:\n"
"主程序员: linuzappz\n"
"辅助程序员: shadow\n"
"前程序员: Nocomp, Pete Bernett, nik3d\n"
"网络管理: AkumaX"
#: ../win32/gui/AboutDlg.c:35
msgid ""
"PCSX-df Authors:\n"
"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
"Marcus Comstedt, Stefan Sikora\n"
"\n"
"PCSX Reloaded By:\n"
"Wei Mingzhi\n"
"\n"
"http://www.codeplex.com/pcsxr"
msgstr ""
"PCSX-df 开发者:\n"
"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
"Marcus Comstedt, Stefan Sikora\n"
"\n"
"PCSX Reloaded 开发者:\n"
"Wei Mingzhi\n"
"\n"
"http://www.codeplex.com/pcsxr"
#: ../win32/gui/AboutDlg.c:46
msgid "About"
msgstr "关于 PCSX"
#: ../win32/gui/AboutDlg.c:48
#: ../win32/gui/AboutDlg.c:52
#: ../win32/gui/ConfigurePlugins.c:462
#: ../win32/gui/ConfigurePlugins.c:593
#: ../win32/gui/WndMain.c:906
#: ../win32/gui/WndMain.c:1142
msgid "OK"
msgstr "确定"
#: ../win32/gui/AboutDlg.c:49
msgid "PCSX EMU\n"
msgstr "PCSX 模拟器\n"
#: ../win32/gui/ConfigurePlugins.c:385
msgid "This plugin reports that should work correctly"
msgstr "此插件报告其可正常工作。"
#: ../win32/gui/ConfigurePlugins.c:386
msgid "This plugin reports that should not work correctly"
msgstr "此插件报告其不可正常工作。"
#: ../win32/gui/ConfigurePlugins.c:460
msgid "Configuration"
msgstr "配置"
#: ../win32/gui/ConfigurePlugins.c:463
#: ../win32/gui/ConfigurePlugins.c:594
#: ../win32/gui/WndMain.c:907
#: ../win32/gui/WndMain.c:1143
msgid "Cancel"
msgstr "取消"
#: ../win32/gui/ConfigurePlugins.c:464
msgid "Graphics"
msgstr "图像"
#: ../win32/gui/ConfigurePlugins.c:465
msgid "First Controller"
msgstr "主控制器"
#: ../win32/gui/ConfigurePlugins.c:466
msgid "Second Controller"
msgstr "辅控制器"
#: ../win32/gui/ConfigurePlugins.c:467
msgid "Sound"
msgstr "声音"
#: ../win32/gui/ConfigurePlugins.c:468
msgid "Cdrom"
msgstr "CD-ROM"
#: ../win32/gui/ConfigurePlugins.c:469
msgid "Bios"
msgstr "BIOS"
#: ../win32/gui/ConfigurePlugins.c:470
msgid "Set Bios Directory"
msgstr "设置 BIOS 目录"
#: ../win32/gui/ConfigurePlugins.c:471
msgid "Set Plugins Directory"
msgstr "设置插件目录"
#: ../win32/gui/ConfigurePlugins.c:472
#: ../win32/gui/ConfigurePlugins.c:475
#: ../win32/gui/ConfigurePlugins.c:478
#: ../win32/gui/ConfigurePlugins.c:481
#: ../win32/gui/ConfigurePlugins.c:484
#: ../win32/gui/ConfigurePlugins.c:596
msgid "Configure..."
msgstr "配置..."
#: ../win32/gui/ConfigurePlugins.c:473
#: ../win32/gui/ConfigurePlugins.c:476
#: ../win32/gui/ConfigurePlugins.c:479
#: ../win32/gui/ConfigurePlugins.c:482
#: ../win32/gui/ConfigurePlugins.c:485
#: ../win32/gui/ConfigurePlugins.c:597
msgid "Test..."
msgstr "测试..."
#: ../win32/gui/ConfigurePlugins.c:474
#: ../win32/gui/ConfigurePlugins.c:477
#: ../win32/gui/ConfigurePlugins.c:480
#: ../win32/gui/ConfigurePlugins.c:483
#: ../win32/gui/ConfigurePlugins.c:486
#: ../win32/gui/ConfigurePlugins.c:598
msgid "About..."
msgstr "关于..."
#: ../win32/gui/ConfigurePlugins.c:591
msgid "NetPlay Configuration"
msgstr "联网游戏配置"
#: ../win32/gui/ConfigurePlugins.c:595
msgid "NetPlay"
msgstr "联网游戏"
#: ../win32/gui/ConfigurePlugins.c:599
msgid "Note: The NetPlay Plugin Directory should be the same as the other Plugins."
msgstr "注意: 联网游戏插件应和其它插件放在同一目录中。"
#: ../win32/gui/plugin.c:90
#: ../win32/gui/WndMain.c:235
#, c-format
msgid "*PCSX*: Saved State %d"
msgstr ""
#: ../win32/gui/plugin.c:91
#: ../win32/gui/WndMain.c:236
#, c-format
msgid "*PCSX*: Error Saving State %d"
msgstr ""
#: ../win32/gui/plugin.c:107
#: ../win32/gui/WndMain.c:214
#, c-format
msgid "*PCSX*: Loaded State %d"
msgstr ""
#: ../win32/gui/plugin.c:108
#: ../win32/gui/WndMain.c:215
#, c-format
msgid "*PCSX*: Error Loading State %d"
msgstr ""
#: ../win32/gui/plugin.c:119
#, c-format
msgid "*PCSX*: Sio Irq Always Enabled"
msgstr ""
#: ../win32/gui/plugin.c:120
#, c-format
msgid "*PCSX*: Sio Irq Not Always Enabled"
msgstr ""
#: ../win32/gui/plugin.c:127
#, c-format
msgid "*PCSX*: Black&White Mdecs Only Enabled"
msgstr ""
#: ../win32/gui/plugin.c:128
#, c-format
msgid "*PCSX*: Black&White Mdecs Only Disabled"
msgstr ""
#: ../win32/gui/plugin.c:135
#, c-format
msgid "*PCSX*: Xa Enabled"
msgstr ""
#: ../win32/gui/plugin.c:136
#, c-format
msgid "*PCSX*: Xa Disabled"
msgstr ""
#: ../win32/gui/plugin.c:145
msgid "*PCSX*: CdRom Case Opened"
msgstr ""
#: ../win32/gui/plugin.c:150
msgid "*PCSX*: CdRom Case Closed"
msgstr ""
#: ../win32/gui/plugin.c:177
msgid "Connecting..."
msgstr "正在连接..."
#: ../win32/gui/plugin.c:179
#: ../win32/gui/plugin.c:186
#, c-format
msgid "Please wait while connecting... %c\n"
msgstr "请稍候,正在连接... %c\n"
#: ../win32/gui/plugin.c:216
msgid "Error Opening CDR Plugin"
msgstr "无法打开 CDR 插件"
#: ../win32/gui/plugin.c:279
#, c-format
msgid "Error Opening GPU Plugin (%d)"
msgstr "无法打开 GPU 插件 (%d)"
#: ../win32/gui/plugin.c:281
#, c-format
msgid "Error Opening SPU Plugin (%d)"
msgstr "无法打开 SPU 插件 (%d)"
#: ../win32/gui/plugin.c:284
#, c-format
msgid "Error Opening PAD1 Plugin (%d)"
msgstr "无法打开 PAD1 插件 (%d)"
#: ../win32/gui/plugin.c:286
#, c-format
msgid "Error Opening PAD2 Plugin (%d)"
msgstr "无法打开 PAD2 插件 (%d)"
#: ../win32/gui/plugin.c:309
msgid "Error Closing CDR Plugin"
msgstr "无法关闭 CD-ROM 插件 (%d)"
#: ../win32/gui/plugin.c:311
msgid "Error Closing GPU Plugin"
msgstr "无法关闭 GPU 插件"
#: ../win32/gui/plugin.c:313
msgid "Error Closing SPU Plugin"
msgstr "无法关闭 SPU 插件"
#: ../win32/gui/plugin.c:315
msgid "Error Closing PAD1 Plugin"
msgstr "无法关闭 PAD1 插件"
#: ../win32/gui/plugin.c:317
msgid "Error Closing PAD2 Plugin"
msgstr "无法关闭 PAD2 插件!"
#: ../win32/gui/plugin.c:335
#, c-format
msgid "CDRinit error: %d"
msgstr "CDRinit 错误: %d"
#: ../win32/gui/plugin.c:337
#, c-format
msgid "GPUinit error: %d"
msgstr "GPUinit 错误: %d"
#: ../win32/gui/plugin.c:339
#, c-format
msgid "SPUinit error: %d"
msgstr "SPUinit 错误: %d"
#: ../win32/gui/plugin.c:341
#, c-format
msgid "PAD1init error: %d"
msgstr "PAD1init 错误: %d"
#: ../win32/gui/plugin.c:343
#, c-format
msgid "PAD2init error: %d"
msgstr "PAD2init 错误: %d"
#: ../win32/gui/plugin.c:346
#, c-format
msgid "NETinit error: %d"
msgstr "NETinit 错误: %d"
#: ../win32/gui/WndMain.c:74
msgid "Arabic"
msgstr "阿拉伯语"
#: ../win32/gui/WndMain.c:75
msgid "Catalan"
msgstr "加泰隆尼亚语"
#: ../win32/gui/WndMain.c:76
msgid "German"
msgstr "德语"
#: ../win32/gui/WndMain.c:77
msgid "Greek"
msgstr "希腊语"
#: ../win32/gui/WndMain.c:78
#: ../win32/gui/WndMain.c:1471
#: ../win32/gui/WndMain.c:1473
msgid "English"
msgstr "英语"
#: ../win32/gui/WndMain.c:79
msgid "Spanish"
msgstr "西班牙语"
#: ../win32/gui/WndMain.c:80
msgid "French"
msgstr "法语"
#: ../win32/gui/WndMain.c:81
msgid "Italian"
msgstr "意大利语"
#: ../win32/gui/WndMain.c:82
msgid "Portuguese"
msgstr "葡萄牙语"
#: ../win32/gui/WndMain.c:83
msgid "Romanian"
msgstr "罗马尼亚语"
#: ../win32/gui/WndMain.c:84
msgid "Russian"
msgstr "俄语"
#: ../win32/gui/WndMain.c:85
msgid "Simplified Chinese"
msgstr "简体中文"
#: ../win32/gui/WndMain.c:86
msgid "Traditional Chinese"
msgstr "繁体中文"
#: ../win32/gui/WndMain.c:87
msgid "Japanese"
msgstr "日语"
#: ../win32/gui/WndMain.c:88
msgid "Korean"
msgstr "朝鲜语"
#: ../win32/gui/WndMain.c:129
msgid "Pcsx needs to be configured"
msgstr "PCSX 需要被配置。"
#: ../win32/gui/WndMain.c:133
msgid "Pcsx now will quit, restart it"
msgstr "PCSX 将退出,请重新启动它。"
#: ../win32/gui/WndMain.c:253
#: ../win32/gui/WndMain.c:305
msgid "PCSX State Format"
msgstr "PCSX 存档格式"
#: ../win32/gui/WndMain.c:280
#, c-format
msgid "*PCSX*: Loaded State %s"
msgstr ""
#: ../win32/gui/WndMain.c:281
#, c-format
msgid "*PCSX*: Error Loading State %s"
msgstr ""
#: ../win32/gui/WndMain.c:332
#, c-format
msgid "*PCSX*: Saved State %s"
msgstr ""
#: ../win32/gui/WndMain.c:333
#, c-format
msgid "*PCSX*: Error Saving State %s"
msgstr ""
#: ../win32/gui/WndMain.c:398
msgid "Running BIOS is not supported with Internal HLE Bios."
msgstr "内部 HLE BIOS 不支持直接运行。"
#: ../win32/gui/WndMain.c:616
msgid "Game ID"
msgstr "游戏 ID"
#: ../win32/gui/WndMain.c:622
msgid "Game"
msgstr "游戏"
#: ../win32/gui/WndMain.c:796
msgid "mid link block"
msgstr ""
#: ../win32/gui/WndMain.c:799
msgid "terminiting link block"
msgstr ""
#: ../win32/gui/WndMain.c:904
msgid "Memcard Manager"
msgstr "记忆卡管理器"
#: ../win32/gui/WndMain.c:908
#: ../win32/gui/WndMain.c:911
msgid "Select Mcd"
msgstr "选择"
#: ../win32/gui/WndMain.c:909
#: ../win32/gui/WndMain.c:912
msgid "Format Mcd"
msgstr "格式化"
#: ../win32/gui/WndMain.c:910
#: ../win32/gui/WndMain.c:913
msgid "Reload Mcd"
msgstr "重新加载"
#: ../win32/gui/WndMain.c:914
msgid "-> Copy ->"
msgstr "-> 复制 ->"
#: ../win32/gui/WndMain.c:915
msgid "<- Copy <-"
msgstr "<- 复制 <-"
#: ../win32/gui/WndMain.c:916
msgid "Paste"
msgstr "粘贴"
#: ../win32/gui/WndMain.c:917
msgid "<- Un/Delete"
msgstr "<- 删除/恢复"
#: ../win32/gui/WndMain.c:918
msgid "Un/Delete ->"
msgstr "删除/恢复 ->"
#: ../win32/gui/WndMain.c:920
msgid "Memory Card 1"
msgstr "记忆卡 1"
#: ../win32/gui/WndMain.c:921
msgid "Memory Card 2"
msgstr "记忆卡 2"
#: ../win32/gui/WndMain.c:976
msgid "Are you sure you want to paste this selection?"
msgstr "是否确认粘贴此选中内容?"
#: ../win32/gui/WndMain.c:976
#: ../win32/gui/WndMain.c:1087
#: ../win32/gui/WndMain.c:1094
msgid "Confirmation"
msgstr "确认"
#: ../win32/gui/WndMain.c:1087
#: ../win32/gui/WndMain.c:1094
msgid "Are you sure you want to format this Memory Card?"
msgstr "是否确认格式化此记忆卡?"
#: ../win32/gui/WndMain.c:1140
msgid "Cpu Config"
msgstr "CPU 配置"
#: ../win32/gui/WndMain.c:1145
msgid "Disable Xa Decoding"
msgstr "禁用 XA 解码"
#: ../win32/gui/WndMain.c:1146
msgid "Sio Irq Always Enabled"
msgstr "SIO IRQ 总是启用"
#: ../win32/gui/WndMain.c:1147
msgid "Black && White Movies"
msgstr "黑白电影"
#: ../win32/gui/WndMain.c:1148
msgid "Disable Cd audio"
msgstr "禁用 CD 音频"
#: ../win32/gui/WndMain.c:1150
msgid "Enable Interpreter Cpu"
msgstr "启用解释执行 CPU"
#: ../win32/gui/WndMain.c:1152
msgid "Spu Irq Always Enabled"
msgstr "SPU IRQ 总是启用"
#: ../win32/gui/WndMain.c:1156
msgid "Options"
msgstr "选项"
#: ../win32/gui/WndMain.c:1157
msgid "Psx System Type"
msgstr "Psx 系统类型"
#: ../win32/gui/WndMain.c:1229
msgid "Psx Mcd Format (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
msgstr "Psx 记忆卡格式 (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
#: ../win32/gui/WndMain.c:1234
msgid "Psx Memory Card (*.mcr;*.mc)"
msgstr "Psx 记忆卡 (*.mcr;*.mc)"
#: ../win32/gui/WndMain.c:1239
msgid "CVGS Memory Card (*.mem;*.vgs)"
msgstr "VGS 记忆卡 (*.mem;*.vgs)"
#: ../win32/gui/WndMain.c:1244
msgid "Bleem Memory Card (*.mcd)"
msgstr "Bleem 记忆卡 (*.mcd)"
#: ../win32/gui/WndMain.c:1249
msgid "DexDrive Memory Card (*.gme)"
msgstr "DexDrive 记忆卡 (*.gme)"
#: ../win32/gui/WndMain.c:1254
msgid "DataDeck Memory Card (*.ddf)"
msgstr "DataDeck 记忆卡 (*.ddl)"
#: ../win32/gui/WndMain.c:1298
msgid "Psx Exe Format"
msgstr "PSX EXE 格式"
#: ../win32/gui/WndMain.c:1335
msgid "Psx Isos (*.iso;*.mdf;*.img;*.bin)"
msgstr "Psx 光盘镜像 (*.iso;*.mdf;*.img;*.bin)"
#: ../win32/gui/WndMain.c:1409
msgid "&File"
msgstr "文件(&F)"
#: ../win32/gui/WndMain.c:1410
msgid "E&xit"
msgstr "退出(&X)"
#: ../win32/gui/WndMain.c:1412
msgid "&States"
msgstr "存档(&S)"
#: ../win32/gui/WndMain.c:1414
msgid "Run &EXE"
msgstr "运行 EXE(&E)"
#: ../win32/gui/WndMain.c:1415
msgid "Run &BIOS"
msgstr "运行 BIOS(&B)"
#: ../win32/gui/WndMain.c:1416
msgid "Run &ISO"
msgstr "运行 ISO(&I)"
#: ../win32/gui/WndMain.c:1417
msgid "Run &CD"
msgstr "运行光碟(&C)"
#: ../win32/gui/WndMain.c:1418
msgid "&Save"
msgstr "保存(&S)"
#: ../win32/gui/WndMain.c:1419
msgid "&Load"
msgstr "读取(&L)"
#: ../win32/gui/WndMain.c:1420
#: ../win32/gui/WndMain.c:1426
msgid "&Other..."
msgstr "其它(&O)..."
#: ../win32/gui/WndMain.c:1421
#: ../win32/gui/WndMain.c:1427
msgid "Slot &5"
msgstr "存档 5(&5)"
#: ../win32/gui/WndMain.c:1422
#: ../win32/gui/WndMain.c:1428
msgid "Slot &4"
msgstr "存档 4(&4)"
#: ../win32/gui/WndMain.c:1423
#: ../win32/gui/WndMain.c:1429
msgid "Slot &3"
msgstr "存档 3(&3)"
#: ../win32/gui/WndMain.c:1424
#: ../win32/gui/WndMain.c:1430
msgid "Slot &2"
msgstr "存档 2(&2)"
#: ../win32/gui/WndMain.c:1425
#: ../win32/gui/WndMain.c:1431
msgid "Slot &1"
msgstr "存档 1(&1)"
#: ../win32/gui/WndMain.c:1433
msgid "&Emulator"
msgstr "模拟器(&E)"
#: ../win32/gui/WndMain.c:1434
msgid "S&witch ISO"
msgstr "更换 ISO(&W)"
#: ../win32/gui/WndMain.c:1436
msgid "Re&set"
msgstr "复位(&S)"
#: ../win32/gui/WndMain.c:1437
msgid "&Run"
msgstr "运行(&R)"
#: ../win32/gui/WndMain.c:1439
msgid "&Configuration"
msgstr "配置(&C)"
#: ../win32/gui/WndMain.c:1440
msgid "&Memory cards"
msgstr "记忆卡(&M)"
#: ../win32/gui/WndMain.c:1441
msgid "C&PU"
msgstr "CPU(&P)"
#: ../win32/gui/WndMain.c:1443
msgid "&NetPlay"
msgstr "联网游戏(&N)"
#: ../win32/gui/WndMain.c:1445
msgid "&Controllers"
msgstr "控制器(&C)"
#: ../win32/gui/WndMain.c:1446
msgid "CD-&ROM"
msgstr "CD-ROM(&R)"
#: ../win32/gui/WndMain.c:1447
msgid "&Sound"
msgstr "声音(&S)"
#: ../win32/gui/WndMain.c:1448
msgid "&Graphics"
msgstr "图像(&G)"
#: ../win32/gui/WndMain.c:1450
msgid "&Plugins && Bios"
msgstr "插件及 BIOS(&P)"
#: ../win32/gui/WndMain.c:1452
msgid "&Language"
msgstr "语言(&L)"
#: ../win32/gui/WndMain.c:1476
msgid "&Help"
msgstr "帮助(&H)"
#: ../win32/gui/WndMain.c:1477
msgid "&About..."
msgstr "关于(&A)..."
#: ../win32/gui/WndMain.c:1654
msgid "Pcsx Msg"
msgstr "PCSX 消息"
#: ../win32/gui/WndMain.c:1657
msgid "Error Loading Symbol"
msgstr "无法加载符号"
#~ msgid "_Load"
#~ msgstr "读取(_L)"
#~ msgid "_Save"
#~ msgstr "保存(_S)"
#~ msgid "_Run"
#~ msgstr "运行(_R)"
#~ msgid ""
#~ "PCSX is licensed under the GNU GPL; see the included COPYING file for "
#~ "more detail."
#~ msgstr "PCSX 在 GNU GPL 条款下发布;请参看包含的 COPYING 文件。"
#~ msgid "This plugin reports that it should work correctly."
#~ msgstr "此插件报告其可正常工作。"
#~ msgid "This plugin reports that it won't work correctly."
#~ msgstr "此插件报告其不可正常工作。"
#~ msgid "Could not load Cdrom"
#~ msgstr "无法加载光盘"
#~ msgid "Could not open plugins directory: '%s'\n"
#~ msgstr "无法打开插件目录: \"%s\"\n"
#~ msgid "Run CD Though &Bios"
#~ msgstr "使用 BIOS 运行光碟(&B)"
#~ msgid "Run CD Through BIOS"
#~ msgstr "使用 BIOS 运行光碟"
|