~brendan-donegan/ubuntu/raring/checkbox/0.15.4

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
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
# Korean translation for checkbox
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
# This file is distributed under the same license as the checkbox package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: checkbox\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-07-12 16:08-0400\n"
"PO-Revision-Date: 2011-07-19 20:32+0000\n"
"Last-Translator: Francis <Unknown>\n"
"Language-Team: Korean <ko@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-01-15 04:33+0000\n"
"X-Generator: Launchpad (build 16420)\n"

#. Title of the user interface
#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
#: ../plugins/user_interface.py:43
msgid "System Testing"
msgstr "시스템 테스트"

#: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:561
msgid "_Test"
msgstr "테스트(_T)"

#: ../gtk/checkbox-gtk.ui.h:3
msgid "_Yes"
msgstr "예(_Y)"

#: ../gtk/checkbox-gtk.ui.h:4
msgid "_No"
msgstr "아니오(_N)"

#: ../gtk/checkbox-gtk.ui.h:5
msgid "_Skip this test"
msgstr "이 테스트 건너뜀(_S)"

#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:460
#: ../checkbox_urwid/urwid_interface.py:289
msgid "Further information:"
msgstr "자세한 정보:"

#: ../gtk/checkbox-gtk.ui.h:7
msgid "_Select All"
msgstr "모두 선택(_S)"

#: ../gtk/checkbox-gtk.ui.h:8
msgid "_Deselect All"
msgstr "모두 선택하지 않기(_D)"

#: ../gtk/checkbox-gtk.ui.h:9
msgid "_Previous"
msgstr "이전(_P)"

#: ../gtk/checkbox-gtk.ui.h:10
msgid "Ne_xt"
msgstr "다음(_X)"

#: ../qt/checkbox-qt.desktop.in.h:2
msgid "Test your system and submit results to the Ubuntu Friendly project"
msgstr "시스템을 테스트한 뒤 결과를 Ubuntu Friendly 프로젝트에 보냅니다"

#. description
#: ../jobs/audio.txt.in:7
msgid "Test to detect audio devices"
msgstr "검색되는 오디오 장치를 테스트합니다"

#. description
#: ../jobs/audio.txt.in:18
msgid ""
"PURPOSE:\n"
"    This test will check that internal speakers work correctly\n"
"STEPS:\n"
"    1. Make sure that no external speakers or headphones are connected\n"
"       If testing a desktop, external speakers are allowed\n"
"    2. Click the Test button to play a brief tone on your audio device\n"
"VERIFICATION:\n"
"    Did you hear a tone?"
msgstr ""
"목적:\n"
"    이 테스트는 내부 스피커가 제대로 작동되고 있는지 확인할 것입니다\n"
"단계:\n"
"    1. 외부 스피커나 헤드폰이 연결되어 있지 않은지 확인하십시오\n"
"       데스크톱을 테스트할 경우에는 외부 스피커도 가능합니다\n"
"    2. 당신의 오디오 장치에 짧은 소리가 나도록 '테스트' 버튼을 클릭하십시오\n"
"확인:\n"
"    소리를 들으셨습니까?"

#. description
#: ../jobs/audio.txt.in:37
msgid ""
"PURPOSE:\n"
"   1. HDMI interface verification\n"
"STEPS:\n"
"   1. Plug an external HDMI device with sound\n"
"   2. Open system sound preferences\n"
"   3. Click on Output and Select HDMI and click 'Test Speakers' to check "
"left and right channels\n"
"   4. Click the Test button\n"
"VERIFICATION:\n"
"   1. Do you hear the sound coming out on the  corresponding channel?\n"
"   2. Did you hear a sound?"
msgstr ""

#. description
#: ../jobs/audio.txt.in:55
msgid ""
"PURPOSE:\n"
"    This test will check that headphones connector works correctly\n"
"STEPS:\n"
"    1. Connect a pair of headphones to your audio device\n"
"    2. Click the Test button to play a sound to your audio device\n"
"VERIFICATION:\n"
"    Did you hear a sound through the headphones and did the sound play "
"without any distortion, clicks or other strange noises from your headphones?"
msgstr ""
"목적:\n"
"    이 테스트는 헤드폰 연결자가 제대로 작동되고 있는지 확인할 것입니다\n"
"단계:\n"
"    1. 오디오 장치에 헤드폰을 연결하십시오\n"
"    2. 오디오 장치에서 소리가 나도록 '테스트' 버튼을 클릭하십시오\n"
"확인:\n"
"    헤드폰을 통해 소리를 들으셨으며, 들리는 소리가 왜곡되거나 틱틱 소리가 나거나 다른 이상한 소음이 나지는 않았습니까?"

#. description
#: ../jobs/audio.txt.in:72
msgid ""
"PURPOSE:\n"
"    This test will check that recording sound using the onboard microphone "
"works correctly\n"
"STEPS:\n"
"    1. Disconnect any external microphones that you have plugged in\n"
"    2. Click \"Test\", then speak into your internal microphone\n"
"    3. After a few seconds, your speech will be played back to you.\n"
"VERIFICATION:\n"
"    Did you hear your speech played back?"
msgstr ""
"목적 :\n"
"    이 테스트는 내장 마이크가 제대로 작동되고 있는지 확인할 것입니다\n"
"단계:\n"
"    1. 컴퓨터에 연결된 모든 외부 마이크를 분리하십시오\n"
"    2. \"테스트\" 버튼을 누른 뒤 내장 마이크에 대고 이야기하십시오\n"
"    3. 몇 초 뒤, 마이크로 녹음하신 내용이 재생될 것입니다\n"
"확인 :\n"
"    내장 마이크로 녹음하신 이야기가 제대로 들렸습니까?"

#. description
#: ../jobs/audio.txt.in:90
msgid ""
"PURPOSE:\n"
"    This test will check that recording sound using an external microphone "
"works correctly\n"
"STEPS:\n"
"    1. Connect a microphone to your microphone port\n"
"    2. Click \"Test\", then speak into the external microphone\n"
"    3. After a few seconds, your speech will be played back to you\n"
"VERIFICATION:\n"
"    Did you hear your speech played back?"
msgstr ""
"목적 :\n"
"    이 테스트는 외부 마이크 녹음이 제대로 작동되는지 확인할 것입니다\n"
"단계:\n"
"    1. 마이크 연결 부분에 마이크를 연결하십시오\n"
"    2. \"테스트\" 버튼을 누른 뒤 외부 마이크에 대고 이야기하십시오\n"
"    3. 몇 초 뒤, 마이크로 녹음하신 내용이 재생될 것입니다\n"
"확인 :\n"
"    외부 마이크로 녹음하신 이야기가 제대로 들렸습니까?"

#. description
#: ../jobs/audio.txt.in:107
msgid ""
"PURPOSE:\n"
"    This test will check that a USB audio device works correctly\n"
"STEPS:\n"
"    1. Connect a USB audio device to your system\n"
"    2. Click \"Test\", then speak into the microphone\n"
"    3. After a few seconds, your speech will be played back to you\n"
"VERIFICATION:\n"
"    Did you hear your speech played back through the USB headphones?"
msgstr ""
"이 테스트의 목적:\n"
"    이 테스트는 USB로 연결된 오디오 기기가 잘 작동하는지를 테스트 할 것입니다.\n"
"따라야 할 단계:\n"
"    1. 테스트에 사용할 USB 오디오 기기를 연결하세요.\n"
"    2. \"테스트\" 버튼을 클릭하고 마이크에 말을 해 보세요.\n"
"    3. 몇 초 후에 마이크에 말한 내용이 재생될 것입니다.\n"
"확인 방법:\n"
"    USB 오디오 기기로 말한 내용이 잘 들리는 지 점검하세요."

#. description
#: ../jobs/audio.txt.in:99
msgid ""
"Play back a sound on the default output and listen for it on the  default "
"input.  This makes the most sense when the output and input  are directly "
"connected, as with a patch cable."
msgstr ""

#. description
#: ../jobs/audio.txt.in:131
msgid ""
"Collect audio-related system information. This data can be used to simulate "
"this computer's audio subsystem and perform more detailed tests under a "
"controlled environment."
msgstr ""

#. description
#: ../jobs/audio.txt.in:140
msgid "Attaches the audio hardware data collection log to the results."
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:18
msgid "Benchmark for each disk"
msgstr "각 디스크에 대한 벤치마킹"

#. description
#: ../jobs/benchmarks.txt.in:41
msgid "Run Render-Bench XRender/Imlib2 benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:47
msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:53
msgid "Run Qgears2 XRender Extension image scaling benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:59
msgid "Run Qgears2 OpenGL gearsfancy benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:65
msgid "Run Qgears2 OpenGL image scaling benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:74
msgid "Run GLmark2-ES2 benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:83
msgid "Run GLmark2 benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:89
msgid "Run Unigine Santuary benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:95
msgid "Run Unigine Tropics benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:101
msgid "Run Unigine Heaven benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:107
msgid "Run Lightsmark benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:113
msgid "Run Cachebench Read benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:119
msgid "Run Cachebench Write benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:125
msgid "Run Cachebench Read / Modify / Write benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:131
msgid "Run Stream Copy benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:137
msgid "Run Stream Scale benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:143
msgid "Run Stream Add benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:149
msgid "Run Stream Triad benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:155
msgid "Run Network Loopback benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:167
msgid "Run Encode MP3 benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:173
msgid "Run x264 H.264/AVC encoder benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:179
msgid "Run GnuPG benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:185
msgid "Run Compress PBZIP2 benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:191
msgid "Run Compress 7ZIP benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:197
msgid "Run N-Queens benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:203
msgid "Run Himeno benchmark"
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:209
msgid "CPU utilization on an idle system."
msgstr ""

#. description
#: ../jobs/benchmarks.txt.in:215
msgid "Disk utilization on an idle system."
msgstr ""

#. description
#: ../jobs/bluetooth.txt.in:8
msgid ""
"Automated test to store bluetooth device information in checkbox report"
msgstr "점검사항 보고서에 블루투스 장치 정보를 저장하기 위한 자동 테스트"

#. description
#: ../jobs/bluetooth.txt.in:14
msgid ""
"PURPOSE:\n"
"    This test will check that bluetooth connection works correctly\n"
"STEPS:\n"
"    1. Enable bluetooth on any mobile device (PDA, smartphone, etc.)\n"
"    2. Click on the bluetooth icon in the menu bar\n"
"    3. Select 'Setup new device'\n"
"    4. Look for the device in the list and select it\n"
"    5. In the device write the PIN code automatically chosen by the wizard\n"
"    6. The device should pair with the computer\n"
"    7. Right-click on the bluetooth icon and select browse files\n"
"    8. Authorize the computer to browse the files in the device if needed\n"
"    9. You should be able to browse the files\n"
"VERIFICATION:\n"
"    Did all the steps work?"
msgstr ""
"목적:\n"
"    이 테스트는 블루투스 연결이 제대로 작동되는지를 확인할 것입니다\n"
"단계:\n"
"    1. 모바일 장치(PDA, 스마트폰, 기타)의 블루투스 설정을 켜십시오\n"
"    2. 메뉴 막대의 블루투스 아이콘을 클릭하십시오\n"
"    3. \"새 장치 설정\"을 선택하십시오\n"
"    4. 목록에서 장치를 찾은 뒤 해당 장치를 선택하십시오\n"
"    5. 장치에 마법사에서 자동적으로 고른 PIN 코드를 입력하십시오\n"
"    6. 장치가 컴퓨터와 동기화되어야 합니다\n"
"    7. 블루투스 아이콘을 마우스 오른쪽 버튼으로 클릭한 뒤 파일 찾기를 선택하십시오\n"
"    8. 필요하다면, 장치에 있는 파일을 컴퓨터가 검색하도록 인증하십시오\n"
"    9. 파일을 검색할 수 있어야 합니다\n"
"확인 :\n"
"    해당 단계를 모두 실행할 수 있었습니까?"

#. description
#: ../jobs/bluetooth.txt.in:33
msgid ""
"PURPOSE:\n"
"    This test will check that you can transfer information through a "
"bluetooth connection\n"
"STEPS:\n"
"    1. Make sure that you're able to browse the files in your mobile device\n"
"    2. Copy a file from the computer to the mobile device\n"
"    3. Copy a file from the mobile device to the computer\n"
"VERIFICATION:\n"
"    Were all files copied correctly?"
msgstr ""
"목적 :\n"
"    이 테스트는 블루투스 연결을 통해 정보를 전송할 수 있는지를 확인할 것입니다\n"
"단계:\n"
"    1. 모바일 장치에 저장된 파일을 검색할 수 있는지 확인하십시오\n"
"    2. 컴퓨터에서 모바일 장치로 파일을 복사하십시오\n"
"    3. 모바일 장치에서 컴퓨터로 파일을 복사하십시오\n"
"확인 :\n"
"    모든 파일이 제대로 복사되었습니까?"

#. description
#: ../jobs/bluetooth.txt.in:47
msgid ""
"PURPOSE:\n"
"    This test will check that you can record and hear audio using a "
"bluetooth audio device\n"
"STEPS:\n"
"    1. Enable the bluetooth headset\n"
"    2. Click on the bluetooth icon in the menu bar\n"
"    3. Select 'Setup new device'\n"
"    4. Look for the device in the list and select it\n"
"    5. In the device write the PIN code automatically chosen by the wizard\n"
"    6. The device should pair with the computer\n"
"    7. Click \"Test\" to record for five seconds and reproduce in the "
"bluetooth device\n"
"VERIFICATION:\n"
"    Did you hear the sound you recorded in the bluetooth"
msgstr ""
"목적:\n"
"    이 테스트는 블루투스 오디오 장치를 사용하여 소리를 녹음하고 들을 수 있는지 확인할 것입니다\n"
"단계:\n"
"    1. 블루투스 헤드셋을 켜십시오\n"
"    2. 메뉴 막대에 있는 블루투스 아이콘을 클릭하십시오\n"
"    3. '새 장치 설정'을 선택하십시오\n"
"    4. 목록에 있는 장치를 살펴본 뒤 해당 장치를 선택하십시오\n"
"    5. 장치에 마법사가 자동으로 고른 PIN 번호를 입력하십시오\n"
"    6. 장치가 컴퓨터와 동기화되어야 합니다\n"
"    7. 5초 동안 녹음 후 블루투스 장치를 통해 들을 수 있도록 \"테스트\" 버튼을 클릭하십시오\n"
"확인:\n"
"    녹음한 소리를 블루투스를 통해 들으셨습니까?"

#. description
#: ../jobs/bluetooth.txt.in:65
msgid ""
"PURPOSE:\n"
"    This test will check that you can use a bluetooth keyboard\n"
"STEPS:\n"
"    1. Enable the bluetooth keyboard\n"
"    2. Click on the bluetooth icon in the menu bar\n"
"    3. Select 'Setup new device'\n"
"    4. Look for the device in the list and select it\n"
"    5. Click \"Test\"\n"
"    6. Enter some text\n"
"VERIFICATION:\n"
"    Were you able to enter some text with the bluetooth keyboard?"
msgstr ""
"목적:\n"
"    이 테스트는 블루투스 키보드를 사용할 수 있는지 확인할 것입니다\n"
"단계:\n"
"    1. 블루투스 키보드를 켜십시오\n"
"    2. 메뉴 막대에 있는 블루투스 아이콘을 클릭하십시오\n"
"    3. '새 장치 설정'을 선택하십시오\n"
"    4. 목록에서 장치를 찾아 해당 장치를 선택하십시오\n"
"    5. \"테스트\"를 클릭하십시오\n"
"    6. 단어를 입력하십시오\n"
"확인:\n"
"    블루투스 키보드를 통해 단어를 입력할 수 있었습니까?"

#. description
#: ../jobs/bluetooth.txt.in:81
msgid ""
"PURPOSE:\n"
"    This test will check that you can use a bluetooth mouse\n"
"STEPS:\n"
"    1. Enable the bluetooth mouse\n"
"    2. Click on the bluetooth icon in the menu bar\n"
"    3. Select 'Setup new device'\n"
"    4. Look for the device in the list and select it\n"
"    5. Move the mouse around the screen\n"
"    6. Perform some single/double/right click operations\n"
"VERIFICATION:\n"
"    Did the mouse work as expected?"
msgstr ""
"목적:\n"
"    이 테스트는 블루투스 마우스를 사용할 수 있는지 확인할 것입니다\n"
"단계:\n"
"    1. 블루투스 마우스를 켜십시오\n"
"    2. 메뉴 막대에 있는 블루투스 아이콘을 클릭하십시오\n"
"    3. '새 장치 설정'을 선택하십시오\n"
"    4. 목록에 있는 장치를 살펴본 뒤 해당 장치를 선택하십시오\n"
"    5. 화면 주위로 마우스를 움직이십시오\n"
"    6. 한번 클릭 / 두번 클릭 / 오른쪽 클릭을 해보십시오\n"
"확인 :\n"
"    마우스가 제대로 작동합니까?"

#. description
#: ../jobs/camera.txt.in:6
msgid "This Automated test attempts to detect a camera."
msgstr "자동 테스트로 카메라 인식을 시도합니다"

