~brendan-donegan/checkbox/0.15.2

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
# Kurdish translation for checkbox
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the checkbox package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
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 18:54+0000\n"
"Last-Translator: argisti <Unknown>\n"
"Language-Team: Kurdish <ku@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-30 04:33+0000\n"
"X-Generator: Launchpad (build 16455)\n"

#. Title of the user interface
#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
#: ../plugins/user_interface.py:43 ../qt/frontend/ui_qtfront.h:589
msgid "System Testing"
msgstr "Ceribandina Pergalê"

#: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:538
msgid "_Test"
msgstr "_Ceribandin"

#: ../gtk/checkbox-gtk.ui.h:3
msgid "_Yes"
msgstr "_Erê"

#: ../gtk/checkbox-gtk.ui.h:4
msgid "_No"
msgstr "_Na"

#: ../gtk/checkbox-gtk.ui.h:5
msgid "_Skip this test"
msgstr "Li vê ceribandinê derba_s bive."

#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:444
#: ../checkbox_urwid/urwid_interface.py:267
msgid "Further information:"
msgstr "Agahiya zêdetir:"

#: ../gtk/checkbox-gtk.ui.h:7
msgid "_Select All"
msgstr ""

#: ../gtk/checkbox-gtk.ui.h:8
msgid "_Deselect All"
msgstr ""

#: ../gtk/checkbox-gtk.ui.h:9
msgid "_Previous"
msgstr "P_aşve"

#: ../gtk/checkbox-gtk.ui.h:10
msgid "Ne_xt"
msgstr "P_êşve"

#: ../qt/checkbox-qt.desktop.in.h:2
msgid "Test your system and submit results to the Ubuntu Friendly project"
msgstr ""

#. description
#: ../jobs/audio.txt.in:7
msgid "Test to detect audio devices"
msgstr ""

#. description
#: ../jobs/audio.txt.in:16
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 ""

#. 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:33
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 ""

#. description
#: ../jobs/audio.txt.in:49
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 ""

#. description
#: ../jobs/audio.txt.in:66
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 ""

#. description
#: ../jobs/audio.txt.in:82
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 ""

#. 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/disk.txt.in:9
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 ""

#. 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 ""

#. 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 ""

#. 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 ""

#. 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 ""

#. description
#: ../jobs/camera.txt.in:7
msgid "This Automated test attempts to detect a camera."
msgstr ""

#. description
#: ../jobs/camera.txt.in:16
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 ""

#. description
#: ../jobs/camera.txt.in:33
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 ""

#. 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 ""

#. 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 ""

#. description
#: ../jobs/cpu.txt.in:8
msgid ""
"Test the CPU scaling capabilities using Firmware Test Suite (fwts cpufreq)."
msgstr ""

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

#. description
#: ../jobs/cpu.txt.in:15
msgid "Test for clock jitter."
msgstr ""

#. description
#: ../jobs/cpu.txt.in:23
msgid "Test offlining CPUs in a multicore system."
msgstr ""

#. description
#: ../jobs/cpu.txt.in:30
msgid "This test checks cpu topology for accuracy"
msgstr ""

#. description
#: ../jobs/cpu.txt.in:38
msgid "This test checks that CPU frequency governors are obeyed when set."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:5
msgid "Test if the atd daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:11
msgid "Test if the cron daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:17
msgid "Test if the cupsd daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:23
msgid "Test if the getty daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:29
msgid "Test if the init daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:35
msgid "Test if the klogd daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:41
msgid "Test if the nmbd daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:47
msgid "Test if the smbd daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:53
msgid "Test if the syslogd daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:61
msgid "Test if the udevd daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/daemons.txt.in:67
msgid "Test if the winbindd daemon is running when the package is installed."
msgstr ""

#. description
#: ../jobs/disk.txt.in:4
msgid "Detects and displays disks attached to the system."
msgstr ""

