~ubuntu-branches/ubuntu/precise/kde-l10n-ja/precise-proposed

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
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
# Translation of kcm_pci into Japanese.
# Yukiko Bando <ybando@k6.dion.ne.jp>, 2009.
# Taiki Komoda <kom@kde.gr.jp>, 2010.
msgid ""
msgstr ""
"Project-Id-Version: kcm_pci\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2010-05-03 04:52+0200\n"
"PO-Revision-Date: 2010-06-16 15:14+0900\n"
"Last-Translator: Taiki Komoda <kom@kde.gr.jp>\n"
"Language-Team: Japanese <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
"X-Generator: Lokalize 1.1\n"

#: kcm_pci.cpp:51
msgid "kcm_pci"
msgstr "kcm_pci"

#: kcm_pci.cpp:52
msgid "KDE PCI Information Control Module"
msgstr "KDE PCI 情報モジュール"

#: kcm_pci.cpp:54
msgid "(c) 2008 Nicolas Ternisien(c) 1998 - 2002 Helge Deller"
msgstr "(c) 2008 Nicolas Ternisien(c) 1998 - 2002 Helge Deller"

#: kcm_pci.cpp:57
msgid "Nicolas Ternisien"
msgstr "Nicolas Ternisien"

#: kcm_pci.cpp:58
msgid "Helge Deller"
msgstr "Helge Deller"

#: kcm_pci.cpp:72
msgid "This list displays PCI information."
msgstr "このリストは PCI の情報を表示します。"

#: kcm_pci.cpp:92
msgid ""
"This display shows information about your computer's PCI slots and the "
"related connected devices."
msgstr ""
"あなたのコンピュータの PCI スロットと、接続されている関連デバイスの情報を表示"
"します。"

#: kpci.cpp:65
msgid "Device Class"
msgstr "デバイスのクラス"

#: kpci.cpp:66
msgid "Device Subclass"
msgstr "デバイスのサブクラス"

#: kpci.cpp:67
msgid "Device Programming Interface"
msgstr "デバイスのプログラミングインターフェース"

#: kpci.cpp:69
msgid "Master IDE Device"
msgstr "マスター IDE デバイス"

#: kpci.cpp:70
msgid "Secondary programmable indicator"
msgstr "セカンダリプログラム可能インディケータ"

#: kpci.cpp:71
msgid "Secondary operating mode"
msgstr "セカンダリ操作モード"

#: kpci.cpp:72
msgid "Primary programmable indicator"
msgstr "プライマリプログラム可能インディケータ"

#: kpci.cpp:73
msgid "Primary operating mode"
msgstr "プライマリ操作モード"

#: kpci.cpp:101 kpci.cpp:125
msgid "Vendor"
msgstr "ベンダー"

#: kpci.cpp:108 kpci.cpp:127
msgid "Device"
msgstr "デバイス"

#: kpci.cpp:117 kpci.cpp:136 kpci.cpp:139 kpci.cpp:143
msgid "Subsystem"
msgstr "サブシステム"

#: kpci.cpp:136
msgid " - device:"
msgstr " - デバイス:"

#: kpci.cpp:154 kpci.cpp:175
msgid "Interrupt"
msgstr "割り込み"

#: kpci.cpp:155
msgid "IRQ"
msgstr "IRQ"

#: kpci.cpp:156
msgid "Pin"
msgstr "ピン"

#: kpci.cpp:164
msgid "Control"
msgstr "制御"

#: kpci.cpp:165
msgid "Response in I/O space"
msgstr "I/O スペースのレスポンス"

#: kpci.cpp:166
msgid "Response in memory space"
msgstr "メモリ領域のレスポンス"

#: kpci.cpp:167
msgid "Bus mastering"
msgstr "バスマスタリング"

#: kpci.cpp:168
msgid "Response to special cycles"
msgstr "特殊サイクルへの反応"

#: kpci.cpp:169
msgid "Memory write and invalidate"
msgstr "メモリ書き込みと取り消し"

#: kpci.cpp:170
msgid "Palette snooping"
msgstr "パレットスヌーピング"

#: kpci.cpp:171
msgid "Parity checking"
msgstr "パリティチェック"

#: kpci.cpp:172
msgid "Address/data stepping"
msgstr "アドレス/データステッピング"

#: kpci.cpp:173
msgid "System error"
msgstr "システムエラー"

#: kpci.cpp:174
msgid "Back-to-back writes"
msgstr "バックツーバックの書き込み"

#: kpci.cpp:182 kpci.cpp:435 kpci.cpp:537 kpci.cpp:563
msgid "Status"
msgstr "ステータス"

#: kpci.cpp:183 kpci.cpp:348 kpci.cpp:363
msgid "Interrupt status"
msgstr "割り込みステータス"

#: kpci.cpp:184 kpci.cpp:349 kpci.cpp:364
msgid "Capability list"
msgstr "機能リスト"

#: kpci.cpp:185 kpci.cpp:350 kpci.cpp:365
msgid "66 MHz PCI 2.1 bus"
msgstr "66 MHz PCI 2.1 バス"

#: kpci.cpp:186 kpci.cpp:351 kpci.cpp:366
msgid "User-definable features"
msgstr "ユーザ定義の機能"

#: kpci.cpp:187 kpci.cpp:352 kpci.cpp:367
msgid "Accept fast back-to-back"
msgstr "高速バックツーバックを許可"

