~ubuntu-branches/ubuntu/trusty/idjc/trusty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Stephen Fairchild
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: idjc 0.8.6\n"
"Report-Msgid-Bugs-To: putidjcinthesubjectline@bethere.co.uk\n"
"POT-Creation-Date: 2011-10-31 13:33+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#. TC: command line switch info from $ idjc --help
#: python/prelims/__init__.py:100
msgid "sub-option -h for more info"
msgstr ""

#. TC: a command line option help string.
#: python/prelims/__init__.py:102
msgid "the default command"
msgstr ""

#. TC: do not translate run.
#: python/prelims/__init__.py:104
msgid "-- sub-command: run"
msgstr ""

#. TC: a command line option help string.
#: python/prelims/__init__.py:106
msgid "make a new profile"
msgstr ""

#. TC: do not translate generateprofile.
#: python/prelims/__init__.py:108
msgid "-- sub-command: generateprofile"
msgstr ""

#: python/prelims/__init__.py:112
msgid ""
"force the appearance or non-appearance of the\n"
"            profile chooser dialog -- when used with the -p option\n"
"            the chosen profile is preselected"
msgstr ""

#. TC: command line help placeholder.
#: python/prelims/__init__.py:116
msgid "profile_choice"
msgstr ""

#: python/prelims/__init__.py:117
msgid ""
"the profile to use -- overrides the user interface\n"
"            preferences \"show profile dialog\" option"
msgstr ""

#. TC: command line help placeholder.
#: python/prelims/__init__.py:121
msgid "server_name"
msgstr ""

#: python/prelims/__init__.py:121
msgid "the named jack sound-server to connect with"
msgstr ""

#: python/prelims/__init__.py:122
msgid "user interface settings"
msgstr ""

#: python/prelims/__init__.py:124
msgid "the audio channels to have open at startup"
msgstr ""

#: python/prelims/__init__.py:127
msgid "the voip mode at startup"
msgstr ""

#: python/prelims/__init__.py:131
msgid "attempt connection with the specified servers"
msgstr ""

#: python/prelims/__init__.py:133
msgid "position the crossfader for the specified player"
msgstr ""

#. TC: command line help placeholder.
#: python/prelims/__init__.py:135
msgid "profile_name"
msgstr ""

#: python/prelims/__init__.py:136
msgid ""
"new profile name -- will form part of the dbus\n"
"            bus/object/interface name and the JACK client ID --\n"
"            restrictions therefore apply"
msgstr ""

#. TC: command line help placeholder.
#: python/prelims/__init__.py:140
msgid "template_profile"
msgstr ""

#: python/prelims/__init__.py:141
msgid "an existing profile to use as a template"
msgstr ""

#. TC: command line help placeholder.
#: python/prelims/__init__.py:143
msgid "icon_pathname"
msgstr ""

#: python/prelims/__init__.py:144
msgid "pathname to an icon -- defaults to idjc logo"
msgstr ""

#. TC: Command line help placeholder for the profile's nickname.
#. TC: Actual profile names are very restricted in what characters can be used.
#: python/prelims/__init__.py:147
msgid "nickname"
msgstr ""

#: python/prelims/__init__.py:148
msgid "the alternate profile name to appear in window title bars"
msgstr ""

#: python/prelims/__init__.py:149
msgid "description_text"
msgstr ""

#: python/prelims/__init__.py:150
msgid "a description of the profile"
msgstr ""

#: python/prelims/__init__.py:301
#, python-format
msgid "failed to create profile: %s"
msgstr ""

#: python/prelims/__init__.py:317
msgid "the specified profile name is not valid"
msgstr ""

#: python/prelims/__init__.py:333
#, python-format
msgid ""
"<span weight='bold' size='12000'>Error while creating new profile.</span>\n"
"\n"
"%s"
msgstr ""

#: python/prelims/__init__.py:347
msgid "no profile is set"
msgstr ""

#: python/prelims/__init__.py:454
#, python-format
msgid "Profile %s is active."
msgstr ""

#: python/prelims/__init__.py:464
msgid "Cannot rename profile {0} to {1}, {1} currently exists."
msgstr ""

#: python/prelims/__init__.py:468
msgid "Error during attempt to rename {0} to {1}."
msgstr ""

#: python/prelims/__init__.py:478
msgid ""
"<span weight='bold' size='12000'>Error while editing profile: {0}.</span>\n"
"\n"
"{1}"
msgstr ""

#: python/prelims/__init__.py:502
#, python-format
msgid "the profile '%s' is in use"
msgstr ""

#: python/prelims/__init__.py:520
#, python-format
msgid "the profile length is too long (max %d characters)"
msgstr ""

#: python/prelims/__init__.py:521
#, python-format
msgid "The profile length is too long (max %d characters)."
msgstr ""

#: python/prelims/__init__.py:524
msgid "the new profile name is not valid"
msgstr ""

#: python/prelims/__init__.py:525
msgid "The new profile name is not valid."
msgstr ""

#: python/prelims/__init__.py:530
msgid "the chosen profile is currently running"
msgstr ""

#: python/prelims/__init__.py:531
msgid "The chosen profile is currently running."
msgstr ""

#: python/prelims/__init__.py:536
msgid "temporary directory creation failed"
msgstr ""

#: python/prelims/__init__.py:537
msgid "Temporary directory creation failed."
msgstr ""

#: python/prelims/__init__.py:543
#, python-format
msgid "the specified template '%s' is not valid"
msgstr ""

#: python/prelims/__init__.py:544
#, python-format
msgid "The specified template '%s' is not valid."
msgstr ""

#: python/prelims/__init__.py:556
#, python-format
msgid "the template profile '%s' does not exist"
msgstr ""

#: python/prelims/__init__.py:557
#, python-format
msgid "The template profile '%s' does not exist."
msgstr ""

#: python/prelims/__init__.py:565
#, python-format
msgid "could not write file %s"
msgstr ""

#: python/prelims/__init__.py:566
#, python-format
msgid "Could not write file %s."
msgstr ""

#: python/prelims/__init__.py:574
#, python-format
msgid "the profile directory '%s' already exists"
msgstr ""

#: python/prelims/__init__.py:575
#, python-format
msgid "The profile directory '%s' already exists."
msgstr ""

#: python/prelims/__init__.py:577
#, python-format
msgid "a non directory path exists at: '%s'"
msgstr ""

#: python/prelims/__init__.py:578
#, python-format
msgid "A Non directory path exists at: '%s'."
msgstr ""

#: python/prelims/__init__.py:589
msgid "The default profile"
msgstr ""

#. TC: data entry dialog window title text. %s = profile name
#: python/prelims/profiledialog.py:97
#, python-format
msgid "Edit profile %s"
msgstr ""

#. TC: data entry dialog window title text. %s = profile name
#: python/prelims/profiledialog.py:100
#, python-format
msgid "New profile based upon %s"
msgstr ""

#. TC: data entry dialog window title text.
#: python/prelims/profiledialog.py:104
msgid "New profile details"
msgstr ""

#. TC: profile dialog window title text.
#: python/prelims/profiledialog.py:242
msgid "IDJC Profile Manager"
msgstr ""

#: python/prelims/profiledialog.py:275
msgid "Profile"
msgstr ""

#. TC: column heading. The profile nicknames. Non latin characters supported.
#. TC: IRC nickname data entry label.
#: python/prelims/profiledialog.py:283 python/irc.py:411
msgid "Nickname"
msgstr ""

#. TC: column heading.
#. TC: Station description. Typically the user enters a small paragraph of text.
#: python/prelims/profiledialog.py:286 python/irc.py:92
#: python/playergui.py:236 python/sourceclientgui.py:1938
msgid "Description"
msgstr ""

#. TC: column heading. The time a particular profile has been running.
#: python/prelims/profiledialog.py:290
msgid "Up-time"
msgstr ""

#: python/prelims/profiledialog.py:304
msgid "_Auto"
msgstr ""

#: python/prelims/profiledialog.py:362
#, python-format
msgid ""
"<span weight='bold' size='12000'>Delete the data of profile '%s'?</span>\n"
"\n"
"The profile will remain available with initial settings."
msgstr ""

#: python/prelims/profiledialog.py:364
#, python-format
msgid ""
"<span weight='bold' size='12000'>Delete profile '%s' and all its data?</"
"span>\n"
"\n"
"The data of deleted profiles cannot be recovered."
msgstr ""

#. TC: Tab refers to a GTK notebook widget tab.
#: python/dialogs.py:173
#, python-format
msgid ""
"<span weight=\"bold\" size=\"12000\">The connection to the server in tab %s "
"has failed.</span>\n"
"A reconnection attempt will be made in %d seconds.\n"
"This is attempt number {0} of {1}."
msgstr ""

#: python/dialogs.py:223
#, python-format
msgid "This is attempt number %d. There is no retry limit."
msgstr ""

#. TC: Dialog button label _ preceeds accelerator key.
#. TC: Whatever accelerator is chosen for "Retry Now" must not clash with that of the Cancel button.
#: python/dialogs.py:250
msgid "_Retry Now"
msgstr ""

#: python/__init__.py.in.in:81
msgid "Copyright 2005-2011 Stephen Fairchild and others."
msgstr ""

#: python/__init__.py.in.in:82
msgid "Released under the GNU General Public License V2.0 or later."
msgstr ""

#. TC: IRC message subcategory, triggers on new track announcements.
#: python/irc.py:78
msgid "Track announce"
msgstr ""

#. TC: IRC message subcategory, triggered by a timer.
#: python/irc.py:80
msgid "Timer"
msgstr ""

#. TC: IRC message subcategory, triggered once when the stream starts.
#: python/irc.py:82
msgid "On stream up"
msgstr ""

#. TC: IRC message subcategory, triggered once at the stream's end.
#: python/irc.py:84
msgid "On stream down"
msgstr ""

#: python/irc.py:91 python/mutagentagger.py:370 python/p3db.py:370
#: python/p3db.py:452 python/sourceclientgui.py:83
msgid "Artist"
msgstr ""

#: python/irc.py:91 python/mutagentagger.py:370 python/p3db.py:370
#: python/p3db.py:455 python/sourceclientgui.py:83
msgid "Title"
msgstr ""

#: python/irc.py:91 python/mutagentagger.py:371 python/p3db.py:370
#: python/p3db.py:453 python/sourceclientgui.py:83
msgid "Album"
msgstr ""

#: python/irc.py:91 python/sourceclientgui.py:83
msgid "Song name"
msgstr ""

#. TC: The DJ or Stream name.
#: python/irc.py:92 python/sourceclientgui.py:1935
msgid "DJ name"
msgstr ""

#: python/irc.py:92 python/sourceclientgui.py:1936
msgid "Listen URL"
msgstr ""

#. TC: Popup menu item for a GTK text entry widget.
#: python/irc.py:137
msgid "Insert Attribute or Colour Code"
msgstr ""

#. TC: Text formatting style.
#: python/irc.py:164
msgid "<b>Bold</b>"
msgstr ""

#. TC: Text formatting style.
#: python/irc.py:166
msgid "<u>Underline</u>"
msgstr ""

#. TC: Text formatting style.
#: python/irc.py:168
msgid "Normal"
msgstr ""

#: python/irc.py:171
msgid "Colours"
msgstr ""

#: python/irc.py:362
msgid "Optional data entry field for information only."
msgstr ""

#. TC: Tab heading text.
#: python/irc.py:366
msgid "IRC server"
msgstr ""

#. TC: Checkbutton label text for server connection to be made using the SSL security protocol.
#. TC: IRC server settings using SSL protocol.
#: python/irc.py:375 python/irc.py:943
msgid "SSL"
msgstr ""

#: python/irc.py:376
msgid ""
"Connect to the server using the SSL security protocol.\n"
"\n"
"This feature is typically offered on different ports than the standard "
"connection method and is widespread but not universally available."
msgstr ""

#. TC: The IRC network e.g. EFnet.
#: python/irc.py:403
msgid "Network"
msgstr ""

#. TC: label for hostname entry.
#: python/irc.py:405 python/p3db.py:562 python/sourceclientgui.py:190
msgid "Hostname"
msgstr ""

#. TC: TCP/IP port number label.
#. TC: TCP port number.
#: python/irc.py:407 python/sourceclientgui.py:620
msgid "Port"
msgstr ""

#: python/irc.py:408
msgid "User name"
msgstr ""