#. description
#: ../jobs/disk.txt.in:23
msgid "Check stats changes for each disk"
msgstr ""

#. description
#: ../jobs/disk.txt.in:40
msgid "SMART test"
msgstr ""

#. description
#: ../jobs/disk.txt.in:56
msgid "Maximum disk space used during a default installation test"
msgstr ""

#. description
#: ../jobs/disk.txt.in:71
msgid "Verify system storage performs at or above baseline performance"
msgstr ""

#. description
#: ../jobs/disk.txt.in:88
msgid ""
"Verify that storage devices, such as Fibre Channel and RAID can be detected "
"and perform under stress."
msgstr ""

#. 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 ""

#. 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 ""

#. 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:19
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:5
msgid "Test to output the Xorg version"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:12
msgid "Run gtkperf to make sure that GTK based test cases work"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:18
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 ""

#. 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:50
msgid "Test that the X process is running."
msgstr ""

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

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

#. description
#: ../jobs/graphics.txt.in:70
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:85
msgid ""
"Ensure the current resolution meets or exceeds the recommended minimum "
"resolution (800x600). See here for details:"
msgstr ""

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

#. description
#: ../jobs/graphics.txt.in:95
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:106
msgid "Check that VESA drivers are not in use"
msgstr ""

#. description
#: ../jobs/graphics.txt.in:113
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:126
msgid "Check that hardware is able to run compiz"
msgstr ""

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

#. description
#: ../jobs/graphics.txt.in:139
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:7
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:31
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:40
msgid "Attaches the contents of the various modprobe conf files."
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

#. description
#: ../jobs/input.txt.in:4
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:17
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:37
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:60
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 "Ceribandinên dengî"

#. 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 "Ceribandinên dîskê"

#. description
#: ../jobs/local.txt.in:59
msgid "Fingerprint reader tests"
msgstr "Ceribandina xwendeya rêçetilî"

#. description
#: ../jobs/local.txt.in:66
msgid "Firewire disk tests"
msgstr "Ceribandinên dîskên firewire"

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

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

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

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

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

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

#. description
#: ../jobs/local.txt.in:115
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:150
msgid "Miscellaneous tests"
msgstr ""

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

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

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

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

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

#. description
#: ../jobs/local.txt.in:192
msgid "Peripheral tests"
msgstr "Ceribandinên alavên hawîrdorî"

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

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

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

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

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

#. description
#: ../jobs/local.txt.in:255
msgid "User Applications"
msgstr ""

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

#. description
#: ../jobs/local.txt.in:269
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:20
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:59
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:97
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:136
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:174
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:213
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:251
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:290
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:14
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:8
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:21
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:31
msgid ""
"This will run some basic connectivity tests against a BMC, verifying that "
"IPMI works."
msgstr ""

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

#. description
#: ../jobs/miscellanea.txt.in:45
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/miscellanea.txt.in:53
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:5
msgid "Test to detect the available network controllers"
msgstr ""

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

#. description
#: ../jobs/networking.txt.in:16
msgid "Network Information"
msgstr ""

#. description
#: ../jobs/networking.txt.in:40
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:46
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:59
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:76
msgid ""
"Automated test case to verify availability of some system on the network "
"using ICMP ECHO packets."
msgstr ""

#. description
#: ../jobs/networking.txt.in:83 ../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:91
msgid "Test to see if we can sync local clock to an NTP server"
msgstr ""

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

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

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

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

#. description
#: ../jobs/optical.txt.in:8
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:46
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:82
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:100
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:16
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:4
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:15
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:32
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:50
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:66
msgid "Make sure that the RTC (Real-Time Clock) device exists."
msgstr ""

#. description
#: ../jobs/power-management.txt.in:81
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:8
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:24
msgid "Verify that all the CPUs are online before suspending"
msgstr ""

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