#. description
#: ../jobs/camera.txt.in:15
msgid ""
"PURPOSE:\n"
"    This test will check that the built-in camera works\n"
"STEPS:\n"
"    1. Click on Test to display a video capture from the camera for ten "
"seconds.\n"
"VERIFICATION:\n"
"    Did you see the video capture?"
msgstr ""
"이 테스트의 목적:\n"
"    이 테스트는 웹캠 (컴퓨터에 연결된 영상 캡쳐 기기)가 작동하는지를 검사할 것입니다.\n"
"따라야 할 단계:\n"
"    테스트 버튼을 누르면 카메라에서 약 10초간 영상을 캡쳐할 것입니다.\n"
"확인 방법:\n"
"    캡쳐된 비디오가 잘 보이는 지 검사하세요."

#. description
#: ../jobs/camera.txt.in:32
msgid ""
"PURPOSE:\n"
"    This test will check that the built-in camera works\n"
"STEPS:\n"
"    1. Click on Test to display a still image from the camera\n"
"VERIFICATION:\n"
"    Did you see the image?"
msgstr ""
"목적:\n"
"    이 테스트는 내장 카메라가 제대로 작동되는지를 확인할 것입니다\n"
"단계:\n"
"    1. 카메라에서 정지 이미지를 찍을 수 있도록 테스트 버튼을 클릭하십시오\n"
"확인:\n"
"    이미지를 보셨습니까?"

#. description
#: ../jobs/codecs.txt.in:7
msgid ""
"PURPOSE:\n"
"   This test will verify your system's ability to play Ogg Vorbis audio "
"files.\n"
"STEPS:\n"
"   1. Click Test to play an Ogg Vorbis file (.ogg)\n"
"   2. Please close the player to proceed.\n"
"VERIFICATION:\n"
"   Did the sample play correctly?"
msgstr ""
"이 테스트의 목적:\n"
"   이 테스트는 사용하고 있는 시스템이 Ogg Vorbis 형식의 오디오 파일을 재생할 수 있는 지를 검사합니다.\n"
"따라야 할 단계:\n"
"   1. 테스트를 누르면 샘플 Ogg Vorbis 파일을 재생할 것입니다.\n"
"   2. 계속하려면 플레이어를 닫아주세요.\n"
"확인 방법:\n"
"   샘플 오디오 파일이 잘 재생되는지 확인하세요."

#. description
#: ../jobs/codecs.txt.in:22
msgid ""
"PURPOSE:\n"
"   This test will verify your system's ability to play Wave Audio files.\n"
"STEPS:\n"
"   1. Select Test to play a Wave Audio format file (.wav)\n"
"   2. Please close the player to proceed.\n"
"VERIFICATION:\n"
"   Did the sample play correctly?"
msgstr ""
"이 테스트의 목적:\n"
"   이 테스트는 사용하고 있는 시스템이 웨이브 오디오 파일 (Wav 파일)을 재생할 수 있는 지를 검사합니다.\n"
"따라야 할 단계:\n"
"   1. 테스트를 누르면 샘플 Wav파일을 재생할 것입니다.\n"
"   2. 계속하려면 플레이어를 닫아주세요.\n"
"확인 방법:\n"
"   샘플 오디오 파일이 잘 재생되는지 확인하세요."

#. description
#: ../jobs/cpu.txt.in:8
msgid ""
"Test the CPU scaling capabilities using Firmware Test Suite (fwts cpufreq)."
msgstr "펌웨어 테스트 도구 (fwts cpufreq)를 사용해 CPU 측정을 잘 할 수 있는지 검사합니다."

#. description
#: ../jobs/cpu.txt.in:15
msgid "Attaches the log generated by cpu/scaling_test to the results"
msgstr ""

#. description
#: ../jobs/cpu.txt.in:21
msgid "Test for clock jitter."
msgstr "시간이 정확한 지 검사합니다."

#. description
#: ../jobs/cpu.txt.in:28
msgid "Test offlining CPUs in a multicore system."
msgstr "멀티 코어 시스템에서 다른 CPU들을 검사합니다."

#. description
#: ../jobs/cpu.txt.in:35
msgid "This test checks cpu topology for accuracy"
msgstr "이 테스트는 정확성 향상을 위해 CPU의 모양을 검사합니다."

#. description
#: ../jobs/cpu.txt.in:42
msgid "This test checks that CPU frequency governors are obeyed when set."
msgstr "이 테스트는 CPU 속도 관리자가 제대로 작동하는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:5
msgid "Test if the atd daemon is running when the package is installed."
msgstr "패키지가 설치되면 atd 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:11
msgid "Test if the cron daemon is running when the package is installed."
msgstr "패키지가 설치되면 cron 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:17
msgid "Test if the cupsd daemon is running when the package is installed."
msgstr "페키지가 설치되면 cupsd 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:23
msgid "Test if the getty daemon is running when the package is installed."
msgstr "패키지가 설치되면 getty 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:29
msgid "Test if the init daemon is running when the package is installed."
msgstr "패키지가 설치되면 init 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:35
msgid "Test if the klogd daemon is running when the package is installed."
msgstr "패키지가 설치되면 klogd 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:41
msgid "Test if the nmbd daemon is running when the package is installed."
msgstr "패키지가 설치되면 nmbd 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:47
msgid "Test if the smbd daemon is running when the package is installed."
msgstr "패키지가 설치되면 smbd 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:53
msgid "Test if the syslogd daemon is running when the package is installed."
msgstr "패키지가 설치되면 syslogd 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:60
msgid "Test if the udevd daemon is running when the package is installed."
msgstr "패키지가 설치되면 udevd 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/daemons.txt.in:66
msgid "Test if the winbindd daemon is running when the package is installed."
msgstr "패키지가 설치되면 winbindd 데몬이 실행되는지 검사합니다."

#. description
#: ../jobs/disk.txt.in:4
msgid "Detects and displays disks attached to the system."
msgstr "시스템이 연결된 디스크를 찾아서 표시합니다."

#. description
#: ../jobs/disk.txt.in:9
msgid "Check stats changes for each disk"
msgstr "각 디스크에 대한 변화를 측정"

#. description
#: ../jobs/disk.txt.in:27
msgid "SMART test"
msgstr "스마트 테스트"

#. description
#: ../jobs/disk.txt.in:45
msgid "Maximum disk space used during a default installation test"
msgstr "기본 설치 테스트를 할 때 필요한 최대 디스크 공간"

#. description
#: ../jobs/disk.txt.in:62
msgid "Verify system storage performs at or above baseline performance"
msgstr "최저 사양과 비교해 시스템 저장소 성능을 평가합니다."

#. description
#: ../jobs/disk.txt.in:79
msgid ""
"Verify that storage devices, such as Fibre Channel and RAID can be detected "
"and perform under stress."
msgstr ""
"Fibre Channel이나 RAID로 구성된 저장소가 연결되어 있고, 테스트를 수행할 수 있는지 (읽기-쓰기가 가능한지) 확인하세요."

#. description
#: ../jobs/fingerprint.txt.in:3
msgid ""
"PURPOSE:\n"
"   This test will verify that a fingerprint reader will work properly for "
"logging into your system.\n"
"PREREQUISITES:\n"
"   This test case assumes that there's a testing account from which test "
"cases are run and a personal account that the tester uses to verify the "
"fingerprint reader\n"
"STEPS:\n"
"   1. Click on the user switcher applet.\n"
"   2. Select your user name.\n"
"   3. A window should appear that provides the ability to login either "
"typing your password or using fingerprint authentication.\n"
"   4. Use the fingerprint reader to login.\n"
"   5. Click on the user switcher applet.\n"
"   6. Select the testing account to continue running tests.\n"
"VERIFICATION:\n"
"   Did the authentication procedure work correctly?"
msgstr ""
"이 테스트의 목적:\n"
"   이 테스트는 지문인식기를 이용해 시스템에 로그인 할 수 있는 지를 확인합니다.\n"
"테스트를 수행할 조건:\n"
"   시스템 로그인을 수행할 수 있는 지문인식기가 있는 경우에만 이 테스트를 수행할 수 있습니다.\n"
"따라야 할 단계:\n"
"   1. 우측 상단에 있는 사용자 변경 탭을 클릭하세요.\n"
"   2. 테스트에 사용할 계정을 클릭하세요.\n"
"   3. 열쇠글을 이용해 자격을 증명하거나, 지문을 이용해 증명하라는 메세지가 뜰 것입니다.\n"
"   4. 지문을 이용해 로그인하세요.\n"
"   5. 이 테스트를 하고 있던 계정으로 다시 접속하세요.\n"
"   6. 시스템 테스트를 계속하세요.\n"
"확인 방법:\n"
"   문제없이 로그인할 수 있는지 확인하세요."

#. description
#: ../jobs/fingerprint.txt.in:20
msgid ""
"PURPOSE:\n"
"   This test will verify that a fingerprint reader can be used to unlock a "
"locked system.\n"
"STEPS:\n"
"   1. Click on the user switcher applet.\n"
"   2. Select 'Lock screen'.\n"
"   3. Press any key or move the mouse.\n"
"   4. A window should appear that provides the ability to unlock either "
"typing your password or using fingerprint authentication.\n"
"   5. Use the fingerprint reader to unlock.\n"
"   6. Your screen should be unlocked.\n"
"VERIFICATION:\n"
"   Did the authentication procedure work correctly?"
msgstr ""
"목적:\n"
"   이 테스트는 지문 인식기로 로그인을 해제할 수 있는지를 검사합니다.\n"
"따라야 할 단계:\n"
"   1. 사용자 전환 애플릿을 누르세요.\n"
"   2. '화면 잠금'을 누르세요. 1번을 생략하고 Ctrl+Alt+L을 누르셔도 됩니다.\n"
"   3. 아무 키나 누르세요.\n"
"   4. 열쇠글을 입력하거나 지문 인식을 요구하는 창이 뜰 것입니다.\n"
"   5. 지문 인식기에 지문을 인식시키세요.\n"
"   6. 화면이 잠금이 풀릴 것입니다.\n"
"확인 방법:\n"
"   화면 잠금이 제대로 풀렸습니까?"

#. description
#: ../jobs/firewire.txt.in:4
msgid ""
"PURPOSE:\n"
"    This test will check the system can detect the insertion of a FireWire "
"HDD\n"
"STEPS:\n"
"    1. Click 'Test' to begin the test. This test will\n"
"       timeout and fail if the insertion has not been detected within 20 "
"seconds.\n"
"    2. Plug a FireWire HDD into an available FireWire port.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the "
"automatically\n"
"    selected result"
msgstr ""

#. description
#: ../jobs/firewire.txt.in:20
msgid ""
"This is an automated test which performs read/write operations on an "
"attached FireWire HDD"
msgstr "부착된 파이어와이어 하드디스크에 대해 자동화된 테스트를 실시합니다."

#. description
#: ../jobs/firewire.txt.in:28
msgid ""
"PURPOSE:\n"
"    This test will check the system can detect the removal of a FireWire "
"HDD\n"
"STEPS:\n"
"    1. Click 'Test' to begin the test. This test will timeout and fail if\n"
"       the removal has not been detected within 20 seconds.\n"
"    2. Remove the previously attached FireWire HDD from the FireWire port.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the "
"automatically\n"
"    selected result"
msgstr ""

#. description
#: ../jobs/floppy.txt.in:4
msgid "Floppy test"
msgstr "플로피 디스크 검사"

#. description
#: ../jobs/graphics.txt.in:10
msgid "Test to output the Xorg version"
msgstr "Xorg 버전 출력을 시험합니다."

#. description
#: ../jobs/benchmarks.txt.in:34
msgid "Run gtkperf to make sure that GTK based test cases work"
msgstr "GTK를 바탕으로 한 테스트가 제대로 작동하도록 하려면 gtkperf를 실행하세요."

#. description
#: ../jobs/graphics.txt.in:15
msgid ""
"PURPOSE:\n"
"    This test will verify that the GUI is usable after manually changing "
"resolution\n"
"STEPS:\n"
"    1. Open the Displays application\n"
"    2. Select a new resolution from the dropdown list\n"
"    3. Click on Apply\n"
"    4. Select the original resolution from the dropdown list\n"
"    5. Click on Apply\n"
"VERIFICATION:\n"
"    Did the resolution change as expected?"
msgstr ""
"목적:\n"
"    이 테스트는 화면 해상도를 바꾼 후 GUI환경을 사용할 수 있는지를 검사합니다.\n"
"따라야 할 단계:\n"
"    1. 디스플레이 프로그램을 여세요.\n"
"    2. 리스트에서 새로운 화면 해상도를 고르세요.\n"
"    3. 적용을 누르세요.\n"
"    4. 원래 해상도로 바꾸세요.\n"
"    5. 적용을 누르세요.\n"
"확인 방법:\n"
"    두 해상도 모두에서 화면이 제대로 표시됩니까?"

#. description
#: ../jobs/graphics.txt.in:33
msgid ""
"PURPOSE:\n"
"    This test will test display rotation\n"
"STEPS:\n"
"    1. Open the Displays application\n"
"    2. Select a new rotation value from the dropdown list\n"
"    3. Click on Apply\n"
"    4. Click on Restore Previous Configuration\n"
"    5. Click on Apply\n"
"    6. Repeat 2-5 for different rotation values\n"
"VERIFICATION:\n"
"    Did the display rotation change as expected?"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:31
msgid "Test that the X process is running."
msgstr ""

#. description
#: ../jobs/graphics.txt.in:37
msgid "Test that the X is not running in failsafe mode."
msgstr ""

#. description
#: ../jobs/graphics.txt.in:44
msgid ""
"Test that X does not leak memory when running programs on systems with intel "
"based graphics."
msgstr ""

#. description
#: ../jobs/graphics.txt.in:44
msgid ""
"PURPOSE:\n"
"    This test will verify the default display resolution\n"
"STEPS:\n"
"    1. This display is using the following resolution:\n"
"INFO:\n"
"    $output\n"
"VERIFICATION:\n"
"    Is this acceptable for your display?"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:59
msgid ""
"Ensure the current resolution meets or exceeds the recommended minimum "
"resolution (800x600). See here for details:"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:59
msgid "https://help.ubuntu.com/community/Installation/SystemRequirements"
msgstr "https://help.ubuntu.com/community/Installation/SystemRequirements"

#. description
#: ../jobs/graphics.txt.in:81
msgid ""
"PURPOSE:\n"
"    This test will test the default display\n"
"STEPS:\n"
"    1. Click \"Test\" to display a video test.\n"
"VERIFICATION:\n"
"    Do you see color bars and static?"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:92
msgid "Check that VESA drivers are not in use"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:99
msgid ""
"PURPOSE:\n"
"    This test cycles through the detected video modes\n"
"STEPS:\n"
"    1. Click \"Test\" to start cycling through the video modes\n"
"VERIFICATION:\n"
"    Did the screen appear to be working for each mode?"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:124
msgid "Check that hardware is able to run compiz"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:130
msgid "Check that hardware is able to run Unity 3D"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:136
msgid ""
"PURPOSE:\n"
"    This test tests the basic 3D capabilities of your video card\n"
"STEPS:\n"
"    1. Click \"Test\" to execute an OpenGL demo. Press ESC at any time to "
"close.\n"
"    2. Verify that the animation is not jerky or slow.\n"
"VERIFICATION:\n"
"    1. Did the 3d animation appear?\n"
"    2. Was the animation free from slowness/jerkiness?"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:159
msgid ""
"PURPOSE:\n"
"    Take a screengrab of the current screen (logged on Unity desktop)\n"
"STEPS:\n"
"    1. Take picture using USB webcam\n"
"VERIFICATION:\n"
"    1. Review attachment manually later"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:186 ../jobs/suspend.txt.in:692
msgid "Attaches the screenshot captured in graphics/screenshot."
msgstr ""

#. description
#: ../jobs/graphics.txt.in:182
msgid ""
"PURPOSE:\n"
"    Take a screengrab of the current screen during fullscreen video "
"playback\n"
"STEPS:\n"
"    1. Start a fullscreen video playback\n"
"    2. Take picture using USB webcam after a few seconds\n"
"VERIFICATION:\n"
"    1. Review attachment manually later"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:210
msgid ""
"Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
msgstr ""

#. description
#: ../jobs/hibernate.txt.in:14
msgid ""
"PURPOSE:\n"
"    This test will check to make sure your system can successfully hibernate "
"(if supported)\n"
"STEPS:\n"
"    1. Click on Test\n"
"    2. The system will hibernate and should wake itself within 5 minutes\n"
"    3. If your system does not wake itself after 5 minutes, please press the "
"power button to wake the system manually\n"
"    4. If the system fails to resume from hibernate, please restart System "
"Testing and mark this test as Failed\n"
"VERIFICATION:\n"
"    Did the system successfully hibernate and did it work properly after "
"waking up?"
msgstr ""

#. description
#: ../jobs/info.txt.in:5
msgid "Attaches a report of installed codecs for Intel HDA"
msgstr ""

#. description
#: ../jobs/info.txt.in:10
msgid "Attaches a report of CPU information"
msgstr ""

#. description
#: ../jobs/info.txt.in:15
msgid "Attaches a copy of /var/log/dmesg to the test results"
msgstr ""