#: python/irc.py:409 python/p3db.py:582 python/sourceclientgui.py:191
msgid "Password"
msgstr ""

#. TC: Second choice of IRC nickname.
#: python/irc.py:413
msgid "Second choice"
msgstr ""

#. TC: Third choice of IRC nickname.
#: python/irc.py:415
msgid "Third choice"
msgstr ""

#. TC: The IRC user's 'real' name.
#: python/irc.py:417
msgid "Real name"
msgstr ""

#. TC: The NickServ password.
#: python/irc.py:419
msgid "NickServ p/w"
msgstr ""

#. TC: Tooltip to IRC 'User name' field.
#: python/irc.py:424
msgid ""
"Ideally set this to something even on servers that allow public anonymous "
"access."
msgstr ""

#. TC: tooltip to all IRC nicknames entry fields.
#: python/irc.py:433
msgid ""
"When a nickname is in use on the target IRC network, during connection these "
"IRC nicknames are cycled through, then twice again after appending an "
"additional underscore until giving up. This gives IDJC a maximum of nine IRC "
"nicknames to try."
msgstr ""

#: python/irc.py:434
msgid ""
"The real name you want to use which will be available regardless of whether "
"the network connection was made with the primary nickname or not.\n"
"\n"
"Ideally set this to something."
msgstr ""

#: python/irc.py:435
msgid ""
"If this value is set an attempt will be made to acquire your first choice "
"IRC nickname (if needed) and log in with NickServ@services.\n"
"\n"
"The use of the NickServ service requires prior nickname registration on the "
"network using a regular chat client."
msgstr ""

#: python/irc.py:458
msgid ""
"<span weight='bold' size='12000'>Permanently delete this server?</span>\n"
"\n"
"This action will also erase all of its associated messages."
msgstr ""

#. TC: Dialog window data text entry label. Used for message routing to channels and or users.
#: python/irc.py:500
msgid "Channels/Users"
msgstr ""

#: python/irc.py:504
msgid ""
"The comma or space separated list of channels and/or users to whom the "
"message will be sent.\n"
"\n"
"Protected channels are included with the form:\n"
"#channel:keyword."
msgstr ""

#. TC: Message text to send to an IRC channel. Widget label.
#: python/irc.py:509
msgid "Message"
msgstr ""

#: python/irc.py:513
msgid ""
"The message to send.\n"
"\n"
"On the pop-up window (mouse right click) are some useful options for "
"embedding metadata and for text formatting.\n"
"\n"
"The window below displays how the message will appear to users of XChat."
msgstr ""

#. TC: Dialog window title text.
#: python/irc.py:578
msgid "IRC track announce"
msgstr ""

#. TC: Spinbutton label for a delay value.
#: python/irc.py:585
msgid "Delay"
msgstr ""

#. TC: tooltip on a spinbutton widget.
#: python/irc.py:587
msgid ""
"The delay time of this message.\n"
"\n"
"Typically listener clients will buffer approximately ten seconds of audio "
"data which means they are listening the same amount of time behind the "
"actual stream therefore without a delay IRC messages will appear to the "
"listener many seconds ahead of the audio.\n"
"\n"
"This setting will help synchronise the track change with the message."
msgstr ""

#. TC: Dialog window title text.
#: python/irc.py:612
msgid "IRC timed message"
msgstr ""

#. TC: Spinbutton label for a value to schedule messages with respect to some particular interval elsewhere defined.
#: python/irc.py:621
msgid "Offset"
msgstr ""

#. TC: Spinbutton label for a timed interval between repetition of messages.
#: python/irc.py:623
msgid "Interval"
msgstr ""

#. TC: spinbutton tooltip
#: python/irc.py:626
msgid ""
"The time offset within the below specified interval at which the message "
"will be issued."
msgstr ""

#. TC: spinbutton tooltip
#: python/irc.py:628
msgid "The interval in seconds of the timed message."
msgstr ""

#: python/irc.py:862
msgid "This feature requires the installation of python-irclib."
msgstr ""

#. TC: Appears on message entry dialog title bar for messages to show when stream goes active.
#: python/irc.py:969
msgid "IRC stream up message"
msgstr ""

#. TC: Appears on message entry dialog title bar for messages to show when stream goes inactive.
#: python/irc.py:971
msgid "IRC stream down message"
msgstr ""

#. TC: Window title.
#: python/jingles.py:348
msgid "IDJC Jingles"
msgstr ""

#: python/jingles.py:383
msgid ""
"Play the jingles sequence specified above or if none is specified play the "
"jingle highlighted in the catalogue. The volume level of the main media "
"players will be reduced somewhat during playback."
msgstr ""

#: python/jingles.py:393
msgid "Stop all jingles playback."
msgstr ""

#: python/jingles.py:406
msgid ""
"This button works the same as the button to the left does except that the "
"sound level of all the other media players is fully reduced."
msgstr ""

#: python/jingles.py:410
msgid "Sound Level"
msgstr ""

#: python/jingles.py:431
msgid "Player Muting"
msgstr ""

#. TC: {0}, {1} = Monitor Mix, Stream.
#. TC: Or whatever they become translated to.
#. TC: Context {0}, {1}, {2} = Monitor Mix, Stream, DJ
#. TC: Or whatever they become translated to.
#: python/jingles.py:467 python/jingles.py:483 python/maingui.py:2760
#: python/maingui.py:2762 python/maingui.py:2789
msgid "Monitor Mix"
msgstr ""

#. TC: IDJC creates two audio mixes with Stream being the name of one of them.
#. TC: The Stream mix is the one the listeners hear.
#. TC: This text is followed by a number in a spinbutton and represents a specific user interface target.
#. TC: binding editor, action pane, first row, toplevel menu.
#: python/jingles.py:467 python/jingles.py:483 python/maingui.py:2777
#: python/maingui.py:2789 python/midicontrols.py:161
#: python/midicontrols.py:1226 python/playergui.py:3679
#: python/sourceclientgui.py:2844
msgid "Stream"
msgstr ""

#. TC: {0}, {1} = Monitor Mix, Stream.
#. TC: Or whatever they become translated to.
#: python/jingles.py:467
msgid ""
"When you click this button the jingle or track selected in the catalogue "
"will be looped continuously and will be audible during moments when the main "
"media players are not active. The '{0}' feature needs to be set to '{1}' if "
"you want to be able to hear it."
msgstr ""

#. TC: For context {0} and {1} refer to Monitor Mix and Stream.
#. TC: They are extracted to force consistency.
#: python/jingles.py:483
msgid ""
"This adjusts the volume level of the music that plays whenever the other "
"media players are not active. It is only audible to the DJ when '{0}' in the "
"main application window is set to '{1}'."
msgstr ""

#. TC: {0}, {1} = Add To Jingles, Item.
#. TC: Or whatever they get translated to.
#. TC: Menu Item. The selected track is copied to the jingles catalogue.
#: python/jingles.py:525 python/playergui.py:3830
msgid "Add To Jingles"
msgstr ""

#. TC: The Item submenu.
#: python/jingles.py:525 python/playergui.py:3711
msgid "Item"
msgstr ""

#. TC: {0}, {1} = Add To Jingles, Item.
#. TC: Or whatever they get translated to.
#: python/jingles.py:525
msgid ""
"The jingles catalogue.\n"
"\n"
"From a main media player tracks can be exported here by right clicking on "
"the playlist entry and selecting {0} from the {1} submenu.\n"
"\n"
"The jingles catalogue can also be managed by modifying the contents of the "
"'{2}' directory directly."
msgstr ""

#: python/jingles.py:534
msgid "Sequence"
msgstr ""

#: python/jingles.py:544
msgid ""
"Select multiple jingles to play in sequence by entering the corresponding "
"index number as part of a comma separated list, or double click entries in "
"the catalogue to append them."
msgstr ""

#: python/jingles.py:555
#, python-format
msgid ""
"Cause the jingles catalogue to be refreshed. This is for when items have "
"been added or removed from the jingles directory located at '%s'."
msgstr ""

#: python/maingui.py:264
msgid "Text"
msgstr ""

#: python/maingui.py:267
msgid "The opener button's text."
msgstr ""

#: python/maingui.py:275
msgid "Icon"
msgstr ""

#: python/maingui.py:283
msgid "The opener button's icon."
msgstr ""

#: python/maingui.py:291
msgid ""
"The headroom is the amount by which to reduce player volume when this opener "
"is active. Note that the actual amount will be the largest value of all the "
"currently open buttons."
msgstr ""

#: python/maingui.py:293
msgid "The amount of headroom required (dB)"
msgstr ""

#: python/maingui.py:300
msgid "This button will flash as a reminder to close"
msgstr ""

#: python/maingui.py:301
msgid ""
"After a number of seconds where a main player is active this button's status "
"indicator will start to flash and will continue to do so until the button is "
"closed or the player stops."
msgstr ""

#: python/maingui.py:304
msgid "This button is to be treated as a microphone opener"
msgstr ""

#: python/maingui.py:305
msgid ""
"The button will be grouped with the other microphone opener buttons. It will "
"be affected by signals to close microphone buttons. Channels associated with "
"this button will be mixed differently when using the VoIP modes."
msgstr ""

#: python/maingui.py:309
msgid "Button Open Triggers"
msgstr ""

#: python/maingui.py:315
msgid "Playlist advance button"
msgstr ""

#: python/maingui.py:316 python/maingui.py:317
#, python-format
msgid "'%s' control"
msgstr ""

#. TC: Insert playlist control to stop the player.
#: python/maingui.py:316 python/playergui.py:3733
msgid "Player Stop"
msgstr ""

#. TC: Insert playlist control to stop the player.
#: python/maingui.py:317 python/playergui.py:3739
msgid "Player Stop 2"
msgstr ""

#: python/maingui.py:318
msgid "Announcements"
msgstr ""

#: python/maingui.py:330
#, python-format
msgid " %s "
msgstr ""

#: python/maingui.py:341
msgid "Shell Command"
msgstr ""

#: python/maingui.py:342
msgid ""
"Mostly useful issuing 'amixer' commands, in particular for setting capture."
msgstr ""

#: python/maingui.py:361
msgid "On open"
msgstr ""

#: python/maingui.py:362
msgid "On close"
msgstr ""

#: python/maingui.py:404
msgid "Main Panel Opener Buttons"
msgstr ""

#: python/maingui.py:415
msgid "Indicate button numbers and associated channel numbers"
msgstr ""

#: python/maingui.py:416
msgid "A useful feature to have switched on while allocating channel openers."
msgstr ""

#: python/maingui.py:420
msgid "Status Indicator Appearance"
msgstr ""

#: python/maingui.py:421
msgid ""
"Each opener button has two vertical bars at the side to make the button "
"state more apparent. These settings control their appearance."
msgstr ""

#: python/maingui.py:428
msgid "Width"
msgstr ""

#: python/maingui.py:434
msgid "Opened"
msgstr ""

#: python/maingui.py:438 python/preferences.py:340 python/preferences.py:341
msgid "Closed"
msgstr ""

#: python/maingui.py:443
msgid "Remind"
msgstr ""

#. TC: A textual placeholder for microphone opener buttons.
#. TC: If the user is reading this text then all microphones have been deactivated.
#: python/maingui.py:616
msgid "No Channel Opener Buttons"
msgstr ""

#: python/maingui.py:966
msgid ""
"This indicates the state of the various streams. Flashing means stream "
"packets are being discarded because of network congestion. Partial red means "
"the send buffer is partially full indicating difficulty communicating with "
"the server. Green means everything is okay."
msgstr ""

#: python/maingui.py:984
msgid "The combined total number of listeners in all server tabs."
msgstr ""

#. TC: Record as in, to make a recording.
#: python/maingui.py:1362 python/sourceclientgui.py:2839
msgid "Record"
msgstr ""

#: python/maingui.py:1969
msgid "Confirmation to quit IDJC is required."
msgstr ""

#: python/maingui.py:1972
msgid "All active recordings and radio streams will terminate."
msgstr ""

#: python/maingui.py:1974
msgid "All of the active radio streams will terminate."
msgstr ""

#: python/maingui.py:1976
msgid "All active recordings will cease."
msgstr ""

#. TC: Popup menu item, wipes away the tracks played history text.
#: python/maingui.py:2291 python/maingui.py:2716
msgid "Remove Contents"
msgstr ""

#: python/maingui.py:2400
msgid "The mixer module crashed during initialisation."
msgstr ""