#. description
#: ../jobs/suspend.txt.in:49
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:83
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:260
msgid "This is the automated version of suspend/suspend_advanced."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:96
msgid "Test the network after resuming."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:102
msgid ""
"Test to see that we have the same resolution after resuming as before."
msgstr ""

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

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

#. description
#: ../jobs/suspend.txt.in:144
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:174
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:186
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:196
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:206
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:220
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:232
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:241
msgid ""
"This attaches screenshots from the "
"suspend/cycle_resolutions_after_suspend_auto test to the results submission."
msgstr ""

#. description
#: ../jobs/suspend.txt.in:251
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:5
msgid "Detects and shows USB devices attached to this system."
msgstr ""

#. description
#: ../jobs/usb.txt.in:12
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:88
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:104
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:120
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:283
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:297
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:311
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:325
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:339
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:353
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:367
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:380
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:393
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:406
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:419
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:436
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:453
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:468
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:482
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:495
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:6
msgid "Wireless scanning test. It scans and reports on discovered APs."
msgstr ""

#. description
#: ../jobs/wireless.txt.in:12
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:28
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:38
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:48
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:58
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:70
msgid ""
"Tests the performance of a systems wireless connection through the iperf "
"tool."
msgstr ""

#. description
#: ../jobs/wireless.txt.in:81
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/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 ""

#: ../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 ""

#: ../checkbox/job.py:84
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 ""

#: ../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 ""

#: ../checkbox/lib/signal.py:33
msgid "Termination signal"
msgstr ""

#: ../checkbox/lib/signal.py:34
msgid "User-defined signal 1"
msgstr ""

#: ../checkbox/lib/signal.py:35
msgid "User-defined signal 2"
msgstr ""

#: ../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:917 ../checkbox_qt/qt_interface.py:37
msgid "yes"
msgstr ""

#: ../checkbox_cli/cli_interface.py:32
#: ../checkbox_urwid/urwid_interface.py:918 ../checkbox_qt/qt_interface.py:38
msgid "no"
msgstr ""

#: ../checkbox_cli/cli_interface.py:33
#: ../checkbox_urwid/urwid_interface.py:919 ../checkbox_qt/qt_interface.py:39
msgid "skip"
msgstr ""

#: ../checkbox_cli/cli_interface.py:126
msgid "Press any key to continue..."
msgstr ""

#: ../checkbox_cli/cli_interface.py:135 ../checkbox_cli/cli_interface.py:234
#, python-format
msgid "Please choose (%s): "
msgstr ""

#: ../checkbox_cli/cli_interface.py:229 ../checkbox_cli/cli_interface.py:338
#: ../checkbox_cli/cli_interface.py:368
msgid "Space when finished"
msgstr ""

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

#: ../checkbox_cli/cli_interface.py:416
msgid "test"
msgstr ""

#: ../checkbox_cli/cli_interface.py:440
msgid "test again"
msgstr ""

#: ../checkbox_cli/cli_interface.py:446
msgid "Please type here and press Ctrl-D when finished:\n"
msgstr ""

#: ../checkbox_urwid/urwid_interface.py:66
msgid "Checkbox System Testing"
msgstr ""

#: ../checkbox_urwid/urwid_interface.py:105
msgid "Continue"
msgstr ""

#: ../checkbox_urwid/urwid_interface.py:198
#: ../checkbox_urwid/urwid_interface.py:274
#: ../checkbox_urwid/urwid_interface.py:425
#: ../checkbox_urwid/urwid_interface.py:547 ../qt/frontend/ui_qtfront.h:609
msgid "Previous"
msgstr ""

#: ../checkbox_urwid/urwid_interface.py:199
#: ../checkbox_urwid/urwid_interface.py:275
#: ../checkbox_urwid/urwid_interface.py:426
#: ../checkbox_urwid/urwid_interface.py:548 ../qt/frontend/ui_qtfront.h:608
msgid "Next"
msgstr ""