#. description
#: ../jobs/info.txt.in:20
msgid "Attaches info on DMI"
msgstr ""

#. description
#: ../jobs/info.txt.in:26
msgid "Attaches dmidecode output"
msgstr ""

#. description
#: ../jobs/info.txt.in:37
msgid "Attaches very verbose lspci output."
msgstr ""

#. description
#: ../jobs/info.txt.in:42
msgid "Attaches very verbose lspci output (with central database Query)."
msgstr ""

#. description
#: ../jobs/info.txt.in:49
msgid "List USB devices"
msgstr ""

#. description
#: ../jobs/info.txt.in:58
msgid "Attaches the contents of the various modprobe conf files."
msgstr ""

#. description
#: ../jobs/info.txt.in:63
msgid "Attaches the contents of the /etc/modules file."
msgstr ""

#. description
#: ../jobs/info.txt.in:68
msgid "attaches the contents of various sysctl config files."
msgstr ""

#. description
#: ../jobs/info.txt.in:72
msgid "Attaches a report of sysfs attributes."
msgstr ""

#. description
#: ../jobs/info.txt.in:83
msgid ""
"Attaches a dump of the udev database showing system hardware information."
msgstr ""

#. description
#: ../jobs/info.txt.in:95
msgid "Attaches a tarball of gcov data if present."
msgstr ""

#. description
#: ../jobs/info.txt.in:100
msgid "Attaches a list of the currently running kernel modules."
msgstr ""

#. description
#: ../jobs/info.txt.in:105
msgid "Attaches the contents of /proc/acpi/sleep if it exists."
msgstr ""

#. description
#: ../jobs/info.txt.in:109
msgid "Bootchart information."
msgstr ""

#. description
#: ../jobs/info.txt.in:118
msgid "SATA/IDE device information."
msgstr ""

#. description
#: ../jobs/info.txt.in:137
msgid "Attaches the bootchart png file for bootchart runs"
msgstr ""

#. description
#: ../jobs/info.txt.in:146
msgid "Attaches the bootchart log for bootchart test runs."
msgstr ""

#. description
#: ../jobs/info.txt.in:154
msgid "installs the installer bootchart tarball if it exists."
msgstr ""

#. description
#: ../jobs/info.txt.in:159
msgid "Attaches the installer debug log if it exists."
msgstr ""

#. description
#: ../jobs/input.txt.in:23
msgid ""
"PURPOSE:\n"
"    This test will test your pointing device\n"
"STEPS:\n"
"    1. Move the cursor using the pointing device or touch the screen.\n"
"    2. Perform some single/double/right click operations.\n"
"VERIFICATION:\n"
"    Did the pointing device work as expected?"
msgstr ""

#. description
#: ../jobs/input.txt.in:36
msgid ""
"PURPOSE:\n"
"    This test will test your keyboard\n"
"STEPS:\n"
"    1. Click on Test\n"
"    2. On the open text area, use your keyboard to type something\n"
"VERIFICATION:\n"
"    Is your keyboard working properly?"
msgstr ""

#. description
#: ../jobs/install.txt.in:6
msgid ""
"Tests to see that apt can access repositories and get updates (does not "
"install updates). This is done to confirm that you could recover from an "
"incomplete or broken update."
msgstr ""

#. description
#: ../jobs/keys.txt.in:4
msgid ""
"PURPOSE:\n"
"    This test will test the brightness key\n"
"STEPS:\n"
"    1. Press the brightness buttons on the keyboard\n"
"VERIFICATION:\n"
"    Did the brightness change following to your key presses?"
msgstr ""

#. description
#: ../jobs/keys.txt.in:14
msgid ""
"PURPOSE:\n"
"    This test will test the volume keys\n"
"STEPS:\n"
"    1. Press the volume buttons on the keyboard\n"
"VERIFICATION:\n"
"    Did the volume change following to your key presses?"
msgstr ""

#. description
#: ../jobs/keys.txt.in:25
msgid ""
"PURPOSE:\n"
"    This test will test the mute key\n"
"STEPS:\n"
"    1. Press the mute button on the keyboard\n"
"VERIFICATION:\n"
"    Did the volume mute following your key presses?"
msgstr ""

#. description
#: ../jobs/keys.txt.in:48
msgid ""
"PURPOSE:\n"
"    This test will test the sleep key\n"
"STEPS:\n"
"    1. Press the sleep key on the keyboard\n"
"    2. Wake your system up by pressing the power button\n"
"VERIFICATION:\n"
"    Did the system go to sleep after pressing the sleep key?"
msgstr ""

#. description
#: ../jobs/keys.txt.in:49
msgid ""
"PURPOSE:\n"
"    This test will test the battery information key\n"
"STEPS:\n"
"    1. Press the battery information key on the keyboard\n"
"VERIFICATION:\n"
"    Did a notification appear showing the battery status?"
msgstr ""

#. description
#: ../jobs/keys.txt.in:76
msgid ""
"PURPOSE:\n"
"    This test will test the wireless key\n"
"STEPS:\n"
"    1. Press the wireless key on the keyboard\n"
"    2. Press the same key again\n"
"VERIFICATION:\n"
"    Did the wireless go off on the first press and on again on the second?"
msgstr ""

#. description
#: ../jobs/keys.txt.in:91
msgid ""
"PURPOSE:\n"
"    This test will test the media keys of your keyboard\n"
"STEPS:\n"
"    1. Click test to open a window on which to test the media keys.\n"
"    2. If all the keys work, the test will be marked as passed.\n"
"    3. If your computer has no media keys, Skip this test.\n"
"VERIFICATION:\n"
"    Do the keys work as expected?"
msgstr ""

#. description
#: ../jobs/keys.txt.in:107
msgid ""
"PURPOSE:\n"
"    This test will test the super key of your keyboard\n"
"STEPS:\n"
"    1. Click test to open a window on which to test the super key.\n"
"    2. If the key works, the test will pass and the window will close.\n"
"VERIFICATION:\n"
"    Does the super key work as expected?"
msgstr ""

#. description
#: ../jobs/local.txt.in:3
msgid "Audio tests"
msgstr "오디오 테스트"

#. description
#: ../jobs/local.txt.in:10
msgid "Benchmarks tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:17
msgid "Bluetooth tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:24
msgid "Camera tests"
msgstr "카메라 시험"

#. description
#: ../jobs/local.txt.in:31
msgid "Codec tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:38
msgid "CPU tests"
msgstr "중앙처리장치 시험"

#. description
#: ../jobs/local.txt.in:45
msgid "System Daemon tests"
msgstr "시스템 데몬 시험"

#. description
#: ../jobs/local.txt.in:52
msgid "Disk tests"
msgstr "디스크 테스트"

#. description
#: ../jobs/local.txt.in:66
msgid "Fingerprint reader tests"
msgstr "지문 인식기 테스트"

#. description
#: ../jobs/local.txt.in:73
msgid "Firewire disk tests"
msgstr "Firewire 디스크 테스트"

#. description
#: ../jobs/local.txt.in:80
msgid "Floppy disk tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:87
msgid "Graphics tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:94
msgid "Hibernation tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:101
msgid "Informational tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:108
msgid "Input Devices tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:115
msgid "Software Installation tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:122
msgid "Hotkey tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:136
msgid "Media Card tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:143
msgid "Memory tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:157
msgid "Miscellaneous tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:164
msgid "Monitor tests"
msgstr "모니터 테스트"

#. description
#: ../jobs/local.txt.in:171
msgid "Networking tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:178
msgid "Optical Drive tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:185
msgid "Panel Clock Verification tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:185
msgid "PCMCIA/PCIX Card tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:206
msgid "Peripheral tests"
msgstr "주변 기기 테스트"

#. description
#: ../jobs/local.txt.in:220
msgid "Power Management tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:227
msgid "Server Services checks"
msgstr ""

#. description
#: ../jobs/local.txt.in:234
msgid "Suspend tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:241
msgid "Touchpad tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:255
msgid "USB tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:262
msgid "User Applications"
msgstr "사용자 응용프로그램"

#. description
#: ../jobs/local.txt.in:276
msgid "Wireless networking tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:283
msgid "Stress tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:290
msgid "Smoke tests"
msgstr ""

#. description
#: ../jobs/local.txt.in:297
msgid "Sniff Sniffers"
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:4
msgid ""
"PURPOSE:\n"
"    This test will check that the systems media card reader can\n"
"    detect the insertion of a Multimedia Card (MMC) media\n"
"STEPS:\n"
"    1. Click \"Test\" and insert an MMC card into the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"    2. Do not unplug the device after the test.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:21
msgid ""
"This test is automated and executes after the mediacard/mmc-insert test is "
"run. It tests reading and writing to the MMC card."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:29
msgid ""
"PURPOSE:\n"
"    This test will check that the system correctly detects\n"
"    the removal of the MMC card from the systems card reader.\n"
"STEPS:\n"
"    1. Click \"Test\" and remove the MMC card from the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:44
msgid ""
"PURPOSE:\n"
"    This test will check that the systems media card reader can\n"
"    detect the insertion of an MMC card after the system has been suspended\n"
"STEPS:\n"
"    1. Click \"Test\" and insert an MMC card into the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"    2. Do not unplug the device after the test.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:61
msgid ""
"This test is automated and executes after the mediacard/mmc-insert-after-"
"suspend test is run. It tests reading and writing to the MMC card after the "
"system has been suspended."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:69
msgid ""
"PURPOSE:\n"
"    This test will check that the system correctly detects the removal\n"
"    of an MMC card from the systems card reader after the system has been "
"suspended.\n"
"STEPS:\n"
"    1. Click \"Test\" and remove the MMC card from the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:83
msgid ""
"PURPOSE:\n"
"    This test will check that the systems media card reader can\n"
"    detect the insertion of a Secure Digital (SD) media card\n"
"STEPS:\n"
"    1. Click \"Test\" and insert an SD card into the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"    2. Do not unplug the device after the test.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:100
msgid ""
"This test is automated and executes after the mediacard/sd-insert test is "
"run. It tests reading and writing to the SD card."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:108
msgid ""
"PURPOSE:\n"
"    This test will check that the system correctly detects\n"
"    the removal of an SD card from the systems card reader.\n"
"STEPS:\n"
"    1. Click \"Test\" and remove the SD card from the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:123
msgid ""
"PURPOSE:\n"
"    This test will check that the systems media card reader can\n"
"    detect the insertion of an SD card after the system has been suspended\n"
"STEPS:\n"
"    1. Click \"Test\" and insert an SD card into the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"    2. Do not unplug the device after the test.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:140
msgid ""
"This test is automated and executes after the mediacard/sd-insert-after-"
"suspend test is run. It tests reading and writing to the SD card after the "
"system has been suspended."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:148
msgid ""
"PURPOSE:\n"
"    This test will check that the system correctly detects\n"
"    the removal of an SD card from the systems card reader after the system "
"has been suspended.\n"
"STEPS:\n"
"    1. Click \"Test\" and remove the SD card from the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:172
msgid ""
"PURPOSE:\n"
"    This test will check that the systems media card reader can\n"
"    detect the insertion of a Secure Digital High-Capacity (SDHC) media "
"card\n"
"STEPS:\n"
"    1. Click \"Test\" and insert an SDHC card into the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"    2. Do not unplug the device after the test.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:189
msgid ""
"This test is automated and executes after the mediacard/sdhc-insert test is "
"run. It tests reading and writing to the SDHC card."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:197
msgid ""
"PURPOSE:\n"
"    This test will check that the system correctly detects\n"
"    the removal of an SDHC card from the systems card reader.\n"
"STEPS:\n"
"    1. Click \"Test\" and remove the SDHC card from the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:212
msgid ""
"PURPOSE:\n"
"    This test will check that the systems media card reader can\n"
"    detect the insertion of an SDHC media card after the system has been "
"suspended\n"
"STEPS:\n"
"    1. Click \"Test\" and insert an SDHC card into the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"    2. Do not unplug the device after the test.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:229
msgid ""
"This test is automated and executes after the mediacard/sdhc-insert-after-"
"suspend test is run. It tests reading and writing to the SDHC card after the "
"system has been suspended."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:237
msgid ""
"PURPOSE:\n"
"    This test will check that the system correctly detects the removal\n"
"    of an SDHC card from the systems card reader after the system has been "
"suspended.\n"
"STEPS:\n"
"    1. Click \"Test\" and remove the SDHC card from the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:251
msgid ""
"PURPOSE:\n"
"    This test will check that the systems media card reader can\n"
"    detect the insertion of a Compact Flash (CF) media card\n"
"STEPS:\n"
"    1. Click \"Test\" and insert a CF card into the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"    2. Do not unplug the device after the test.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:268
msgid ""
"This test is automated and executes after the mediacard/cf-insert test is "
"run. It tests reading and writing to the CF card."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:276
msgid ""
"PURPOSE:\n"
"    This test will check that the system correctly detects\n"
"    the removal of a CF card from the systems card reader.\n"
"STEPS:\n"
"    1. Click \"Test\" and remove the CF card from the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:291
msgid ""
"PURPOSE:\n"
"    This test will check that the systems media card reader can\n"
"    detect the insertion of a CF card after the system has been suspended\n"
"STEPS:\n"
"    1. Click \"Test\" and insert a CF card into the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"    2. Do not unplug the device after the test.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:308
msgid ""
"This test is automated and executes after the mediacard/cf-insert-after-"
"suspend test is run. It tests reading and writing to the CF card after the "
"system has been suspended."
msgstr ""

#. description
#: ../jobs/mediacard.txt.in:316
msgid ""
"PURPOSE:\n"
"    This test will check that the system correctly detects the removal\n"
"    of a CF card from the systems card reader after the system has been "
"suspended.\n"
"STEPS:\n"
"    1. Click \"Test\" and remove the CF card from the reader.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/memory.txt.in:5
msgid ""
"This test checks the amount of memory which is reporting in meminfo against "
"the size of the memory modules detected by DMI."
msgstr ""

#. description
#: ../jobs/memory.txt.in:13
msgid "Test and exercise memory."
msgstr ""

#. description
#: ../jobs/miscellanea.txt.in:3
msgid ""
"PURPOSE:\n"
"    Keep tester related information in the report\n"
"STEPS:\n"
"    1. Tester Information\n"
"    2. Please enter the following information in the comments field:\n"
"       a. Name\n"
"       b. Email Address\n"
"       c. Reason for this test run\n"
"VERIFICATION:\n"
"    Nothing to verify for this test"
msgstr ""

#. description
#: ../jobs/miscellanea.txt.in:21
msgid ""
"PURPOSE:\n"
"    This test will check that the system can switch to a virtual terminal "
"and back to X\n"
"STEPS:\n"
"    1. Click \"Test\" to switch to another virtual terminal and then back to "
"X\n"
"VERIFICATION:\n"
"    Did your screen change temporarily to a text console and then switch "
"back to your current session?"
msgstr ""

#. description
#: ../jobs/miscellanea.txt.in:34
msgid "Run Firmware Test Suite (fwts) automated tests."
msgstr ""

#. description
#: ../jobs/miscellanea.txt.in:44
msgid "Attaches the FWTS results log to the submission"
msgstr ""

#. description
#: ../jobs/miscellanea.txt.in:51
msgid ""
"This will run some basic connectivity tests against a BMC, verifying that "
"IPMI works."
msgstr ""

#. description
#: ../jobs/miscellanea.txt.in:57
msgid ""
"   Determine if we need to run tests specific to portable computers that may "
"not apply to desktops."
msgstr ""

#. description
#: ../jobs/miscellanea.txt.in:65
msgid ""
"Test that the /var/crash directory doesn't contain anything. Lists the files "
"contained within if it does, or echoes the status of the directory (doesn't "
"exist/is empty)"
msgstr ""

#. description
#: ../jobs/virtualization.txt.in:6
msgid ""
"Test to check that virtualization is supported and the test system has at "
"least a minimal amount of RAM to function as an OpenStack Compute Node"
msgstr ""

#. description
#: ../jobs/monitor.txt.in:4
msgid ""
"PURPOSE:\n"
"    This test will check your VGA port. Skip if your system does not have a "
"VGA port.\n"
"STEPS:\n"
"    1. Connect a display (if not already connected) to the VGA port on your "
"system\n"
"VERIFICATION:\n"
"    Was the desktop displayed correctly on both screens?"
msgstr ""

#. description
#: ../jobs/monitor.txt.in:15
msgid ""
"PURPOSE:\n"
"    This test will check your DVI port. Skip if your system does not have a "
"DVI port\n"
"STEPS:\n"
"    1. Connect a display (if not already connected) to the DVI port on your "
"system\n"
"VERIFICATION:\n"
"    Was the desktop displayed correctly on both screens?"
msgstr ""

#. description
#: ../jobs/monitor.txt.in:26
msgid ""
"PURPOSE:\n"
"    This test will check your DisplayPort port. Skip if your system does not "
"have a DisplayPort port\n"
"STEPS:\n"
"    1. Connect a display (if not already connected) to the DisplayPort port "
"on your system\n"
"VERIFICATION:\n"
"    Was the desktop displayed correctly on both screens?"
msgstr ""