#: python/maingui.py:2401 python/maingui.py:2414
msgid "IDJC Launch Failed"
msgstr ""

#: python/maingui.py:2413
msgid ""
"The JACK sound server needs to be running in order to run IDJC.\n"
"In order to manually start it try something like:\n"
"\n"
"        $ jackd -d alsa -r 44100 -p 2048\n"
"\n"
"If you would like JACK to start automatically with your user specified "
"parameters try something like this, which will create a file called .jackdrc "
"in your home directory:\n"
"\n"
"        $ echo \"/usr/bin/jackd -d alsa -r 44100\" > ~/.jackdrc\n"
"\n"
"If you have already done this it is possible another application or non-JACK "
"sound server is using the sound card.\n"
"\n"
"Possible remedies would be to close the other audio app or configure the "
"sound server to go into suspend mode after a brief amount of idle time.\n"
"\n"
"If you are trying to connect to a named jack server, either set the "
"environment variable JACK_DEFAULT_SERVER to that name or launch IDJC with "
"the -j jackservername option. For example:\n"
"\n"
"         $ jackd -n xyzzy -d alsa -r 44100 -p 2048 &\n"
"         $ idjc -p profilename -j xyzzy\n"
"\n"
"If you are trying to open multiple instances of IDJC use the -e command line "
"switch."
msgstr ""

#: python/maingui.py:2498
msgid "Open various application windows."
msgstr ""

#. TC: binding editor, action pane, first row, toplevel menu.
#: python/maingui.py:2511 python/midicontrols.py:1212
msgid "Preferences"
msgstr ""

#: python/maingui.py:2511
msgid "Output"
msgstr ""

#: python/maingui.py:2512
msgid "Jingles"
msgstr ""

#: python/maingui.py:2512
msgid "Profiles"
msgstr ""

#: python/maingui.py:2548
msgid "Mix voice over IP audio to the output stream."
msgstr ""

#: python/maingui.py:2560
msgid "Mix voice over IP audio to the DJ only."
msgstr ""

#: python/maingui.py:2588
msgid ""
"This button steps through the active playlist, pausing between tracks. The "
"active playlist is defined by the placement of the crossfader."
msgstr ""

#: python/maingui.py:2634 python/preferences.py:819
msgid "The volume control shared by both music players."
msgstr ""

#: python/maingui.py:2644
msgid "The volume control for the right music player."
msgstr ""

#: python/maingui.py:2663
msgid "The stream volume level to send to the voice over IP connection."
msgstr ""

#: python/maingui.py:2689 python/preferences.py:1362
msgid "Tracks Played"
msgstr ""

#. TC: IDJC creates two audio mixes with DJ being the name of one of them.
#. TC: The DJ mix is strictly for the DJ and allows for off air VoIP chat and pre-listening.
#: python/maingui.py:2772 python/maingui.py:2789 python/playergui.py:3686
msgid "DJ"
msgstr ""

#. TC: Context {0}, {1}, {2} = Monitor Mix, Stream, DJ
#. TC: Or whatever they become translated to.
#: python/maingui.py:2789
msgid ""
"In IDJC there are are two audio paths and this '{0}' control toggles between "
"them. When '{1}' is active you can hear what the listeners are hearing "
"including the effects of the crossfader. '{0}' needs to be set to '{2}' in "
"order to make proper use of the VoIP features."
msgstr ""

#. TC: Dropdown box title text. Track metadata is derived from the source selected by a drop down box.
#: python/maingui.py:2798 python/maingui.py:2800
msgid "Metadata Source"
msgstr ""

#. TC: The chosen source of track metadata.
#: python/maingui.py:2806
msgid "Left Player"
msgstr ""

#. TC: The chosen source of track metadata.
#: python/maingui.py:2808
msgid "Right Player"
msgstr ""

#. TC: The chosen source of track metadata.
#: python/maingui.py:2810
msgid "Last Played"
msgstr ""

#. TC: The chosen source of track metadata.
#: python/maingui.py:2812 python/maingui.py:2845 python/maingui.py:2847
msgid "Crossfader"
msgstr ""

#. TC: The chosen source of track metadata. In this case no metadata.
#. TC: Fade time is zero. No fade, none.
#: python/maingui.py:2814 python/playergui.py:3662
msgid "None"
msgstr ""

#: python/maingui.py:2818
msgid "Select which Deck is responsible for the metadata on the stream."
msgstr ""

#. TC: Abbreviation of left.
#: python/maingui.py:2828 python/maingui.py:2830 python/preferences.py:373
msgid "L"
msgstr ""

#: python/maingui.py:2839
msgid "Move the crossfader fully left."
msgstr ""

#: python/maingui.py:2859
msgid "The crossfader."
msgstr ""

#. TC: Abbreviation of right.
#: python/maingui.py:2863 python/maingui.py:2865 python/preferences.py:383
msgid "R"
msgstr ""

#: python/maingui.py:2874
msgid "Move the crossfader fully right."
msgstr ""

#. TC: Describes a mid point.
#: python/maingui.py:2883 python/maingui.py:2885
msgid "Middle"
msgstr ""

#: python/maingui.py:2900 python/maingui.py:2905
msgid "Move the crossfader to the middle of its range of travel."
msgstr ""

#. TC: The attenuation response curve of the crossfader. User selectable.
#: python/maingui.py:2910 python/maingui.py:2912
msgid "Response"
msgstr ""

#: python/maingui.py:2931
msgid ""
"This selects the response curve of the crossfader.\n"
"\n"
"The mid-point attenuations are -3dB, 0dB, and -22dB respectively."
msgstr ""

#. TC: The time taken for a full sweep of the crossfader when the user hits the crossfader pass button.
#: python/maingui.py:2943 python/maingui.py:2945
msgid "Time"
msgstr ""

#: python/maingui.py:2962
msgid ""
"The time in seconds that the crossfader will take to automatically pass "
"across when the button to the right is clicked."
msgstr ""

#. TC: The crossfader pass-across button text. The actual button appears as [<-->] with this text above it.
#: python/maingui.py:2969 python/maingui.py:2971
msgid "Pass"
msgstr ""

#: python/maingui.py:2984
msgid ""
"This button causes the crossfader to move to the opposite side at a speed "
"determined by the speed selector to the left."
msgstr ""

#. TC: This text appears above the stream mix peak level meter.
#: python/maingui.py:3024
msgid "Str Peak"
msgstr ""

#: python/maingui.py:3027
msgid "A peak hold meter indicating the signal strength of the stream audio."
msgstr ""

#: python/maingui.py:3033
msgid "Streams"
msgstr ""

#. TC: This text appears above the stream mix VU meter.
#: python/maingui.py:3046
msgid "Str VU"
msgstr ""

#: python/maingui.py:3049
msgid "A VU meter for the stream audio."
msgstr ""

#. TC: Appears above the mic meters as a label followed by a number.
#: python/maingui.py:3052
msgid "Ch"
msgstr ""

#: python/maingui.py:3078
msgid ""
"A peak hold meter indicating the microphone signal strength and a meter "
"indicating attenuation levels in the microphone signal processing system. "
"Green indicates attenuation from the noise gate, yellow from the de-esser, "
"red from the limiter."
msgstr ""

#. TC: Menu item to show the standard application "About" feature.
#: python/maingui.py:3089 python/preferences.py:1604
msgid "About"
msgstr ""

#. TC: The View submenu text, allows certain user interface features to be shown/hidden from view.
#: python/maingui.py:3097
msgid "View"
msgstr ""

#. TC: Menu item to Quit the program.
#: python/maingui.py:3107
msgid "Quit"
msgstr ""

#. TC: Menu text for toggling the visibility of information display widgets pertaining to this set of items.
#. TC: Part of the View submenu.
#: python/maingui.py:3122
msgid "Stream audio levels, connections, and listener figures"
msgstr ""

#. TC: Menu text for toggling the visibility of the audio levels of the microphones.
#. TC: Part of the View submenu.
#: python/maingui.py:3130 python/preferences.py:1426
msgid "Channels"
msgstr ""

#. TC: Menu item that allows toggling in and out of fully featured mode.
#: python/maingui.py:3138 python/preferences.py:912
msgid "Fully Featured"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:47
msgid "Prefs enable tooltips"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:50
msgid "Player play/pause"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#. TC: Playlist control.
#: python/midicontrols.py:52 python/playergui.py:3224
msgid "Player stop"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:54
msgid "Player advance"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:56
msgid "Player play previous"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:58
msgid "Player play next"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:60
msgid "Player play selected from start"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:62
msgid "Player select previous"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:64
msgid "Player select next"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:66
msgid "Player stream output enable"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:68
msgid "Player DJ output enable"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:70
msgid "Player DJ-only switch"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:72
msgid "Player set volume"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:74
msgid "Player set gain"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:76
msgid "Player set balance"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:78
msgid "Player set pitchbend"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:81
msgid "Playlist edit tags"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:83
msgid "Playlist insert stop"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:85
msgid "Playlist insert stop 2"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:87
msgid "Playlist insert announce"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:89
msgid "Playlist insert transfer"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:91
msgid "Playlist insert crossfade"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:93
msgid "Playlist insert pitchunbend"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:95
msgid "Playlist insert jump to top"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:98
msgid "Players set crossfade"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:100
msgid "Players pass crossfade"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:102
msgid "Players set focus"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:104
msgid "Players show pitchbend"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:107
msgid "Channel output enable"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:109
msgid "Channel set volume"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:111
msgid "Channel set gain"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:113
msgid "Channel set balance"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:116
msgid "VoIP output enable"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:118
msgid "VoIP DJ-only switch"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:120
msgid "VoIP set volume"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:122
msgid "VoIP set gain"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:124
msgid "VoIP set balance"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:127
msgid "Jingle play from start"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:130
msgid "Jingles play/stop 1"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:132
msgid "Jingles play/stop 2"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:134
msgid "Jingles select previous"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:136
msgid "Jingles select next"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:138
msgid "Jingles play selected from start"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:140
msgid "Jingles set jingles volume 1"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:142
msgid "Jingles set jingles volume 2"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:144
msgid "Jingles set interlude volume"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:147
msgid "Stream set connected"
msgstr ""

#. TC: Control method. Please keep it as Target:Action. Please keep the targets consistent. Also,  Player != Players
#: python/midicontrols.py:150
msgid "Recorder set recording"
msgstr ""

#. TC: This text is followed by a number in a spinbutton and represents a specific user interface target.
#. TC: binding editor, action pane, first row, toplevel menu.
#: python/midicontrols.py:155 python/midicontrols.py:1214
msgid "Player"
msgstr ""

#. TC: This text is followed by a number in a spinbutton and represents a specific user interface target.
#. TC: binding editor, action pane, first row, toplevel menu.
#. TC: The midi channel.
#. TC: Specifically, the numerical midi channel.
#: python/midicontrols.py:157 python/midicontrols.py:1218
#: python/midicontrols.py:1285 python/midicontrols.py:1470
msgid "Channel"
msgstr ""

#. TC: This text is followed by a number in a spinbutton and represents a specific user interface target.
#: python/midicontrols.py:159
msgid "Jingle"
msgstr ""

#. TC: This text is followed by a number in a spinbutton and represents a specific user interface target.
#: python/midicontrols.py:163
msgid "Recorder"
msgstr ""

#. TC: This text represents a specific user interface target.
#: python/midicontrols.py:168
msgid "Left player"
msgstr ""

#. TC: This text represents a specific user interface target.
#: python/midicontrols.py:170
msgid "Right player"
msgstr ""

#. TC: This text represents a specific user interface target.
#: python/midicontrols.py:172
msgid "Focused player"
msgstr ""

#. TC: This text represents a specific user interface target.
#: python/midicontrols.py:174
msgid "Fadered player"
msgstr ""

#. TC: The name of the backspace key.
#: python/midicontrols.py:403
msgid "BackSpace"
msgstr ""

#. TC: binding editor, action pane, third row, heading text.
#: python/midicontrols.py:1190
msgid "Use value"
msgstr ""

#. TC: binding editor, action pane, third row, heading text.
#: python/midicontrols.py:1192
msgid "Act if"
msgstr ""

#. TC: binding editor, action pane, third row, heading text.
#: python/midicontrols.py:1194
msgid "Set to"
msgstr ""

#. TC: binding editor, action pane, third row, heading text.
#: python/midicontrols.py:1196
msgid "Adjust by"
msgstr ""