#: kpci.cpp:188 kpci.cpp:353 kpci.cpp:368
msgid "Data parity error"
msgstr "データパリティエラー"

#: kpci.cpp:189 kpci.cpp:354 kpci.cpp:369
msgid "Device selection timing"
msgstr "デバイス選択タイミング"

#: kpci.cpp:190 kpci.cpp:355 kpci.cpp:370
msgid "Signaled target abort"
msgstr "Signaled target abort"

#: kpci.cpp:191 kpci.cpp:356 kpci.cpp:371
msgid "Received target abort"
msgstr "Received target abort"

#: kpci.cpp:192 kpci.cpp:357 kpci.cpp:372
msgid "Received master abort"
msgstr "Received master abort"

#: kpci.cpp:193 kpci.cpp:358 kpci.cpp:373
msgid "Signaled system error"
msgstr "Signaled system error"

#: kpci.cpp:194 kpci.cpp:359 kpci.cpp:374
msgid "Parity error"
msgstr "パリティエラー"

#: kpci.cpp:201
msgid "Latency"
msgstr "レイテンシ"

#: kpci.cpp:204 kpci.cpp:207
msgid "MIN_GNT"
msgstr "MIN_GNT"

#: kpci.cpp:204 kpci.cpp:210
msgid "No major requirements (0x00)"
msgstr "major 必要無し (0x00)"

#: kpci.cpp:210 kpci.cpp:213
msgid "MAX_LAT"
msgstr "MAX_LAT"

#: kpci.cpp:222
msgid "Header"
msgstr "ヘッダ"

#: kpci.cpp:223 kpci.cpp:288 kpci.cpp:465
msgid "Type"
msgstr "タイプ"

#: kpci.cpp:224
msgid "Multifunctional"
msgstr "多機能"

#: kpci.cpp:231
msgid "Build-in self test"
msgstr "ビルトインセルフテスト"

#: kpci.cpp:232
msgid "BIST Capable"
msgstr "BIST あり"

#: kpci.cpp:234
msgid "BIST Start"
msgstr "BIST 開始"

#: kpci.cpp:235
msgid "Completion code"
msgstr "終了コード"

#: kpci.cpp:242 kpci.cpp:245 kpci.cpp:248 kpci.cpp:254 kpci.cpp:257
#: kpci.cpp:260 kpci.cpp:265 kpci.cpp:296 kpci.cpp:312 kpci.cpp:438
msgid "Size"
msgstr "サイズ"

#: kpci.cpp:277
msgid "Address mappings"
msgstr "アドレスマッピング"

#: kpci.cpp:285
#, kde-format
msgid "Mapping %1"
msgstr "マッピング %1"

#: kpci.cpp:286
msgid "Space"
msgstr "スペース"

#: kpci.cpp:286
msgid "I/O"
msgstr "I/O"

#: kpci.cpp:286
msgid "Memory"
msgstr "メモリ"

#: kpci.cpp:289 kpci.cpp:458
msgid "Prefetchable"
msgstr "プリフェッチ可能"

#: kpci.cpp:295 kpci.cpp:299 kpci.cpp:304 kpci.cpp:311 kpci.cpp:315
#: kpci.cpp:437 kpci.cpp:441 kpci.cpp:634 kpci.cpp:642
msgid "Address"
msgstr "アドレス"

#: kpci.cpp:295 kpci.cpp:296 kpci.cpp:311 kpci.cpp:312 kpci.cpp:437
#: kpci.cpp:438
msgid "Unassigned"
msgstr "割り当てなし"

#: kpci.cpp:327 kpci.cpp:334
msgid "Bus"
msgstr "バス"

#: kpci.cpp:328 kpci.cpp:335
msgid "Primary bus number"
msgstr "プライマリ・バス番号"

#: kpci.cpp:329
msgid "Secondary bus number"
msgstr "セカンダリ・バス番号"

#: kpci.cpp:330 kpci.cpp:337
msgid "Subordinate bus number"
msgstr "従属バス番号"

#: kpci.cpp:331
msgid "Secondary latency timer"
msgstr "セカンダリレイテンシタイマー"

#: kpci.cpp:336
msgid "CardBus number"
msgstr "カードバス番号"

#: kpci.cpp:338
msgid "CardBus latency timer"
msgstr "カードバスレイテンシタイマー"

#: kpci.cpp:347 kpci.cpp:362
msgid "Secondary status"
msgstr "セカンダリステータス"

#: kpci.cpp:383
msgid "I/O behind bridge"
msgstr "ブリッジ後 I/O"

#: kpci.cpp:384 kpci.cpp:465
msgid "32-bit"
msgstr "32 ビット"

#: kpci.cpp:386 kpci.cpp:390 kpci.cpp:394 kpci.cpp:399 kpci.cpp:403
#: kpci.cpp:459 kpci.cpp:467 kpci.cpp:471
msgid "Base"
msgstr "ベース"

#: kpci.cpp:387 kpci.cpp:391 kpci.cpp:395 kpci.cpp:400 kpci.cpp:404
#: kpci.cpp:460 kpci.cpp:468 kpci.cpp:472
msgid "Limit"
msgstr "制限"

#: kpci.cpp:393
msgid "Memory behind bridge"
msgstr "ブリッジ後メモリ"

#: kpci.cpp:396
msgid "Prefetchable memory behind bridge"
msgstr "ブリッジ後プリフェッチ可能メモリ"