#. description
#: ../jobs/monitor.txt.in:37
msgid ""
"PURPOSE:\n"
"    This test will check your HDMI port. Skip if your system does not have a "
"HDMI port\n"
"STEPS:\n"
"    1. Connect a display (if not already connected) to the HDMI port on your "
"system\n"
"VERIFICATION:\n"
"    Was the desktop displayed correctly on both screens?"
msgstr ""

#. description
#: ../jobs/monitor.txt.in:48
msgid ""
"PURPOSE:\n"
"    This test will check your S-VIDEO port. Skip if your system does not "
"have a S-VIDEO port\n"
"STEPS:\n"
"    1. Connect a display (if not already connected) to the S-VIDEO port on "
"your system\n"
"VERIFICATION:\n"
"    Was the desktop displayed correctly on both screens?"
msgstr ""

#. description
#: ../jobs/monitor.txt.in:59
msgid ""
"PURPOSE:\n"
"    This test will check your RCA port. Skip if your system does not have a "
"RCA port\n"
"STEPS:\n"
"    1. Connect a display (if not already connected) to the RCA port on your "
"system\n"
"VERIFICATION:\n"
"    Was the desktop displayed correctly on both screens?"
msgstr ""

#. description
#: ../jobs/monitor.txt.in:70
msgid ""
"PURPOSE:\n"
"    This test will check your monitor power saving capabilities\n"
"STEPS:\n"
"    1. Click \"Test\" to try the power saving capabilities of your monitor\n"
"    2. Press any key or move the mouse to recover\n"
"VERIFICATION:\n"
"    Did the the monitor go blank and turn on again?"
msgstr ""

#. description
#: ../jobs/networking.txt.in:8
msgid "Test to detect the available network controllers"
msgstr ""

#. description
#: ../jobs/networking.txt.in:14
msgid "Tests whether the system has a working Internet connection."
msgstr ""

#. description
#: ../jobs/networking.txt.in:19
msgid "Network Information"
msgstr "네트워크 정보"

#. description
#: ../jobs/networking.txt.in:43
msgid ""
"This is an automated test to gather some info on the current state of your "
"network devices. If no devices are found, the test will exit with an error."
msgstr ""

#. description
#: ../jobs/networking.txt.in:49
msgid ""
"PURPOSE:\n"
"    This test will check your wired connection\n"
"STEPS:\n"
"    1. Click on the Network icon in the top panel\n"
"    2. Select a network below the \"Wired network\" section\n"
"    3. Click \"Test\" to verify that it's possible to establish a HTTP "
"connection\n"
"VERIFICATION:\n"
"    Did a notification show and was the connection correctly established?"
msgstr ""

#. description
#: ../jobs/networking.txt.in:62
msgid ""
"PURPOSE:\n"
"    This test will check that a DSL modem can be configured and connected.\n"
"STEPS:\n"
"    1. Connect the telephone line to the computer\n"
"    2. Click on the Network icon on the top panel.\n"
"    3. Select \"Edit Connections\"\n"
"    4. Select the \"DSL\" tab\n"
"    5. Click on \"Add\" button\n"
"    6. Configure the connection parameters properly\n"
"    7. Click \"Test\" to verify that it's possible to establish an HTTP "
"connection\n"
"VERIFICATION:\n"
"    Did a notification show and was the connection correctly established?"
msgstr ""

#. description
#: ../jobs/networking.txt.in:79
msgid ""
"Automated test case to verify availability of some system on the network "
"using ICMP ECHO packets."
msgstr ""

#. description
#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
msgid ""
"Automated test case to make sure that it's possible to download files "
"through HTTP"
msgstr ""

#. description
#: ../jobs/networking.txt.in:94
msgid "Test to see if we can sync local clock to an NTP server"
msgstr ""

#. description
#: ../jobs/networking.txt.in:100
msgid ""
"Verify that an installation of checkbox-server on the network can be reached "
"over SSH."
msgstr ""

#. description
#: ../jobs/networking.txt.in:106
msgid "Try to enable a remote printer on the network and print a test page."
msgstr ""

#. description
#: ../jobs/networking.txt.in:111
msgid ""
"Automated test to walk multiple network cards and test each one in sequence."
msgstr ""

#. description
#: ../jobs/networking.txt.in:134
msgid "Test to measure the network bandwidth"
msgstr ""

#. description
#: ../jobs/optical.txt.in:4
msgid "Test to detect the optical drives"
msgstr ""

#. description
#: ../jobs/optical.txt.in:16
msgid ""
"PURPOSE:\n"
"    This test will check your optical devices ability to read CD media\n"
"STEPS:\n"
"    1. Insert appropriate non-blank media into your optical drive(s). Movie "
"and Audio Disks may not work. Self-created data disks have the greatest "
"chance of working.\n"
"    2. If a file browser window opens, you can safely close or ignore that "
"window.\n"
"    3. Click \"Test\" to begin the test.\n"
"VERIFICATION:\n"
"    This test should automatically select \"Yes\" if it passes, \"No\" if it "
"fails."
msgstr ""

#. description
#: ../jobs/optical.txt.in:33
msgid ""
"PURPOSE:\n"
"    This test will check your system's CD writing capabilities. This test "
"requires a blank CD-R. If you do not have a blank CD-R, skip this test.\n"
"STEPS:\n"
"    1. Enter a blank CD-R into your drive\n"
"    2. Click \"Test\" to begin.\n"
"    3. When the CD tray ejects the media after burning, close it (DO NOT "
"remove the disk, it is needed for the second portion of the test). Note, you "
"must close the drive within 10 seconds or the test will time out.\n"
"VERIFICATION:\n"
"    This test should automatically select \"Yes\" if it passes, \"No\" if it "
"fails."
msgstr ""

#. description
#: ../jobs/optical.txt.in:91
msgid ""
"PURPOSE:\n"
"    This test will check your CD audio playback capabilities\n"
"STEPS:\n"
"    1. Insert an audio CD in your optical drive\n"
"    2. When prompted, launch the Music Player\n"
"    3. Locate the CD in the display of the Music Player\n"
"    4. Select the CD in the Music Player\n"
"    5. Click the Play button to listen to the music on the CD\n"
"    6. Stop playing after some time\n"
"    7. Right click on the CD icon and select \"Eject Disc\"\n"
"    8. The CD should be ejected\n"
"    9. Close the Music Player\n"
"VERIFICATION:\n"
"    Did all the steps work?"
msgstr ""

#. description
#: ../jobs/optical.txt.in:69
msgid ""
"PURPOSE:\n"
"    This test will check your system's DVD writing capabilities. This test "
"requires a blank DVD-R. If you do not have a blank DVD-R, skip this test.\n"
"STEPS:\n"
"    1. Enter a blank DVD-R into your drive\n"
"    2. Click \"Test\" to begin.\n"
"    3. When the CD tray ejects the media after burning, close it (DO NOT "
"remove the disk, it is needed for the second portion of the test). Note, you "
"must close the drive within 10 seconds or the test will time out.\n"
"VERIFICATION:\n"
"    This test should automatically select \"Yes\" if it passes, \"No\" if it "
"fails."
msgstr ""

#. description
#: ../jobs/optical.txt.in:149
msgid ""
"PURPOSE:\n"
"    This test will check your DVD movie playback capabilities. Note that "
"installation of non-free software (codecs, player, etc) may be required "
"prior to performing this test.\n"
"STEPS:\n"
"    1. Insert a DVD that contains any movie in your optical drive\n"
"    2. Open the Dash (click on the Ubuntu Circle of Friends button on the "
"Launcher)\n"
"    3. Click \"Media Apps\" and then click on \"Movie Player\"\n"
"    4. Play the movie using Movie Player, stop the movie after verifying "
"that it plays\n"
"    6. Eject the DVD\n"
"VERIFICATION:\n"
"    Did all the steps work?"
msgstr ""

#. description
#: ../jobs/optical.txt.in:154
msgid ""
"PURPOSE:\n"
"    This test will check your DVD  playback capabilities\n"
"STEPS:\n"
"    1. Insert a DVD that contains any movie in your optical drive\n"
"    2. Click \"Test\" to play the DVD in Totem\n"
"VERIFICATION:\n"
"    Did the file play?"
msgstr ""

#. description
#: ../jobs/panel_clock_test.txt.in:4
msgid ""
"PURPOSE:\n"
"   This test will verify that the desktop clock displays the correct date "
"and time\n"
"STEPS:\n"
"   1. Check the clock in the upper right corner of your desktop.\n"
"VERIFICATION:\n"
"   Is the clock displaying the correct date and time for your timezone?"
msgstr ""

#. description
#: ../jobs/panel_clock_test.txt.in:18
msgid ""
"PURPOSE:\n"
"   This test will verify that the desktop clock synchronizes with the system "
"clock.\n"
"STEPS:\n"
"   1. Click the \"Test\" button and verify the clock moves ahead by 1 hour.\n"
"   Note: It may take a minute or so for the clock to refresh\n"
"   2. Right click on the clock, then click on \"Time & Date Settings...\"\n"
"   3. Ensure that your clock application is set to manual.\n"
"   4. Change the time 1 hour back\n"
"   5. Close the window and reboot\n"
"VERIFICATION:\n"
"   Is your system clock displaying the correct date and time for your "
"timezone?"
msgstr ""

#. description
#: ../jobs/panel_reboot.txt.in:3
msgid ""
"PURPOSE:\n"
"   This test will verify that you can reboot your system from the desktop "
"menu\n"
"STEPS:\n"
"   1. Click the Gear icon in the upper right corner of the desktop and click "
"on \"Shut Down\"\n"
"   2. Click the \"Restart\" button on the left side of the Shut Down dialog\n"
"   3. After logging back in, restart System Testing and it should resume "
"here\n"
"VERIFICATION:\n"
"   Did your system restart and bring up the GUI login cleanly?"
msgstr ""

#. description
#: ../jobs/pcmcia-pcix.txt.in:3
msgid ""
"PURPOSE:\n"
"    This will verify that a PCMCIA or ExpressCard slot can detect inserted "
"devices\n"
"STEPS:\n"
"    1. Plug a PCMCIA or ExpressCard device into the computer\n"
"VERIFICATION:\n"
"    Was the device correctly detected?"
msgstr ""

#. description
#: ../jobs/peripheral.txt.in:3
msgid ""
"PURPOSE:\n"
"   This test will verify that a network printer is usable\n"
"STEPS:\n"
"   1. Make sure that a printer is available in your network\n"
"   2. Click on the Gear icon in the upper right corner and then click on "
"Printers\n"
"   3. If the printer isn't already listed, click on Add\n"
"   4. The printer should be detected and proper configuration values  should "
"be displayed\n"
"   5. Print a test page\n"
"VERIFICATION:\n"
"   Were you able to print a test page to the network printer?"
msgstr ""

#. description
#: ../jobs/peripheral.txt.in:18
msgid ""
"PURPOSE:\n"
"   This test will verify that a USB DLS or Mobile Broadband modem works\n"
"STEPS:\n"
"   1. Connect the USB cable to the computer\n"
"   2. Right click on the Network icon in the panel\n"
"   3. Select 'Edit Connections'\n"
"   4. Select the 'DSL' (for ADSL modem) or 'Mobile Broadband' (for 3G modem) "
"tab\n"
"   5. Click on add 'Add' button\n"
"   6. Configure the connection parameters properly\n"
"   7. Notify OSD should confirm that the connection has been established\n"
"   8. Select Test to verify that it's possible to establish an HTTP "
"connection\n"
"VERIFICATION:\n"
"   Was the connection correctly established?"
msgstr ""

#. description
#: ../jobs/power-management.txt.in:3
msgid ""
"PURPOSE:\n"
"    This test will check your system shutdown/booting cycle\n"
"STEPS:\n"
"    1. Shutdown your machine\n"
"    2. Boot your machine\n"
"    3. Repeat steps 1 and 2 at least 5 times\n"
"VERIFICATION:\n"
"    Did the system shutdown and rebooted correctly?"
msgstr ""

#. description
#: ../jobs/power-management.txt.in:17
msgid "Test ACPI Wakealarm (fwts wakealarm)"
msgstr ""

#. description
#: ../jobs/power-management.txt.in:25
msgid "Attach log from fwts wakealarm test"
msgstr ""

#. description
#: ../jobs/power-management.txt.in:39
msgid ""
"PURPOSE:\n"
" This test will check the system's ability to power-off and boot.\n"
"STEPS:\n"
" 1: Select \"Test\" to begin.\n"
" 2: The machine will shut down.\n"
" 3: Power the machine back on.\n"
" 4: After rebooting, wait for the test prompts to inform you that the test "
"is complete.\n"
" 5: Once the test has completed, restart checkbox and select Re-Run when "
"prompted\n"
"VERIFICATION:\n"
" If the machine successfully shuts down and boots, select Yes then select "
"Next."
msgstr ""

#. description
#: ../jobs/power-management.txt.in:54
msgid ""
"This will attach any logs from the power-management/poweroff test to the "
"results."
msgstr ""

#. description
#: ../jobs/power-management.txt.in:64
msgid ""
"PURPOSE:\n"
" This test will check the system's ability to reboot cleanly.\n"
"STEPS:\n"
" 1: Select \"Test\" to begin.\n"
" 2: The machine will reboot.\n"
" 3: After rebooting, wait for the test prompts to inform you that the test "
"is complete.\n"
" 4: Once the test has completed, restart checkbox and select Re-Run when "
"prompted\n"
"VERIFICATION:\n"
" If the machine successfully reboots, select Yes then select Next."
msgstr ""

#. description
#: ../jobs/power-management.txt.in:79
msgid ""
"This will attach any logs from the power-management/reboot test to the "
"results."
msgstr ""

#. description
#: ../jobs/power-management.txt.in:84
msgid ""
"PURPOSE:\n"
"    This test will check your lid sensors\n"
"STEPS:\n"
"    1. Close your laptop lid\n"
"VERIFICATION:\n"
"   Does closing your laptop lid cause your system to suspend?"
msgstr ""

#. description
#: ../jobs/power-management.txt.in:101
msgid ""
"PURPOSE:\n"
"    This test will check your lid sensors\n"
"STEPS:\n"
"    1. Click \"Test\"\n"
"    2. Close and open the lid\n"
"VERIFICATION:\n"
"    Did the screen turn off while the lid was closed?"
msgstr ""

#. description
#: ../jobs/power-management.txt.in:119
msgid ""
"PURPOSE:\n"
"    This test will check your lid sensors\n"
"STEPS:\n"
"    1. Click \"Test\"\n"
"    2. Close the lid\n"
"    3. Wait 5 seconds with the lid closed\n"
"    4. Open the lid\n"
"VERIFICATION:\n"
"    Did the system resume when the lid was opened?"
msgstr ""

#. description
#: ../jobs/power-management.txt.in:134
msgid "Make sure that the RTC (Real-Time Clock) device exists."
msgstr "RTC(리얼 타임 클럭) 장치가 존재하는지 확인하시오."

#. description
#: ../jobs/power-management.txt.in:139
msgid ""
"Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
"regression check)"
msgstr ""

#. description
#: ../jobs/server-services.txt.in:5
msgid "Verifies that sshd is running."
msgstr ""

#. description
#: ../jobs/server-services.txt.in:11
msgid "Verifies that Print/CUPs server is running."
msgstr ""

#. description
#: ../jobs/server-services.txt.in:18
msgid "Verifies that DNS server is running and working."
msgstr ""

#. description
#: ../jobs/server-services.txt.in:25
msgid "Verifies that Samba server is running."
msgstr ""

#. description
#: ../jobs/server-services.txt.in:32
msgid "Verifies that the LAMP stack is running (Apache, MySQL and PHP)."
msgstr ""

#. description
#: ../jobs/server-services.txt.in:39
msgid "Verifies that Tomcat server is running and working."
msgstr ""

#. description
#: ../jobs/stress.txt.in:7
msgid ""
"PURPOSE:\n"
"    Create jobs that use the CPU as much as possible for two hours. The test "
"is considered passed if the system does not freeze."
msgstr ""

#. description
#: ../jobs/stress.txt.in:24
msgid ""
"PURPOSE:\n"
"   This is an automated stress test that will force the system to "
"hibernate/resume for 30 cycles"
msgstr ""

#. description
#: ../jobs/stress.txt.in:31
msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
msgstr ""

#. description
#: ../jobs/stress.txt.in:47
msgid ""
"PURPOSE:\n"
"   This is an automated stress test that will force the system to "
"suspend/resume for 30 cycles."
msgstr ""

#. description
#: ../jobs/stress.txt.in:54
msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
msgstr ""

#. description
#: ../jobs/stress.txt.in:76
msgid ""
"PURPOSE:\n"
"   This is an automated stress test that will force the system to "
"hibernate/resume for 250 cycles"
msgstr ""

#. description
#: ../jobs/stress.txt.in:83
msgid ""
"Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
msgstr ""

#. description
#: ../jobs/stress.txt.in:99
msgid ""
"PURPOSE:\n"
"   This is an automated stress test that will force the system to "
"suspend/resume for 250 cycles."
msgstr ""

#. description
#: ../jobs/stress.txt.in:106
msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
msgstr ""

#. description
#: ../jobs/stress.txt.in:122
msgid "Stress reboot system (100 cycles)"
msgstr ""