#. TC: binding editor, input pane, fourth row, heading text.
#: python/midicontrols.py:1201 python/midicontrols.py:1205
msgid "Control"
msgstr ""

#. TC: binding editor, input pane, fourth row, heading text.
#: python/midicontrols.py:1203
msgid "Note"
msgstr ""

#. TC: binding editor, input pane, fourth row, heading text.
#: python/midicontrols.py:1207
msgid "Key"
msgstr ""

#. TC: binding editor, action pane, first row, toplevel menu.
#: python/midicontrols.py:1216
msgid "Both players"
msgstr ""

#. TC: binding editor, action pane, first row, toplevel menu.
#: python/midicontrols.py:1220
msgid "VoIP channel"
msgstr ""

#. TC: binding editor, action pane, first row, toplevel menu.
#: python/midicontrols.py:1222
msgid "Single jingle"
msgstr ""

#. TC: binding editor, action pane, first row, toplevel menu.
#: python/midicontrols.py:1224
msgid "Jingle player"
msgstr ""

#. TC: binding editor, action pane, first row, toplevel menu.
#: python/midicontrols.py:1228
msgid "Stream recorder"
msgstr ""

#. TC: binding editor, action pane, second row, dropdown text.
#: python/midicontrols.py:1233
msgid "Direct fader/held button"
msgstr ""

#. TC: binding editor, action pane, second row, dropdown text.
#: python/midicontrols.py:1235
msgid "One-shot/toggle button"
msgstr ""

#. TC: binding editor, action pane, second row, dropdown text.
#: python/midicontrols.py:1237
msgid "Set value"
msgstr ""

#. TC: binding editor, action pane, second row, dropdown text.
#: python/midicontrols.py:1239
msgid "Alter value"
msgstr ""

#. TC: binding editor, input pane, second row, dropdown text.
#: python/midicontrols.py:1244
msgid "MIDI control"
msgstr ""

#. TC: binding editor, input pane, second row, dropdown text.
#: python/midicontrols.py:1246
msgid "MIDI note"
msgstr ""

#. TC: binding editor, input pane, second row, dropdown text.
#: python/midicontrols.py:1248
msgid "MIDI pitch-wheel"
msgstr ""

#. TC: binding editor, input pane, second row, dropdown text.
#: python/midicontrols.py:1250
msgid "Keyboard press"
msgstr ""

#. TC: binding editor, input pane, second row, dropdown text. Not implemented.
#: python/midicontrols.py:1252
msgid "XChat command"
msgstr ""

#. TC: Dialog window title text.
#. TC: User is expected to edit a control binding.
#: python/midicontrols.py:1261
msgid "Edit control binding"
msgstr ""

#. TC: After clicking this button the binding editor will be listening for an input
#. TC: this could be a key press or a settings change from a midi control surface.
#. TC: Button text. If pressed triggers 'Listening for input' mode.
#: python/midicontrols.py:1275 python/midicontrols.py:1350
#: python/midicontrols.py:1449
msgid "Listen for input..."
msgstr ""

#. TC: Refers to the class of control input, the keyboard or some type of midi event.
#: python/midicontrols.py:1282
msgid "Source"
msgstr ""

#. TC: Heading for interaction type e.g. one-shot, set value, alter value.
#. TC: Basically, the information from the controls can be used in different ways.
#: python/midicontrols.py:1302
msgid "Interaction"
msgstr ""

#. TC: The effect of the control can be directed upon a specific target.
#. TC: e.g. On target [Left player]
#: python/midicontrols.py:1308
msgid "On target"
msgstr ""

#. TC: Checkbutton text.
#. TC: Use reverse scale and invert the meaning of button presses.
#: python/midicontrols.py:1316
msgid "Reversed"
msgstr ""

#: python/midicontrols.py:1317
msgid "Pressed"
msgstr ""

#: python/midicontrols.py:1318
msgid "Released"
msgstr ""

#. TC: Frame heading. Contents pertain to a specific input source and type.
#. TC: Tree column heading for Inputs e.g. Backspace, F1, S.
#: python/midicontrols.py:1346 python/midicontrols.py:1692
msgid "Input"
msgstr ""

#: python/midicontrols.py:1350
#, python-format
msgid ""
"The first half of a binding is the input which comes in the form of the "
"press of a keyboard key or an event from a midi device.\n"
"\n"
"Input selection can be done manually or with the help of the '%s' option."
msgstr ""

#. TC: Frame heading. Contents pertain to what action occurs for a specific input.
#. TC: %s is the translation of 'Action'.
#. TC: Tree column heading for actions e.g. Player stop.
#: python/midicontrols.py:1382 python/midicontrols.py:1387
#: python/midicontrols.py:1706
msgid "Action"
msgstr ""

#. TC: %s is the translation of 'Action'.
#: python/midicontrols.py:1387
#, python-format
msgid "The '%s' pane determines how the input is handled, and to what effect."
msgstr ""

#. TC: The binding editor will capture then next keyboard or midi event
#. TC: for use in making the settings in the 'Input' pane.
#: python/midicontrols.py:1445
msgid "Listening for input"
msgstr ""

#. TC: Refers to key modifiers including Ctrl, Alt, Shift, ....
#: python/midicontrols.py:1466
msgid "Shifting"
msgstr ""

#. TC: Spinbutton text when there is only one user interface control that can be referenced.
#: python/midicontrols.py:1653
msgid "Singular control"
msgstr ""

#. TC: Tree column heading for targets e.g. Channel 1, Stream 2
#: python/midicontrols.py:1714
msgid "Target"
msgstr ""

#. TC: User to create a new input binding.
#: python/midicontrols.py:1737
msgid "New"
msgstr ""

#. TC: User to remove an input binding.
#. TC: Menu Item. Remove the selected track.
#: python/midicontrols.py:1739 python/playergui.py:3825
msgid "Remove"
msgstr ""

#. TC: User to modify an existing input binding.
#: python/midicontrols.py:1741
msgid "Edit"
msgstr ""

#: python/mutagentagger.py:218
msgid "title"
msgstr ""

#: python/mutagentagger.py:218
msgid "artist"
msgstr ""

#: python/mutagentagger.py:219
msgid "album"
msgstr ""

#: python/mutagentagger.py:219
msgid "track/total"
msgstr ""

#: python/mutagentagger.py:220
msgid "genre"
msgstr ""

#: python/mutagentagger.py:220
msgid "record date"
msgstr ""

#: python/mutagentagger.py:358
msgid ""
"Add any other ID3 text frames here.\n"
"e.g. TIT2:Alternate Title\n"
"This will be appended onto the main TIT2 tag.\n"
"\n"
"Enter user defined text frames like this:\n"
"TXXX:foo=bar\n"
"\n"
"For more information visit www.id3.org."
msgstr ""

#. TC: Remaining textual ID3 data is show below this heading.
#: python/mutagentagger.py:361
msgid " Additional Text Frames "
msgstr ""

#. TC: The album track number.
#. TC: Cuesheet term.
#: python/mutagentagger.py:371 python/p3db.py:372 python/p3db.py:454
#: python/playergui.py:200
msgid "Track"
msgstr ""

#: python/mutagentagger.py:372
msgid "Genre"
msgstr ""

#: python/mutagentagger.py:372
msgid "Year"
msgstr ""

#. TC: Window title.
#: python/mutagentagger.py:680
msgid "IDJC Tagger"
msgstr ""

#: python/mutagentagger.py:692 python/mutagentagger.py:694
#: python/mutagentagger.py:696
msgid "Filename:"
msgstr ""

#: python/mutagentagger.py:760
msgid "Native"
msgstr ""

#. TC: Placeholder for unknown data.
#: python/p3db.py:162
msgid "<unknown>"
msgstr ""

#: python/p3db.py:343
msgid "_Expand"
msgstr ""

#: python/p3db.py:349
msgid "_Collapse"
msgstr ""

#. TC: Refers to the tree view of the tracks database.
#: python/p3db.py:358
msgid "Tree"
msgstr ""

#. TC: Track playback time.
#. TC: Playback time.
#: python/p3db.py:374 python/p3db.py:456 python/playergui.py:241
msgid "Duration"
msgstr ""

#: python/p3db.py:375 python/p3db.py:457 python/sourceclientgui.py:1755
msgid "Bitrate"
msgstr ""

#: python/p3db.py:376 python/p3db.py:458
msgid "Filename"
msgstr ""

#. TC: Directory path to a file.
#: python/p3db.py:378 python/p3db.py:459
msgid "Path"
msgstr ""

#. TC: Shown with a progress bar as the database tree view is being built.
#: python/p3db.py:389
msgid "Populating"
msgstr ""

#. TC: The user enters search filter text here e.g. fuzzy match text or a more formal SQL search filtering term.
#: python/p3db.py:400
msgid "Filters"
msgstr ""

#. TC: A fuzzy search e.g. 'Metal' searches for metal in artists titles, and albums.
#: python/p3db.py:415
msgid "Fuzzy Search"
msgstr ""

#. TC: User may type in an SQL query as is applicable after the WHERE keyword.
#: python/p3db.py:427
msgid "WHERE"
msgstr ""

#: python/p3db.py:442
msgid "Flat"
msgstr ""

#. TC: P3 refers to Prokyon3, a program which scans and records music collections.
#: python/p3db.py:478
#, python-format
msgid "P3 Database View (%s)"
msgstr ""

#: python/p3db.py:532
msgid "Prokyon3 (song title) Database"
msgstr ""

#. TC: shown when the dependency is missing.
#: python/p3db.py:551
msgid "Python module MySQLdb required"
msgstr ""

#: python/p3db.py:568
msgid "User"
msgstr ""

#: python/p3db.py:575
msgid "Database"
msgstr ""

#. TC: Button text, cause connection to the selected database.
#: python/p3db.py:591
msgid "Database Connect"
msgstr ""

#: python/playergui.py:156
msgid "Cuesheet Playlist"
msgstr ""

#. TC: Cuesheet term.
#: python/playergui.py:202
msgid "Index"
msgstr ""

#. TC: Column heading, whether to play.
#: python/playergui.py:228
msgid "Play"
msgstr ""

#. TC: Column heading, the track number.
#: python/playergui.py:231
msgid "Trk"
msgstr ""

#. TC: Column heading, the index number.
#: python/playergui.py:234
msgid "Ind"
msgstr ""

#: python/playergui.py:312
msgid "External Playlist"
msgstr ""

#. TC: Button text to activate an external playlist.
#: python/playergui.py:323
msgid "Active"
msgstr ""

#: python/playergui.py:333
msgid "Choose a playlist file"
msgstr ""

#: python/playergui.py:335
msgid "Choose a media directory"
msgstr ""

#: python/playergui.py:344
msgid "Choose a playlist file."
msgstr ""

#: python/playergui.py:346
msgid "Choose a folder/directory of music."
msgstr ""

#: python/playergui.py:408
msgid "Create a new announcement"
msgstr ""

#: python/playergui.py:410
msgid "Modify or Delete this announcement"
msgstr ""

#. TC: Playlist control.
#. TC: Embed a DJ announcement text into the playlist.
#: python/playergui.py:412 python/playergui.py:3212 python/playergui.py:3763
msgid "Announcement"
msgstr ""

#. TC: The time format as minutes and seconds.
#: python/playergui.py:438
msgid "mm:ss"
msgstr ""

#. TC: Alongside the name of the next track.
#: python/playergui.py:491
msgid "Next track"
msgstr ""

#: python/playergui.py:766
msgid "By Extension"
msgstr ""

#: python/playergui.py:766
msgid "M3U playlist"
msgstr ""

#: python/playergui.py:766
msgid "XSPF playlist"
msgstr ""

#: python/playergui.py:766
msgid "PLS playlist"
msgstr ""

#. TC: Missing metadata text.
#: python/playergui.py:840
msgid "Unknown"
msgstr ""

#. TC: Cuesheet data element as shown in the playlist.
#: python/playergui.py:843
msgid "(Cue sheet)"
msgstr ""

#. TC: Playlist text meaning the metadata tag is missing or incomplete.
#: python/playergui.py:878
msgid "Bad Tag"
msgstr ""

#: python/playergui.py:1521 python/playergui.py:3642
msgid "Manual"
msgstr ""

#: python/playergui.py:1525 python/playergui.py:3639
msgid "Play All"
msgstr ""

#: python/playergui.py:1533 python/playergui.py:1541 python/playergui.py:3640
msgid "Loop All"
msgstr ""