#: kpci.cpp:397
msgid "64-bit"
msgstr "64 ビット"

#: kpci.cpp:414
msgid "Bridge control"
msgstr "ブリッジ制御"

#: kpci.cpp:415 kpci.cpp:485
msgid "Secondary parity checking"
msgstr "セカンダリパリティチェック"

#: kpci.cpp:416 kpci.cpp:486
msgid "Secondary system error"
msgstr "セカンダリシステムエラー"

#: kpci.cpp:417 kpci.cpp:487
msgid "ISA ports forwarding"
msgstr "ISA ポートフォワーディング"

#: kpci.cpp:418 kpci.cpp:488
msgid "VGA forwarding"
msgstr "VGA フォワーディング"

#: kpci.cpp:419 kpci.cpp:489
msgid "Master abort"
msgstr "Master abort"

#: kpci.cpp:420
msgid "Secondary bus reset"
msgstr "セカンダリバスリセット"

#: kpci.cpp:421
msgid "Secondary back-to-back writes"
msgstr "セカンダリバックツーバック書き込み"

#: kpci.cpp:422
msgid "Primary discard timer counts"
msgstr "プライマリタイマー破棄カウント"

#: kpci.cpp:422 kpci.cpp:423
msgid "2e10 PCI clocks"
msgstr "2e10 PCI クロック"

#: kpci.cpp:422 kpci.cpp:423
msgid "2e15 PCI clocks"
msgstr "2e15 PCI クロック"

#: kpci.cpp:423
msgid "Secondary discard timer counts"
msgstr "セカンダリタイマー破棄カウント"

#: kpci.cpp:424
msgid "Discard timer error"
msgstr "タイマー破棄エラー"

#: kpci.cpp:425
msgid "Discard timer system error"
msgstr "タイマー破棄システムエラー"

#: kpci.cpp:434
msgid "Expansion ROM"
msgstr "拡張 ROM"

#: kpci.cpp:454
msgid "Memory windows"
msgstr "メモリウィンドウ"

#: kpci.cpp:457 kpci.cpp:464
#, kde-format
msgid "Window %1"
msgstr "ウィンドウ %1"

#: kpci.cpp:462
msgid "I/O windows"
msgstr "I/O ウィンドウ"

#: kpci.cpp:465
msgid "16-bit"
msgstr "16 ビット"

#: kpci.cpp:475
msgid "16-bit legacy interface ports"
msgstr "16 ビットレガシーインターフェースポート"

#: kpci.cpp:484
msgid "CardBus control"
msgstr "カードバス制御"

#: kpci.cpp:490
msgid "Interrupts for 16-bit cards"
msgstr "16 ビットカードの割り込み"

#: kpci.cpp:491
msgid "Window 0 prefetchable memory"
msgstr "ウィンドウ 0 プリフェッチ可能メモリ"

#: kpci.cpp:492
msgid "Window 1 prefetchable memory"
msgstr "ウィンドウ 1 プリフェッチ可能メモリ"

#: kpci.cpp:493
msgid "Post writes"
msgstr "Post 書き込み"

#: kpci.cpp:501
msgid "Raw PCI config space"
msgstr "Raw PCI 設定空間"

#: kpci.cpp:523 kpci.cpp:685 kpci.cpp:716
msgid "Capabilities"
msgstr "機能"

#: kpci.cpp:524
msgid "Version"
msgstr "バージョン"

#: kpci.cpp:525
msgid "Clock required for PME generation"
msgstr "クロックは PME 生成が必要です"

#: kpci.cpp:526
msgid "Device-specific initialization required"
msgstr "デバイス特有の初期化が必要です"

#: kpci.cpp:527
msgid "Maximum auxiliary current required in D3 cold"
msgstr "D3 cold で要求される最大補助電流"

#: kpci.cpp:528
msgid "D1 support"
msgstr "D1 サポート"

#: kpci.cpp:529
msgid "D2 support"
msgstr "D2 サポート"

#: kpci.cpp:530
msgid "Power management events"
msgstr "電源管理イベント"

#: kpci.cpp:531 kpci_private.h:762
msgid "D0"
msgstr "D0"

#: kpci.cpp:532 kpci_private.h:763
msgid "D1"
msgstr "D1"

#: kpci.cpp:533 kpci_private.h:764
msgid "D2"
msgstr "D2"

#: kpci.cpp:534 kpci_private.h:765
msgid "D3 hot"
msgstr "D3 hot"

#: kpci.cpp:535
msgid "D3 cold"
msgstr "D3 cold"

#: kpci.cpp:538
msgid "Power state"
msgstr "電源状態"

#: kpci.cpp:539 kpci_private.h:679
msgid "Power management"
msgstr "電源管理"

#: kpci.cpp:540
msgid "Data select"
msgstr "データセレクト"

#: kpci.cpp:541
msgid "Data scale"
msgstr "データスケール"

#: kpci.cpp:542
msgid "Power management status"
msgstr "電源管理状態"

#: kpci.cpp:545
msgid "Bridge status"
msgstr "ブリッジステータス"

#: kpci.cpp:546
msgid "Secondary bus state in D3 hot"
msgstr "D3 hot でのセカンダリバスステータス"

#: kpci.cpp:546
msgid "B2"
msgstr "B2"

#: kpci.cpp:546
msgid "B3"
msgstr "B3"