#. description
#: ../jobs/stress.txt.in:137
msgid "Stress poweroff system (100 cycles)"
msgstr ""

#. description
#: ../jobs/stress.txt.in:149
msgid "Check logs for the stress reboot (100 cycles) test case"
msgstr ""

#. description
#: ../jobs/stress.txt.in:161
msgid "Check logs for the stress poweroff (100 cycles) test case"
msgstr ""

#. description
#: ../jobs/suspend.txt.in:4
msgid "Record the current network before suspending."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:9
msgid "Record the current resolution before suspending."
msgstr "절전 전에 현재 해상도를 기록합니다."

#. description
#: ../jobs/suspend.txt.in:17
msgid "Record mixer settings before suspending."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:22
msgid "Verify that all the CPUs are online before suspending"
msgstr ""

#. description
#: ../jobs/suspend.txt.in:27
msgid ""
"Dumps memory info to a file for comparison after suspend test has been run"
msgstr ""

#. description
#: ../jobs/suspend.txt.in:36
msgid ""
"This test disconnects all connections and then connects to the wireless "
"interface. It then checks the connection to confirm it's working as expected."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:137
msgid ""
"PURPOSE:\n"
"    This test will check suspend and resume\n"
"STEPS:\n"
"    1. Click \"Test\" and your system will suspend for about 30 - 60 "
"seconds\n"
"    2. If your system does not wake itself up after 60 seconds, please press "
"the power button momentarily to wake the system manually\n"
"    3. If your system fails to wake at all and must be rebooted, restart "
"System Testing after reboot and mark this test as Failed\n"
"VERIFICATION:\n"
"    Did your system suspend and resume correctly?"
msgstr ""

#. description
#: ../jobs/suspend.txt.in:152
msgid "This is the automated version of suspend/suspend_advanced."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:203
msgid "Test the network after resuming."
msgstr "절전 후 네트워크 시험"

#. description
#: ../jobs/suspend.txt.in:209
msgid ""
"Test to see that we have the same resolution after resuming as before."
msgstr "절전 후에도 이전과 같은 해상도로 되는지를 시험합니다."

#. description
#: ../jobs/suspend.txt.in:218
msgid ""
"Verify that mixer settings after suspend are the same as before suspend."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:231
msgid "Verify that all CPUs are online after resuming."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:244
msgid "Verify that all memory is available after resuming from suspend."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:251
msgid ""
"PURPOSE:\n"
"    This test will check that the display is correct after suspend and "
"resume\n"
"STEPS:\n"
"    1. Check that your display does not show up visual artifacts after "
"resuming.\n"
"VERIFICATION:\n"
"    Does the display work normally after resuming from suspend?"
msgstr ""

#. description
#: ../jobs/suspend.txt.in:265
msgid ""
"This test checks that the wireless interface is working after suspending the "
"system. It disconnects all interfaces and then connects to the wireless "
"interface and checks that the connection is working as expected."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:331
msgid ""
"Tests that the systems wireless hardware can connect to a router using WPA "
"security and the 802.11b/g protocols after the system has been suspended."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:344
msgid ""
"Tests that the systems wireless hardware can connect to a router using no "
"security and the 802.11b/g protocols after the system has been suspended."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:357
msgid ""
"Tests that the systems wireless hardware can connect to a router using WPA "
"security and the 802.11n protocol after the system has been suspended."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:370
msgid ""
"Tests that the systems wireless hardware can connect to a router using no "
"security and the 802.11n protocol after the system has been suspended."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:469
msgid ""
"This test grabs the hardware address of the bluetooth adapter after suspend "
"and compares it to the address grabbed before suspend."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:539
msgid ""
"This is an automated Bluetooth file transfer test. It sends an image to the "
"device specified by the BTDEVADDR environment variable."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:621
msgid ""
"PURPOSE:\n"
"    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
"specified device\n"
"STEPS:\n"
"    1. Click \"Test\" and you will be prompted to enter the Bluetooth device "
"name of a device that can accept file transfers (It may take a few moments "
"after entering the name for the file to begin sending)\n"
"    2. Accept any prompts that appear on both devices\n"
"VERIFICATION:\n"
"    Was the data correctly transferred?"
msgstr ""

#. description
#: ../jobs/suspend.txt.in:635
msgid ""
"PURPOSE:\n"
"    This test will cycle through the detected display modes\n"
"STEPS:\n"
"    1. Click \"Test\" and the display will cycle trough the display modes\n"
"VERIFICATION:\n"
"    Did your display look fine in the detected mode?"
msgstr ""

#. description
#: ../jobs/suspend.txt.in:647
msgid ""
"This test will check to make sure supported video modes work after a suspend "
"and resume. This is done automatically by taking screenshots and uploading "
"them as an attachment."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:656
msgid ""
"This attaches screenshots from the "
"suspend/cycle_resolutions_after_suspend_auto test to the results submission."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:666
msgid ""
"This will check to make sure that your audio device works properly after a "
"suspend and resume.  This may work fine with speakers and onboard "
"microphone, however, it works best if used with a cable connecting the audio-"
"out jack to the audio-in jack."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:672
msgid "Attaches the log from the single suspend/resume test to the results"
msgstr ""

#. description
#: ../jobs/suspend.txt.in:392
msgid ""
"PURPOSE:\n"
"    Take a screengrab of the current screen after suspend (logged on Unity "
"desktop)\n"
"STEPS:\n"
"    1. Take picture using USB webcam\n"
"VERIFICATION:\n"
"    1. Review attachment manually later"
msgstr ""

#. description
#: ../jobs/suspend.txt.in:415
msgid ""
"PURPOSE:\n"
"    Do some challenging operations, suspend the system, do more challenging\n"
"    operations - then check for lockup on the GPU\n"
"STEPS:\n"
"    1. Create 2 glxgears windows and move them quickly\n"
"    2. Switch workspaces/viewports with wmctrl\n"
"    3. Launch a Flash playback in firefox\n"
"    4. Suspend/resume\n"
"VERIFICATION:\n"
"    1. After a 60s workload, check kern.log for reported GPU errors"
msgstr ""

#. description
#: ../jobs/touchpad.txt.in:3
msgid ""
"PURPOSE:\n"
"    1. Touchpad verification\n"
"STEPS:\n"
"    1. Make sure that touchpad is enabled\n"
"    2. Try to move pointer using touchpad\n"
"    3. Pointer should move accordingly\n"
"VERIFICATION:\n"
"    1. Did touchpad work as expected?"
msgstr ""

#. description
#: ../jobs/touchpad.txt.in:18
msgid ""
"PURPOSE:\n"
"    1. Touchpad verification\n"
"STEPS:\n"
"    1. Click on Power Indicator -> System Settings -> Mouse -> Touchpad\n"
"    2. Make sure that the \"Enable horizontal scrolling\" checkbox is "
"checked\n"
"    3. Select 'Test' to open in GEdit a file with a really wide line\n"
"    4. Verify that you can move the the horizontal slider by moving your "
"finger side by side in the lower part of the touchpad\n"
"VERIFICATION:\n"
"    1. Did touchpad work as expected?"
msgstr ""

#. description
#: ../jobs/touchpad.txt.in:34
msgid ""
"PURPOSE:\n"
"    1. Touchpad verification\n"
"STEPS:\n"
"    1. Click on Power Indicator -> System Settings -> Mouse -> Touchpad\n"
"    2. Make sure that the \"Edge scrolling\" radiobox is checked\n"
"    3. Select 'Test' to open in GEdit a file with a multiple lines of text\n"
"    4. Verify that you can move the the vertical slider by moving your "
"finger side by side in the right part of the touchpad\n"
"VERIFICATION:\n"
"    1. Did touchpad work as expected?\n"
"NOTES:\n"
"    1. Edge Scrolling option should be enabled by default"
msgstr ""

#. description
#: ../jobs/usb.txt.in:4
msgid "Detects and shows USB devices attached to this system."
msgstr ""

#. description
#: ../jobs/usb.txt.in:10
msgid ""
"PURPOSE:\n"
"    This test will check that your system detects USB storage devices.\n"
"STEPS:\n"
"    1. Plug in one or more USB keys or hard drives.\n"
"    2. Click on \"Test\".\n"
"INFO:\n"
"    $output\n"
"VERIFICATION:\n"
"    Were the drives detected?"
msgstr ""

#. description
#: ../jobs/usb.txt.in:28
msgid ""
"PURPOSE:\n"
"    This test will check your USB connection.\n"
"STEPS:\n"
"    1. Plug a USB keyboard into the computer.\n"
"    2. Click on \"Test\" and enter some text.\n"
"VERIFICATION:\n"
"    Does the keyboard work?"
msgstr ""

#. description
#: ../jobs/usb.txt.in:41
msgid ""
"PURPOSE:\n"
"    This test will check your USB connection.\n"
"STEPS:\n"
"    1. Plug a USB mouse into the computer.\n"
"    2. Perform some single/double/right click operations.\n"
"VERIFICATION:\n"
"    Does the mouse work correctly?"
msgstr ""

#. description
#: ../jobs/usb.txt.in:39
msgid ""
"PURPOSE:\n"
"    This test will check that the system correctly detects the insertion of\n"
"    a USB storage device\n"
"STEPS:\n"
"    1. Click \"Test\" and insert a USB storage device (pen-drive/HDD).\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"    2. Do not unplug the device after the test.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/usb.txt.in:72
msgid ""
"PURPOSE:\n"
"    This test will check that the system correctly detects the removal of\n"
"    a USB storage device\n"
"STEPS:\n"
"    1. Click \"Test\" and remove the USB device.\n"
"       (Note: this test will time-out after 20 seconds.)\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/usb.txt.in:105
msgid ""
"PURPOSE:\n"
"    This test will check your USB connection.\n"
"STEPS:\n"
"    1. Plug a USB HDD or thumbdrive into the computer.\n"
"    2. An icon should appear on the Launcher.\n"
"    3. Click \"Test\" to begin the test.\n"
"VERIFICATION:\n"
"    The verification of this test is automated. Do not change the\n"
"    automatically selected result."
msgstr ""

#. description
#: ../jobs/usb.txt.in:139
msgid "This test is automated and executes after the usb/insert test is run."
msgstr ""

#. description
#: ../jobs/usb.txt.in:156
msgid ""
"This is an automated version of usb/storage-automated and assumes that the "
"server has usb storage devices plugged in prior to checkbox execution. It is "
"intended for servers and SRU automated testing."
msgstr ""

#. description
#: ../jobs/usb.txt.in:174
msgid ""
"PURPOSE:\n"
"    This test will check your USB connection.\n"
"STEPS:\n"
"    1. Connect a USB storage device to an external USB slot on this "
"computer.\n"
"    2. An icon should appear on the Launcher.\n"
"    3. Confirm that the icon appears.\n"
"    4. Eject the device.\n"
"    5. Repeat with each external USB slot.\n"
"VERIFICATION:\n"
"    Do all USB slots work with the device?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:6
msgid ""
"PURPOSE:\n"
" This test will check that the update manager can find updates.\n"
"STEPS:\n"
" 1. Click Test to launch update-manager.\n"
" 2. Follow the prompts and if updates are found, install them.\n"
" 3. When Update Manager has finished, please close the app by clicking the "
"Close button in the lower right corner.\n"
"VERIFICATION:\n"
" Did Update manager find and install updates (Pass if no updates are found,\n"
" but Fail if updates are found but not installed)"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:22
msgid ""
"PURPOSE:\n"
" This test will check that the file browser can create a new folder.\n"
"STEPS:\n"
" 1. Click Test to open the File Browser.\n"
" 2. On the menu bar, click File -> Create Folder.\n"
" 3. In the name box for the new folder, enter the name Test Folder and hit "
"Enter.\n"
" 4. Close the File browser.\n"
"VERIFICATION:\n"
" Do you now have a new folder called Test Folder?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:37
msgid ""
"PURPOSE:\n"
" This test will check that the file browser can copy a folder\n"
"STEPS:\n"
" 1. Click Test to open the File Browser.\n"
" 2. Right click on the folder called Test Folder and click on Copy.\n"
" 3. Right Click on any white area in the window and click on Paste.\n"
" 4. Right click on the folder called Test Folder(copy) and click Rename.\n"
" 5. Enter the name Test Data in the name box and hit Enter.\n"
" 6. Close the File browser.\n"
"VERIFICATION:\n"
" Do you now have a folder called Test Data?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:54
msgid ""
"PURPOSE:\n"
" This test will verify that the file browser can move a folder.\n"
"STEPS:\n"
" 1. Click Test to open the File Browser.\n"
" 2. Click and drag the folder called Test Data onto the icon called Test "
"Folder.\n"
" 3. Release the button.\n"
" 4. Double click the folder called Test Folder to open it up.\n"
" 5. Close the File Browser.\n"
"VERIFICATION:\n"
" Was the folder called Test Data successfully moved into the folder called "
"Test Folder?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:70
msgid ""
"PURPOSE:\n"
" This test will check that the file browser can create a new file.\n"
"STEPS:\n"
" 1. Click Select Test to open the File Browser.\n"
" 2. Right click in the white space and click Create Document -> Empty "
"Document.\n"
" 3. Enter the name Test File 1 in the name box and hit Enter.\n"
" 4. Close the File browser.\n"
"VERIFICATION:\n"
" Do you now have a file called Test File 1?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:85
msgid ""
"PURPOSE:\n"
" This test will check that the file browser can copy a file.\n"
"STEPS:\n"
" 1. Click Test to open the File Browser.\n"
" 2. Right click on the file called Test File 1 and click Copy.\n"
" 3. Right click in the white space and click Paste.\n"
" 4. Right click on the file called Test File 1(copy) and click Rename.\n"
" 5. Enter the name Test File 2 in the name box and hit Enter.\n"
" 6. Close the File Browser.\n"
"VERIFICATION:\n"
" Do you now have a file called Test File 2?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:102
msgid ""
"PURPOSE:\n"
" This test will check that the file browser can move a file.\n"
"STEPS:\n"
" 1. Click Test to open the File Browser.\n"
" 2. Click and drag the file called Test File 2 onto the icon for the folder "
"called Test Data.\n"
" 3. Release the button.\n"
" 4. Double click the icon for Test Data to open that folder up.\n"
" 5. Close the File Browser.\n"
"VERIFICATION:\n"
" Was the file Test File 2 successfully moved into the Test Data folder?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:118
msgid ""
"PURPOSE:\n"
" This test will check that the file browser can delete a file.\n"
"STEPS:\n"
" 1. Click Test to open the File Browser.\n"
" 2. Right click on the file called Test File 1 and click on Move To Trash.\n"
" 3. Verify that Test File 1 has been removed.\n"
" 4. Close the File Browser.\n"
"VERIFICATION:\n"
"  Is Test File 1 now gone?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:133
msgid ""
"PURPOSE:\n"
" This test will check that the file browser can delete a folder.\n"
"STEPS:\n"
" 1. Click Test to open the File Browser.\n"
" 2. Right click on the folder called Test Folder and click on Move To "
"Trash.\n"
" 3. Verify that the folder was deleted.\n"
" 4. Close the file browser.\n"
"VERIFICATION:\n"
" Has Test Folder been successfully deleted?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:207
msgid "Common Document Types Test"
msgstr "일반 문서 형식 시험"