#: python/playergui.py:1533 python/playergui.py:3643
msgid "Cue Up"
msgstr ""

#: python/playergui.py:1533 python/playergui.py:1851 python/playergui.py:3646
msgid "Fade Over"
msgstr ""

#: python/playergui.py:1545 python/playergui.py:1612 python/playergui.py:3641
msgid "Random"
msgstr ""

#: python/playergui.py:1581 python/playergui.py:3644
msgid "External"
msgstr ""

#: python/playergui.py:1593 python/playergui.py:1609 python/playergui.py:3645
msgid "Alternate"
msgstr ""

#: python/playergui.py:1593 python/playergui.py:1611 python/playergui.py:3647
msgid "Random Hop"
msgstr ""

#. TC: The remaining playlist time.
#: python/playergui.py:1749 python/playergui.py:1753
msgid "Remaining"
msgstr ""

#. TC: The estimated finish time of the playlist.
#: python/playergui.py:1751 python/playergui.py:1753 python/playergui.py:1764
msgid "Finish"
msgstr ""

#. TC: The remaining play time of the block of audio tracks from the highlighted track onwards until the next interruption.
#: python/playergui.py:1753 python/playergui.py:1764
msgid "Block size"
msgstr ""

#. TC: File dialog title text.
#: python/playergui.py:2058
msgid "Add music to left playlist"
msgstr ""

#. TC: File dialog title text.
#: python/playergui.py:2061
msgid "Add music to right playlist"
msgstr ""

#. TC: File filter text.
#: python/playergui.py:2070
msgid "Supported Media Formats"
msgstr ""

#. TC: Expander text which appears as "Select File Type (.pls)" for the pls file type.
#: python/playergui.py:2113
msgid "Select File Type"
msgstr ""

#: python/playergui.py:2813
msgid "Save left playlist"
msgstr ""

#: python/playergui.py:2815
msgid "Save right playlist"
msgstr ""

#: python/playergui.py:2832
msgid "File Type"
msgstr ""

#. TC: File extension.
#: python/playergui.py:2836
msgid "Extension"
msgstr ""

#. TC: Playlist control.
#. TC: Insert playlist control to do a ten second fade to the next track.
#: python/playergui.py:3194 python/playergui.py:3773
msgid "Fade 10s"
msgstr ""

#. TC: Playlist control.
#. TC: Insert playlist control to do a five second fade to the next track.
#: python/playergui.py:3200 python/playergui.py:3779
msgid "Fade 5s"
msgstr ""

#. TC: Playlist control.
#. TC: Insert playlist control to not do a fade to the next track.
#: python/playergui.py:3206 python/playergui.py:3785
msgid "No Fade"
msgstr ""

#. TC: Playlist control.
#: python/playergui.py:3218
msgid ">> Normal Speed <<"
msgstr ""

#. TC: Playlist control.
#: python/playergui.py:3230
msgid "Player stop 2"
msgstr ""

#. TC: Playlist control.
#. TC: Insert playlist control to jump to the top of the playlist.
#: python/playergui.py:3236 python/playergui.py:3745
msgid "Jump To Top"
msgstr ""

#. TC: Playlist control.
#. TC: Insert playlist control to stop all the streams.
#: python/playergui.py:3242 python/playergui.py:3795
msgid "Stop streaming"
msgstr ""

#. TC: Playlist control.
#. TC: Insert playlist control to stop all recording.
#: python/playergui.py:3248 python/playergui.py:3801
msgid "Stop recording"
msgstr ""

#. TC: Playlist control.
#: python/playergui.py:3255
msgid ">>> Transfer across >>>"
msgstr ""

#. TC: Playlist control.
#: python/playergui.py:3258
msgid "<<< Transfer across <<<"
msgstr ""

#. TC: Playlist control.
#: python/playergui.py:3265
msgid ">>> Fade across >>>"
msgstr ""

#. TC: Playlist control.
#: python/playergui.py:3268
msgid "<<< Fade across <<<"
msgstr ""

#. TC: Playlist control.
#: python/playergui.py:3274
msgid "Ignored playlist control"
msgstr ""

#: python/playergui.py:3336
msgid "Playing track {0} of {1}"
msgstr ""

#. TC: Previous line: Playing track {0} of {1}
#: python/playergui.py:3348
#, python-format
msgid "From the album, %s"
msgstr ""

#: python/playergui.py:3355
#, python-format
msgid "Total number of tracks %d"
msgstr ""

#: python/playergui.py:3359 python/playergui.py:3361
#, python-format
msgid "Total play duration %s"
msgstr ""

#: python/playergui.py:3402
msgid ""
"Left click toggles between showing the amount of time elapsed or remaining "
"on the current track being played."
msgstr ""

#: python/playergui.py:3416
msgid ""
"This slider acts as both a play progress indicator and as a means for "
"seeking within the currently playing track."
msgstr ""

#: python/playergui.py:3423
msgid "Playlist 1"
msgstr ""

#: python/playergui.py:3425
msgid "Playlist 2"
msgstr ""

#. TC: File filter text.
#: python/playergui.py:3500
msgid "All file types"
msgstr ""

#. TC: File filter text.
#: python/playergui.py:3504
msgid "Playlist types (*.m3u, *.xspf, *.pls)"
msgstr ""

#: python/playergui.py:3509
msgid "Supported media"
msgstr ""

#: python/playergui.py:3519
msgid ""
"'Block size' indicates the amount of time that it will take to play from the "
"currently selected track to the next stop.\n"
"'Remaining' is the amount of time until the next stop.\n"
"'Finish' Is the computed time when the tracks will have finished playing."
msgstr ""

#: python/playergui.py:3539
msgid "This adjusts the playback speed anywhere from 25% to 400%."
msgstr ""

#: python/playergui.py:3551
msgid "This sets the playback speed back to normal."
msgstr ""

#: python/playergui.py:3572
msgid "Previous track."
msgstr ""

#: python/playergui.py:3584
msgid "Play."
msgstr ""

#: python/playergui.py:3594
msgid "Pause."
msgstr ""

#: python/playergui.py:3604
msgid "Stop."
msgstr ""

#: python/playergui.py:3614
msgid "Next track."
msgstr ""

#: python/playergui.py:3626
msgid "Add tracks to the playlist."
msgstr ""

#: python/playergui.py:3633 python/preferences.py:71
msgid "Playlist Mode"
msgstr ""

#: python/playergui.py:3650
msgid ""
"This sets the playlist mode which defines player behaviour after a track has "
"finished playing.\n"
"\n"
"'Play All' is the most versatile mode since it allows the use of embeddable "
"playlist control elements which are accessible using the right click context "
"menu in the playlist. When no playlist controls are present the tracks are "
"played sequentially until the end of the playlist is reached at which point "
"the player will stop.\n"
"\n"
"'Loop All' causes the tracks to be played in sequence, restarting with the "
"first track once the end of the playlist is reached.\n"
"\n"
"'Random' causes the tracks to be played indefinitely with the tracks "
"selected at random.\n"
"\n"
"'Manual' causes the player to stop at the end of each track.\n"
"\n"
"'Cue Up' is similar to manual except that the next track in the playlist "
"will also be highlighted.\n"
"\n"
"'External' draws it's tracks from an external playlist or directory one at a "
"time. Useful for when you want to stream massive playlists.\n"
"\n"
"'Alternate' causes the next track to be cued up before starting the opposite "
"player. The crossfader is moved over.\n"
"\n"
"'Fade Over' will crossfade to the other player at the end of every track.\n"
"\n"
"'Random Hop' will pick a track at random from the other playlist."
msgstr ""

#. TC: Fade time heading.
#: python/playergui.py:3656 python/preferences.py:72
msgid "Fade"
msgstr ""

#: python/playergui.py:3667
msgid "This controls the amount of fade between tracks."
msgstr ""

#. TC: The audio feed (mix) that the DJ listens to, could be DJ mix or Stream mix.
#: python/playergui.py:3675
msgid "Audio Feed"
msgstr ""

#: python/playergui.py:3684
msgid "Make output from this player available for streaming."
msgstr ""

#: python/playergui.py:3691
msgid "Make output from this player audible to the DJ."
msgstr ""

#. TC: Insert playlist control.
#: python/playergui.py:3702
msgid "Insert control"
msgstr ""

#. TC: The Playlist submenu.
#: python/playergui.py:3716
msgid "Playlist"
msgstr ""

#. TC: Insert playlist control to set playback speed to normal.
#: python/playergui.py:3727
msgid "Normal Speed"
msgstr ""

#. TC: Insert playlist control to transfer to the opposite player.
#. TC: Submenu Item. Parent menu is Playlist.
#: python/playergui.py:3751 python/playergui.py:3893
msgid "Transfer"
msgstr ""

#. TC: Insert playlist control to crossfade to the opposite player.
#: python/playergui.py:3757
msgid "Crossfade"
msgstr ""

#. TC: Menu item. Opens the metadata tagger on the selected track.
#: python/playergui.py:3813
msgid "Meta Tag"
msgstr ""

#. TC: Menu Item. Duplicates the selected track in the playlist.
#: python/playergui.py:3819
msgid "Duplicate"
msgstr ""

#. TC: Submenu Item. Parent menu item is Remove.
#: python/playergui.py:3842
msgid "This"
msgstr ""

#. TC: Submenu Item. Parent menu item is Remove.
#: python/playergui.py:3848
msgid "All"
msgstr ""

#. TC: Submenu Item. Parent menu item is Remove.
#: python/playergui.py:3854
msgid "From Here"
msgstr ""

#. TC: Submenu Item. Parent menu item is Remove.
#: python/playergui.py:3860
msgid "To Here"
msgstr ""

#. TC: Open the file dialog for adding music to the chosen playlist.
#: python/playergui.py:3872
msgid "Add Music"
msgstr ""

#. TC: Submenu Item. Parent menu is Playlist.
#. TC: save the current setting for the next time this session profile is run.
#: python/playergui.py:3878 python/preferences.py:533
msgid "Save"
msgstr ""

#. TC: Submenu Item. Parent menu is Playlist.
#: python/playergui.py:3888
msgid "Copy"
msgstr ""

#. TC: Submenu Item. Parent menu is Playlist.
#: python/playergui.py:3898
msgid "Exchange"
msgstr ""

#. TC: Submenu Item. Parent menu is Playlist.
#: python/playergui.py:3904
msgid "Empty"
msgstr ""

#. TC: Submenu Item. Parent menus are Playlist->Copy.
#. TC: Submenu Item. Parent menus are Playlist->Transfer.
#: python/playergui.py:3917 python/playergui.py:3952
msgid "Append"
msgstr ""

#. TC: Submenu Item. Parent menus are Playlist->Copy.
#. TC: Submenu Item. Parent menus are Playlist->Transfer.
#: python/playergui.py:3923 python/playergui.py:3958
msgid "Prepend"
msgstr ""

#. TC: Submenu Item. Parent menus are Playlist->Copy.
#: python/playergui.py:3933
msgid "Append Cursor"
msgstr ""

#. TC: Submenu Item. Parent menus are Playlist->Copy.
#: python/playergui.py:3939
msgid "Prepend Cursor"
msgstr ""

#. TC: Submenu Item. Parent menus are Playlist->Transfer.
#: python/playergui.py:3968
msgid "Append at Cursor"
msgstr ""

#. TC: Submenu Item. Parent menus are Playlist->Transfer.
#: python/playergui.py:3974
msgid "Prepend at Cursor"
msgstr ""

#: python/preferences.py:85
msgid "Track time elapsed"
msgstr ""

#: python/preferences.py:86
msgid "Track time remaining"
msgstr ""

#: python/preferences.py:88
msgid "Audio to stream"
msgstr ""

#: python/preferences.py:89
msgid "Audio to DJ"
msgstr ""

#. TC: Microphone mode combobox text.
#: python/preferences.py:124
msgid "Deactivated"
msgstr ""

#. TC: Microphone mode combobox text.
#: python/preferences.py:126
msgid "Basic input"
msgstr ""

#. TC: Microphone mode combobox text.
#: python/preferences.py:128
msgid "Processed input"
msgstr ""

#. TC: Microphone mode combobox text.
#: python/preferences.py:130
#, python-format
msgid "Partnered with channel %s"
msgstr ""

#: python/preferences.py:275
msgid "A label so you may describe briefly the role of this audio channel."
msgstr ""