#: kpci.cpp:547
msgid "Secondary bus power & clock control"
msgstr "セカンダリバスパワー & クロック管理"

#: kpci.cpp:550 kpci.cpp:612 kpci.cpp:635 kpci.cpp:643 kpci.cpp:659
#: kpci.cpp:671
msgid "Data"
msgstr "データ"

#: kpci.cpp:562 kpci.cpp:764
msgid "Revision"
msgstr "リビジョン"

#: kpci.cpp:564 kpci.cpp:585
msgid "Rate"
msgstr "レート"

#: kpci.cpp:565
msgid "AGP 3.0 mode"
msgstr "AGP 3.0 モード"

#: kpci.cpp:566 kpci.cpp:586
msgid "Fast Writes"
msgstr "高速書き込み"

#: kpci.cpp:567 kpci.cpp:588
msgid "Address over 4 GiB"
msgstr "4 GiB を越えるアドレス"

#: kpci.cpp:569
msgid "Translation of host processor access"
msgstr "ホストプロセッサアクセスの変換"

#: kpci.cpp:570 kpci.cpp:589
msgid "64-bit GART"
msgstr "64 ビット GART"

#: kpci.cpp:571
msgid "Cache Coherency"
msgstr "キャッシュコヒーレンシ"

#: kpci.cpp:573 kpci.cpp:592
msgid "Side-band addressing"
msgstr "サイドバンドアドレス解決"

#: kpci.cpp:575 kpci.cpp:594
msgid "Calibrating cycle"
msgstr "校正サイクル"

#: kpci.cpp:579 kpci.cpp:598
msgid "Optimum asynchronous request size"
msgstr "最適非同期リクエストサイズ"

#: kpci.cpp:580
msgid "Isochronous transactions"
msgstr "アイソクロナストランザクション"

#: kpci.cpp:582 kpci.cpp:600
msgid "Maximum number of AGP command"
msgstr "AGP コマンドの最大数"

#: kpci.cpp:584
msgid "Configuration"
msgstr "設定"

#: kpci.cpp:591 kpci_private.h:680
msgid "AGP"
msgstr "AGP"

#: kpci.cpp:610
msgid "Data address"
msgstr "データアドレス"

#: kpci.cpp:611
msgid "Transfer completed"
msgstr "転送終了"

#: kpci.cpp:624
msgid "Message control"
msgstr "メッセージ制御"

#: kpci.cpp:625 kpci_private.h:683
msgid "Message signaled interrupts"
msgstr "メッセージシグナル割り込み"

#: kpci.cpp:626
msgid "Multiple message capable"
msgstr "複数メッセージ可能"

#: kpci.cpp:627
msgid "Multiple message enable"
msgstr "複数メッセージ有効"

#: kpci.cpp:628
msgid "64-bit address"
msgstr "64 ビットアドレス"

#: kpci.cpp:629
msgid "Per vector masking"
msgstr ""

#: kpci.cpp:637 kpci.cpp:645
msgid "Mask"
msgstr "マスク"

#: kpci.cpp:638 kpci.cpp:646
msgid "Pending"
msgstr "延期"

#: kpci.cpp:656
msgid "Length"
msgstr "長さ"

#: kpci.cpp:659
msgctxt "no data"
msgid "None"
msgstr "なし"

#: kpci.cpp:689
msgid "Next"
msgstr "次へ"

#: kpci.cpp:689 kpci.cpp:716
msgid "0x00 (None)"
msgstr "0x00 (なし)"

#: kpci.cpp:712
msgid "Root only"
msgstr "ルートオンリー"

#: kpci.cpp:725
msgid "Information"
msgstr "情報"

#: kpci.cpp:725
msgid "Value"
msgstr "値"

#: kpci.cpp:773
msgid "Cache line size"
msgstr "キャッシュラインサイズ"

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Yukiko Bando,Taiki Komoda"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "ybando@k6.dion.ne.jp,kom@kde.gr.jp"

#: kpci_private.h:26
msgctxt "state of PCI item"
msgid "Enabled"
msgstr "有効"

#: kpci_private.h:27
msgctxt "state of PCI item"
msgid "Disabled"
msgstr "無効"

#: kpci_private.h:28
msgctxt "state of PCI item"
msgid "Yes"
msgstr "はい"

#: kpci_private.h:29
msgctxt "state of PCI item"
msgid "No"
msgstr "いいえ"

#: kpci_private.h:30
msgctxt "state of PCI item"
msgid "Unknown"
msgstr "不明"

#: kpci_private.h:438
msgid "Unclassified device"
msgstr "未分類のデバイス"

#: kpci_private.h:439 kpci_private.h:473
msgid "Mass storage controller"
msgstr "マスストレージコントローラ"

#: kpci_private.h:440 kpci_private.h:483
msgid "Network controller"
msgstr "ネットワークコントローラ"

#: kpci_private.h:441 kpci_private.h:489
msgid "Display controller"
msgstr "ディスプレイコントローラ"

#: kpci_private.h:442 kpci_private.h:495
msgid "Multimedia controller"
msgstr "マルチメディアコントローラ"

#: kpci_private.h:443 kpci_private.h:500
msgid "Memory controller"
msgstr "メモリコントローラ"

#: kpci_private.h:444 kpci_private.h:514 kpci_private.h:717
msgid "Bridge"
msgstr "ブリッジ"