#. description
#: ../jobs/user_apps.txt.in:228
msgid ""
"PURPOSE:\n"
" This test will check that Firefox can render a basic web page.\n"
"STEPS:\n"
" 1. Select Test to launch Firefox and view the test web page.\n"
"VERIFICATION:\n"
" Did the Ubuntu Test page load correctly?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:241
msgid ""
"PURPOSE:\n"
" This test will check that Firefox can run a java applet in a web page. "
"Note:\n"
" this may require installing additional software to complete successfully.\n"
"STEPS:\n"
" 1. Select Test to open Firefox with the Java test page, and follow the "
"instructions there.\n"
"VERIFICATION:\n"
" Did the applet display?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:255
msgid ""
"PURPOSE:\n"
" This test will check that Firefox can run flash applications. Note: this "
"may\n"
" require installing additional software to successfully complete.\n"
"STEPS:\n"
" 1. Select Test to launch Firefox and view a sample Flash test.\n"
"VERIFICATION:\n"
" Did you see the text?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:269
msgid ""
"PURPOSE:\n"
" This test will check that Firefox can play a Flash video. Note: this may\n"
" require installing additional software to successfully complete.\n"
"STEPS:\n"
" 1. Select Test to launch Firefox and view a short flash video.\n"
"VERIFICATION:\n"
" Did the video play correctly?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:285
msgid ""
"PURPOSE:\n"
" This test will check that Firefox can play a Quicktime (.mov) video file.\n"
" Note: this may require installing additional software to successfully\n"
" complete.\n"
"STEPS:\n"
" 1. Select Test to launch Firefox with a sample video.\n"
"VERIFICATION:\n"
" Did the video play using a plugin?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:299
msgid ""
"PURPOSE:\n"
" This test will check that Empathy messaging client works.\n"
"STEPS:\n"
" 1. Select Test to launch Empathy.\n"
" 2. Configure it to connect to the Facebook Chat service.\n"
" 3. Once you have completed the test, please quit Empathy to continue here.\n"
"VERIFICATION:\n"
" Were you able to connect correctly and send/receive messages?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:313
msgid ""
"PURPOSE:\n"
" This test will check that Empathy messaging client works.\n"
"STEPS:\n"
" 1. Select Test to launch Empathy.\n"
" 2. Configure it to connect to the Google Talk (gtalk) service.\n"
" 3. Once you have completed the test, please quit Empathy to continue here.\n"
"VERIFICATION:\n"
" Were you able to connect correctly and send/receive messages?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:327
msgid ""
"PURPOSE:\n"
" This test will check that Empathy messaging client works.\n"
"STEPS:\n"
" 1. Select Test to launch Empathy.\n"
" 2. Configure it to connect to the Jabber service.\n"
" 3. Once you have completed the test, please quit Empathy to continue here.\n"
"VERIFICATION:\n"
" Were you able to connect correctly and send/receive messages?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:341
msgid ""
"PURPOSE:\n"
" This test will check that Empathy messaging client works.\n"
"STEPS:\n"
" 1. Select Test to launch Empathy.\n"
" 2. Configure it to connect to the AOL Instant Messaging (AIM) service.\n"
" 3. Once you have completed the test, please quit Empathy to continue here.\n"
"VERIFICATION:\n"
" Were you able to connect correctly and send/receive messages?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:355
msgid ""
"PURPOSE:\n"
" This test will check that Empathy messaging client works.\n"
"STEPS:\n"
" 1. Select Test to launch Empathy.\n"
" 2. Configure it to connect to the Microsoft Network (MSN) service.\n"
" 3. Once you have completed the test, please quit Empathy to continue here.\n"
"VERIFICATION:\n"
" Were you able to connect correctly and send/receive messages?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:369
msgid ""
"PURPOSE:\n"
" This test will check that Evolution works.\n"
"STEPS:\n"
" 1. Click the \"Test\" button to launch Evolution.\n"
" 2. Configure it to connect to a POP3 account.\n"
"VERIFICATION:\n"
" Were you able to receive and read e-mail correctly?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:382
msgid ""
"PURPOSE:\n"
" This test will check that Evolution works.\n"
"STEPS:\n"
" 1. Click the \"Test\" button to launch Evolution.\n"
" 2. Configure it to connect to a IMAP account.\n"
"VERIFICATION:\n"
" Were you able to receive and read e-mail correctly?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:395
msgid ""
"PURPOSE:\n"
" This test will check that Evolution works.\n"
"STEPS:\n"
" 1. Click the \"Test\" button to launch Evolution.\n"
" 2. Configure it to connect to a SMTP account.\n"
"VERIFICATION:\n"
" Were you able to send e-mail without errors?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:408
msgid ""
"PURPOSE:\n"
" This test checks that gcalctool (Calculator) works.\n"
"STEPS:\n"
" Click the \"Test\" button to open the calculator.\n"
"VERIFICATION:\n"
" Did it launch correctly?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:421
msgid ""
"PURPOSE:\n"
" This test checks that gcalctool (Calculator) works.\n"
"STEPS:\n"
" Click the \"Test\" button to open the calculator and perform:\n"
" 1. Simple math functions (+,-,/,*)\n"
" 2. Nested math functions ((,))\n"
" 3. Fractional math\n"
" 4. Decimal math\n"
"VERIFICATION:\n"
" Did the functions perform as expected?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:438
msgid ""
"PURPOSE:\n"
" This test checks that gcalctool (Calculator) works.\n"
"STEPS:\n"
" Click the \"Test\" button to open the calculator and perform:\n"
"  1. Memory set\n"
"  2. Memory reset\n"
"  3. Memory last clear\n"
"  4. Memory clear\n"
"VERIFICATION:\n"
" Did the functions perform as expected?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:455
msgid ""
"PURPOSE:\n"
" This test checks that gcalctool (Calculator) works.\n"
"STEPS:\n"
" Click the \"Test\" button to open the calculator and perform:\n"
"  1. Cut\n"
"  2. Copy\n"
"  3. Paste\n"
"VERIFICATION:\n"
" Did the functions perform as expected?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:470
msgid ""
"PURPOSE:\n"
" This test checks that gedit works.\n"
"STEPS:\n"
" 1. Click the \"Test\" button to open gedit.\n"
" 2. Enter some text and save the file (make a note of the file name you "
"use), then close gedit.\n"
"VERIFICATION:\n"
" Did this perform as expected?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:484
msgid ""
"PURPOSE:\n"
" This test checks that gedit works.\n"
"STEPS:\n"
" 1. Click the \"Test\" button to open gedit, and re-open the file you "
"created previously.\n"
" 2. Edit then save the file, then close gedit.\n"
"VERIFICATION:\n"
" Did this perform as expected?"
msgstr ""

#. description
#: ../jobs/user_apps.txt.in:497
msgid ""
"PURPOSE:\n"
" This test will check that Gnome Terminal works.\n"
"STEPS:\n"
" 1. Click the \"Test\" button to open Terminal.\n"
" 2. Type 'ls' and press enter. You should see a list of files and folder in "
"your home directory.\n"
" 3. Close the terminal window.\n"
"VERIFICATION:\n"
" Did this perform as expected?"
msgstr ""

#. description
#: ../jobs/wireless.txt.in:20
msgid "Wireless scanning test. It scans and reports on discovered APs."
msgstr ""

#. description
#: ../jobs/wireless.txt.in:26
msgid ""
"PURPOSE:\n"
"    This test will check your wireless connection.\n"
"STEPS:\n"
"    1. Click on the Network icon in the panel.\n"
"    2. Select a network below the 'Wireless networks' section.\n"
"    3. Click \"Test\" to verify that it's possible to establish an HTTP "
"connection.\n"
"VERIFICATION:\n"
"    Did a notification show and was the connection correctly established?"
msgstr ""

#. description
#: ../jobs/wireless.txt.in:44
msgid ""
"Tests that the systems wireless hardware can connect to a router using WPA "
"security and the 802.11b/g protocols."
msgstr ""

#. description
#: ../jobs/wireless.txt.in:56
msgid ""
"Tests that the systems wireless hardware can connect to a router using no "
"security and the 802.11b/g protocols."
msgstr ""

#. description
#: ../jobs/wireless.txt.in:68
msgid ""
"Tests that the systems wireless hardware can connect to a router using WPA "
"security and the 802.11n protocol."
msgstr ""

#. description
#: ../jobs/wireless.txt.in:80
msgid ""
"Tests that the systems wireless hardware can connect to a router using no "
"security and the 802.11n protocol."
msgstr ""

#. description
#: ../jobs/wireless.txt.in:176
msgid ""
"Tests the performance of a systems wireless connection through the iperf "
"tool."
msgstr ""

#. description
#: ../jobs/wireless.txt.in:187
msgid ""
"Tests the performance of a systems wireless connection through the iperf "
"tool, using UDP packets."
msgstr ""

#: ../checkbox/application.py:66
msgid "Usage: checkbox [OPTIONS]"
msgstr "사용법: checkbox [옵션]"

#: ../checkbox/application.py:70
msgid "Print version information and exit."
msgstr "버전 정보를 출력한 뒤 종료합니다."

#: ../checkbox/application.py:74
msgid "The file to write the log to."
msgstr "로그가 기록될 파일."

#: ../checkbox/application.py:77
msgid "One of debug, info, warning, error or critical."
msgstr "debug, info, warning, error, critical 중의 하나."

#: ../checkbox/application.py:82
msgid "Configuration override parameters."
msgstr "설정을 대체할 매개 변수들."

#: ../checkbox/application.py:84
msgid "Shorthand for --config=.*/jobs_info/blacklist."
msgstr ""

#: ../checkbox/application.py:86
msgid "Shorthand for --config=.*/jobs_info/blacklist_file."
msgstr ""

#: ../checkbox/application.py:88
msgid "Shorthand for --config=.*/jobs_info/whitelist."
msgstr ""

#: ../checkbox/application.py:90
msgid "Shorthand for --config=.*/jobs_info/whitelist_file."
msgstr ""

#: ../checkbox/application.py:115
msgid "Missing configuration file as argument.\n"
msgstr "인자로 설정 파일을 지정해야 합니다.\n"

#: ../checkbox/job.py:85
msgid "Command not found."
msgstr ""

#: ../checkbox/job.py:92
#, python-format
msgid "Command received signal %s: %s"
msgstr ""

#: ../checkbox/lib/signal.py:23
msgid ""
"Hangup detected on controlling terminal or death of controlling process"
msgstr "제어 터미널 혹은 제어 프로세스가 종료되었습니다"

#: ../checkbox/lib/signal.py:24
msgid "Interrupt from keyboard"
msgstr "키보드 인터럽트"

#: ../checkbox/lib/signal.py:25
msgid "Quit from keyboard"
msgstr "키보드를 통한 종료"

#: ../checkbox/lib/signal.py:26
msgid "Illegal Instruction"
msgstr "잘못된 명령"

#: ../checkbox/lib/signal.py:27
msgid "Abort signal from abort(3)"
msgstr "abort(3)을 통한 종료 시그널"

#: ../checkbox/lib/signal.py:28
msgid "Floating point exception"
msgstr "부동 소수점 예외"

#: ../checkbox/lib/signal.py:29
msgid "Kill signal"
msgstr "시그널 보내기"

#: ../checkbox/lib/signal.py:30
msgid "Invalid memory reference"
msgstr "잘못된 메모리 참조"

#: ../checkbox/lib/signal.py:31
msgid "Broken pipe: write to pipe with no readers"
msgstr "깨진 파이프: 읽기 프로세스가 없는 파이프에 대한 쓰기"

#: ../checkbox/lib/signal.py:32
msgid "Timer signal from alarm(2)"
msgstr "alarm(2)를 통한 타이머 시그널"

#: ../checkbox/lib/signal.py:33
msgid "Termination signal"
msgstr "종료 시그널"

#: ../checkbox/lib/signal.py:34
msgid "User-defined signal 1"
msgstr "사용자 정의 시그널 1"

#: ../checkbox/lib/signal.py:35
msgid "User-defined signal 2"
msgstr "사용자 정의 시그널 2"

#: ../checkbox/lib/signal.py:36
msgid "Child stopped or terminated"
msgstr "자식 프로세스가 중지 혹은 종료됨"

#: ../checkbox/lib/signal.py:37
msgid "Continue if stopped"
msgstr "중지된 경우 다시 실행하기"

#: ../checkbox/lib/signal.py:38
msgid "Stop process"
msgstr "프로세스 중지"

#: ../checkbox/lib/signal.py:39
msgid "Stop typed at tty"
msgstr "터미널에 쓰면 중지"

#: ../checkbox/lib/signal.py:40
msgid "tty input for background process"
msgstr "백그라운드 프로세스에 대한 터미널 입력"

#: ../checkbox/lib/signal.py:41
msgid "tty output for background process"
msgstr "백그라운드 프로세스에 대한 터미널 출력"

#: ../checkbox/lib/signal.py:77
msgid "UNKNOWN"
msgstr "알 수 없음"

#: ../checkbox/lib/signal.py:89
msgid "Unknown signal"
msgstr "알 수 없는 시그널"

#: ../checkbox_cli/cli_interface.py:31
#: ../checkbox_urwid/urwid_interface.py:939
msgid "yes"
msgstr "예"

#: ../checkbox_cli/cli_interface.py:32
#: ../checkbox_urwid/urwid_interface.py:940
msgid "no"
msgstr "아니오"

#: ../checkbox_cli/cli_interface.py:33
#: ../checkbox_urwid/urwid_interface.py:941
msgid "skip"
msgstr "건너뜀"

#: ../checkbox_cli/cli_interface.py:127
msgid "Press any key to continue..."
msgstr "계속하려면 아무 키나 누르세요..."

#: ../checkbox_cli/cli_interface.py:136 ../checkbox_cli/cli_interface.py:237
#, python-format
msgid "Please choose (%s): "
msgstr "(%s)을(를) 선택해 주십시오: "

#: ../checkbox_cli/cli_interface.py:232 ../checkbox_cli/cli_interface.py:355
#: ../checkbox_cli/cli_interface.py:386
msgid "Space when finished"
msgstr ""

#: ../checkbox_cli/cli_interface.py:384
msgid "Combine with character above to expand node"
msgstr ""

#: ../checkbox_cli/cli_interface.py:432
msgid "test"
msgstr "테스트"

#: ../checkbox_cli/cli_interface.py:456
msgid "test again"
msgstr "다시 테스트"

#: ../checkbox_cli/cli_interface.py:462
msgid "Please type here and press Ctrl-D when finished:\n"
msgstr "여기에 입력하고, 입력이 끝나면 Ctrl-D를 눌러 주십시오:\n"

#: ../checkbox_urwid/urwid_interface.py:86
msgid "Checkbox System Testing"
msgstr "체크박스 시스템 시험중"

#: ../checkbox_urwid/urwid_interface.py:127 ../qt/frontend/ui_qtfront.h:638
msgid "Continue"
msgstr "계속"

#: ../checkbox_urwid/urwid_interface.py:220
#: ../checkbox_urwid/urwid_interface.py:296
#: ../checkbox_urwid/urwid_interface.py:447
#: ../checkbox_urwid/urwid_interface.py:569
msgid "Previous"
msgstr "이전"

#: ../checkbox_urwid/urwid_interface.py:221
#: ../checkbox_urwid/urwid_interface.py:297
#: ../checkbox_urwid/urwid_interface.py:448
#: ../checkbox_urwid/urwid_interface.py:570
msgid "Next"
msgstr "다음"

#. Show buttons
#: ../checkbox_urwid/urwid_interface.py:445
msgid "Select All"
msgstr "모두 선택"

#: ../checkbox_urwid/urwid_interface.py:446
msgid "Deselect All"
msgstr "모두 선택 취소"

#. Show buttons
#: ../checkbox_urwid/urwid_interface.py:567
msgid "Expand All"
msgstr ""

#: ../checkbox_urwid/urwid_interface.py:568
msgid "Collapse All"
msgstr ""

#: ../checkbox_urwid/urwid_interface.py:1034
msgid "Test"
msgstr "시험"

#: ../checkbox_urwid/urwid_interface.py:1049
msgid "Test Again"
msgstr "재시험"

#: ../checkbox_gtk/gtk_interface.py:525
msgid "_Test Again"
msgstr "다시 테스트(_T)"

#: ../checkbox_gtk/gtk_interface.py:574 ../qt/frontend/qtfront.cpp:541
msgid "Info"
msgstr "정보"

#: ../checkbox_gtk/gtk_interface.py:599 ../qt/frontend/qtfront.cpp:225
msgid "Error"
msgstr "오류"

#: ../checkbox_gtk/gtk_interface.py:607
msgid "Detailed information..."
msgstr ""

#: ../plugins/apport_prompt.py:83
msgid ""
"Collecting information about this test.\n"
"This might take a few minutes."
msgstr "테스트에 대한 정보를 수집하고 있습니다."

#: ../plugins/apport_prompt.py:118
msgid ""
"Collected information is being sent for bug tracking.\n"
"This might take a few minutes."
msgstr "수집된 정보들이 버그 트래킹으로 보내졌습니다."

#: ../plugins/apport_prompt.py:227
#, python-format
msgid "Test %(name)s failed."
msgstr ""

#: ../plugins/apport_prompt.py:230
#, python-format
msgid "Test %s failed."
msgstr ""

#: ../plugins/apport_prompt.py:231
msgid "Do you want to report a bug?"
msgstr "버그를 제출하시겠습니까?"

#: ../plugins/apport_prompt.py:248
#, python-format
msgid "Is a package upgrade in process? Error: %s"
msgstr "패키지 업그레이드가 진행중입니까? 오류: %s"

#: ../plugins/final_prompt.py:33
msgid "Successfully finished testing!"
msgstr "테스트가 성공적으로 완료되었습니다."

#: ../plugins/final_prompt.py:34
msgid "_Finish"
msgstr "종료(_F)"

#. Resolve dependencies
#: ../plugins/gather_prompt.py:35 ../plugins/suites_prompt.py:102
msgid "Gathering information from your system..."
msgstr "시스템에서 정보를 얻어오는 중..."

#: ../plugins/intro_prompt.py:28
msgid ""
"Welcome to System Testing!\n"
"\n"
"Checkbox provides tests to confirm that your system is working properly. "
"Once you are finished running the tests, you can view a summary report for "
"your system."
msgstr ""
"System Testing에 오신 것을 환영합니다!\n"
"\n"
"Checkbox는 시스템이 제대로 동작하는지 확인하기 위한 테스트를 제공합니다. 테스트를 끝내면 시스템에 대한 요약 보고서를 보실 수 "
"있습니다."

#: ../plugins/intro_prompt.py:33
msgid ""
"\n"
"\n"
"Warning: Some tests could cause your system to freeze or become "
"unresponsive. Please save all your work and close all other running "
"applications before beginning the testing process."
msgstr ""

#: ../plugins/launchpad_exchange.py:135
#, python-format
msgid "Failed to process form: %s"
msgstr "프로세스에 실패한 곳: %s"