#: python/preferences.py:305
msgid "The signal processing mode."
msgstr ""

#. TC: Indicator of the microphones open or unmuted status. Has alongside an LED indicator.
#: python/preferences.py:309
msgid "Channel Opener"
msgstr ""

#: python/preferences.py:312
msgid ""
"This controls the allocation of front panel open/unmute buttons. Having one "
"button control multiple microphones can save time."
msgstr ""

#. TC: The mic opener control can appear on the main panel. Alongside sits the button selector.
#: python/preferences.py:317
msgid "Main Panel Button"
msgstr ""

#: python/preferences.py:334
msgid "This:"
msgstr ""

#: python/preferences.py:341
msgid "Open"
msgstr ""

#: python/preferences.py:355
msgid ""
"Stereo panning is the selection of where an audio source sits from left to "
"right within the stereo mix.\n"
"\n"
"This control maintains constant audio power throughout its range of travel, "
"giving -3dB attenuation in both audio channels at the half way point.\n"
"\n"
"If you require 0dB straight down the middle then this feature should be "
"turned off."
msgstr ""

#: python/preferences.py:358
msgid "Stereo Panning"
msgstr ""

#. TC: A set of controls that the user canl use to match partnered microphone audio with the master.
#: python/preferences.py:400
msgid "Signal Matching"
msgstr ""

#: python/preferences.py:401
msgid ""
"These controls are provided to obtain a decent match between the two "
"microphones."
msgstr ""

#: python/preferences.py:409
msgid "Relative Gain (dB)"
msgstr ""

#. TC: Mic audio phase inversion control.
#: python/preferences.py:413 python/preferences.py:418
msgid "Invert Signal"
msgstr ""

#: python/preferences.py:418 python/preferences.py:434
#: python/preferences.py:509
msgid ""
"Useful for when microphones are cancelling one another out, producing a "
"hollow sound."
msgstr ""

#. TC: Control whether to mix microphone audio to the DJ mix.
#: python/preferences.py:420
msgid "In The DJ's Mix"
msgstr ""

#: python/preferences.py:420 python/preferences.py:439
#: python/preferences.py:516
msgid ""
"Make the microphone audio audible in the DJ mix. This may not always be "
"desirable."
msgstr ""

#: python/preferences.py:427
msgid "Basic Controls"
msgstr ""

#: python/preferences.py:428 python/preferences.py:472
msgid "Boost/Cut (dB)"
msgstr ""

#: python/preferences.py:446
msgid "High Pass Filter"
msgstr ""

#: python/preferences.py:447 python/preferences.py:458
#: python/preferences.py:466
msgid "Cutoff Frequency"
msgstr ""

#. TC: User can set the number of filter stages.
#: python/preferences.py:450
msgid "Stages"
msgstr ""

#: python/preferences.py:452
msgid ""
"Frequency in Hertz above which audio can pass to later stages. Use this "
"feature to restrict low frequency sounds such as mains hum. Setting too high "
"a level will make your voice sound thin."
msgstr ""

#. TC: this is the treble control. HF = high frequency.
#: python/preferences.py:455
msgid "HF Detail"
msgstr ""

#: python/preferences.py:456 python/preferences.py:464
msgid "Effect"
msgstr ""

#: python/preferences.py:460
msgid "You can use this to boost the amount of treble in the audio."
msgstr ""

#. TC: this is the bass control. LF = low frequency.
#: python/preferences.py:463
msgid "LF Detail"
msgstr ""

#: python/preferences.py:468
msgid "You can use this to boost the amount of bass in the audio."
msgstr ""

#. TC: dynamic range compressor.
#: python/preferences.py:471
msgid "Compressor"
msgstr ""

#. TC: this is the peak signal limit.
#: python/preferences.py:475
msgid "Limit"
msgstr ""

#: python/preferences.py:477
msgid ""
"A lookahead brick wall limiter. Use the Ratio control to boost the quieter "
"sounds. The Limit control is used to set the absolute maximum audio level."
msgstr ""

#: python/preferences.py:479
msgid "Noise Gate"
msgstr ""

#. TC: noise gate triggers at this level.
#: python/preferences.py:481 python/preferences.py:1192
msgid "Threshold"
msgstr ""

#. TC: negative gain when the noise gate is active.
#. TC: the de-esser negative gain when the de-esser is active.
#: python/preferences.py:484 python/preferences.py:493
msgid "Gain"
msgstr ""

#: python/preferences.py:486
msgid ""
"Reduce the unwanted quietest sounds and background noise which you don't "
"want your listeners to hear with this."
msgstr ""

#: python/preferences.py:488
msgid "De-esser"
msgstr ""

#. TC: the de-esser uses two filters to determine ess or not ess. Bias sets the balance between the two.
#: python/preferences.py:490
msgid "Bias"
msgstr ""

#: python/preferences.py:495
msgid ""
"Reduce the S, T, and P sounds which microphones tend to exagerate. Ideally "
"the Bias control will be set so that the de-esser is off when there is "
"silence but is set high enough that mouse clicks are detected and suppressed."
msgstr ""

#: python/preferences.py:497
msgid "Ducker"
msgstr ""

#: python/preferences.py:498
msgid "Release"
msgstr ""

#: python/preferences.py:500
msgid "Hold"
msgstr ""

#: python/preferences.py:502
msgid ""
"The ducker automatically reduces the level of player audio when the DJ "
"speaks. These settings allow you to adjust the timings of that audio "
"reduction."
msgstr ""

#: python/preferences.py:504
msgid "Other options"
msgstr ""

#: python/preferences.py:510
msgid "Phase Rotator"
msgstr ""

#: python/preferences.py:512
msgid ""
"This feature processes the microphone audio so that it sounds more even. The "
"effect is particularly noticable on male voices."
msgstr ""

#. TC: use a user specified setting.
#: python/preferences.py:539
msgid "Set"
msgstr ""

#. TC: use the auto detected default setting.
#: python/preferences.py:550
msgid "Auto"
msgstr ""

#: python/preferences.py:563
msgid "Use default JACK audio routing"
msgstr ""

#: python/preferences.py:564
msgid "Reroute the audio to/from the specified port"
msgstr ""

#: python/preferences.py:565
msgid "Save the audio routing so that it persists across application restarts"
msgstr ""

#: python/preferences.py:566
msgid ""
"Enter the name of the JACK audio port with which to bind and then click the "
"set button to the right.\n"
"Typing 'jack_lsp -p' in a console will give you a list of valid JACK audio "
"ports. Note that inputs will only bind to output ports and outputs will only "
"bind to input ports."
msgstr ""

#: python/preferences.py:806
msgid "The volume control for the left music player."
msgstr ""

#. TC: preferences window title.
#: python/preferences.py:860
msgid "IDJC Preferences"
msgstr ""

#. TC: the set of features - section heading.
#: python/preferences.py:881
msgid "Feature Set"
msgstr ""

#. TC: Start in the full featured user interface mode.
#: python/preferences.py:893
msgid "Start Full"
msgstr ""

#: python/preferences.py:897 python/preferences.py:904
msgid "Indicates which mode IDJC will be in when launched."
msgstr ""

#. TC: Start in a reduced user interface mode.
#: python/preferences.py:900
msgid "Start Mini"
msgstr ""

#: python/preferences.py:916
msgid "Run in full functionality mode which uses more CPU power."
msgstr ""

#: python/preferences.py:918
msgid "Basic Streamer"
msgstr ""

#: python/preferences.py:922
msgid ""
"Run in a reduced functionality mode that lowers the burden on the CPU and "
"takes up less screen space."
msgstr ""

#: python/preferences.py:928
msgid "These settings take effect after restarting"
msgstr ""

#: python/preferences.py:950
msgid "General purpose audio channels*"
msgstr ""

#: python/preferences.py:954
msgid "Simultaneous stream(s)"
msgstr ""

#: python/preferences.py:958
msgid "Simultaneous recording(s)"
msgstr ""

#. TC: star marked items are relevant only in 'fully featured' mode.
#: python/preferences.py:961
msgid "* In 'Fully Featured' mode."
msgstr ""

#: python/preferences.py:976
msgid "Meters"
msgstr ""

#: python/preferences.py:999
msgid "Fill channel meter void space"
msgstr ""

#: python/preferences.py:1011
msgid "Replay Gain"
msgstr ""

#: python/preferences.py:1021
msgid "Indicate which tracks have Replay Gain values"
msgstr ""

#: python/preferences.py:1022
msgid "Show a marker in the playlists next to each track."
msgstr ""

#: python/preferences.py:1027
msgid "Adjust playback volume"
msgstr ""

#: python/preferences.py:1028
msgid "Effective only on newly started tracks."
msgstr ""

#: python/preferences.py:1037
msgid "Unmarked tracks assumed gain value"
msgstr ""

#: python/preferences.py:1042
msgid ""
"Set this to the typical track gain values you would expect for the programme "
"material you are currently playing. For pop and rock music (especially "
"modern studio recordings) this should be about a -8 or -9 and classical "
"music around zero."
msgstr ""

#: python/preferences.py:1053
msgid "Further gain adjustment"
msgstr ""

#: python/preferences.py:1058
msgid ""
"For material that is generally loud it is recommended to set this between 4 "
"and 8 dB however going too high will result in a loss of dynamic range. The "
"Str Peak meter is a useful guide for getting this right."
msgstr ""

#: python/preferences.py:1066
msgid "Miscellaneous Features"
msgstr ""

#: python/preferences.py:1074
msgid "Trim quiet song endings and trailing silence"
msgstr ""

#: python/preferences.py:1079
msgid "End tracks containing long passages of silence"
msgstr ""

#: python/preferences.py:1084
msgid "Restrict the stream audio ceiling to -2dB"
msgstr ""

#: python/preferences.py:1088
msgid ""
"This option may improve the audio quality at the expense of a little "
"playback volume. Limiting audio to -2dB at the encoder input will generally "
"prevent decoded audio from breaching 0dB."
msgstr ""

#: python/preferences.py:1090
msgid "Enable the main-player speed/pitch controls"
msgstr ""

#: python/preferences.py:1094
msgid ""
"This option causes some extra widgets to appear below the playlists which "
"allow the playback speed to be adjusted from 25% to 400% and a normal speed "
"button."
msgstr ""

#: python/preferences.py:1096
msgid "Separate left/right player volume faders"
msgstr ""

#: python/preferences.py:1100
msgid ""
"Select this option to use an independent volume fader for the left and right "
"music players."
msgstr ""

#: python/preferences.py:1102
msgid "Enlarge the time elapsed/remaining windows"
msgstr ""

#: python/preferences.py:1106
msgid ""
"The time elapsed/remaining windows sometimes don't appear big enough for the "
"text that appears in them due to unusual DPI settings or the use of a "
"different rendering engine. This option serves to fix that."
msgstr ""

#: python/preferences.py:1108
msgid "Sound an alarm when the music is due to end"
msgstr ""

#: python/preferences.py:1111
msgid ""
"An alarm tone alerting the DJ that dead-air is just nine seconds away. This "
"also works when monitoring stream audio but the alarm tone is not sent to "
"the stream."
msgstr ""

#: python/preferences.py:1113
msgid "Apply dither to MP3 and FLAC playback"
msgstr ""

#: python/preferences.py:1117
msgid ""
"This feature maybe improves the sound quality a little when listening on a "
"24 bit sound card."
msgstr ""

#: python/preferences.py:1119
msgid "Use utf-8 encoding when streaming mp3 metadata"
msgstr ""

#: python/preferences.py:1123
msgid ""
"It is standard to stream mp3 metadata with iso-8859-1 character encoding on "
"shoutcast. This option should therefore not be used."
msgstr ""

#: python/preferences.py:1125
msgid "Enable tooltips"
msgstr ""

#: python/preferences.py:1129
msgid ""
"This, what you are currently reading, is a tooltip. This feature turns them "
"on or off."
msgstr ""

#: python/preferences.py:1138
msgid "Stream Normaliser"
msgstr ""

#: python/preferences.py:1141
msgid ""
"This feature is provided to make the various pieces of music that are played "
"of a more uniform loudness level. The default settings are likely to be "
"sufficient however you may adjust them and you can compare the effect by "
"clicking the 'Monitor Mix' 'Stream' button in the main application window "
"which will allow you to compare the processed with the non-processed audio."
msgstr ""

#: python/preferences.py:1177
msgid "Boost"
msgstr ""