#: kpci_private.h:445 kpci_private.h:523
msgid "Communication controller"
msgstr "通信コントローラ"

#: kpci_private.h:446
msgid "Generic system peripheral"
msgstr "一般システム周辺機器"

#: kpci_private.h:447 kpci_private.h:539
msgid "Input device controller"
msgstr "入力デバイスコントローラ"

#: kpci_private.h:448 kpci_private.h:543
msgid "Docking station"
msgstr "ドッキングステーション"

#: kpci_private.h:449
msgid "Processor"
msgstr "プロセッサ"

#: kpci_private.h:450
msgid "Serial bus controller"
msgstr "シリアルバスコントローラ"

#: kpci_private.h:451 kpci_private.h:574
msgid "Wireless controller"
msgstr "ワイヤレスコントローラ"

#: kpci_private.h:452
msgid "Intelligent controller"
msgstr "インテリジェントコントローラ"

#: kpci_private.h:453
msgid "Satellite communications controller"
msgstr "衛星通信コントローラ"

#: kpci_private.h:454 kpci_private.h:588
msgid "Encryption controller"
msgstr "暗号コントローラ"

#: kpci_private.h:455 kpci_private.h:595
msgid "Signal processing controller"
msgstr "信号処理コントローラ"

#: kpci_private.h:456
msgid "Unknown device class"
msgstr "未知のデバイスクラス"

#: kpci_private.h:462
msgid "Non-VGA unclassified device"
msgstr "非 VGA の未分類なデバイス"

#: kpci_private.h:463
msgid "VGA unclassified device"
msgstr "VGA の未分類なデバイス"

#: kpci_private.h:464
msgid "Unknown unclassified device"
msgstr "未知の未分類なデバイス"

#: kpci_private.h:466
msgid "SCSI storage controller"
msgstr "SCSI ストレージコントローラ"

#: kpci_private.h:467
msgid "IDE controller"
msgstr "IDE コントローラ"

#: kpci_private.h:468
msgid "Floppy disk controller"
msgstr "フロッピーディスクコントローラ"

#: kpci_private.h:469
msgid "IPI bus controller"
msgstr "IPI バスコントローラ"

#: kpci_private.h:470
msgid "RAID bus controller"
msgstr "RAID バスコントローラ"

#: kpci_private.h:471
msgid "ATA controller"
msgstr "ATA コントローラ"

#: kpci_private.h:472
msgid "Serial ATA direct port access"
msgstr "Serial ATA ダイレクトポートアクセス"

#: kpci_private.h:474
msgid "Unknown storage controller"
msgstr "未知のストレージコントローラ"

#: kpci_private.h:476
msgid "Ethernet controller"
msgstr "イーサネットコントローラ"

#: kpci_private.h:477
msgid "Token ring network controller"
msgstr "トークンリングネットワークコントローラ"

#: kpci_private.h:478
msgid "FDDI network controller"
msgstr "FDDI ネットワークコントローラ"

#: kpci_private.h:479
msgid "ATM network controller"
msgstr "ATM ネットワークコントローラ"

#: kpci_private.h:480
msgid "ISDN controller"
msgstr "ISDN コントローラ"

#: kpci_private.h:481
msgid "WorldFip controller"
msgstr "WorldFip コントローラ"

#: kpci_private.h:482
msgid "PICMG 2.14 multi computing"
msgstr "PICMG 2.14 マルチコンピューティング"

#: kpci_private.h:484
msgid "Unknown network controller"
msgstr "未知のネットワークコントローラ"

#: kpci_private.h:486
msgid "VGA compatible controller"
msgstr "VGA コンパチブルコントローラ"

#: kpci_private.h:487
msgid "XGA compatible controller"
msgstr "XGA コンパチブルコントローラ"

#: kpci_private.h:488
msgid "3D controller"
msgstr "3D コントローラー"

#: kpci_private.h:490
msgid "Unknown display controller"
msgstr "不明なディスプレイコントローラ"

#: kpci_private.h:492
msgid "Multimedia video controller"
msgstr "マルチメディアビデオコントローラ"

#: kpci_private.h:493
msgid "Multimedia audio controller"
msgstr "マルチメディアオーディオコントローラ"

#: kpci_private.h:494
msgid "Computer telephony device"
msgstr "コンピューターテレフォニーデバイス"

#: kpci_private.h:496
msgid "Unknown multimedia controller"
msgstr "未知のマルチメディアコントローラ"

#: kpci_private.h:498
msgid "RAM memory"
msgstr "RAM メモリ"

#: kpci_private.h:499
msgid "FLASH memory"
msgstr "フラッシュメモリ"

#: kpci_private.h:501
msgid "Unknown memory controller"
msgstr "未知のメモリコントローラ"

#: kpci_private.h:503
msgid "Host bridge"
msgstr "ホストブリッジ"

#: kpci_private.h:504
msgid "ISA bridge"
msgstr "ISA ブリッジ"

#: kpci_private.h:505
msgid "EISA bridge"
msgstr "EISA ブリッジ"

#: kpci_private.h:506
msgid "MicroChannel bridge"
msgstr "MicroChannel ブリッジ"

#: kpci_private.h:507
msgid "PCI bridge"
msgstr "PCI ブリッジ"

#: kpci_private.h:508
msgid "PCMCIA bridge"
msgstr "PCMCIA ブリッジ"