#. Show buttons
#: ../checkbox_urwid/urwid_interface.py:423 ../qt/frontend/qtfront.cpp:136
msgid "Select All"
msgstr ""

#: ../checkbox_urwid/urwid_interface.py:424 ../qt/frontend/qtfront.cpp:137
msgid "Deselect All"
msgstr ""

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

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

#: ../checkbox_urwid/urwid_interface.py:1013 ../qt/frontend/ui_qtfront.h:603
msgid "Test"
msgstr ""

#: ../checkbox_urwid/urwid_interface.py:1028
msgid "Test Again"
msgstr ""

#: ../checkbox_gtk/gtk_interface.py:503
msgid "_Test Again"
msgstr ""

#: ../checkbox_gtk/gtk_interface.py:551 ../qt/frontend/qtfront.cpp:490
msgid "Info"
msgstr ""

#: ../checkbox_gtk/gtk_interface.py:575 ../qt/frontend/qtfront.cpp:247
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 ""

#: ../plugins/final_prompt.py:33
msgid "Successfully finished testing!"
msgstr ""

#: ../plugins/final_prompt.py:34
msgid "_Finish"
msgstr ""

#: ../plugins/gather_prompt.py:35
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 ""

#: ../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:136
#, python-format
msgid "Failed to process form: %s"
msgstr ""

#: ../plugins/launchpad_exchange.py:151
#, 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 ""

#: ../plugins/launchpad_exchange.py:160
msgid ""
"Failed to upload to server,\n"
"please try again later."
msgstr ""

#: ../plugins/launchpad_exchange.py:172
msgid "Information not posted to Launchpad."
msgstr ""

#: ../plugins/launchpad_prompt.py:74
#, 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:93
msgid "Email address must be in a proper format."
msgstr ""

#: ../plugins/launchpad_prompt.py:99
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 ""

#: ../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 ""

#: ../qt/frontend/treemodel.cpp:13
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:21
msgid "Enter text:\n"
msgstr ""

#: ../scripts/keyboard_test:41
msgid "Type Text"
msgstr ""

#: ../scripts/internet_test:139
msgid "No Internet connection"
msgstr ""

#: ../scripts/internet_test:142
msgid "Connection established lost a packet"
msgstr ""

#: ../scripts/internet_test:145
msgid "Internet connection fully established"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../qt/frontend/qtfront.cpp:108 ../qt/frontend/qtfront.cpp:109
msgid "Done"
msgstr ""

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

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

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

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

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

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

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

#: ../qt/frontend/ui_qtfront.h:588
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:592 ../qt/frontend/ui_qtfront.h:606
msgid "Tab 1"
msgstr ""

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

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

#: ../qt/frontend/ui_qtfront.h:597
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:598
msgid "Start testing"
msgstr ""

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

#: ../qt/frontend/ui_qtfront.h:600 ../qt/frontend/ui_qtfront.h:601
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:607 ../qt/frontend/ui_qtfront.h:623
msgid "Tab 2"
msgstr ""

#: ../qt/frontend/ui_qtfront.h:610
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:619
msgid "Email:"
msgstr ""

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

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

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

#~ msgid "Test and report system information"
#~ msgstr "Ceribandin û raporkirina agahiyên pergalê"

#~ msgid "Detecting your sound device(s):"
#~ msgstr "Alavê(n) te yê deng têne dîtin."

#~ msgid "Kernel modesetting tests"
#~ msgstr "Ceribandinên awaeyarê dendikê"

#~ msgid "Network tests"
#~ msgstr "Ceribandinên torê"

#~ msgid "Video tests"
#~ msgstr "Ceribandinên vîdeoyê"

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

#~ msgid "Is this correct?"
#~ msgstr "Ev rast e?"

#~ msgid "Is this ok?"
#~ msgstr "Ev temam e?"

#~ msgid "Did the authentication procedure work correctly?"
#~ msgstr "Pêvajoya nasîna nasnameyê rast xebitî?"