#: python/preferences.py:1182 python/preferences.py:1197
#: python/preferences.py:1223 python/preferences.py:1238
msgid ""
"Adjust these settings carefully since they can have subtle but undesireable "
"effects on the sound quality."
msgstr ""

#: python/preferences.py:1200
msgid "Defaults"
msgstr ""

#: python/preferences.py:1206
msgid "Load the recommended settings."
msgstr ""

#: python/preferences.py:1218
msgid "Rise"
msgstr ""

#: python/preferences.py:1233
msgid "Fall"
msgstr ""

#. TC: The DJ's sound level controller.
#: python/preferences.py:1245
msgid "DJ Audio Level"
msgstr ""

#: python/preferences.py:1258
msgid "This adjusts the sound level of the DJ audio."
msgstr ""

#: python/preferences.py:1265
msgid "Player Resample Quality"
msgstr ""

#: python/preferences.py:1272 python/sourceclientgui.py:1000
msgid "Highest"
msgstr ""

#: python/preferences.py:1279 python/sourceclientgui.py:1001
msgid "Good"
msgstr ""

#: python/preferences.py:1286 python/sourceclientgui.py:1001
msgid "Fast"
msgstr ""

#: python/preferences.py:1293 python/sourceclientgui.py:1001
msgid "Fastest"
msgstr ""

#: python/preferences.py:1302 python/preferences.py:1303
#: python/preferences.py:1304 python/preferences.py:1305
msgid ""
"This adjusts the quality of the audio resampling method used whenever the "
"sample rate of the music file currently playing does not match the sample "
"rate of the JACK sound server. Highest mode offers the best sound quality "
"but also uses the most CPU (not recommended for systems built before 2006). "
"Fastest mode while it uses by far the least amount of CPU should be avoided "
"if at all possible."
msgstr ""

#: python/preferences.py:1316
msgid "Player Settings At Startup"
msgstr ""

#: python/preferences.py:1326
msgid "Restore the previous session"
msgstr ""

#: python/preferences.py:1330
msgid ""
"When starting IDJC most of the main window settings will be as they were "
"left. As an alternative you may specify below how you want the various "
"settings to be when IDJC starts."
msgstr ""

#: python/preferences.py:1337
msgid "Player 1"
msgstr ""

#: python/preferences.py:1338
msgid "Player 2"
msgstr ""

#. TC: DJ hears the stream mix.
#: python/preferences.py:1366
msgid "Monitor Stream Mix"
msgstr ""

#. TC: Tab heading for controls that don't merit their own preferences tab.
#: python/preferences.py:1377
msgid "General"
msgstr ""

#: python/preferences.py:1443
#, python-format
msgid "Using named JACK server: %s"
msgstr ""

#: python/preferences.py:1504
msgid "Route audio through the DSP interface"
msgstr ""

#: python/preferences.py:1526
msgid "JACK Ports"
msgstr ""

#. TC: Keyboard and MIDI bindings configuration.
#: python/preferences.py:1534
msgid "Bindings"
msgstr ""

#. TC: 'General Public License' is a proper name and must not be translated. It can however be abbreviated as 'GPL'.
#: python/preferences.py:1567
msgid "Released under the GNU General Public License V2.0"
msgstr ""

#: python/preferences.py:1579
msgid "Licence"
msgstr ""

#: python/preferences.py:1590
msgid "Contributors"
msgstr ""

#. TC: gtk.Entry popup menu item. Attribute may be one of Artist, Title, Album, and so on.
#: python/sourceclientgui.py:80
msgid "Insert Attribute"
msgstr ""

#: python/sourceclientgui.py:122
msgid "Icecast 2 Master"
msgstr ""

#: python/sourceclientgui.py:122
msgid "Shoutcast Master"
msgstr ""

#: python/sourceclientgui.py:123
msgid "Icecast 2 Stats/Relay"
msgstr ""

#: python/sourceclientgui.py:123
msgid "Shoutcast Stats/Relay"
msgstr ""

#: python/sourceclientgui.py:126
msgid "Enter new server connection details"
msgstr ""

#: python/sourceclientgui.py:143
msgid "Edit existing server connection details"
msgstr ""

#: python/sourceclientgui.py:177
msgid "This server is to be scanned for audience figures"
msgstr ""

#: python/sourceclientgui.py:190
msgid "Server type"
msgstr ""

#: python/sourceclientgui.py:190
msgid "Port number"
msgstr ""

#: python/sourceclientgui.py:191
msgid "Mount point"
msgstr ""

#: python/sourceclientgui.py:191
msgid "Login name"
msgstr ""

#. TC: The connect button text when no connection details have been entered.
#: python/sourceclientgui.py:416
msgid "No Master Server Configured"
msgstr ""

#: python/sourceclientgui.py:601
msgid ""
"A table of servers with which to connect. Only one master server can be "
"added for the purpose of streaming. All other servers will appear below the "
"master server in the list for the purpose of stats collection which can be "
"toggled on a per server basis."
msgstr ""

#: python/sourceclientgui.py:613
msgid "Hostname/IP address"
msgstr ""

#. TC: Mount point is a technical term in relation to icecast servers.
#: python/sourceclientgui.py:625
msgid "Mount point      "
msgstr ""

#. TC: This is the listener count heading.
#: python/sourceclientgui.py:633
msgid "Listeners"
msgstr ""

#: python/sourceclientgui.py:647
msgid "The sum total of listeners in this server tab."
msgstr ""

#: python/sourceclientgui.py:673
msgid "Never"
msgstr ""

#: python/sourceclientgui.py:675
msgid "Always"
msgstr ""

#: python/sourceclientgui.py:676
msgid "If connected"
msgstr ""

#. TC: user agents are strings that internet clients use to identify themselves to a server.
#. TC: typically application name, version, maybe a capabilities list.
#: python/sourceclientgui.py:894
msgid "Custom user agent string"
msgstr ""

#: python/sourceclientgui.py:901
msgid ""
"Set this on the occasion that the server or its firewall specifically "
"refuses to allow libshout based clients."
msgstr ""

#: python/sourceclientgui.py:904
msgid "If the connection breaks reconnect to the server"
msgstr ""

#. TC: Label for a comma separated list of delay times.
#: python/sourceclientgui.py:914
msgid "Delay times"
msgstr ""

#: python/sourceclientgui.py:917
msgid ""
"A comma separated list of delays in seconds between reconnection attempts. "
"Note that bad values or values less than 5 will be interpreted as 5."
msgstr ""

#. TC: A user specifed sequence is to be allowed to repeat itself indefinitely.
#: python/sourceclientgui.py:920
msgid "Repeat"
msgstr ""

#: python/sourceclientgui.py:921
msgid "Repeat the sequence of delays indefinitely."
msgstr ""

#. TC: User specifies no dialog box to be shown.
#: python/sourceclientgui.py:924
msgid "Quiet"
msgstr ""

#: python/sourceclientgui.py:925
msgid "Keep the reconnection dialogue box hidden at all times."
msgstr ""

#: python/sourceclientgui.py:929
msgid "The contingency plan upon the stream buffer becoming full is..."
msgstr ""

#: python/sourceclientgui.py:936
msgid "Discard audio data for as long as needed."
msgstr ""

#: python/sourceclientgui.py:937
msgid "Assume the connection is beyond saving and reconnect."
msgstr ""

#: python/sourceclientgui.py:986
msgid "Sample rate"
msgstr ""

#: python/sourceclientgui.py:991
msgid "Use JACK sample rate"
msgstr ""

#: python/sourceclientgui.py:999 python/sourceclientgui.py:1865
msgid "Quality"
msgstr ""

#: python/sourceclientgui.py:1013
msgid ""
"No additional resampling will occur. The stream sample rate will be that of "
"the JACK sound server."
msgstr ""

#: python/sourceclientgui.py:1014
msgid "Use one of the standard mp3 sample rates for the stream."
msgstr ""

#: python/sourceclientgui.py:1015
msgid ""
"Complete sample rate freedom. Note that only sample rates that appear in the "
"drop down box can be used with an mp3 stream."
msgstr ""

#: python/sourceclientgui.py:1016
msgid ""
"This selects the audio resampling method to be used, efficiency versus "
"quality. Highest mode offers the best sound quality but also uses the most "
"CPU (not recommended for systems built before 2006). Fastest mode while it "
"uses by far the least amount of CPU should be avoided if at all possible."
msgstr ""

#: python/sourceclientgui.py:1421
msgid "Shoutcast"
msgstr ""

#: python/sourceclientgui.py:1522
msgid "Individual Controls"
msgstr ""

#: python/sourceclientgui.py:1536
msgid ""
"Connect to or disconnect from the radio server. If the button does not stay "
"in, the connection failed for some reason.\n"
" \n"
"If the button is greyed out it means you are using unsupported settings. "
"Shoutcast only supports mp3 and mp3 requires that you use one of the sample "
"rates in the drop down box. Ogg only supports certain sample rate, bit rate, "
"and stereo combinations. Also, the connection list must contain details for "
"a master server."
msgstr ""

#. TC: Kick whoever is on the server.
#: python/sourceclientgui.py:1546
msgid "Kick Incumbent"
msgstr ""

#: python/sourceclientgui.py:1548
msgid ""
"This will disconnect whoever is currently using the server, freeing it up "
"for personal use."
msgstr ""

#: python/sourceclientgui.py:1557
msgid "Connection timer:"
msgstr ""

#: python/sourceclientgui.py:1561
msgid "Begin"
msgstr ""

#: python/sourceclientgui.py:1562
msgid ""
"Automatically connect to the server at a specific time in 24 hour format, "
"midnight being 00:00"
msgstr ""

#: python/sourceclientgui.py:1566
msgid "With kick"
msgstr ""

#: python/sourceclientgui.py:1568
msgid "Disconnect whoever is using the server just before start time."
msgstr ""

#: python/sourceclientgui.py:1575
msgid "End"
msgstr ""

#: python/sourceclientgui.py:1576
msgid ""
"Automatically disconnect from the server at a specific time in 24 hour "
"format."
msgstr ""

#: python/sourceclientgui.py:1586
msgid "At connect:"
msgstr ""

#. TC: [x] Start player (*) 1 ( ) 2
#: python/sourceclientgui.py:1590
msgid "Start player"
msgstr ""

#: python/sourceclientgui.py:1595
msgid ""
"Have one of the players start automatically when a radio server connection "
"is successfully made."
msgstr ""

#. TC: [x] Start recorder (*) 1 ( ) 2
#: python/sourceclientgui.py:1602
msgid "Start recorder"
msgstr ""

#: python/sourceclientgui.py:1607
msgid ""
"Have a recorder start automatically when a radio server connection is "
"successfully made."
msgstr ""

#: python/sourceclientgui.py:1611 python/sourceclientgui.py:1798
#: python/sourceclientgui.py:1830
msgid "Metadata"
msgstr ""

#: python/sourceclientgui.py:1621
msgid "Format String"
msgstr ""

#. TC: Label for the metadata fallback value.
#: python/sourceclientgui.py:1623
msgid "Fallback"
msgstr ""

#: python/sourceclientgui.py:1637
msgid ""
"You can enter text to accompany the stream here and can specify placemarkers "
"%r %t %l %s for the artist, title, album, and songname respectively, or "
"leave this text field blank to use the default metadata.\n"
"\n"
"Songname (%s) is derived from the filename in the absence of sufficient "
"metadata, while the other placemarkers will use the fallback text to the "
"right.\n"
"\n"
"When blank, Ogg streams will use the standard Vorbis tags and mp3 will use "
"%s."
msgstr ""

#: python/sourceclientgui.py:1638
msgid ""
"The fallback text to use when %r %t %l metadata is unavailable. See the "
"format string to the left."
msgstr ""

#: python/sourceclientgui.py:1639
msgid ""
"Metadata normally updates only on song title changes but you can force an "
"immediate update here."
msgstr ""

#: python/sourceclientgui.py:1656
msgid "Configuration"
msgstr ""

#: python/sourceclientgui.py:1657
msgid "The controls for configuring a stream."
msgstr ""

#: python/sourceclientgui.py:1667
msgid "Connection"
msgstr ""

#: python/sourceclientgui.py:1675
msgid "Format"
msgstr ""

#: python/sourceclientgui.py:1692
msgid ""
"Clicking this tab selects the mp3 file format for streaming and contains "
"settings for configuring the mp3 encoder."
msgstr ""