#: kpci_private.h:509
msgid "NuBus bridge"
msgstr "NuBus ブリッジ"

#: kpci_private.h:510
msgid "CardBus bridge"
msgstr "カードバスブリッジ"

#: kpci_private.h:511
msgid "RACEway bridge"
msgstr "RACEway ブリッジ"

#: kpci_private.h:512
msgid "Semi-transparent PCI-to-PCI bridge"
msgstr "半透過 PCI-to-PCI ブリッジ"

#: kpci_private.h:513
msgid "InfiniBand to PCI host bridge"
msgstr "PCI ホストブリッジへのインフィニバンド"

#: kpci_private.h:515
msgid "Unknown bridge"
msgstr "未知のブリッジ"

#: kpci_private.h:517
msgid "Serial controller"
msgstr "シリアルコントローラ"

#: kpci_private.h:518
msgid "Parallel controller"
msgstr "パラレルコントローラ"

#: kpci_private.h:519
msgid "Multiport serial controller"
msgstr "マルチポートコントローラ"

#: kpci_private.h:520
msgid "Modem"
msgstr "モデム"

#: kpci_private.h:521
msgid "GPIB (IEEE 488.1/2) controller"
msgstr "GPIB (IEEE 488.1/2) コントローラ"

#: kpci_private.h:522
msgid "Smart card"
msgstr "スマートカード"

#: kpci_private.h:524
msgid "Unknown communication controller"
msgstr "未知の通信コントローラ"

#: kpci_private.h:526
msgid "PIC"
msgstr "PIC"

#: kpci_private.h:527
msgid "DMA controller"
msgstr "DMA コントローラ"

#: kpci_private.h:528
msgid "Timer"
msgstr "タイマー"

#: kpci_private.h:529
msgid "RTC"
msgstr "RTC"

#: kpci_private.h:530
msgid "PCI Hot-plug controller"
msgstr "PCI ホットプラグコントローラ"

#: kpci_private.h:531
msgid "System peripheral"
msgstr "システム周辺機器"

#: kpci_private.h:532
msgid "Unknown system peripheral"
msgstr "未知のシステム周辺機器"

#: kpci_private.h:534
msgid "Keyboard controller"
msgstr "キーボードコントローラ"

#: kpci_private.h:535
msgid "Digitizer Pen"
msgstr "デジタイザペン"

#: kpci_private.h:536
msgid "Mouse controller"
msgstr "マウスコントローラ"

#: kpci_private.h:537
msgid "Scanner controller"
msgstr "スキャナコントローラ"

#: kpci_private.h:538
msgid "Gameport controller"
msgstr "ゲームポートコントローラ"

#: kpci_private.h:540
msgid "Unknown input device controller"
msgstr "未知の入力デバイスコントローラ"

#: kpci_private.h:542
msgid "Generic docking station"
msgstr "一般的なドッキングステーション"

#: kpci_private.h:544
msgid "Unknown docking station"
msgstr "未知のドッキングステーション"

#: kpci_private.h:546
msgid "386"
msgstr "386"

#: kpci_private.h:547
msgid "486"
msgstr "486"

#: kpci_private.h:548
msgid "Pentium"
msgstr "Pentium"

#: kpci_private.h:549
msgid "Alpha"
msgstr "Alpha"

#: kpci_private.h:550
msgid "Power PC"
msgstr "Power PC"

#: kpci_private.h:551
msgid "MIPS"
msgstr "MIPS"

#: kpci_private.h:552
msgid "Co-processor"
msgstr "コプロセッサ"

#: kpci_private.h:553
msgid "Unknown processor"
msgstr "未知のプロセッサ"

#: kpci_private.h:555
msgid "FireWire (IEEE 1394)"
msgstr "FireWire (IEEE 1394)"

#: kpci_private.h:556
msgid "ACCESS bus"
msgstr "ACCESS バス"

#: kpci_private.h:557
msgid "SSA"
msgstr "SSA"

#: kpci_private.h:558
msgid "USB controller"
msgstr "USB コントローラ"

#: kpci_private.h:559
msgid "Fibre channel"
msgstr "ファイバーチャネル"

#: kpci_private.h:560
msgid "SMBus"
msgstr "SMBus"

#: kpci_private.h:561
msgid "InfiniBand"
msgstr "InfiniBand"

#: kpci_private.h:562
msgid "IPMI interface"
msgstr "IPMI インターフェース"

#: kpci_private.h:563
msgid "SERCOS interface"
msgstr "SERCOS インターフェース"

#: kpci_private.h:564
msgid "CANbus"
msgstr "CANbus"

#: kpci_private.h:565
msgid "Unknown serial bus controller"
msgstr "未知のシリアルバスコントローラ"

#: kpci_private.h:567
msgid "IRDA controller"
msgstr "IRDA コントローラー"

#: kpci_private.h:568
msgid "Consumer IR controller"
msgstr "コンシューマ IR コントローラ"

#: kpci_private.h:569
msgid "RF controller"
msgstr "RF コントローラ"

#: kpci_private.h:570
msgid "Bluetooth"
msgstr "Bluetooth"

#: kpci_private.h:571
msgid "Broadband"
msgstr "ブロードバンド"

#: kpci_private.h:572
msgid "Ethernet (802.11a - 5 GHz)"
msgstr "イーサネット (802.11a - 5 GHz)"