#: ../plugins/launchpad_exchange.py:150
#, python-format
msgid ""
"Failed to contact server. Please try\n"
"again or upload the following file name:\n"
"%s\n"
"\n"
"directly to the system database:\n"
"https://launchpad.net/+hwdb/+submit"
msgstr ""
"서버에 연결하지 못했습니다. 다시 시도해 보거나 \n"
"다음과 같은 이름을 가진 파일을:\n"
"%s\n"
"\n"
"시스템 데이터베이스에 직접 업로드해 주십시오:\n"
"https://launchpad.net/+hwdb/+submit"

#: ../plugins/launchpad_exchange.py:159
msgid ""
"Failed to upload to server,\n"
"please try again later."
msgstr ""
"서버에 업로드하지 못했습니다,\n"
"나중에 다시 시도해 주십시오."

#: ../plugins/launchpad_exchange.py:171
msgid "Information not posted to Launchpad."
msgstr "Launchpad에 전송되지 않은 정보."

#: ../plugins/launchpad_prompt.py:77
#, python-format
msgid ""
"The following report has been generated for submission to the Launchpad "
"hardware database:\n"
"\n"
"  [[%s|View Report]]\n"
"\n"
"You can submit this information about your system by providing the email "
"address you use to sign in to Launchpad. If you do not have a Launchpad "
"account, please register here:\n"
"\n"
"  https://launchpad.net/+login"
msgstr ""

#: ../plugins/launchpad_prompt.py:87
msgid "Email"
msgstr ""

#: ../plugins/launchpad_prompt.py:96
msgid "Email address must be in a proper format."
msgstr "이메일 주소는 올바른 형식을 갖추어야 합니다."

#: ../plugins/launchpad_prompt.py:102
msgid "Exchanging information with the server..."
msgstr "서버와 정보를 교환하는 중..."

#: ../plugins/launchpad_report.py:167
msgid ""
"The generated report seems to have validation errors,\n"
"so it might not be processed by Launchpad."
msgstr ""

#: ../plugins/lock_prompt.py:63
msgid "There is another checkbox running. Please close it first."
msgstr "다른 checkbox 프로그램이 실행 중입니다. 먼저 해당 프로그램을 종료하십시오."

#: ../plugins/recover_prompt.py:62
msgid ""
"Checkbox did not finish completely.\n"
"Do you want to rerun the last test,\n"
"continue to the next test, or\n"
"restart from the beginning?"
msgstr ""

#: ../plugins/report_prompt.py:39
msgid "Building report..."
msgstr "보고서를 생성하는 중..."

#: ../plugins/shell_test.py:52
#, python-format
msgid "Running %s..."
msgstr "%s 실행중..."

#: ../plugins/suites_prompt.py:36
msgid ""
"Unselecting a test will invalidate your submission for Ubuntu Friendly. If "
"you plan to participate in Ubuntu Friendly, please, select all tests. You "
"can always skip individual tests if you don't have the needed equipment."
msgstr ""

#: ../plugins/suites_prompt.py:143 ../qt/frontend/ui_qtfront.h:642
msgid "Choose tests to run on your system:"
msgstr ""

#: ../scripts/keyboard_test:22
msgid "Enter text:\n"
msgstr "텍스트 입력:\n"

#: ../scripts/keyboard_test:43
msgid "Type Text"
msgstr "텍스트 입력"

#: ../scripts/internet_test:221
msgid "No Internet connection"
msgstr "인터넷 연결 없음"

#: ../scripts/internet_test:224
msgid "Connection established lost a packet"
msgstr "설정된 연결이 패킷을 손실함"

#: ../scripts/internet_test:227
msgid "Internet connection fully established"
msgstr "인터넷 연결이 완료됬습니다."

#: ../qt/frontend/qtfront.cpp:80
msgid "Audio Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:81
msgid "Bluetooth Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:82
msgid "Camera Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:83
msgid "CPU Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:84
msgid "Disk Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:85
msgid "Firewire Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:86
msgid "Graphics Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:87
msgid "Info Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:88
msgid "Input Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:89
msgid "Keys Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:90
msgid "Media Card Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:91
msgid "Memory Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:92
msgid "Miscellanea Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:93
msgid "Monitor Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:94
msgid "Networking Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:95
msgid "Wireless Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:96
msgid "Optical Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:97
msgid "PCMCIA/PCIX Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:98
msgid "Power Management Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:99
msgid "Suspend Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:100
msgid "USB Test"
msgstr ""

#: ../qt/frontend/qtfront.cpp:102
msgid "Not Started"
msgstr ""

#: ../qt/frontend/qtfront.cpp:103 ../qt/frontend/qtfront.cpp:104
msgid "Done"
msgstr ""

#: ../qt/frontend/qtfront.cpp:105
msgid "Not Supported"
msgstr ""

#: ../qt/frontend/qtfront.cpp:106
msgid "Not Resolved"
msgstr ""

#: ../qt/frontend/qtfront.cpp:107
msgid "Not Tested"
msgstr ""

#: ../qt/frontend/qtfront.cpp:108
msgid "In Progress"
msgstr ""

#: ../qt/frontend/qtfront.cpp:160
msgid "Are you sure?"
msgstr ""

#: ../qt/frontend/qtfront.cpp:160
msgid "Do you really want to skip this test?"
msgstr ""

#: ../qt/frontend/qtfront.cpp:161
msgid "Don't ask me again"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:635
msgid "Form"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:590
msgid "OK"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:591
msgid "Don't show me this message in the future"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:639 ../qt/frontend/ui_qtfront.h:657
msgid "Tab 1"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:640
msgid "10 tests completed out of 30 (30%)"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:643
msgid "Components"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:644
msgid "Status"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:645
msgid "Select all"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:646
msgid "Deselect all"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:647
msgid "Start testing"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:648
msgid " Selection "
msgstr ""

#: ../qt/frontend/ui_qtfront.h:649 ../qt/frontend/ui_qtfront.h:650
msgid "TextLabel"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:602
msgid "Yes"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:604
msgid "No"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:605
msgid "Comment"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:658 ../qt/frontend/ui_qtfront.h:674
msgid "Tab 2"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:661
msgid " Run "
msgstr ""

#: ../qt/frontend/ui_qtfront.h:611
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" "
"\"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style "
"type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Ubuntu'; font-size:10pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" "
"color:#000000;\">Please enter the e-mail address associated with your "
"Launchpad account (if applicable)</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" "
"color:#000000;\">and click the Submit Results button to submit these test "
"results to Ubuntu Friendly.</span></p></body></html>"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:668
msgid "Submission details"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:670
msgid "Email:"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:671
msgid "Submit results"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:672
msgid "View results"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:673
msgid " Results "
msgstr ""

#~ msgid "Is this acceptable for your display?"
#~ msgstr "현 상태로 이용해도 되겠습니까?"

#~ msgid "Test and report system information"
#~ msgstr "테스트 후 시스템 정보를 보고합니다"

#~ msgid "Moving the mouse should move the cursor on the screen."
#~ msgstr "마우스를 움직이면 화면 상의 커서가 움직여야 합니다."

#~ msgid "Is your mouse working properly?"
#~ msgstr "마우스가 제대로 동작합니까?"

#~ msgid "Detecting your network controller(s):"
#~ msgstr "네트워크 장치를 인식하고 있습니다:"

#~ msgid "Click the Test button to display a video test."
#~ msgstr "비디오 테스트를 수행하려면 테스트 버튼을 누르세요."

#~ msgid "Do you see color bars and static?"
#~ msgstr "색상 및 글자가 보이십니까?"

#~ msgid "Testing your connection to the Internet:"
#~ msgstr "인터넷 연결을 테스트합니다:"

#~ msgid "$output"
#~ msgstr "$output"

#~ msgid "Is this correct?"
#~ msgstr "위의 결과가 맞습니까?"

#~ msgid "Is your keyboard working properly?"
#~ msgstr "키보드가 제대로 동작합니까?"

#, python-format
#~ msgid "Unable to start web browser to open %s."
#~ msgstr "웹 브라우저를 이용하여 %s 페이지를 열 수 없습니다."

#~ msgid "Running shell tests..."
#~ msgstr "쉘 테스트를 수행하는 중..."

#~ msgid "Detecting your sound device(s):"
#~ msgstr "사운드카드 검색:"

#~ msgid "Kernel modesetting tests"
#~ msgstr "커널 모드세팅 테스트"

#~ msgid "Network tests"
#~ msgstr "네트워크 테스트"

#~ msgid "Video tests"
#~ msgstr "그래픽 테스트"

#~ msgid "Disk benchmark:"
#~ msgstr "디스크 벤치마크:"

#~ msgid "The following hard drives were detected:"
#~ msgstr "아래의 하드드라이브가 감지 되었습니다."

#~ msgid "Is this ok?"
#~ msgstr "그대로 진행 하시겠습니까?"

#~ msgid "Note that this test may require you to enter your password."
#~ msgstr "이 테스트는 비밀번호를 요구할 수 있습니다."

#~ msgid "Linux Test Project"
#~ msgstr "리눅스 테스트 프로젝트"

#~ msgid ""
#~ "The following screens and video modes have been detected on your system:"
#~ msgstr "아래의 스크린,비디오 모드(들)이 감지되었습니다."

#~ msgid "Automated benchmark testing"
#~ msgstr "자동 벤치마크 테스트"

#~ msgid "If your system does not have a HDMI port, please skip this test."
#~ msgstr "시스템에 HDMI단자가 없으시다면, 이 테스트를 넘어가십시오."

#~ msgid "If your system does not have DisplayPort, please skip this test."
#~ msgstr "시스템에 디스플레이 단자가 없으시다면, 이 테스트를 넘어가십시오."

#~ msgid "If your system does not have a S-VIDEO port, please skip this test."
#~ msgstr "시스템에 S-VIDEO단자가 없으시다면, 이 테스트를 넘어가십시오."

#~ msgid "If your system does not have a DVI port, please skip this test."
#~ msgstr "시스템에 DVI 단자가 없으시다면 이 테스트를 넘어가십시오."

#~ msgid "Did the 3d animation appear?"
#~ msgstr "3D애니메이션이 보이십니까?"

#~ msgid "If your system does not have a RCA port, please skip this test."
#~ msgstr "시스템에 RCA단자가 없다면, 이 테스트를 넘어가십시오."

#~ msgid "Did you hear your speech played back?"
#~ msgstr "녹음된 내용을 들으셨습니까?"

#~ msgid "Please connect a pair of headphones to your audio device."
#~ msgstr "오디오 장치에 헤드폰을 연결하십시오."

#~ msgid "Did the authentication procedure work correctly?"
#~ msgstr "인증 절차가 제대로 동작하였습니까?"

#~ msgid "Did the file play?"
#~ msgstr "파일 재생이 되었습니까?"

#~ msgid "Did the screen change temporarily to a text console?"
#~ msgstr "화면이 콘솔창으로 변경되었습니까?"

#~ msgid "Do the copy operations work as expected?"
#~ msgstr "원하시는 대로 복사가 되었습니까?"

#~ msgid "Did the screen appear to be working for each mode?"
#~ msgstr "각 모드가 화면에 제대로 출력됩니까?"

#~ msgid "Check that the hardware is able to run compiz."
#~ msgstr "컴피즈가 동작 가능한 하드웨어인지 확인하십시오."

#~ msgid "This display is using the following resolution:"
#~ msgstr "다음과 같은 해상도를 사용하실 수 있습니다:"

#~ msgid ""
#~ "Connect a display (if not already connected) to the HDMI port on your "
#~ "system. Is the image displayed correctly?"
#~ msgstr "아직 모니터를 연결하지 않으셨다면 HDMI 포트에 연결하십시오. 그림이 제대로 출력됩니까?"

#~ msgid ""
#~ "Connect a display (if not already connected) to the DisplayPort on your "
#~ "system. Is the image displayed correctly?"
#~ msgstr "아직 모니터를 연결하지 않으셨다면 DisplayPort에 연결하십시오. 그림이 제대로 출력됩니까?"

#~ msgid ""
#~ "Connect a display (if not already connected) to the S-VIDEO port on your "
#~ "system. Is the image displayed correctly?"
#~ msgstr "아직 모니터를 연결하지 않으셨다면 S-VIDEO 단자에 연결하십시오. 그림이 제대로 출력됩니까?"

#~ msgid ""
#~ "Connect a display (if not already connected) to the DVI port on your system. "
#~ "Is the image displayed correctly?"
#~ msgstr "아직 모니터를 연결하지 않으셨다면 DVI 포트에 연결하십시오. 그림이 제대로 출력됩니까?"

#~ msgid ""
#~ "Connect a display (if not already connected) to the RCA port on your system. "
#~ "Is the image displayed correctly?"
#~ msgstr "아직 모니터를 연결하지 않으셨다면 RCA 단자에 연결하십시오. 그림이 제대로 출력됩니까?"

#~ msgid "If your system does not have a VGA port, please skip this test."
#~ msgstr "만일 시스템에 VGA 포트가 없다면 이 테스트를 건너 뛰십시오."

#~ msgid ""
#~ "Connect a display (if not already connected) to the VGA port on your system. "
#~ "Is the image displayed correctly?"
#~ msgstr "아직 모니터를 연결하지 않으셨다면 모니터를 VGA 포트에 연결하십시오. 그림이 제대로 출력됩니까?"

#~ msgid ""
#~ "Checkbox did not finish completely.\n"
#~ "Do you want to recover from the previous run?"
#~ msgstr ""
#~ "Checkbox가 완전히 종료되지 않았습니다.\n"
#~ "이전 실행을 복구하시겠습니까?"

#~ msgid "Select the suites to test"
#~ msgstr "테스트를 위한 프로그램 선택"

#~ msgid "Did the monitor go blank?"
#~ msgstr "모니터가 빈 검정화면이 되었습니까?"

#~ msgid "Autotest suite (destructive)"
#~ msgstr "자동 점검 모음(위험)"

#~ msgid ""
#~ "Prerequisites: This test case assumes that there's a testing account from "
#~ "which test cases are run and a personal account that the tester uses to "
#~ "verify the fingerprint reader"
#~ msgstr ""
#~ "초기조건:이 환경점검은 같은 조건에서 시행된 여러 경우들에 대하여 경우를 제시하며, 지문인식 리더를 인증하기 위해 개인 계정을 요구합니다."

#, python-format
#~ msgid ""
#~ "The following report has been generated for submission to the Launchpad "
#~ "hardware database:\n"
#~ "\n"
#~ "  [[%s|View Report]]\n"
#~ "\n"
#~ "You can submit this information about your system by providing the e-mail "
#~ "address you use to sign in to Launchpad. If you do not have a Launchpad "
#~ "account, please register here:\n"
#~ "\n"
#~ "  https://launchpad.net/+login"
#~ msgstr ""
#~ "다음 보고서가 Launchpad 하드웨어 데이터베이스에 제출하도록 생성되었습니다:\n"
#~ "\n"
#~ "  [[%s|보고서 보기]]\n"
#~ "\n"
#~ "이 보고서를 Launchpad에 로그인 할 수 있는 이메일 주소를 이용해서 제출할 수 있습니다. Launchpad에 등록하지 않았다면 "
#~ "이곳에서 등록해주십시오:\n"
#~ "\n"
#~ "  https://launchpad.net/+login"

#~ msgid "No e-mail address provided, not submitting to Launchpad."
#~ msgstr "이메일 주소를 제공하지 않으면, Launchpad에 제출하지 않습니다."

#~ msgid "QA regression tests (destructive)"
#~ msgstr "QA 회귀 테스트 (파괴적)"

#~ msgid "Shorthand for --config=checkbox/plugins/jobs_info/blacklist."
#~ msgstr "--config=checkbox/plugins/jobs_info/blacklist 의 약칭."

#~ msgid "Shorthand for --config=checkbox/plugins/jobs_info/blacklist_file."
#~ msgstr "--config=checkbox/plugins/jobs_info/blacklist_file 의 약칭."

#~ msgid "Shorthand for --config=checkbox/plugins/jobs_info/whitelist."
#~ msgstr "--config=checkbox/plugins/jobs_info/whitelist 의 약칭."

#~ msgid "Shorthand for --config=checkbox/plugins/jobs_info/whitelist_file."
#~ msgstr "--config=checkbox/plugins/jobs_info/whitelist_file 의 약칭."

#~ msgid "The address of your Bluetooth device is: $output"
#~ msgstr "블루투스 장치의 주소: $output"

#~ msgid "Did all the steps work?"
#~ msgstr "모든 단계가 잘 작동 하였습니까?"

#~ msgid "Does the icon automatically appear/disappear?"
#~ msgstr "아이콘이 자동으로 나타나거나 사라집니까?"

#~ msgid "Test the audio before suspending."
#~ msgstr "절전 전에 오디오를 시험합니다."

#~ msgid "Test the network before suspending."
#~ msgstr "절전 전에 네트워크를 시험합니다."

#~ msgid "Power management Suspend and Resume test"
#~ msgstr "절전 및 재실행 전원 관리 시험"

#~ msgid "Test the audio after resuming."
#~ msgstr "절전 후 오디오를 시험합니다."

#~ msgid ""
#~ "Verify a bluetooth peripheral.  An example verification procedure for a "
#~ "bluetooth mouse is given."
#~ msgstr "블루투스 주변장치 검증.  블루트스 마우스를 검증 절차의 예로 듭니다."