#: python/sourceclientgui.py:1694
msgid "Use one of the standard mp3 bit rates."
msgstr ""

#: python/sourceclientgui.py:1695
msgid ""
"Freedom to choose a non standard bitrate. Note however that the use of a non-"
"standard bit rate will result in a 'free-format' stream that cannot be "
"handled by a great many media players."
msgstr ""

#: python/sourceclientgui.py:1703 python/sourceclientgui.py:1708
msgid "The bit-rate in kilobits per second."
msgstr ""

#: python/sourceclientgui.py:1710
msgid "Quality (0=best)"
msgstr ""

#: python/sourceclientgui.py:1712
msgid ""
"This trades off sound quality against CPU efficiency. The more streams you "
"want to run concurrently the more you might want to consider using a lower "
"quality setting."
msgstr ""

#: python/sourceclientgui.py:1716
msgid ""
"Mono is self explanatory. Joint Stereo is recommended below 160kb/s where "
"regular Stereo might result in metallic sounding distortion. At higher "
"bitrates regular stereo sounds better due to superior channel separation."
msgstr ""

#: python/sourceclientgui.py:1720
msgid ""
"The type of mpeg header used in the mp3 stream or either s-rate or "
"freeformat. Freeformat indicates that the bitrate is not specified in the "
"header since it is non-standard, rather the listener client has to figure "
"out what the bitrate is by itself and not all of them are capable of doing "
"that. In short you'll be streaming something many listeners may not be able "
"to listen to. S-rate indicates the sample rate you have selected is not "
"compatible with mp3 and you'll need to change it if you want to stream."
msgstr ""

#: python/sourceclientgui.py:1735
msgid ""
"To enable MP3 streaming\n"
"install the package named\n"
"'libmp3lame'\n"
" and restart IDJC."
msgstr ""

#: python/sourceclientgui.py:1739
msgid ""
"Installing libmp3lame will allow you to stream the MP3 format to Shoutcast "
"servers. Currently only Ogg streaming to Icecast servers is possible."
msgstr ""

#: python/sourceclientgui.py:1745
msgid "Clicking this tab selects the Ogg family of file formats."
msgstr ""

#: python/sourceclientgui.py:1749
msgid "This chooses the Ogg/vorbis format for streaming and recording."
msgstr ""

#: python/sourceclientgui.py:1750
msgid "This chooses the OggFLAC format for streaming and recording."
msgstr ""

#: python/sourceclientgui.py:1751
msgid "This chooses the Speex speech format for streaming and recording."
msgstr ""

#: python/sourceclientgui.py:1768 python/sourceclientgui.py:1797
#: python/sourceclientgui.py:1828
msgid "Stereo"
msgstr ""

#: python/sourceclientgui.py:1770
msgid "Mono"
msgstr ""

#. TC: The upper bitrate limit as a percentage.
#: python/sourceclientgui.py:1777
msgid "Upper %"
msgstr ""

#. TC: The lower bitrate limit as a percentage.
#: python/sourceclientgui.py:1779
msgid "Lower %"
msgstr ""

#: python/sourceclientgui.py:1788
msgid "The nominal Ogg/Vorbis bitrate in kilobits per second."
msgstr ""

#: python/sourceclientgui.py:1789
msgid ""
"The upper bitrate limit relative to the nominal bitrate. This is an advisory "
"limit and it may be exceeded. Normally it is safe to leave the upper limit "
"uncapped since the bitrate will be averaged and the listeners have buffers "
"that extend for many seconds. The checkbox enables/disables this feature."
msgstr ""

#: python/sourceclientgui.py:1790
msgid ""
"The minimum bitrate in relative percentage terms. For streaming it is "
"recommended that you set a minimum bitrate to ensure correct listener client "
"behaviour however setting any upper or lower limit will result in a "
"significantly higher CPU usage by a factor of at least three, and slightly "
"degraded sound quality. The checkbox enables/disables this feature."
msgstr ""

#: python/sourceclientgui.py:1801
msgid ""
"You can prevent the sending of metadata by turning this feature off. This "
"will prevent certain players from dropping the stream or inserting an "
"audible gap every time the song title changes."
msgstr ""

#: python/sourceclientgui.py:1803
#, python-format
msgid "%d Bit"
msgstr ""

#: python/sourceclientgui.py:1805
msgid "Useful for streaming but for recording choose a higher bitrate option."
msgstr ""

#: python/sourceclientgui.py:1806
msgid ""
"Ideal for very high quality streaming or recording although not as "
"compatible as 16 bit."
msgstr ""

#: python/sourceclientgui.py:1807
msgid ""
"The highest quality audio format available within IDJC. Recommended for pre-"
"recording."
msgstr ""

#: python/sourceclientgui.py:1811 python/sourceclientgui.py:1879
msgid "Feature Disabled"
msgstr ""

#. TC: One of the modes supported by the Speex codec.
#: python/sourceclientgui.py:1820
msgid "Ultra Wide Band"
msgstr ""

#. TC: One of the modes supported by the Speex codec.
#: python/sourceclientgui.py:1822
msgid "Wide Band"
msgstr ""

#. TC: One of the modes supported by the Speex codec.
#: python/sourceclientgui.py:1824
msgid "Narrow Band"
msgstr ""

#: python/sourceclientgui.py:1829
msgid ""
"Apply intensity stereo to the audio stream. This is a very efficient "
"implementation of stereo but is only suited to voice."
msgstr ""

#: python/sourceclientgui.py:1831
msgid ""
"Sending metadata may cause listener clients to misbehave when the metadata "
"changes. By keeping this feature turned off you can avoid that."
msgstr ""

#. TC: The mode uesd by the Speex codec.
#: python/sourceclientgui.py:1846
msgid "Mode"
msgstr ""

#: python/sourceclientgui.py:1851
msgid ""
"This is the audio bandwidth selector. Ultra Wide Band has a bandwidth of "
"16kHz; Wide Band, 8kHz; Narrow Band, 4kHz. The samplerate is twice the value "
"of the selected bandwidth consequently all settings in the samplerate pane "
"to the left will be disregarded apart from the resample quality setting."
msgstr ""

#: python/sourceclientgui.py:1868
msgid ""
"This picks an appropriate bitrate for the selected bandwidth on a quality "
"metric. Q8 is a good choice for artifact-free speech and Q10 would be the "
"ideal choice for music."
msgstr ""

#: python/sourceclientgui.py:1870
msgid "CPU"
msgstr ""

#: python/sourceclientgui.py:1873
msgid ""
"This sets the level of complexity in the encoder. Higher values use more CPU "
"but result in better sounding audio though not as great an improvement as "
"you would get by increasing the quality setting to the left."
msgstr ""

#: python/sourceclientgui.py:1888
msgid " Test / Monitor "
msgstr ""

#: python/sourceclientgui.py:1897
msgid ""
"Information about how the encoder is currently configured is displayed here."
msgstr ""

#. TC: Button when pressed performs an update.
#: python/sourceclientgui.py:1899
msgid "Update"
msgstr ""

#: python/sourceclientgui.py:1900
msgid ""
"Use this to change the encoder settings while streaming or recording.\n"
" \n"
"If this button is greyed out it means that the encoder is not running, or "
"the bitrate/samplerate combination is not supported by the encoder, or you "
"are trying to switch between Ogg and mp3, which is not permitted."
msgstr ""

#. TC: Tab heading. User can enter information about the stream here.
#: python/sourceclientgui.py:1912
msgid "Stream Info"
msgstr ""

#: python/sourceclientgui.py:1917
msgid ""
"Enter your DJ name or station name here. Typically this information will be "
"displayed by listener clients."
msgstr ""

#: python/sourceclientgui.py:1919
msgid ""
"The URL of your radio station. This and the rest of the information below is "
"intended for display on a radio station listings website."
msgstr ""

#: python/sourceclientgui.py:1921
msgid "A description of your radio station."
msgstr ""

#: python/sourceclientgui.py:1925
msgid "The musical genres you are likely to play."
msgstr ""

#: python/sourceclientgui.py:1928
msgid "Make Public"
msgstr ""

#: python/sourceclientgui.py:1929
msgid ""
"Publish your radio station on a listings website. The website in question "
"will depend on how the server to which you connect is configured."
msgstr ""

#: python/sourceclientgui.py:1939
msgid "Genre(s)"
msgstr ""

#: python/sourceclientgui.py:1950
msgid "Master server admin password"
msgstr ""

#: python/sourceclientgui.py:1955
msgid ""
"This is for kick and stats on Shoutcast master servers that have an "
"administrator password. For those that don't leave this blank (the source "
"password is sufficient for those)."
msgstr ""

#: python/sourceclientgui.py:1961
msgid "Contact Details"
msgstr ""

#: python/sourceclientgui.py:1965
msgid "Internet Relay Chat connection info goes here."
msgstr ""

#: python/sourceclientgui.py:1967
msgid "Connection info for AOL instant messenger goes here."
msgstr ""

#: python/sourceclientgui.py:1969
msgid "ICQ instant messenger connection info goes here."
msgstr ""

#: python/sourceclientgui.py:1972
msgid "IRC"
msgstr ""

#: python/sourceclientgui.py:1973
msgid "AIM"
msgstr ""

#: python/sourceclientgui.py:1974
msgid "ICQ"
msgstr ""

#: python/sourceclientgui.py:1983
msgid "Extra Shoutcast"
msgstr ""

#: python/sourceclientgui.py:1988
msgid "Troubleshooting"
msgstr ""

#: python/sourceclientgui.py:2130
msgid "Stop recording."
msgstr ""

#: python/sourceclientgui.py:2131
msgid ""
"Start recording.\n"
"\n"
"If this button is greyed out it could mean the encoder settings are not "
"valid. This can be fixed by using one of the approved sample rates for mp3 "
"or by choosing a sensible samplerate and bitrate combination for Ogg.\n"
"\n"
"Also check that you have write permission on the folder you have selected to "
"record to."
msgstr ""

#: python/sourceclientgui.py:2132
msgid "Pause recording."
msgstr ""

#: python/sourceclientgui.py:2165
msgid "Recording time elapsed."
msgstr ""

#. TC: Dialog title bar text.
#: python/sourceclientgui.py:2202
msgid "Select the folder to record to"
msgstr ""

#: python/sourceclientgui.py:2209
msgid ""
"Choose which stream to record or the 24 bit FLAC option. If the stream isn't "
"already running the encoder will be started automatically using whatever "
"settings are currently configured."
msgstr ""

#: python/sourceclientgui.py:2210
msgid ""
"Choose which directory you want to save to. All file names will be in a "
"timestamp format and have either an oga, mp3, or flac file extension. "
"Important: you need to select a directory to which you have adequate write "
"permission."
msgstr ""

#: python/sourceclientgui.py:2298
msgid "Perform operations on multiple servers in unison."
msgstr ""

#: python/sourceclientgui.py:2310
msgid "Connect"
msgstr ""

#: python/sourceclientgui.py:2326
msgid "Disconnect"
msgstr ""

#: python/sourceclientgui.py:2332
msgid "Kick Incumbents"
msgstr ""

#: python/sourceclientgui.py:2340
msgid "Metadata:"
msgstr ""

#: python/sourceclientgui.py:2368
msgid "Group Controls"
msgstr ""

#. TC: Window title bar text.
#: python/sourceclientgui.py:2828
msgid "IDJC Output"
msgstr ""

#: python/sourceclientgui.py:2843
msgid ""
"Each one of these tabs represents a separate stream recorder. The LED "
"indicator colours represent the following: Clear=Stopped Yellow=Paused "
"Red=Recording."
msgstr ""

#: python/sourceclientgui.py:2848
msgid ""
"Each one of these tabs represents a separate radio streamer. The LED "
"indicator colours represent the following: Clear=No connection "
"Yellow=Awaiting authentication. Green=Connected. Flashing=Packet loss due to "
"a bad connection."
msgstr ""

#: python/sourceclientgui.py:2860
msgid " Stream "
msgstr ""

#: python/sourceclientgui.py:2882
msgid ""
"<span weight=\"bold\" size=\"12000\">A connection to a radio server has "
"failed.</span>\n"
"\n"
"Reconnection will not be attempted."
msgstr ""

#: python/sourceclientgui.py:2884
msgid ""
"<span weight=\"bold\" size=\"12000\">A scheduled stream disconnection has "
"occurred.</span>"
msgstr ""