#: kpci_private.h:573
msgid "Ethernet (802.11b - 2.4 GHz)"
msgstr "イーサネット (802.11b - 2.4 GHz)"

#: kpci_private.h:575
msgid "Unknown wireless controller"
msgstr "未知のワイヤレスコントローラ"

#: kpci_private.h:577
msgid "I2O"
msgstr "I2O"

#: kpci_private.h:578
msgid "Unknown intelligent controller"
msgstr "未知のインテリジェントコントローラ"

#: kpci_private.h:580
msgid "Satellite TV controller"
msgstr "衛星テレビコントローラ"

#: kpci_private.h:581
msgid "Satellite audio communication controller"
msgstr "衛星オーディオ通信コントローラ"

#: kpci_private.h:582
msgid "Satellite voice communication controller"
msgstr "衛星音声通信コントローラ"

#: kpci_private.h:583
msgid "Satellite data communication controller"
msgstr "衛星データ通信コントローラ"

#: kpci_private.h:584
msgid "Unknown satellite communications controller"
msgstr "未知の衛星通信コントローラ"

#: kpci_private.h:586
msgid "Network and computing encryption device"
msgstr "ネットワーク・計算暗号化デバイス"

#: kpci_private.h:587
msgid "Entertainment encryption device"
msgstr "エンターテイメント暗号化デバイス"

#: kpci_private.h:589
msgid "Unknown encryption controller"
msgstr "未知の暗号化コントローラ"

#: kpci_private.h:591
msgid "DPIO module"
msgstr "DPIO モジュール"

#: kpci_private.h:592
msgid "Performance counters"
msgstr "パフォーマンスカウンター"

#: kpci_private.h:593
msgid "Communication synchronizer"
msgstr "通信シンクロナイザ"

#: kpci_private.h:594
msgid "Management card"
msgstr "マネジメントカード"

#: kpci_private.h:596
msgid "Unknown signal processing controller"
msgstr "未知の信号処理コントローラ"

#: kpci_private.h:598
msgid "Unknown subdevice class"
msgstr "未知のサブデバイスクラス"

#: kpci_private.h:605
msgid "single DMA"
msgstr "シングル DMA"

#: kpci_private.h:606
msgid "chained DMA"
msgstr "チェインド DMA"

#: kpci_private.h:608
msgid "VGA compatible"
msgstr "VGA コンパチ"

#: kpci_private.h:609
msgid "8514 compatible"
msgstr "8514 コンパチ"

#: kpci_private.h:611
msgid "Normal decode"
msgstr "標準デコード"

#: kpci_private.h:612
msgid "Subtractive decode"
msgstr "差分デコード"

#: kpci_private.h:614
msgid "Transparent mode"
msgstr "透過モード"

#: kpci_private.h:615
msgid "Endpoint mode"
msgstr "エンドポイントモード"

#: kpci_private.h:617
msgid "Primary bus towards host CPU"
msgstr "ホストCPU向けプライマリバス"

#: kpci_private.h:618
msgid "Secondary bus towards host CPU"
msgstr "ホストCPU向けセカンダリバス"

#: kpci_private.h:620
msgid "8250"
msgstr "8250"

#: kpci_private.h:621
msgid "16450"
msgstr "16450"

#: kpci_private.h:622
msgid "16550"
msgstr "16550"

#: kpci_private.h:623
msgid "16650"
msgstr "16650"

#: kpci_private.h:624
msgid "16750"
msgstr "16750"

#: kpci_private.h:625
msgid "16850"
msgstr "16850"

#: kpci_private.h:626
msgid "16950"
msgstr "16950"

#: kpci_private.h:628
msgid "SPP"
msgstr "SPP"

#: kpci_private.h:629
msgid "BiDir"
msgstr "双方向"

#: kpci_private.h:630
msgid "ECP"
msgstr "ECP"

#: kpci_private.h:631
msgid "IEEE1284"
msgstr "IEEE1284"

#: kpci_private.h:632
msgid "IEEE1284 Target"
msgstr "IEEE1284 ターゲット"

#: kpci_private.h:634 kpci_private.h:654 kpci_private.h:657 kpci_private.h:660
msgid "Generic"
msgstr "一般"

#: kpci_private.h:635
msgid "Hayes/16450"
msgstr "Hayes/16450"

#: kpci_private.h:636
msgid "Hayes/16550"
msgstr "Hayes/16550"

#: kpci_private.h:637
msgid "Hayes/16650"
msgstr "Hayes/16650"

#: kpci_private.h:638
msgid "Hayes/16750"
msgstr "Hayes/16750"

#: kpci_private.h:640
msgid "8259"
msgstr "8259"

#: kpci_private.h:641
msgid "ISA PIC"
msgstr "ISA PIC"

#: kpci_private.h:642
msgid "EISA PIC"
msgstr "EISA PIC"

#: kpci_private.h:643
msgid "IO-APIC"
msgstr "IO-APIC"

#: kpci_private.h:644
msgid "IO(X)-APIC"
msgstr "IO(X)-APIC"

#: kpci_private.h:646
msgid "8237"
msgstr "8237"

#: kpci_private.h:647
msgid "ISA DMA"
msgstr "ISA DMA"

#: kpci_private.h:648
msgid "EISA DMA"
msgstr "EISA DMA"

#: kpci_private.h:650
msgid "8254"
msgstr "8254"

#: kpci_private.h:651
msgid "ISA timer"
msgstr "ISA タイマー"