#~ msgid ""
#~ "This will check to make sure that your audio device works properly after a "
#~ "suspend and resume.  You can use either internal or external microphone and "
#~ "speakers."
#~ msgstr "이것은 오디오 장치가 올바르게 작동하는 지를 검사합니다.   내부 또는 외부 마이크와 스피커를 사용할 수 있습니다."

#~ msgid "Did the system successfully suspend and resume for 30 iterations?"
#~ msgstr "이 시스템이 30번을 무사히 절전과 복귀하였습니까?"

#~ msgid ""
#~ "This will check to make sure your system can successfully hibernate (if "
#~ "supported)."
#~ msgstr "무사히 최대 절전하는지를 확실히 점검할 것입니다 (이 시스템이 지원한다면)."

#~ msgid ""
#~ "Did the system successfully hibernate and did it work properly after waking "
#~ "up?"
#~ msgstr "이 시스템이 무사히 최대 절전되었다가 올바르게 복귀하였습니까?"

#~ msgid ""
#~ "Also, you will need to ensure your system has no power-on or HDD passwords "
#~ "set, and that grub is set to boot Ubuntu by default if you have a multi-boot "
#~ "set-up."
#~ msgstr ""
#~ "또한, 이 시스템에 전원을 인위적으로 투입하지 말고 하드 디스크 암호가 설정하지 말아야 하며, 멀티 부팅 설정을 하였다면 grub의 기본 "
#~ "설정이 우분투로 부팅되게 설정하여야 합니다."

#~ msgid "Did the system successfully hibernate and wake 30 times?"
#~ msgstr "이 시스템이 무사히 30번을 최대 절전하고 복귀하였습니까?"

#~ msgid ""
#~ "This test will execute Update Manager and check to see if there are any "
#~ "available updates for the system. Please follow the prompts and if updates "
#~ "are found, install them. When Update Manager has finished, please close the "
#~ "app by clicking the Close button in the lower right corner."
#~ msgstr ""
#~ "이 시험은 업데이트 관리자를 실행하고 현재 시스템에 설치할 수 있는 모든 업데이트가 있는지를 점검합니다. 다음 프롬프트를 따라 하시고 "
#~ "만일 업데이트가 있다면 설치하십시오. 업데이트 관리자가 종료되면 오른쪽 아래 구석의 닫기 버튼을 눌러 응용 프로그램을 종료하여 주십시오."

#~ msgid "Do you now have a new folder called Test Folder?"
#~ msgstr "시험폴더라는 새 폴더가 있습니까?"

#~ msgid ""
#~ "Right click on the folder called Test Folder(copy) and click Rename. Enter "
#~ "the name Test Data in the name box and hit Enter."
#~ msgstr ""
#~ "시험폴더 (사본)이라고 생긴 폴더를 마우스로 선택하여 오른쪽 버튼을 누르고 이름 바꾸기를 선택하십시오. 이름란에 시험데이타라고 입력하고 "
#~ "엔터키를 누르십시오."

#~ msgid "Do you now have a folder called Test Data?"
#~ msgstr "시험데이타라는 폴더가 있습니까?"

#~ msgid "Double click the folder called Test Folder to open it up."
#~ msgstr "시험폴더라는 이름의 폴더를 더블 클릭하여 여십시오."

#~ msgid ""
#~ "Was the folder called Test Data successfully moved into the folder called "
#~ "Test Folder?"
#~ msgstr "시험데이터라는 폴더가 시험폴더라는 폴더 속에 무사히 이동되었습니까?"

#~ msgid "Do you now have a file called Test File 1?"
#~ msgstr "시험파일1이라는 파일이 있습니까?"

#~ msgid "Close the File browser."
#~ msgstr "파일 관리자를 닫으십시오."

#~ msgid ""
#~ "Right click on the file called Test File 1(copy) and click Rename. Enter the "
#~ "name Test File 2 in the name box and hit Enter."
#~ msgstr ""
#~ "시험파일1 (사본)이라는 파일에서 오른쪽 버튼을 누르고 이름 바꾸기를 선택하십시오. 시험파일2라고 이름란에 입력하고 엔터키를 누르십시오."

#~ msgid "Do you now have a file called Test File 2?"
#~ msgstr "시험파일2라는 파일이 있습니까?"

#~ msgid "Double click the icon for Test Data to open that folder up."
#~ msgstr "시험데이터 폴더의 아이콘을 더블 클릭하여 여십시오."

#~ msgid ""
#~ "Was the file Test File 2 successfully moved into the Test Data folder?"
#~ msgstr "시험파일2가 무사히 시험데이터 폴더로 이동하였습니까?"

#~ msgid "Is Test File 1 now gone?"
#~ msgstr "시험파일1이 없어졌습니까?"

#~ msgid "Has Test Folder been successfully deleted?"
#~ msgstr "시험폴더가 무사히 지워졌습니까?"

#~ msgid "Close the File Browser."
#~ msgstr "파일 관리자를 닫으십시오."

#~ msgid "Did the Ubuntu Test page load correctly?"
#~ msgstr "우분투 시험 페이지를 정확하게 불러들였습니까?"

#~ msgid "Did the applet display?"
#~ msgstr "애플릿이 보입니까?"

#~ msgid "Did you see the text?"
#~ msgstr "글월이 보입니까?"

#~ msgid "Did the video play correctly?"
#~ msgstr "비디오가 제대로 재생되었습니까?"

#~ msgid "Did the video play using a plugin?"
#~ msgstr "플러그인을 사용하여 동영상이 제대로 재생되었습니까?"

#~ msgid "Facebook Chat"
#~ msgstr "페이스북 채팅"

#~ msgid "Google Talk"
#~ msgstr "구글 토크"

#~ msgid "Jabber"
#~ msgstr "재버(Jabber)"

#~ msgid "AIM"
#~ msgstr "AIM"

#~ msgid "MSN"
#~ msgstr "MSN"

#~ msgid "Were you able to connect correctly and send/receive messages?"
#~ msgstr "정확히 연결되어 메시지를 보내고 받을 수가 있습니까?"

#~ msgid ""
#~ "Ensure the current resolution meets or exceeds the recommended minimum "
#~ "resolution (1024 x 768). See here for details:"
#~ msgstr "현재 해상도가 최소 해상도 (1024 x 768)이거나 그 이상인지 확인하십시오. 자세한 것은 여기를 보십시오.:"

#~ msgid ""
#~ "Ensure the current resolution meets or exceeds the recommended minimum "
#~ "resolution (1024 x 600). See here for details:"
#~ msgstr "현재 해상도가 최소 해상도 (1024 x 600)이거나 그 이상인지 확인하십시오. 자세한 것은 여기를 보십시오.:"

#~ msgid "Do you hear a sound?"
#~ msgstr "소리가 들리십니까?"

#, python-format
#~ msgid "Running test %s..."
#~ msgstr "%s 테스트를 수행하는 중..."

#~ msgid ""
#~ "Did you hear a sound and was that sound free of any distortion, clicks or "
#~ "other strange noises?"
#~ msgstr "소리를 들었을 때 그 소리에 잡음이나 클릭음 또는 다른 소음이 없었습니까?"

#~ msgid ""
#~ "Select Test to play a sound on the automatically detected playback device."
#~ msgstr "자동적으로 탐지된 녹음 장치에서 소리를 재생할 테스트를 선택하시오"

#~ msgid ""
#~ "Connect a microphone to your microphone port.  Select Test, then speak into "
#~ "the microphone.  After a few seconds, your speech will be played back to you."
#~ msgstr "마이크를 마이크로폰 포트에 연결하시오. 테스트를 선택하고 마이크로 말하시오. 몇 초 후에 당신의 말이 재생될 것입니다."

#~ msgid ""
#~ "Did you hear a sound through the headphones and did the sound play without "
#~ "any distortion, clicks or other strange noises from your headphones?"
#~ msgstr "헤드폰으로 소리를 들었을 때 그 소리가 잡음이나 클릭음 또는 다른 소음이 없이 재생되었습니까?"

#~ msgid ""
#~ "Disconnect any external microphones that you have plugged in.  Select Test, "
#~ "then speak into your internal microphone.  After a few seconds, your speech "
#~ "will be played back to you."
#~ msgstr "연결된 외부 마이크를 제거하시오. 테스트를 선택하고 내부 마이크로 말하시오. 몇 초 후에 당신의 말이 재생될 것입니다."

#~ msgid "Insert a DVD.  Then select Test to play the DVD in Totem."
#~ msgstr "DVD를 삽입하고 토템에서 DVD를 재생하기 위해 테스트를 선택하시오."

#~ msgid ""
#~ "Select Test to switch to another virtual terminal and then back to X.  Your "
#~ "screen will change temporarily to a text console and then switch back to "
#~ "your current session."
#~ msgstr ""
#~ "다른 가상 터미널로 전환하기 위한 테스트를 선택하고 X 윈도우로 돌아가시오. 스크린은 일시적으로 텍스트 콘솔로 바뀌었다가 현재 섹션으로 "
#~ "다시 전환됩니다."

#~ msgid ""
#~ "Secure Digital (SD) media card support re-verification:\n"
#~ " 1.- Plug a SD media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "SD 미디어 카드는 재인증을 지원합니다:\n"
#~ " 1.- SD 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid ""
#~ "Secure Digital (SD) media card support verification:\n"
#~ " 1.- Plug a SD media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "SD 미디어 카드는 인증을 지원합니다:\n"
#~ " 1.- SD 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid ""
#~ "Compact Flash (CF) media card support verification:\n"
#~ " 1.- Plug a CF media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "컴팩트 플래쉬 (CF) 미디어 카드는 인증을 지원합니다:\n"
#~ " 1.- 컴팩트 플래쉬 (CF) 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid "Select Test to open a text area where to type keys on your keyboard."
#~ msgstr "키보드로 키를 입력할 텍스트 공간을 열기 위해 테스트를 선택하시오."

#~ msgid ""
#~ "Compact Flash (CF) media card support re-verification:\n"
#~ " 1.- Plug a CF media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "컴팩트 플래쉬 (CF) 미디어 카드는 재인증을 지원합니다:\n"
#~ " 1.- 컴팩트 플래쉬 (CF) 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid ""
#~ "Secure Digital High Capacity (SDHC) media card support verification:\n"
#~ " 1.- Plug a SDHC media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "SDHC 미디어 카드는 인증을 지원합니다:\n"
#~ " 1.- SDHC 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid ""
#~ "Secure Digital High Capacity (SDHC) media card support re-verification:\n"
#~ " 1.- Plug a SDHC media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "SDHC 미디어 카드는 재인증을 지원합니다:\n"
#~ " 1.- SDHC 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid ""
#~ "Multi Media Card (MMC) media card support verification:\n"
#~ " 1.- Plug a MMC media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "MMC 미디어 카드는 인증을 지원합니다:\n"
#~ " 1.- MMC 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid ""
#~ "Multi Media Card (MMC) media card support re-verification:\n"
#~ " 1.- Plug a MMC media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "MMC 미디어 카드는 재인증을 지원합니다:\n"
#~ " 1.- MMC 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid ""
#~ "Memory Stick (MS) media card support verification:\n"
#~ " 1.- Plug a MS media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "메모리 스틱(MS) 미디어 카드는 인증을 지원합니다:\n"
#~ " 1.- 메모리 스틱(MS) 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid ""
#~ "Memory Stick (MS) media card support re-verification:\n"
#~ " 1.- Plug a MS media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "메모리 스틱(MS) 미디어 카드는 재인증을 지원합니다:\n"
#~ " 1.- 메모리 스틱(MS) 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid ""
#~ "Memory Stick Pro (MSP) media card support verification:\n"
#~ " 1.- Plug a MSP media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "메모리 스틱 프로(MSP) 미디어 카드는 인증을 지원합니다:\n"
#~ " 1.- 메모리 스틱 프로(MSP) 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid ""
#~ "Memory Stick Pro (MSP) media card support re-verification:\n"
#~ " 1.- Plug a MSP media card into the computer.\n"
#~ " 2.- An icon should appear on the desktop and in the \"Places\" menu at the "
#~ "top of the screen.\n"
#~ " 3.- Right click on the deskop icon and select \"Safely Remove Drive\".\n"
#~ " 4.- The icon should disappear of both the deskop and the \"Places\" menu."
#~ msgstr ""
#~ "메모리 스틱 프로(MSP) 미디어 카드는 재인증을 지원합니다:\n"
#~ " 1.- 메모리 스틱 프로(MSP) 미디어 카드를 컴퓨터에 연결하시오.\n"
#~ " 2.- 아이콘이 바탕화면과 스크린 상단의 \"장소\" 메뉴에 나타납니다.\n"
#~ " 3.- 바탕화면의 아이콘에 마우스 오른쪽 버튼을 클릭하고 \"안전하게 디스크 제거\"를 선택하시오.\n"
#~ " 4.- 바탕화면과 \"장소\" 메뉴에서 아이콘이 사라집니다."

#~ msgid "Select Test to display a video test."
#~ msgstr "비디오 테스트를 보여주기 위하여 테스트를 선택하시오."

#~ msgid "Select Test to launch Firefox and view a short flash video."
#~ msgstr "파이어폭스를 실행 및 짧은 플래쉬 비디오를 보기 위해 테스트를 선택하시오."

#~ msgid "Select Test to launch Firefox with a sample video."
#~ msgstr "샘플 비디오와 함께 파이어폭스를 실행하기 위해 테스트를 선택하시오."

#~ msgid ""
#~ "Select Test to open Firefox with the Java test page, and follow the "
#~ "instructions there."
#~ msgstr "자바 테스트 페이지와 함께 파이어폭스를 열기 위해 테스트를 선택하고 설명서를 따르시오."

#~ msgid "Select Test to launch Firefox and view a sample Flash test."
#~ msgstr "파이어폭스를 실행 및 샘플 플래쉬 테스트를 보기 위해 테스트를 선택하시오."

#~ msgid "Select Test to launch Firefox and view the test web page."
#~ msgstr "파이어폭스를 실행 및 테스트 웹 페이지를 보기 위해 테스트 선택하시오"

#~ msgid "Wireless scanning test."
#~ msgstr "무선 주사 시험"

#~ msgid ""
#~ "PURPOSE:\n"
#~ "   This test will attempt to install and run the Autotest Suite.  These "
#~ "tests can be destructive, so this test is blacklisted by default."
#~ msgstr ""
#~ "목적:\n"
#~ "   이 테스트는 Autotest Suite의 설치와 실행을 시도할 것입니다. 이 테스트는 시스템에 부정적인 영향을 미칠 수 있으므로, "
#~ "기본적으로 차단되어 있습니다"

#~ msgid ""
#~ "PURPOSE:\n"
#~ "    This test will check the system can detect the insertion of a FireWire "
#~ "HDD\n"
#~ "STEPS:\n"
#~ "    1. Click 'Test' to begin the test. This test will\n"
#~ "       timeout and fail if the insertion has not been detected within 10 "
#~ "seconds.\n"
#~ "    2. Plug a FireWire HDD into an available FireWire port.\n"
#~ "VERIFICATION:\n"
#~ "    The verification of this test is automated. Do not change the "
#~ "automatically\n"
#~ "    selected result"
#~ msgstr ""
#~ "이 테스트의 목적:\n"
#~ "    이 테스트는 시스템이 파이어와이어 하드디스크 (FireWire HDD)를 연결할 수 있는지 검사합니다.\n"
#~ "따라야 할 단계:\n"
#~ "    1. 테스트를 누르세요. 이 테스트는\n"
#~ "       10초간 파이어와이어 기반 디스크가 연결되지 않으면 실패했다고 할 것입니다.\n"
#~ "    2. 파이어와이어 하드디스크를 파이어와이어 포트에 연결하세요.\n"
#~ "확인 방법:\n"
#~ "    이 테스트는 자동으로 연결을 확인합니다. 결과를 수정하지 마세요."

#~ msgid "Benchmark for each disk "
#~ msgstr "각 디스크를 벤치마킹합니다. "

#~ msgid ""
#~ " PURPOSE:\n"
#~ "   This test will check the system can detect the removal of a FireWire HDD\n"
#~ " STEPS:\n"
#~ "   1. Click 'Test' to begin the test. This test will timeout and fail if\n"
#~ "      the removal has not been detected within 10 seconds.\n"
#~ "   2. Remove the previously attached FireWire HDD from the FireWire port.\n"
#~ " VERIFICATION:\n"
#~ "   The verification of this test is automated. Do not change the "
#~ "automatically\n"
#~ "   selected result"
#~ msgstr ""
#~ " 목적:\n"
#~ "   이 테스트는 시스템이 파이어와이어 하드디스크가 제거되었을 때 인식할 수 있는 지를 검사할 것입니다.\n"
#~ " 따라야 할 단계:\n"
#~ "   1. '테스트' 버튼을 눌러 작업을 시작하세요. 10초 이내에 제거됨을 인식할 수 없으면 실패할 것입니다.\n"
#~ "   2. 연결했던 파이어와이어 하드디스크를 제거하세요.\n"
#~ " 확인 방법:\n"
#~ "   이 테스트는 자동으로 진행되니, 결과를 바꾸지 마세요."