#: kpci_private.h:652
msgid "EISA timers"
msgstr "EISA タイマー"

#: kpci_private.h:655
msgid "ISA RTC"
msgstr "ISA RTC"

#: kpci_private.h:658
msgid "Extended"
msgstr "拡張"

#: kpci_private.h:661 kpci_private.h:664
msgid "OHCI"
msgstr "OHCI"

#: kpci_private.h:663
msgid "UHCI"
msgstr "UHCI"

#: kpci_private.h:665
msgid "EHCI"
msgstr "EHCI"

#: kpci_private.h:666
msgid "Unspecified"
msgstr "指定無し"

#: kpci_private.h:667
msgid "USB Device"
msgstr "USB デバイス"

#: kpci_private.h:669
msgid "SMIC"
msgstr "SMIC"

#: kpci_private.h:670
msgid "Keyboard controller style"
msgstr "キーボードコントローラースタイル"

#: kpci_private.h:671
msgid "Block transfer"
msgstr "ブロック転送"

#: kpci_private.h:681
msgid "Vital product data"
msgstr "重要製品データ"

#: kpci_private.h:682
msgid "Slot identification"
msgstr "スロット ID"

#: kpci_private.h:684
msgid "CompactPCI hot swap"
msgstr "CompactPCI ホットスワップ"

#: kpci_private.h:685
msgid "PCI-X"
msgstr "PCI-X"

#: kpci_private.h:686
msgid "HyperTransport"
msgstr "HyperTransport"

#: kpci_private.h:687
msgid "Vendor specific"
msgstr "ベンダー特有"

#: kpci_private.h:688
msgid "Debug port"
msgstr "デバッグポート"

#: kpci_private.h:689
msgid "CompactPCI central resource control"
msgstr "CompactPCI 中央リソース制御"

#: kpci_private.h:690
msgid "PCI hot-plug"
msgstr "PCI ホットプラグ"

#: kpci_private.h:691
msgid "AGP x8"
msgstr "AGP x8"

#: kpci_private.h:692
msgid "Secure device"
msgstr "セキュアデバイス"

#: kpci_private.h:693
msgid "PCI express"
msgstr "PCI express"

#: kpci_private.h:694
msgid "MSI-X"
msgstr "MSI-X"

#: kpci_private.h:700
msgid "Fast"
msgstr "高速"

#: kpci_private.h:701
msgid "Medium"
msgstr "中速"

#: kpci_private.h:702
msgid "Slow"
msgstr "低速"

#: kpci_private.h:708
msgid "32 bit"
msgstr "32 ビット"

#: kpci_private.h:709
msgid "Below 1M"
msgstr "1M 以下"

#: kpci_private.h:710
msgid "64 bit"
msgstr "64 ビット"

#: kpci_private.h:716
msgid "Standard"
msgstr "標準"

#: kpci_private.h:718
msgid "CardBus"
msgstr "カードバス"

#: kpci_private.h:724
msgid "1X"
msgstr "1X"

#: kpci_private.h:725
msgid "2X"
msgstr "2X"

#: kpci_private.h:726
msgid "1X & 2X"
msgstr "1X & 2X"

#: kpci_private.h:727 kpci_private.h:731
msgid "4X"
msgstr "4X"

#: kpci_private.h:728
msgid "1X & 4X"
msgstr "1X & 4X"

#: kpci_private.h:729
msgid "2X & 4X"
msgstr "2X & 4X"

#: kpci_private.h:730
msgid "1X & 2X & 4X"
msgstr "1X & 2X & 4X"

#: kpci_private.h:732
msgid "8X"
msgstr "8X"

#: kpci_private.h:733
msgid "4X & 8X"
msgstr "4X & 8X"

#: kpci_private.h:739
msgid "4 ms"
msgstr "4 ms"

#: kpci_private.h:740
msgid "16 ms"
msgstr "16 ms"

#: kpci_private.h:741
msgid "64 ms"
msgstr "64 ms"

#: kpci_private.h:742
msgid "256 ms"
msgstr "256 ms"

#: kpci_private.h:743
msgid "Not needed"
msgstr "必要なし"

#: kpci_private.h:749
msgid "0 (self powered)"
msgstr "0 (セルフパワー)"

#: kpci_private.h:750
msgid "55 mA"
msgstr "55 mA"

#: kpci_private.h:751
msgid "100 mA"
msgstr "100 mA"

#: kpci_private.h:752
msgid "160 mA"
msgstr "160 mA"

#: kpci_private.h:753
msgid "220 mA"
msgstr "220 mA"

#: kpci_private.h:754
msgid "270 mA"
msgstr "270 mA"

#: kpci_private.h:755
msgid "320 mA"
msgstr "320 mA"

#: kpci_private.h:756
msgid "375 mA"
msgstr "375 mA"

#: kpci_private.h:771
msgid "1 vector"
msgstr "1 ベクトル"

#: kpci_private.h:772
msgid "2 vectors"
msgstr "2 ベクトル"

#: kpci_private.h:773
msgid "4 vectors"
msgstr "4 ベクトル"

#: kpci_private.h:774
msgid "8 vectors"
msgstr "8 ベクトル"

#: kpci_private.h:775
msgid "16 vectors"
msgstr "16 ベクトル"

#: kpci_private.h:776
msgid "32 vectors"
msgstr "32 ベクトル"