1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
|
# XBMC Media Center language file
msgid ""
msgstr ""
"Project-Id-Version: XBMC Main\n"
"Report-Msgid-Bugs-To: http://trac.xbmc.org/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: XBMC Translation Team\n"
"Language-Team: English (Australia) (http://www.transifex.com/projects/p/xbmc-main/language/en_AU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: en_AU\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgctxt "#0"
msgid "Programs"
msgstr "Programs"
msgctxt "#1"
msgid "Pictures"
msgstr "Pictures"
msgctxt "#2"
msgid "Music"
msgstr "Music"
msgctxt "#3"
msgid "Videos"
msgstr "Videos"
msgctxt "#4"
msgid "TV-Guide"
msgstr "TV-Guide"
msgctxt "#5"
msgid "Settings"
msgstr "Settings"
msgctxt "#6"
msgid "XBMC SVN"
msgstr "XBMC SVN"
msgctxt "#7"
msgid "File manager"
msgstr "File manager"
msgctxt "#8"
msgid "Weather"
msgstr "Weather"
msgctxt "#9"
msgid "xbmc media center"
msgstr "xbmc media centre"
msgctxt "#11"
msgid "Monday"
msgstr "Monday"
msgctxt "#12"
msgid "Tuesday"
msgstr "Tuesday"
msgctxt "#13"
msgid "Wednesday"
msgstr "Wednesday"
msgctxt "#14"
msgid "Thursday"
msgstr "Thursday"
msgctxt "#15"
msgid "Friday"
msgstr "Friday"
msgctxt "#16"
msgid "Saturday"
msgstr "Saturday"
msgctxt "#17"
msgid "Sunday"
msgstr "Sunday"
msgctxt "#21"
msgid "January"
msgstr "January"
msgctxt "#22"
msgid "February"
msgstr "February"
msgctxt "#23"
msgid "March"
msgstr "March"
msgctxt "#24"
msgid "April"
msgstr "April"
msgctxt "#25"
msgid "May"
msgstr "May"
msgctxt "#26"
msgid "June"
msgstr "June"
msgctxt "#27"
msgid "July"
msgstr "July"
msgctxt "#28"
msgid "August"
msgstr "August"
msgctxt "#29"
msgid "September"
msgstr "September"
msgctxt "#30"
msgid "October"
msgstr "October"
msgctxt "#31"
msgid "November"
msgstr "November"
msgctxt "#32"
msgid "December"
msgstr "December"
msgctxt "#41"
msgid "Mon"
msgstr "Mon"
msgctxt "#42"
msgid "Tue"
msgstr "Tue"
msgctxt "#43"
msgid "Wed"
msgstr "Wed"
msgctxt "#44"
msgid "Thu"
msgstr "Thu"
msgctxt "#45"
msgid "Fri"
msgstr "Fri"
msgctxt "#46"
msgid "Sat"
msgstr "Sat"
msgctxt "#47"
msgid "Sun"
msgstr "Sun"
msgctxt "#51"
msgid "Jan"
msgstr "Jan"
msgctxt "#52"
msgid "Feb"
msgstr "Feb"
msgctxt "#53"
msgid "Mar"
msgstr "Mar"
msgctxt "#54"
msgid "Apr"
msgstr "Apr"
msgctxt "#55"
msgid "May"
msgstr "May"
msgctxt "#56"
msgid "Jun"
msgstr "Jun"
msgctxt "#57"
msgid "Jul"
msgstr "Jul"
msgctxt "#58"
msgid "Aug"
msgstr "Aug"
msgctxt "#59"
msgid "Sep"
msgstr "Sep"
msgctxt "#60"
msgid "Oct"
msgstr "Oct"
msgctxt "#61"
msgid "Nov"
msgstr "Nov"
msgctxt "#62"
msgid "Dec"
msgstr "Dec"
msgctxt "#71"
msgid "N"
msgstr "N"
msgctxt "#72"
msgid "NNE"
msgstr "NNE"
msgctxt "#73"
msgid "NE"
msgstr "NE"
msgctxt "#74"
msgid "ENE"
msgstr "ENE"
msgctxt "#75"
msgid "E"
msgstr "E"
msgctxt "#76"
msgid "ESE"
msgstr "ESE"
msgctxt "#77"
msgid "SE"
msgstr "SE"
msgctxt "#78"
msgid "SSE"
msgstr "SSE"
msgctxt "#79"
msgid "S"
msgstr "S"
msgctxt "#80"
msgid "SSW"
msgstr "SSW"
msgctxt "#81"
msgid "SW"
msgstr "SW"
msgctxt "#82"
msgid "WSW"
msgstr "WSW"
msgctxt "#83"
msgid "W"
msgstr "W"
msgctxt "#84"
msgid "WNW"
msgstr "WNW"
msgctxt "#85"
msgid "NW"
msgstr "NW"
msgctxt "#86"
msgid "NNW"
msgstr "NNW"
msgctxt "#87"
msgid "VAR"
msgstr "VAR"
msgctxt "#88"
msgid "South"
msgstr "South"
msgctxt "#89"
msgid "North"
msgstr "North"
msgctxt "#90"
msgid "West"
msgstr "West"
msgctxt "#91"
msgid "East"
msgstr "East"
msgctxt "#92"
msgid "Variable"
msgstr "Variable"
msgctxt "#98"
msgid "View: Auto"
msgstr "View: Auto"
msgctxt "#99"
msgid "View: Auto big"
msgstr "View: Auto big"
msgctxt "#100"
msgid "View: Icons"
msgstr "View: Icons"
msgctxt "#101"
msgid "View: List"
msgstr "View: List"
msgctxt "#102"
msgid "Scan"
msgstr "Scan"
msgctxt "#103"
msgid "Sort by: Name"
msgstr "Sort by: Name"
msgctxt "#104"
msgid "Sort by: Date"
msgstr "Sort by: Date"
msgctxt "#105"
msgid "Sort by: Size"
msgstr "Sort by: Size"
msgctxt "#106"
msgid "No"
msgstr "No"
msgctxt "#107"
msgid "Yes"
msgstr "Yes"
msgctxt "#108"
msgid "Slideshow"
msgstr "Slideshow"
msgctxt "#109"
msgid "Create thumbs"
msgstr "Create thumbs"
msgctxt "#110"
msgid "Create thumbnails"
msgstr "Create thumbnails"
msgctxt "#111"
msgid "Shortcuts"
msgstr "Shortcuts"
msgctxt "#112"
msgid "Paused"
msgstr "Paused"
msgctxt "#113"
msgid "Update failed"
msgstr "Update failed"
msgctxt "#114"
msgid "Installation failed"
msgstr "Installation failed"
msgctxt "#115"
msgid "Copy"
msgstr "Copy"
msgctxt "#116"
msgid "Move"
msgstr "Move"
msgctxt "#117"
msgid "Delete"
msgstr "Delete"
msgctxt "#118"
msgid "Rename"
msgstr "Rename"
msgctxt "#119"
msgid "New folder"
msgstr "New folder"
msgctxt "#120"
msgid "Confirm file copy"
msgstr "Confirm file copy"
msgctxt "#121"
msgid "Confirm file move"
msgstr "Confirm file move"
msgctxt "#122"
msgid "Confirm file delete?"
msgstr "Confirm file delete?"
msgctxt "#123"
msgid "Copy these files?"
msgstr "Copy these files?"
msgctxt "#124"
msgid "Move these files?"
msgstr "Move these files?"
msgctxt "#125"
msgid "Delete these files? - Deleting files cannot be undone!"
msgstr "Delete these files? - Deleting files cannot be undone!"
msgctxt "#126"
msgid "Status"
msgstr "Status"
msgctxt "#127"
msgid "Objects"
msgstr "Objects"
msgctxt "#128"
msgid "General"
msgstr "General"
msgctxt "#129"
msgid "Slideshow"
msgstr "Slideshow"
msgctxt "#130"
msgid "System info"
msgstr "System info"
msgctxt "#131"
msgid "Display"
msgstr "Display"
msgctxt "#132"
msgid "Albums"
msgstr "Albums"
msgctxt "#133"
msgid "Artists"
msgstr "Artists"
msgctxt "#134"
msgid "Songs"
msgstr "Songs"
msgctxt "#135"
msgid "Genres"
msgstr "Genres"
msgctxt "#136"
msgid "Playlists"
msgstr "Playlists"
msgctxt "#137"
msgid "Search"
msgstr "Search"
msgctxt "#138"
msgid "System Information"
msgstr "System Information"
msgctxt "#139"
msgid "Temperatures:"
msgstr "Temperatures:"
msgctxt "#140"
msgid "CPU:"
msgstr "CPU:"
msgctxt "#141"
msgid "GPU:"
msgstr "GPU:"
msgctxt "#142"
msgid "Time:"
msgstr "Time:"
msgctxt "#143"
msgid "Current:"
msgstr "Current:"
msgctxt "#144"
msgid "Build:"
msgstr "Build:"
msgctxt "#145"
msgid "Network:"
msgstr "Network:"
msgctxt "#146"
msgid "Type:"
msgstr "Type:"
msgctxt "#147"
msgid "Static"
msgstr "Static"
msgctxt "#148"
msgid "DHCP"
msgstr "DHCP"
msgctxt "#149"
msgid "MAC address"
msgstr "MAC address"
msgctxt "#150"
msgid "IP address"
msgstr "IP address"
msgctxt "#151"
msgid "Link:"
msgstr "Link:"
msgctxt "#152"
msgid "Half duplex"
msgstr "Half duplex"
msgctxt "#153"
msgid "Full duplex"
msgstr "Full duplex"
msgctxt "#154"
msgid "Storage"
msgstr "Storage"
msgctxt "#155"
msgid "Drive"
msgstr "Drive"
msgctxt "#156"
msgid "Free"
msgstr "Free"
msgctxt "#157"
msgid "Video"
msgstr "Video"
msgctxt "#158"
msgid "Free memory"
msgstr "Free memory"
msgctxt "#159"
msgid "No link"
msgstr "No link"
msgctxt "#160"
msgid "Free"
msgstr "Free"
msgctxt "#161"
msgid "Unavailable"
msgstr "Unavailable"
msgctxt "#162"
msgid "Tray open"
msgstr "Tray open"
msgctxt "#163"
msgid "Reading"
msgstr "Reading"
msgctxt "#164"
msgid "No disc"
msgstr "No disc"
msgctxt "#165"
msgid "Disc present"
msgstr "Disc present"
msgctxt "#166"
msgid "Skin"
msgstr "Skin"
msgctxt "#167"
msgid "Cancel file operations"
msgstr "Cancel file operations"
msgctxt "#168"
msgid "%s- %s"
msgstr "%s- %s"
msgctxt "#169"
msgid "Resolution"
msgstr "Resolution"
msgctxt "#170"
msgid "Adjust display refresh rate to match video"
msgstr "Adjust display refresh rate to match video"
msgctxt "#171"
msgid "Sort title"
msgstr "Sort title"
msgctxt "#172"
msgid "Release date"
msgstr "Release date"
msgctxt "#173"
msgid "Display 4:3 videos as"
msgstr "Display 4:3 videos as"
msgctxt "#175"
msgid "Moods"
msgstr "Moods"
msgctxt "#176"
msgid "Styles"
msgstr "Styles"
msgctxt "#179"
msgid "Song"
msgstr "Song"
msgctxt "#180"
msgid "Duration"
msgstr "Duration"
msgctxt "#181"
msgid "Select album"
msgstr "Select album"
msgctxt "#182"
msgid "Tracks"
msgstr "Tracks"
msgctxt "#183"
msgid "Review"
msgstr "Review"
msgctxt "#184"
msgid "Refresh"
msgstr "Refresh"
msgctxt "#185"
msgid "Searching album"
msgstr "Searching album"
msgctxt "#186"
msgid "OK"
msgstr "OK"
msgctxt "#187"
msgid "No albums found!"
msgstr "No albums found!"
msgctxt "#188"
msgid "Select all"
msgstr "Select all"
msgctxt "#189"
msgid "Scanning media info"
msgstr "Scanning media info"
msgctxt "#190"
msgid "Save"
msgstr "Save"
msgctxt "#191"
msgid "Shuffle"
msgstr "Shuffle"
msgctxt "#192"
msgid "Clear"
msgstr "Clear"
msgctxt "#193"
msgid "Scan"
msgstr "Scan"
msgctxt "#194"
msgid "Searching..."
msgstr "Searching..."
msgctxt "#195"
msgid "No info found!"
msgstr "No info found!"
msgctxt "#196"
msgid "Select movie:"
msgstr "Select movie:"
msgctxt "#197"
msgid "Querying %s info"
msgstr "Querying %s info"
msgctxt "#198"
msgid "Loading movie details"
msgstr "Loading movie details"
msgctxt "#199"
msgid "Web interface"
msgstr "Web interface"
msgctxt "#202"
msgid "Tagline"
msgstr "Tagline"
msgctxt "#203"
msgid "Plot outline"
msgstr "Plot outline"
msgctxt "#205"
msgid "Votes"
msgstr "Votes"
msgctxt "#206"
msgid "Cast"
msgstr "Cast"
msgctxt "#207"
msgid "Plot"
msgstr "Plot"
msgctxt "#208"
msgid "Play"
msgstr "Play"
msgctxt "#209"
msgid "Next"
msgstr "Next"
msgctxt "#210"
msgid "Previous"
msgstr "Previous"
msgctxt "#213"
msgid "Calibrate user interface..."
msgstr "Calibrate user interface..."
msgctxt "#214"
msgid "Video calibration..."
msgstr "Video calibration..."
msgctxt "#215"
msgid "Soften"
msgstr "Soften"
msgctxt "#216"
msgid "Zoom amount"
msgstr "Zoom amount"
msgctxt "#217"
msgid "Pixel ratio"
msgstr "Pixel ratio"
msgctxt "#218"
msgid "DVD drive"
msgstr "DVD drive"
msgctxt "#219"
msgid "Please insert disc"
msgstr "Please insert disc"
msgctxt "#220"
msgid "Remote share"
msgstr "Remote share"
msgctxt "#221"
msgid "Network is not connected"
msgstr "Network is not connected"
msgctxt "#222"
msgid "Cancel"
msgstr "Cancel"
msgctxt "#224"
msgid "Speed"
msgstr "Speed"
msgctxt "#225"
msgid "Vertical Shift"
msgstr "Vertical Shift"
msgctxt "#226"
msgid "Test patterns..."
msgstr "Test patterns..."
msgctxt "#227"
msgid "Lookup audio CD track names from freedb.org"
msgstr "Lookup audio CD track names from freedb.org"
msgctxt "#228"
msgid "Shuffle playlist on load"
msgstr "Shuffle playlist on load"
msgctxt "#229"
msgid "HDD spindown time"
msgstr "HDD spindown time"
msgctxt "#230"
msgid "Video filters"
msgstr "Video filters"
msgctxt "#231"
msgid "None"
msgstr "None"
msgctxt "#232"
msgid "Point"
msgstr "Point"
msgctxt "#233"
msgid "Linear"
msgstr "Linear"
msgctxt "#234"
msgid "Anisotropic"
msgstr "Anisotropic"
msgctxt "#235"
msgid "Quincunx"
msgstr "Quincunx"
msgctxt "#236"
msgid "Gaussian cubic"
msgstr "Gaussian cubic"
msgctxt "#237"
msgid "Minification"
msgstr "Minification"
msgctxt "#238"
msgid "Magnification"
msgstr "Magnification"
msgctxt "#239"
msgid "Clear playlist on finish"
msgstr "Clear playlist on finish"
msgctxt "#240"
msgid "Display Mode"
msgstr "Display Mode"
msgctxt "#241"
msgid "Full Screen #%d"
msgstr "Full Screen #%d"
msgctxt "#242"
msgid "Windowed"
msgstr "Windowed"
msgctxt "#243"
msgid "Refresh Rate"
msgstr "Refresh Rate"
msgctxt "#244"
msgid "Full screen"
msgstr "Full screen"
msgctxt "#245"
msgid "Sizing: (%i,%i)->(%i,%i) (Zoom x%2.2f) AR:%2.2f:1 (Pixels: %2.2f:1) (VShift: %2.2f)"
msgstr "Sizing: (%i,%i)->(%i,%i) (Zoom x%2.2f) AR:%2.2f:1 (Pixels: %2.2f:1) (VShift: %2.2f)"
msgctxt "#247"
msgid "Scripts"
msgstr "Scripts"
msgctxt "#248"
msgid "Language"
msgstr "Language"
msgctxt "#249"
msgid "Music"
msgstr "Music"
msgctxt "#250"
msgid "Visualisation"
msgstr "Visualisation"
msgctxt "#251"
msgid "Select destination directory"
msgstr "Select destination directory"
msgctxt "#253"
msgid "Number of channels"
msgstr "Number of channels"
msgctxt "#254"
msgid "DTS capable receiver"
msgstr "DTS capable receiver"
msgctxt "#255"
msgid "CDDB"
msgstr "CDDB"
msgctxt "#256"
msgid "Fetching CD information"
msgstr "Fetching CD information"
msgctxt "#257"
msgid "Error"
msgstr "Error"
msgctxt "#258"
msgid "Enable tag reading"
msgstr "Enable tag reading"
msgctxt "#259"
msgid "Opening"
msgstr "Opening"
msgctxt "#260"
msgid "Shoutcast"
msgstr "Shoutcast"
msgctxt "#261"
msgid "Waiting for start..."
msgstr "Waiting for start..."
msgctxt "#262"
msgid "Scripts output"
msgstr "Scripts output"
msgctxt "#263"
msgid "Allow control of XBMC via HTTP"
msgstr "Allow control of XBMC via HTTP"
msgctxt "#264"
msgid "Record"
msgstr "Record"
msgctxt "#265"
msgid "Stop Rec."
msgstr "Stop Rec."
msgctxt "#266"
msgid "Sort by: Track"
msgstr "Sort by: Track"
msgctxt "#267"
msgid "Sort by: Time"
msgstr "Sort by: Time"
msgctxt "#268"
msgid "Sort by: Title"
msgstr "Sort by: Title"
msgctxt "#269"
msgid "Sort by: Artist"
msgstr "Sort by: Artist"
msgctxt "#270"
msgid "Sort by: Album"
msgstr "Sort by: Album"
msgctxt "#271"
msgid "Top 100"
msgstr "Top 100"
msgctxt "#272"
msgid "Top-Left overscan compensation"
msgstr "Top-Left overscan compensation"
msgctxt "#273"
msgid "Bottom-Right overscan compensation"
msgstr "Bottom-Right overscan compensation"
msgctxt "#274"
msgid "Subtitle positioning"
msgstr "Subtitle positioning"
msgctxt "#275"
msgid "Pixel ratio adjustment"
msgstr "Pixel ratio adjustment"
msgctxt "#276"
msgid "Adjust the arrow to change the amount of overscan"
msgstr "Adjust the arrow to change the amount of overscan"
msgctxt "#277"
msgid "Adjust the bar to change the subtitles position"
msgstr "Adjust the bar to change the subtitles position"
msgctxt "#278"
msgid "Adjust the rectangle so it is perfectly square"
msgstr "Adjust the rectangle so it is perfectly square"
msgctxt "#279"
msgid "Unable to load settings"
msgstr "Unable to load settings"
msgctxt "#280"
msgid "Using default settings"
msgstr "Using default settings"
msgctxt "#281"
msgid "Please check the XML files"
msgstr "Please check the XML files"
msgctxt "#282"
msgid "Found %i items"
msgstr "Found %i items"
msgctxt "#283"
msgid "Search results"
msgstr "Search results"
msgctxt "#284"
msgid "No results found"
msgstr "No results found"
msgctxt "#285"
msgid "Preferred audio language"
msgstr "Preferred audio language"
msgctxt "#286"
msgid "Preferred subtitle language"
msgstr "Preferred subtitle language"
msgctxt "#287"
msgid "Subtitles"
msgstr "Subtitles"
msgctxt "#288"
msgid "Font"
msgstr "Font"
msgctxt "#289"
msgid "Size"
msgstr "Size"
msgctxt "#290"
msgid "Dynamic range compression"
msgstr "Dynamic range compression"
msgctxt "#291"
msgid "Video"
msgstr "Video"
msgctxt "#292"
msgid "Audio"
msgstr "Audio"
msgctxt "#293"
msgid "Browse for subtitles"
msgstr "Browse for subtitles"
msgctxt "#294"
msgid "Create bookmark"
msgstr "Create bookmark"
msgctxt "#296"
msgid "Clear bookmarks"
msgstr "Clear bookmarks"
msgctxt "#297"
msgid "Audio offset"
msgstr "Audio offset"
msgctxt "#298"
msgid "Bookmarks"
msgstr "Bookmarks"
msgctxt "#300"
msgid "MP1 capable receiver"
msgstr "MP1 capable receiver"
msgctxt "#301"
msgid "MP2 capable receiver"
msgstr "MP2 capable receiver"
msgctxt "#302"
msgid "MP3 capable receiver"
msgstr "MP3 capable receiver"
msgctxt "#303"
msgid "Delay"
msgstr "Delay"
msgctxt "#304"
msgid "Language"
msgstr "Language"
msgctxt "#305"
msgid "Enabled"
msgstr "Enabled"
msgctxt "#306"
msgid "Non-interleaved"
msgstr "Non-interleaved"
msgctxt "#308"
msgid "Original stream's language"
msgstr "Original stream's language"
msgctxt "#312"
msgid "(0=auto)"
msgstr "(0=auto)"
msgctxt "#313"
msgid "Cleaning database"
msgstr "Cleaning database"
msgctxt "#314"
msgid "Preparing..."
msgstr "Preparing..."
msgctxt "#315"
msgid "Database error"
msgstr "Database error"
msgctxt "#316"
msgid "Searching songs..."
msgstr "Searching songs..."
msgctxt "#317"
msgid "Cleaned database successfully"
msgstr "Cleaned database successfully"
msgctxt "#318"
msgid "Cleaning songs..."
msgstr "Cleaning songs..."
msgctxt "#319"
msgid "Error cleaning songs"
msgstr "Error cleaning songs"
msgctxt "#320"
msgid "Cleaning artists..."
msgstr "Cleaning artists..."
msgctxt "#321"
msgid "Error cleaning artists"
msgstr "Error cleaning artists"
msgctxt "#322"
msgid "Cleaning genres..."
msgstr "Cleaning genres..."
msgctxt "#323"
msgid "Error cleaning genres"
msgstr "Error cleaning genres"
msgctxt "#324"
msgid "Cleaning paths..."
msgstr "Cleaning paths..."
msgctxt "#325"
msgid "Error cleaning paths"
msgstr "Error cleaning paths"
msgctxt "#326"
msgid "Cleaning albums..."
msgstr "Cleaning albums..."
msgctxt "#327"
msgid "Error cleaning albums"
msgstr "Error cleaning albums"
msgctxt "#328"
msgid "Writing changes..."
msgstr "Writing changes..."
msgctxt "#329"
msgid "Error writing changes"
msgstr "Error writing changes"
msgctxt "#330"
msgid "This may take some time..."
msgstr "This may take some time..."
msgctxt "#331"
msgid "Compressing database..."
msgstr "Compressing database..."
msgctxt "#332"
msgid "Error compressing database"
msgstr "Error compressing database"
msgctxt "#333"
msgid "Do you want to clean the library?"
msgstr "Do you want to clean the library?"
msgctxt "#334"
msgid "Clean library..."
msgstr "Clean library..."
msgctxt "#335"
msgid "Start"
msgstr "Start"
msgctxt "#336"
msgid "Framerate conversion"
msgstr "Framerate conversion"
msgctxt "#337"
msgid "Output configuration"
msgstr "Output configuration"
msgctxt "#338"
msgid "Fixed"
msgstr "Fixed"
msgctxt "#339"
msgid "Optimized"
msgstr "Optimised"
msgctxt "#340"
msgid "Various artists"
msgstr "Various artists"
msgctxt "#341"
msgid "Play disc"
msgstr "Play disc"
msgctxt "#342"
msgid "Movies"
msgstr "Movies"
msgctxt "#343"
msgid "Adjust framerate"
msgstr "Adjust framerate"
msgctxt "#344"
msgid "Actors"
msgstr "Actors"
msgctxt "#345"
msgid "Year"
msgstr "Year"
msgctxt "#346"
msgid "Normalize levels on downmix"
msgstr "Normalise levels on downmix"
msgctxt "#347"
msgid "DTS-HD capable receiver"
msgstr "DTS-HD capable receiver"
msgctxt "#348"
msgid "Enable passthrough"
msgstr "Enable passthrough"
msgctxt "#349"
msgid "TrueHD capable receiver"
msgstr "TrueHD capable receiver"
msgctxt "#350"
msgid "Programs"
msgstr "Programs"
msgctxt "#351"
msgid "Off"
msgstr "Off"
msgctxt "#352"
msgid "Dim"
msgstr "Dim"
msgctxt "#353"
msgid "Black"
msgstr "Black"
msgctxt "#354"
msgid "Matrix trails"
msgstr "Matrix trails"
msgctxt "#355"
msgid "Screensaver time"
msgstr "Screensaver time"
msgctxt "#356"
msgid "Screensaver mode"
msgstr "Screensaver mode"
msgctxt "#357"
msgid "Shutdown function timer"
msgstr "Shutdown function timer"
msgctxt "#358"
msgid "All albums"
msgstr "All albums"
msgctxt "#359"
msgid "Recently added albums"
msgstr "Recently added albums"
msgctxt "#360"
msgid "Screensaver"
msgstr "Screensaver"
msgctxt "#361"
msgid "R. Slideshow"
msgstr "R. Slideshow"
msgctxt "#362"
msgid "Screensaver dim level"
msgstr "Screensaver dim level"
msgctxt "#363"
msgid "Sort by: File"
msgstr "Sort by: File"
msgctxt "#364"
msgid "Dolby Digital (AC3) capable receiver"
msgstr "Dolby Digital (AC3) capable receiver"
msgctxt "#365"
msgid "Sort by: Name"
msgstr "Sort by: Name"
msgctxt "#366"
msgid "Sort by: Year"
msgstr "Sort by: Year"
msgctxt "#367"
msgid "Sort by: Rating"
msgstr "Sort by: Rating"
msgctxt "#368"
msgid "IMDb"
msgstr "IMDb"
msgctxt "#369"
msgid "Title"
msgstr "Title"
msgctxt "#370"
msgid "Thunderstorms"
msgstr "Thunderstorms"
msgctxt "#371"
msgid "Partly"
msgstr "Partly"
msgctxt "#372"
msgid "Mostly"
msgstr "Mostly"
msgctxt "#373"
msgid "Sunny"
msgstr "Sunny"
msgctxt "#374"
msgid "Cloudy"
msgstr "Cloudy"
msgctxt "#375"
msgid "Snow"
msgstr "Snow"
msgctxt "#376"
msgid "Rain"
msgstr "Rain"
msgctxt "#377"
msgid "Light"
msgstr "Light"
msgctxt "#378"
msgid "AM"
msgstr "AM"
msgctxt "#379"
msgid "PM"
msgstr "PM"
msgctxt "#380"
msgid "Showers"
msgstr "Showers"
msgctxt "#381"
msgid "Few"
msgstr "Few"
msgctxt "#382"
msgid "Scattered"
msgstr "Scattered"
msgctxt "#383"
msgid "Wind"
msgstr "Wind"
msgctxt "#384"
msgid "Strong"
msgstr "Strong"
msgctxt "#385"
msgid "Fair"
msgstr "Fair"
msgctxt "#386"
msgid "Clear"
msgstr "Clear"
msgctxt "#387"
msgid "Clouds"
msgstr "Clouds"
msgctxt "#388"
msgid "Early"
msgstr "Early"
msgctxt "#389"
msgid "Shower"
msgstr "Shower"
msgctxt "#390"
msgid "Flurries"
msgstr "Flurries"
msgctxt "#391"
msgid "Low"
msgstr "Low"
msgctxt "#392"
msgid "Medium"
msgstr "Medium"
msgctxt "#393"
msgid "High"
msgstr "High"
msgctxt "#394"
msgid "Fog"
msgstr "Fog"
msgctxt "#395"
msgid "Haze"
msgstr "Haze"
msgctxt "#396"
msgid "Select location"
msgstr "Select location"
msgctxt "#397"
msgid "Refresh time"
msgstr "Refresh time"
msgctxt "#398"
msgid "Temperature units"
msgstr "Temperature units"
msgctxt "#399"
msgid "Speed units"
msgstr "Speed units"
msgctxt "#400"
msgid "Weather"
msgstr "Weather"
msgctxt "#401"
msgid "Temp"
msgstr "Temp"
msgctxt "#402"
msgid "Feels like"
msgstr "Feels like"
msgctxt "#403"
msgid "UV index"
msgstr "UV index"
msgctxt "#404"
msgid "Wind"
msgstr "Wind"
msgctxt "#405"
msgid "Dew point"
msgstr "Dew point"
msgctxt "#406"
msgid "Humidity"
msgstr "Humidity"
msgctxt "#409"
msgid "Defaults"
msgstr "Defaults"
msgctxt "#410"
msgid "Accessing weather service"
msgstr "Accessing weather service"
msgctxt "#411"
msgid "Getting weather for:"
msgstr "Getting weather for:"
msgctxt "#412"
msgid "Unable to get weather data"
msgstr "Unable to get weather data"
msgctxt "#413"
msgid "Manual"
msgstr "Manual"
msgctxt "#414"
msgid "No review for this album"
msgstr "No review for this album"
msgctxt "#415"
msgid "Downloading thumbnail..."
msgstr "Downloading thumbnail..."
msgctxt "#416"
msgid "Not available"
msgstr "Not available"
msgctxt "#417"
msgid "View: Big icons"
msgstr "View: Big icons"
msgctxt "#418"
msgid "Low"
msgstr "Low"
msgctxt "#419"
msgid "High"
msgstr "High"
msgctxt "#420"
msgid "Best Match"
msgstr "Best Match"
msgctxt "#421"
msgid "Keep audio device alive"
msgstr "Keep audio device alive"
msgctxt "#422"
msgid "Delete album info"
msgstr "Delete album info"
msgctxt "#423"
msgid "Delete CD information"
msgstr "Delete CD information"
msgctxt "#424"
msgid "Select"
msgstr "Select"
msgctxt "#425"
msgid "No album information found"
msgstr "No album information found"
msgctxt "#426"
msgid "No CD information found"
msgstr "No CD information found"
msgctxt "#427"
msgid "Disc"
msgstr "Disc"
msgctxt "#428"
msgid "Insert correct CD/DVD"
msgstr "Insert correct CD/DVD"
msgctxt "#429"
msgid "Please insert the following disc:"
msgstr "Please insert the following disc:"
msgctxt "#430"
msgid "Sort by: DVD#"
msgstr "Sort by: DVD#"
msgctxt "#431"
msgid "No cache"
msgstr "No cache"
msgctxt "#432"
msgid "Remove movie from library"
msgstr "Remove movie from library"
msgctxt "#433"
msgid "Really remove '%s'?"
msgstr "Really remove '%s'?"
msgctxt "#434"
msgid "From %s at %i %s"
msgstr "From %s at %i %s"
msgctxt "#435"
msgid "No optical disc drive detected"
msgstr "No optical disc drive detected"
msgctxt "#436"
msgid "You need an optical disc drive to play this video"
msgstr "You need an optical disc drive to play this video"
msgctxt "#437"
msgid "Removable disk"
msgstr "Removable disk"
msgctxt "#438"
msgid "Opening file"
msgstr "Opening file"
msgctxt "#439"
msgid "Cache"
msgstr "Cache"
msgctxt "#440"
msgid "Hard disk"
msgstr "Hard disk"
msgctxt "#441"
msgid "UDF"
msgstr "UDF"
msgctxt "#442"
msgid "Local network"
msgstr "Local network"
msgctxt "#443"
msgid "Internet"
msgstr "Internet"
msgctxt "#444"
msgid "Video"
msgstr "Video"
msgctxt "#445"
msgid "Audio"
msgstr "Audio"
msgctxt "#446"
msgid "DVD"
msgstr "DVD"
msgctxt "#447"
msgid "Autorun media"
msgstr "Autorun media"
msgctxt "#448"
msgid "Dolby Digital Plus (E-AC3) capable receiver"
msgstr "Dolby Digital Plus (E-AC3) capable receiver"
msgctxt "#449"
msgid "Enabled"
msgstr "Enabled"
msgctxt "#450"
msgid "Columns"
msgstr "Columns"
msgctxt "#451"
msgid "Row 1 address"
msgstr "Row 1 address"
msgctxt "#452"
msgid "Row 2 address"
msgstr "Row 2 address"
msgctxt "#453"
msgid "Row 3 address"
msgstr "Row 3 address"
msgctxt "#454"
msgid "Row 4 address"
msgstr "Row 4 address"
msgctxt "#455"
msgid "Rows"
msgstr "Rows"
msgctxt "#456"
msgid "Mode"
msgstr "Mode"
msgctxt "#457"
msgid "Switch view"
msgstr "Switch view"
msgctxt "#458"
msgid "Limit sampling rate (kHz)"
msgstr "Limit sampling rate (kHz)"
msgctxt "#459"
msgid "Subs"
msgstr "Subs"
msgctxt "#460"
msgid "Audio stream"
msgstr "Audio stream"
msgctxt "#461"
msgid "[active]"
msgstr "[active]"
msgctxt "#462"
msgid "Subtitle"
msgstr "Subtitle"
msgctxt "#463"
msgid "Backlight"
msgstr "Backlight"
msgctxt "#464"
msgid "Brightness"
msgstr "Brightness"
msgctxt "#465"
msgid "Contrast"
msgstr "Contrast"
msgctxt "#466"
msgid "Gamma"
msgstr "Gamma"
msgctxt "#467"
msgid "Type"
msgstr "Type"
msgctxt "#468"
msgid "Move the bar to change the OSD position"
msgstr "Move the bar to change the OSD position"
msgctxt "#469"
msgid "OSD position"
msgstr "OSD position"
msgctxt "#470"
msgid "Credits"
msgstr "Credits"
msgctxt "#474"
msgid "Off"
msgstr "Off"
msgctxt "#475"
msgid "Music only"
msgstr "Music only"
msgctxt "#476"
msgid "Music & video"
msgstr "Music & video"
msgctxt "#477"
msgid "Unable to load playlist"
msgstr "Unable to load playlist"
msgctxt "#478"
msgid "OSD"
msgstr "OSD"
msgctxt "#479"
msgid "Skin & language"
msgstr "Skin & language"
msgctxt "#480"
msgid "Appearance"
msgstr "Appearance"
msgctxt "#481"
msgid "Audio options"
msgstr "Audio options"
msgctxt "#482"
msgid "About XBMC"
msgstr "About XBMC"
msgctxt "#485"
msgid "Delete album"
msgstr "Delete album"
msgctxt "#486"
msgid "Repeat"
msgstr "Repeat"
msgctxt "#487"
msgid "Repeat one"
msgstr "Repeat one"
msgctxt "#488"
msgid "Repeat folder"
msgstr "Repeat folder"
msgctxt "#489"
msgid "Play the next song automatically"
msgstr "Play the next song automatically"
msgctxt "#491"
msgid "- Use big icons"
msgstr "- Use big icons"
msgctxt "#492"
msgid "Resize VobSubs"
msgstr "Resize VobSubs"
msgctxt "#493"
msgid "Advanced options (Experts Only!)"
msgstr "Advanced options (Experts Only!)"
msgctxt "#494"
msgid "Overall audio headroom"
msgstr "Overall audio headroom"
msgctxt "#495"
msgid "Upsample videos to GUI resolution"
msgstr "Upsample videos to GUI resolution"
msgctxt "#496"
msgid "Calibration"
msgstr "Calibration"
msgctxt "#497"
msgid "Show file extensions"
msgstr "Show file extensions"
msgctxt "#498"
msgid "Sort by: Type"
msgstr "Sort by: Type"
msgctxt "#499"
msgid "Unable to connect to online lookup service"
msgstr "Unable to connect to online lookup service"
msgctxt "#500"
msgid "Downloading album information failed"
msgstr "Downloading album information failed"
msgctxt "#501"
msgid "Looking for album names..."
msgstr "Looking for album names..."
msgctxt "#502"
msgid "Open"
msgstr "Open"
msgctxt "#503"
msgid "Busy"
msgstr "Busy"
msgctxt "#504"
msgid "Empty"
msgstr "Empty"
msgctxt "#505"
msgid "Loading media info from files..."
msgstr "Loading media info from files..."
msgctxt "#507"
msgid "Sort by: Usage"
msgstr "Sort by: Usage"
msgctxt "#510"
msgid "Enable visualisations"
msgstr "Enable visualisations"
msgctxt "#511"
msgid "Enable video mode switching"
msgstr "Enable video mode switching"
msgctxt "#512"
msgid "Startup window"
msgstr "Startup window"
msgctxt "#513"
msgid "Home window"
msgstr "Home window"
msgctxt "#514"
msgid "Manual settings"
msgstr "Manual settings"
msgctxt "#515"
msgid "Genre"
msgstr "Genre"
msgctxt "#517"
msgid "Recently played albums"
msgstr "Recently played albums"
msgctxt "#518"
msgid "Launch"
msgstr "Launch"
msgctxt "#519"
msgid "Launch in..."
msgstr "Launch in..."
msgctxt "#521"
msgid "Compilations"
msgstr "Compilations"
msgctxt "#522"
msgid "Remove source"
msgstr "Remove source"
msgctxt "#523"
msgid "Switch media"
msgstr "Switch media"
msgctxt "#524"
msgid "Select playlist"
msgstr "Select playlist"
msgctxt "#525"
msgid "New playlist..."
msgstr "New playlist..."
msgctxt "#526"
msgid "Add to playlist"
msgstr "Add to playlist"
msgctxt "#527"
msgid "Manually add to library"
msgstr "Manually add to library"
msgctxt "#528"
msgid "Enter title"
msgstr "Enter title"
msgctxt "#529"
msgid "Error: Duplicate title"
msgstr "Error: Duplicate title"
msgctxt "#530"
msgid "Select genre"
msgstr "Select genre"
msgctxt "#531"
msgid "New genre"
msgstr "New genre"
msgctxt "#532"
msgid "Manual addition"
msgstr "Manual addition"
msgctxt "#533"
msgid "Enter genre"
msgstr "Enter genre"
msgctxt "#534"
msgid "View: %s"
msgstr "View: %s"
msgctxt "#535"
msgid "List"
msgstr "List"
msgctxt "#536"
msgid "Icons"
msgstr "Icons"
msgctxt "#537"
msgid "Big list"
msgstr "Big list"
msgctxt "#538"
msgid "Big icons"
msgstr "Big icons"
msgctxt "#539"
msgid "Wide"
msgstr "Wide"
msgctxt "#540"
msgid "Big wide"
msgstr "Big wide"
msgctxt "#541"
msgid "Album icons"
msgstr "Album icons"
msgctxt "#542"
msgid "DVD icons"
msgstr "DVD icons"
msgctxt "#543"
msgid "DVD"
msgstr "DVD"
msgctxt "#544"
msgid "Media info"
msgstr "Media info"
msgctxt "#545"
msgid "Audio output device"
msgstr "Audio output device"
msgctxt "#546"
msgid "Passthrough output device"
msgstr "Passthrough output device"
msgctxt "#547"
msgid "No biography for this artist"
msgstr "No biography for this artist"
msgctxt "#548"
msgid "Downmix multichannel audio to stereo"
msgstr "Downmix multichannel audio to stereo"
msgctxt "#550"
msgid "Sort by: %s"
msgstr "Sort by: %s"
msgctxt "#551"
msgid "Name"
msgstr "Name"
msgctxt "#552"
msgid "Date"
msgstr "Date"
msgctxt "#553"
msgid "Size"
msgstr "Size"
msgctxt "#554"
msgid "Track"
msgstr "Track"
msgctxt "#555"
msgid "Time"
msgstr "Time"
msgctxt "#556"
msgid "Title"
msgstr "Title"
msgctxt "#557"
msgid "Artist"
msgstr "Artist"
msgctxt "#558"
msgid "Album"
msgstr "Album"
msgctxt "#559"
msgid "Playlist"
msgstr "Playlist"
msgctxt "#560"
msgid "ID"
msgstr "ID"
msgctxt "#561"
msgid "File"
msgstr "File"
msgctxt "#562"
msgid "Year"
msgstr "Year"
msgctxt "#563"
msgid "Rating"
msgstr "Rating"
msgctxt "#564"
msgid "Type"
msgstr "Type"
msgctxt "#565"
msgid "Usage"
msgstr "Usage"
msgctxt "#566"
msgid "Album artist"
msgstr "Album artist"
msgctxt "#567"
msgid "Play count"
msgstr "Play count"
msgctxt "#568"
msgid "Last played"
msgstr "Last played"
msgctxt "#569"
msgid "Comment"
msgstr "Comment"
msgctxt "#570"
msgid "Date added"
msgstr "Date added"
msgctxt "#571"
msgid "Default"
msgstr "Default"
msgctxt "#572"
msgid "Studio"
msgstr "Studio"
msgctxt "#573"
msgid "Path"
msgstr "Path"
msgctxt "#574"
msgid "Country"
msgstr "Country"
msgctxt "#575"
msgid "In progress"
msgstr "In progress"
msgctxt "#576"
msgid "Times played"
msgstr "Times played"
msgctxt "#577"
msgid "Date Taken"
msgstr "Date Taken"
msgctxt "#580"
msgid "Sort direction"
msgstr "Sort direction"
msgctxt "#581"
msgid "Sort method"
msgstr "Sort method"
msgctxt "#582"
msgid "View mode"
msgstr "View mode"
msgctxt "#583"
msgid "Remember views for different folders"
msgstr "Remember views for different folders"
msgctxt "#584"
msgid "Ascending"
msgstr "Ascending"
msgctxt "#585"
msgid "Descending"
msgstr "Descending"
msgctxt "#586"
msgid "Edit playlist"
msgstr "Edit playlist"
msgctxt "#587"
msgid "Filter"
msgstr "Filter"
msgctxt "#588"
msgid "Cancel party mode"
msgstr "Cancel party mode"
msgctxt "#589"
msgid "Party mode"
msgstr "Party mode"
msgctxt "#590"
msgid "Random"
msgstr "Random"
msgctxt "#591"
msgid "Off"
msgstr "Off"
msgctxt "#592"
msgid "One"
msgstr "One"
msgctxt "#593"
msgid "All"
msgstr "All"
msgctxt "#594"
msgid "Off"
msgstr "Off"
msgctxt "#595"
msgid "Repeat: Off"
msgstr "Repeat: Off"
msgctxt "#596"
msgid "Repeat: One"
msgstr "Repeat: One"
msgctxt "#597"
msgid "Repeat: All"
msgstr "Repeat: All"
msgctxt "#600"
msgid "Rip audio CD"
msgstr "Rip audio CD"
msgctxt "#601"
msgid "Medium"
msgstr "Medium"
msgctxt "#602"
msgid "Standard"
msgstr "Standard"
msgctxt "#603"
msgid "Extreme"
msgstr "Extreme"
msgctxt "#604"
msgid "Constant bitrate"
msgstr "Constant bitrate"
msgctxt "#605"
msgid "Ripping..."
msgstr "Ripping..."
msgctxt "#607"
msgid "To:"
msgstr "To:"
msgctxt "#608"
msgid "Could not rip CD or track"
msgstr "Could not rip CD or track"
msgctxt "#609"
msgid "CDDARipPath is not set."
msgstr "CDDARipPath is not set."
msgctxt "#610"
msgid "Rip audio track"
msgstr "Rip audio track"
msgctxt "#611"
msgid "Enter number"
msgstr "Enter number"
msgctxt "#612"
msgid "Bits/sample"
msgstr "Bits/sample"
msgctxt "#613"
msgid "Sample rate"
msgstr "Sample rate"
msgctxt "#614"
msgid "Virtual folder"
msgstr "Virtual folder"
msgctxt "#620"
msgid "Audio CDs"
msgstr "Audio CDs"
msgctxt "#621"
msgid "Encoder"
msgstr "Encoder"
msgctxt "#622"
msgid "Quality"
msgstr "Quality"
msgctxt "#623"
msgid "Bitrate"
msgstr "Bitrate"
msgctxt "#624"
msgid "Include track number"
msgstr "Include track number"
msgctxt "#625"
msgid "All songs of"
msgstr "All songs of"
msgctxt "#626"
msgid "In progress TV shows"
msgstr "In progress TV shows"
msgctxt "#629"
msgid "View mode"
msgstr "View mode"
msgctxt "#630"
msgid "Normal"
msgstr "Normal"
msgctxt "#631"
msgid "Zoom"
msgstr "Zoom"
msgctxt "#632"
msgid "Stretch 4:3"
msgstr "Stretch 4:3"
msgctxt "#633"
msgid "Wide Zoom"
msgstr "Wide Zoom"
msgctxt "#634"
msgid "Stretch 16:9"
msgstr "Stretch 16:9"
msgctxt "#635"
msgid "Original Size"
msgstr "Original Size"
msgctxt "#636"
msgid "Custom"
msgstr "Custom"
msgctxt "#637"
msgid "ReplayGain"
msgstr "ReplayGain"
msgctxt "#638"
msgid "ReplayGain volume adjustments"
msgstr "ReplayGain volume adjustments"
msgctxt "#639"
msgid "Use track levels"
msgstr "Use track levels"
msgctxt "#640"
msgid "Use album levels"
msgstr "Use album levels"
msgctxt "#641"
msgid "PreAmp Level - ReplayGained files"
msgstr "PreAmp Level - ReplayGained files"
msgctxt "#642"
msgid "PreAmp Level - Non ReplayGained files"
msgstr "PreAmp Level - Non ReplayGained files"
msgctxt "#643"
msgid "Avoid clipping on ReplayGained files"
msgstr "Avoid clipping on ReplayGained files"
msgctxt "#644"
msgid "Crop black bars"
msgstr "Crop black bars"
msgctxt "#645"
msgid "Need to unpack a big file. Continue?"
msgstr "Need to unpack a big file. Continue?"
msgctxt "#646"
msgid "Remove from library"
msgstr "Remove from library"
msgctxt "#647"
msgid "Export video library"
msgstr "Export video library"
msgctxt "#648"
msgid "Import video library"
msgstr "Import video library"
msgctxt "#649"
msgid "Importing"
msgstr "Importing"
msgctxt "#650"
msgid "Exporting"
msgstr "Exporting"
msgctxt "#651"
msgid "Browse for library"
msgstr "Browse for library"
msgctxt "#653"
msgid "Update library"
msgstr "Update library"
msgctxt "#654"
msgid "Show debug info"
msgstr "Show debug info"
msgctxt "#655"
msgid "Browse for executable"
msgstr "Browse for executable"
msgctxt "#656"
msgid "Browse for playlist"
msgstr "Browse for playlist"
msgctxt "#657"
msgid "Browse for folder"
msgstr "Browse for folder"
msgctxt "#658"
msgid "Song information"
msgstr "Song information"
msgctxt "#659"
msgid "Non-linear stretch"
msgstr "Non-linear stretch"
msgctxt "#660"
msgid "Volume amplification"
msgstr "Volume amplification"
msgctxt "#661"
msgid "Choose export folder"
msgstr "Choose export folder"
msgctxt "#662"
msgid "This file is no longer available."
msgstr "This file is no longer available."
msgctxt "#663"
msgid "Would you like to remove it from the library?"
msgstr "Would you like to remove it from the library?"
msgctxt "#664"
msgid "Browse for Script"
msgstr "Browse for Script"
msgctxt "#665"
msgid "Compression level"
msgstr "Compression level"
msgctxt "#666"
msgid "Verbose logging..."
msgstr "Verbose logging..."
msgctxt "#700"
msgid "Cleaning up library"
msgstr "Cleaning up library"
msgctxt "#701"
msgid "Removing old songs from the library"
msgstr "Removing old songs from the library"
msgctxt "#702"
msgid "This path has been scanned before"
msgstr "This path has been scanned before"
msgctxt "#705"
msgid "Network"
msgstr "Network"
msgctxt "#706"
msgid "Server"
msgstr "Server"
msgctxt "#708"
msgid "Use an HTTP proxy server to access the internet"
msgstr "Use an HTTP proxy server to access the internet"
msgctxt "#711"
msgid "Internet Protocol (IP)"
msgstr "Internet Protocol (IP)"
msgctxt "#712"
msgid "Invalid port specified. Value must be between 1 and 65535."
msgstr "Invalid port specified. Value must be between 1 and 65535."
msgctxt "#713"
msgid "HTTP proxy"
msgstr "HTTP proxy"
msgctxt "#715"
msgid "Assignment"
msgstr "Assignment"
msgctxt "#716"
msgid "Automatic (DHCP)"
msgstr "Automatic (DHCP)"
msgctxt "#717"
msgid "Manual (Static)"
msgstr "Manual (Static)"
msgctxt "#719"
msgid "IP address"
msgstr "IP address"
msgctxt "#720"
msgid "Netmask"
msgstr "Netmask"
msgctxt "#721"
msgid "Default gateway"
msgstr "Default gateway"
msgctxt "#722"
msgid "DNS server"
msgstr "DNS server"
msgctxt "#723"
msgid "Save & restart"
msgstr "Save & restart"
msgctxt "#724"
msgid "Invalid address specified. Value must be AAA.BBB.CCC.DDD"
msgstr "Invalid address specified. Value must be AAA.BBB.CCC.DDD"
msgctxt "#725"
msgid "with numbers between 0 and 255."
msgstr "with numbers between 0 and 255."
msgctxt "#726"
msgid "Changes not saved. Continue without saving?"
msgstr "Changes not saved. Continue without saving?"
msgctxt "#727"
msgid "Web server"
msgstr "Web server"
msgctxt "#728"
msgid "FTP server"
msgstr "FTP server"
msgctxt "#730"
msgid "Port"
msgstr "Port"
msgctxt "#732"
msgid "Save & apply"
msgstr "Save & apply"
msgctxt "#733"
msgid "Password"
msgstr "Password"
msgctxt "#734"
msgid "No pass"
msgstr "No pass"
msgctxt "#735"
msgid "Character set"
msgstr "Character set"
msgctxt "#736"
msgid "Style"
msgstr "Style"
msgctxt "#737"
msgid "Colour"
msgstr "Colour"
msgctxt "#738"
msgid "Normal"
msgstr "Normal"
msgctxt "#739"
msgid "Bold"
msgstr "Bold"
msgctxt "#740"
msgid "Italics"
msgstr "Italics"
msgctxt "#741"
msgid "Bold italics"
msgstr "Bold italics"
msgctxt "#742"
msgid "White"
msgstr "White"
msgctxt "#743"
msgid "Yellow"
msgstr "Yellow"
msgctxt "#744"
msgid "Files"
msgstr "Files"
msgctxt "#745"
msgid "No scanned information for this view"
msgstr "No scanned information for this view"
msgctxt "#746"
msgid "Please turn off library mode"
msgstr "Please turn off library mode"
msgctxt "#747"
msgid "Error loading image"
msgstr "Error loading image"
msgctxt "#748"
msgid "Edit path"
msgstr "Edit path"
msgctxt "#749"
msgid "Mirror image"
msgstr "Mirror image"
msgctxt "#750"
msgid "Are you sure?"
msgstr "Are you sure?"
msgctxt "#751"
msgid "Removing source"
msgstr "Removing source"
msgctxt "#754"
msgid "Add program link"
msgstr "Add program link"
msgctxt "#755"
msgid "Edit program path"
msgstr "Edit program path"
msgctxt "#756"
msgid "Edit program name"
msgstr "Edit program name"
msgctxt "#757"
msgid "Edit path depth"
msgstr "Edit path depth"
msgctxt "#759"
msgid "View: Big list"
msgstr "View: Big list"
msgctxt "#760"
msgid "Yellow"
msgstr "Yellow"
msgctxt "#761"
msgid "White"
msgstr "White"
msgctxt "#762"
msgid "Blue"
msgstr "Blue"
msgctxt "#763"
msgid "Bright green"
msgstr "Bright green"
msgctxt "#764"
msgid "Yellow green"
msgstr "Yellow green"
msgctxt "#765"
msgid "Cyan"
msgstr "Cyan"
msgctxt "#766"
msgid "Light grey"
msgstr "Light grey"
msgctxt "#767"
msgid "Grey"
msgstr "Grey"
msgctxt "#770"
msgid "Error %i: share not available"
msgstr "Error %i: share not available"
msgctxt "#772"
msgid "Audio output"
msgstr "Audio output"
msgctxt "#773"
msgid "Seeking"
msgstr "Seeking"
msgctxt "#774"
msgid "Slideshow folder"
msgstr "Slideshow folder"
msgctxt "#775"
msgid "Network interface"
msgstr "Network interface"
msgctxt "#776"
msgid "Wireless network name (ESSID)"
msgstr "Wireless network name (ESSID)"
msgctxt "#777"
msgid "Wireless password"
msgstr "Wireless password"
msgctxt "#778"
msgid "Wireless security"
msgstr "Wireless security"
msgctxt "#779"
msgid "Save and apply network interface settings"
msgstr "Save and apply network interface settings"
msgctxt "#780"
msgid "No encryption"
msgstr "No encryption"
msgctxt "#781"
msgid "WEP"
msgstr "WEP"
msgctxt "#782"
msgid "WPA"
msgstr "WPA"
msgctxt "#783"
msgid "WPA2"
msgstr "WPA2"
msgctxt "#784"
msgid "Applying network interface settings. Please wait."
msgstr "Applying network interface settings. Please wait."
msgctxt "#785"
msgid "Network interface restarted successfully."
msgstr "Network interface restarted successfully."
msgctxt "#786"
msgid "Network interface did not start successfully."
msgstr "Network interface did not start successfully."
msgctxt "#787"
msgid "Interface disabled"
msgstr "Interface disabled"
msgctxt "#788"
msgid "Network interface disabled successfully."
msgstr "Network interface disabled successfully."
msgctxt "#789"
msgid "Wireless network name (ESSID)"
msgstr "Wireless network name (ESSID)"
msgctxt "#790"
msgid "Remote control"
msgstr "Remote control"
msgctxt "#791"
msgid "Allow programs on this system to control XBMC"
msgstr "Allow programs on this system to control XBMC"
msgctxt "#792"
msgid "Port"
msgstr "Port"
msgctxt "#793"
msgid "Port range"
msgstr "Port range"
msgctxt "#794"
msgid "Allow programs on other systems to control XBMC"
msgstr "Allow programs on other systems to control XBMC"
msgctxt "#795"
msgid "Initial repeat delay (ms)"
msgstr "Initial repeat delay (ms)"
msgctxt "#796"
msgid "Continuous repeat delay (ms)"
msgstr "Continuous repeat delay (ms)"
msgctxt "#797"
msgid "Maximum number of clients"
msgstr "Maximum number of clients"
msgctxt "#798"
msgid "Internet access"
msgstr "Internet access"
msgctxt "#799"
msgid "Library Update"
msgstr "Library Update"
msgctxt "#800"
msgid "Music library needs to rescan tags from files."
msgstr "Music library needs to rescan tags from files."
msgctxt "#801"
msgid "Would you like to scan now?"
msgstr "Would you like to scan now?"
msgctxt "#850"
msgid "Invalid port number entered"
msgstr "Invalid port number entered"
msgctxt "#851"
msgid "Valid port range is 1-65535"
msgstr "Valid port range is 1-65535"
msgctxt "#852"
msgid "Valid port range is 1024-65535"
msgstr "Valid port range is 1024-65535"
msgctxt "#997"
msgid "Add Pictures..."
msgstr "Add Pictures..."
msgctxt "#998"
msgid "Add Music..."
msgstr "Add Music..."
msgctxt "#999"
msgid "Add Videos..."
msgstr "Add Videos..."
msgctxt "#1000"
msgid "Preview"
msgstr "Preview"
msgctxt "#1001"
msgid "Unable to connect"
msgstr "Unable to connect"
msgctxt "#1002"
msgid "XBMC was unable to connect to the network location."
msgstr "XBMC was unable to connect to the network location."
msgctxt "#1003"
msgid "This could be due to the network not being connected."
msgstr "This could be due to the network not being connected."
msgctxt "#1004"
msgid "Would you like to add it anyway?"
msgstr "Would you like to add it anyway?"
msgctxt "#1006"
msgid "IP address"
msgstr "IP address"
msgctxt "#1007"
msgid "Add network location"
msgstr "Add network location"
msgctxt "#1008"
msgid "Protocol"
msgstr "Protocol"
msgctxt "#1009"
msgid "Server address"
msgstr "Server address"
msgctxt "#1010"
msgid "Server name"
msgstr "Server name"
msgctxt "#1011"
msgid "Remote path"
msgstr "Remote path"
msgctxt "#1012"
msgid "Shared folder"
msgstr "Shared folder"
msgctxt "#1013"
msgid "Port"
msgstr "Port"
msgctxt "#1014"
msgid "Username"
msgstr "Username"
msgctxt "#1015"
msgid "Browse for network server"
msgstr "Browse for network server"
msgctxt "#1016"
msgid "Enter the network address of the server"
msgstr "Enter the network address of the server"
msgctxt "#1017"
msgid "Enter the path on the server"
msgstr "Enter the path on the server"
msgctxt "#1018"
msgid "Enter the port number"
msgstr "Enter the port number"
msgctxt "#1019"
msgid "Enter the username"
msgstr "Enter the username"
msgctxt "#1020"
msgid "Add %s source"
msgstr "Add %s source"
msgctxt "#1021"
msgid "Enter the paths or browse for the media locations."
msgstr "Enter the paths or browse for the media locations."
msgctxt "#1022"
msgid "Enter a name for this media Source."
msgstr "Enter a name for this media Source."
msgctxt "#1023"
msgid "Browse for new share"
msgstr "Browse for new share"
msgctxt "#1024"
msgid "Browse"
msgstr "Browse"
msgctxt "#1025"
msgid "Could not retrieve directory information."
msgstr "Could not retrieve directory information."
msgctxt "#1026"
msgid "Add source"
msgstr "Add source"
msgctxt "#1027"
msgid "Edit source"
msgstr "Edit source"
msgctxt "#1028"
msgid "Edit %s source"
msgstr "Edit %s source"
msgctxt "#1044"
msgid "Set plug-in thumb"
msgstr "Set plug-in thumb"
msgctxt "#1048"
msgid "Username"
msgstr "Username"
msgctxt "#1211"
msgid "Music"
msgstr "Music"
msgctxt "#1212"
msgid "Video"
msgstr "Video"
msgctxt "#1213"
msgid "Pictures"
msgstr "Pictures"
msgctxt "#1214"
msgid "Files"
msgstr "Files"
msgctxt "#1269"
msgid "Allow volume control"
msgstr "Allow volume control"
msgctxt "#1300"
msgid "Custom audio device"
msgstr "Custom audio device"
msgctxt "#1301"
msgid "Custom passthrough device"
msgstr "Custom passthrough device"
msgctxt "#1403"
msgid "Sun"
msgstr "Sun"
msgctxt "#1418"
msgid "Thunderstorms"
msgstr "Thunderstorms"
msgctxt "#1438"
msgid "Small"
msgstr "Small"
msgctxt "#10001"
msgid "Programs"
msgstr "Programs"
msgctxt "#10002"
msgid "Pictures"
msgstr "Pictures"
msgctxt "#10003"
msgid "File manager"
msgstr "File manager"
msgctxt "#10004"
msgid "Settings"
msgstr "Settings"
msgctxt "#10005"
msgid "Music"
msgstr "Music"
msgctxt "#10006"
msgid "Videos"
msgstr "Videos"
msgctxt "#10020"
msgid "Scripts"
msgstr "Scripts"
msgctxt "#10025"
msgid "Videos"
msgstr "Videos"
msgctxt "#10036"
msgid "Basic"
msgstr "Basic"
msgctxt "#10037"
msgid "Standard"
msgstr "Standard"
msgctxt "#10038"
msgid "Advanced"
msgstr "Advanced"
msgctxt "#10039"
msgid "Expert"
msgstr "Expert"
msgctxt "#10040"
msgid "Add-on browser"
msgstr "Add-on browser"
msgctxt "#10041"
msgid "Reset above settings to default"
msgstr "Reset above settings to default"
msgctxt "#10045"
msgid "Resets all the visible settings to their default values."
msgstr "Resets all the visible settings to their default values."
msgctxt "#10046"
msgid "No categories available"
msgstr "No categories available"
msgctxt "#10047"
msgid "Try changing the setting level to see additional categories and settings."
msgstr "Try changing the setting level to see additional categories and settings."
msgctxt "#10100"
msgid "Yes/No dialogue"
msgstr "Yes/No dialogue"
msgctxt "#10101"
msgid "Progress dialogue"
msgstr "Progress dialogue"
msgctxt "#10506"
msgid "Programs"
msgstr "Programs"
msgctxt "#10511"
msgid "System info"
msgstr "System info"
msgctxt "#12000"
msgid "Select dialogue"
msgstr "Select dialogue"
msgctxt "#12002"
msgid "Dialogue OK"
msgstr "Dialogue OK"
msgctxt "#12006"
msgid "Audio visualisation"
msgstr "Audio visualisation"
msgctxt "#12008"
msgid "File stacking dialogue"
msgstr "File stacking dialogue"
msgctxt "#12347"
msgid "The system will now power down."
msgstr "The system will now power down."
msgctxt "#12600"
msgid "Weather"
msgstr "Weather"
msgctxt "#12900"
msgid "Screensaver"
msgstr "Screensaver"
msgctxt "#13014"
msgid "Minimise"
msgstr "Minimise"
msgctxt "#13111"
msgid "Would you like to keep this change?"
msgstr "Would you like to keep this change?"
msgctxt "#13122"
msgid "VDPAU Studio level colour conversion"
msgstr "VDPAU Studio level colour conversion"
msgctxt "#13123"
msgid "Keep skin?"
msgstr "Keep skin?"
msgctxt "#13162"
msgid "Initialise failed"
msgstr "Initialise failed"
msgctxt "#13170"
msgid "Never"
msgstr "Never"
msgctxt "#13277"
msgid "Storage"
msgstr "Storage"
msgctxt "#13278"
msgid "Default"
msgstr "Default"
msgctxt "#13279"
msgid "Network"
msgstr "Network"
msgctxt "#13280"
msgid "Video"
msgstr "Video"
msgctxt "#13296"
msgid "Connected"
msgstr "Connected"
msgctxt "#13319"
msgid "Randomise"
msgstr "Randomise"
msgctxt "#13350"
msgid "Current playlist"
msgstr "Current playlist"
msgctxt "#13389"
msgid "There are no presets available\nfor this visualisation"
msgstr "There are no presets available\nfor this visualisation"
msgctxt "#13390"
msgid "There are no settings available\nfor this visualisation"
msgstr "There are no settings available\nfor this visualisation"
msgctxt "#13392"
msgid "Use visualisation if playing audio"
msgstr "Use visualisation if playing audio"
msgctxt "#13398"
msgid "Shortcuts"
msgstr "Shortcuts"
msgctxt "#13436"
msgid "Allow hardware acceleration (libstagefright)"
msgstr "Allow hardware acceleration (libstagefright)"
msgctxt "#13437"
msgid "Prefer VDPAU Video Mixer"
msgstr "Prefer VDPAU Video Mixer"
msgctxt "#13438"
msgid "Allow hardware acceleration (amcodec)"
msgstr "Allow hardware acceleration (amcodec)"
msgctxt "#13439"
msgid "Allow hardware acceleration (MediaCodec)"
msgstr "Allow hardware acceleration (MediaCodec)"
msgctxt "#13442"
msgid "Enable this option to use hardware acceleration for Mpeg-(1/2) codecs. If disabled the CPU will be used instead. Older Radeon Cards tend to segfault with this enabled."
msgstr "Enable this option to use hardware acceleration for Mpeg-(1/2) codecs. If disabled the CPU will be used instead. Older Radeon Cards tend to segfault with this enabled."
msgctxt "#13446"
msgid "Enable this option to use hardware acceleration for VC-1 based codecs. If disabled the CPU will be used instead. AMD Hardware with VDPAU cannot decode VC-1 Simple."
msgstr "Enable this option to use hardware acceleration for VC-1 based codecs. If disabled the CPU will be used instead. AMD Hardware with VDPAU cannot decode VC-1 Simple."
msgctxt "#13448"
msgid "Enable this option to use hardware acceleration for Mpeg-(1/2) codecs. If disabled the CPU will be used instead. Some Mpeg-2 Videos might have green artifacts."
msgstr "Enable this option to use hardware acceleration for Mpeg-(1/2) codecs. If disabled the CPU will be used instead. Some Mpeg-2 Videos might have green artifacts."
msgctxt "#13450"
msgid "Enable this option to use hardware acceleration for the Mpeg-4 codec. If disabled the CPU will be used instead."
msgstr "Enable this option to use hardware acceleration for the Mpeg-4 codec. If disabled the CPU will be used instead."
msgctxt "#13504"
msgid "Maximum speedup/slowdown amount (%)"
msgstr "Maximum speedup/slowdown amount (%)"
msgctxt "#13507"
msgid "Medium"
msgstr "Medium"
msgctxt "#13508"
msgid "High"
msgstr "High"
msgctxt "#13551"
msgid "Off"
msgstr "Off"
msgctxt "#13554"
msgid "%d Minute"
msgstr "%d Minute"
msgctxt "#13555"
msgid "%d Minutes"
msgstr "%d Minutes"
msgctxt "#13611"
msgid "Standard"
msgstr "Standard"
msgctxt "#14025"
msgid "Video/Audio/DVD cache - Hard disk"
msgstr "Video/Audio/DVD cache - Hard disk"
msgctxt "#14091"
msgid "Character set"
msgstr "Character set"
msgctxt "#14098"
msgid "Play"
msgstr "Play"
msgctxt "#15052"
msgid "Password"
msgstr "Password"
msgctxt "#15109"
msgid "Skin default"
msgstr "Skin default"
msgctxt "#15207"
msgid "Connected"
msgstr "Connected"
msgctxt "#15214"
msgid "Use smoothed A/V synchronisation"
msgstr "Use smoothed A/V synchronisation"
msgctxt "#16000"
msgid "General"
msgstr "General"
msgctxt "#16018"
msgid "None"
msgstr "None"
msgctxt "#16032"
msgid "Could not initialise database."
msgstr "Could not initialise database."
msgctxt "#16039"
msgid "Off"
msgstr "Off"
msgctxt "#16106"
msgid "Manage..."
msgstr "Manage..."
msgctxt "#16107"
msgid "Edit sort title"
msgstr "Edit sort title"
msgctxt "#16315"
msgid "Lanczos3 optimised"
msgstr "Lanczos3 optimised"
msgctxt "#16323"
msgid "Spline36 optimised"
msgstr "Spline36 optimised"
msgctxt "#16325"
msgid "VDPAU - Bob"
msgstr "VDPAU - Bob"
msgctxt "#19014"
msgid "Fixed"
msgstr "Fixed"
msgctxt "#19020"
msgid "TV"
msgstr "TV"
msgctxt "#19031"
msgid "Next"
msgstr "Next"
msgctxt "#19099"
msgid "Service"
msgstr "Service"
msgctxt "#19171"
msgid "Start playback minimised"
msgstr "Start playback minimised"
msgctxt "#19180"
msgid "TV"
msgstr "TV"
msgctxt "#19190"
msgid "Minimised"
msgstr "Minimised"
msgctxt "#19230"
msgid "Prevent EPG updates during playback"
msgstr "Prevent EPG updates during playback"
msgctxt "#20060"
msgid "Media info"
msgstr "Media info"
msgctxt "#20086"
msgid "Show available disk space C: E: F:"
msgstr "Show available disk space C: E: F:"
msgctxt "#20087"
msgid "Show available disk space E: F: G:"
msgstr "Show available disk space E: F: G:"
msgctxt "#20109"
msgid "Zoom"
msgstr "Zoom"
msgctxt "#20142"
msgid "Username"
msgstr "Username"
msgctxt "#20150"
msgid "Custom shutdown timer"
msgstr "Custom shutdown timer"
msgctxt "#20173"
msgid "FTP server"
msgstr "FTP server"
msgctxt "#20190"
msgid "Custom"
msgstr "Custom"
msgctxt "#20331"
msgid "File"
msgstr "File"
msgctxt "#20342"
msgid "Movies"
msgstr "Movies"
msgctxt "#20414"
msgid "Show fanart in video and music libraries"
msgstr "Show fanart in video and music libraries"
msgctxt "#20420"
msgid "Never"
msgstr "Never"
msgctxt "#20422"
msgid "Always"
msgstr "Always"
msgctxt "#20435"
msgid "Combine split video items"
msgstr "Combine split video items"
msgctxt "#20445"
msgid "Fanart"
msgstr "Fanart"
msgctxt "#20456"
msgid "Flatten library hierarchy"
msgstr "Flatten library hierarchy"
msgctxt "#21366"
msgid "Custom subtitle folder"
msgstr "Custom subtitle folder"
msgctxt "#21375"
msgid "Normal"
msgstr "Normal"
msgctxt "#21385"
msgid "Open"
msgstr "Open"
msgctxt "#21387"
msgid "Fast"
msgstr "Fast"
msgctxt "#21389"
msgid "Enable custom background"
msgstr "Enable custom background"
msgctxt "#21417"
msgid "Settings"
msgstr "Settings"
msgctxt "#21461"
msgid "Fixed"
msgstr "Fixed"
msgctxt "#21805"
msgid "Resolution"
msgstr "Resolution"
msgctxt "#21806"
msgid "Comment"
msgstr "Comment"
msgctxt "#21875"
msgid "Country"
msgstr "Country"
msgctxt "#22021"
msgid "Allowed error in aspect ratio to minimise black bars"
msgstr "Allowed error in aspect ratio to minimise black bars"
msgctxt "#22030"
msgid "Font"
msgstr "Font"
msgctxt "#22031"
msgid "Size"
msgstr "Size"
msgctxt "#24008"
msgid "Screensaver"
msgstr "Screensaver"
msgctxt "#24010"
msgid "Visualisation"
msgstr "Visualisation"
msgctxt "#24012"
msgid "Subtitles"
msgstr "Subtitles"
msgctxt "#24013"
msgid "Lyrics"
msgstr "Lyrics"
msgctxt "#24027"
msgid "Weather"
msgstr "Weather"
msgctxt "#24106"
msgid "Specify where downloaded subtitles should be saved, the same location as the video or a custom location."
msgstr "Specify where downloaded subtitles should be saved, the same location as the video or a custom location."
msgctxt "#24115"
msgid "Subtitle storage location"
msgstr "Subtitle storage location"
msgctxt "#24117"
msgid "Select service that will be used as default to search for TV Show subtitles."
msgstr "Select service that will be used as default to search for TV Show subtitles."
msgctxt "#24119"
msgid "Select service that will be used as default to search for Movie subtitles."
msgstr "Select service that will be used as default to search for Movie subtitles."
msgctxt "#24123"
msgid "Pause the current video while searching for subtitles and resume once the subtitle is available."
msgstr "Pause the current video while searching for subtitles and resume once the subtitle is available."
msgctxt "#24125"
msgid "Custom location"
msgstr "Custom location"
msgctxt "#33063"
msgid "Options"
msgstr "Options"
msgctxt "#33068"
msgid "Background"
msgstr "Background"
msgctxt "#33070"
msgid "Custom background"
msgstr "Custom background"
msgctxt "#33071"
msgid "Custom backgrounds"
msgstr "Custom backgrounds"
msgctxt "#33081"
msgid "This file is stacked, select the part you want to play from."
msgstr "This file is stacked, select the part you want to play from."
msgctxt "#33083"
msgid "Enable custom script button"
msgstr "Enable custom script button"
msgctxt "#34006"
msgid "MPEG-4 Audio (FFmpeg M4A AAC)"
msgstr "MPEG-4 Audio (FFmpeg M4A AAC)"
msgctxt "#34007"
msgid "Windows Media Audio 2 (FFmpeg wmav2)"
msgstr "Windows Media Audio 2 (FFmpeg wmav2)"
msgctxt "#34100"
msgid "Number of channels"
msgstr "Number of channels"
msgctxt "#34120"
msgid "Play GUI sounds"
msgstr "Play GUI sounds"
msgctxt "#34121"
msgid "Only when playback stopped"
msgstr "Only when playback stopped"
msgctxt "#34122"
msgid "Always"
msgstr "Always"
msgctxt "#34123"
msgid "Never"
msgstr "Never"
msgctxt "#34201"
msgid "Can't find a next item to play"
msgstr "Can't find a next item to play"
msgctxt "#34202"
msgid "Can't find a previous item to play"
msgstr "Can't find a previous item to play"
msgctxt "#34300"
msgid "Failed to start Zeroconf"
msgstr "Failed to start Zeroconf"
msgctxt "#34301"
msgid "Is Apple's Bonjour Service installed? See log for more info."
msgstr "Is Apple's Bonjour Service installed? See log for more info."
msgctxt "#34302"
msgid "AirPlay requires Zeroconf to be enabled."
msgstr "AirPlay requires Zeroconf to be enabled."
msgctxt "#34303"
msgid "Unable to stop Zeroconf"
msgstr "Unable to stop Zeroconf"
msgctxt "#34304"
msgid "AirPlay and AirTunes depend on Zeroconf running."
msgstr "AirPlay and AirTunes depend on Zeroconf running."
msgctxt "#34400"
msgid "Video Rendering"
msgstr "Video Rendering"
msgctxt "#34401"
msgid "Failed to init video filters/scalers, falling back to bilinear scaling"
msgstr "Failed to init video filters/scalers, falling back to bilinear scaling"
msgctxt "#34402"
msgid "Failed to initialise audio device"
msgstr "Failed to initialise audio device"
msgctxt "#34403"
msgid "Check your audiosettings"
msgstr "Check your audiosettings"
msgctxt "#34404"
msgid "Use gestures for navigation:"
msgstr "Use gestures for navigation:"
msgctxt "#34405"
msgid "1 finger swipe left,right,up,down for cursors"
msgstr "1 finger swipe left,right,up,down for cursors"
msgctxt "#34406"
msgid "2 finger swipe left for backspace"
msgstr "2 finger swipe left for backspace"
msgctxt "#34407"
msgid "1 finger single tap for enter"
msgstr "1 finger single tap for enter"
msgctxt "#34408"
msgid "2 finger single tap or 1 finger long press for contextmenu"
msgstr "2 finger single tap or 1 finger long press for contextmenu"
msgctxt "#35000"
msgid "Peripherals"
msgstr "Peripherals"
msgctxt "#35001"
msgid "Generic HID device"
msgstr "Generic HID device"
msgctxt "#35002"
msgid "Generic network adaptor"
msgstr "Generic network adaptor"
msgctxt "#35003"
msgid "Generic disk"
msgstr "Generic disk"
msgctxt "#35004"
msgid "There are no settings available\nfor this peripheral."
msgstr "There are no settings available\nfor this peripheral."
msgctxt "#35005"
msgid "New device configured"
msgstr "New device configured"
msgctxt "#35006"
msgid "Device removed"
msgstr "Device removed"
msgctxt "#35007"
msgid "Keymap to use for this device"
msgstr "Keymap to use for this device"
msgctxt "#35008"
msgid "Keymap enabled"
msgstr "Keymap enabled"
msgctxt "#35009"
msgid "Do not use the custom keymap for this device"
msgstr "Do not use the custom keymap for this device"
msgctxt "#35100"
msgid "Enable joystick and gamepad support"
msgstr "Enable joystick and gamepad support"
msgctxt "#35102"
msgid "Disable joystick when this device is present"
msgstr "Disable joystick when this device is present"
msgctxt "#35500"
msgid "Location"
msgstr "Location"
msgctxt "#35501"
msgid "Class"
msgstr "Class"
msgctxt "#35502"
msgid "Name"
msgstr "Name"
msgctxt "#35503"
msgid "Vendor"
msgstr "Vendor"
msgctxt "#35504"
msgid "Product ID"
msgstr "Product ID"
msgctxt "#36000"
msgid "Pulse-Eight CEC adaptor"
msgstr "Pulse-Eight CEC adaptor"
msgctxt "#36001"
msgid "Pulse-Eight Nyxboard"
msgstr "Pulse-Eight Nyxboard"
msgctxt "#36002"
msgid "Switch to keyboard side command"
msgstr "Switch to keyboard side command"
msgctxt "#36003"
msgid "Switch to remote side command"
msgstr "Switch to remote side command"
msgctxt "#36004"
msgid "Press \"user\" button command"
msgstr "Press \"user\" button command"
msgctxt "#36005"
msgid "Enable switch side commands"
msgstr "Enable switch side commands"
msgctxt "#36006"
msgid "Could not open the adaptor"
msgstr "Could not open the adaptor"
msgctxt "#36007"
msgid "Devices to power on when starting XBMC"
msgstr "Devices to power on when starting XBMC"
msgctxt "#36008"
msgid "Devices to power off when stopping XBMC"
msgstr "Devices to power off when stopping XBMC"
msgctxt "#36009"
msgid "Put devices in standby mode when activating screensaver"
msgstr "Put devices in standby mode when activating screensaver"
msgctxt "#36010"
msgid "Wake devices when deactivating screensaver"
msgstr "Wake devices when deactivating screensaver"
msgctxt "#36011"
msgid "Could not detect the CEC com port. Set it up manually."
msgstr "Could not detect the CEC com port. Set it up manually."
msgctxt "#36012"
msgid "Could not initialise the CEC adaptor. Please check your settings."
msgstr "Could not initialise the CEC adaptor. Please check your settings."
msgctxt "#36015"
msgid "HDMI port number"
msgstr "HDMI port number"
msgctxt "#36016"
msgid "Connected"
msgstr "Connected"
msgctxt "#36017"
msgid "Could not initialise the CEC adaptor: libCEC was not found on your system."
msgstr "Could not initialise the CEC adaptor: libCEC was not found on your system."
msgctxt "#36018"
msgid "Use the TV's language setting"
msgstr "Use the TV's language setting"
msgctxt "#36019"
msgid "Connected to HDMI device"
msgstr "Connected to HDMI device"
msgctxt "#36020"
msgid "Make XBMC the active source when starting"
msgstr "Make XBMC the active source when starting"
msgctxt "#36021"
msgid "Physical address (overrules HDMI port)"
msgstr "Physical address (overrules HDMI port)"
msgctxt "#36022"
msgid "COM port (leave empty unless needed)"
msgstr "COM port (leave empty unless needed)"
msgctxt "#36023"
msgid "Configuration updated"
msgstr "Configuration updated"
msgctxt "#36024"
msgid "Failed to set the new configuration. Please check your settings."
msgstr "Failed to set the new configuration. Please check your settings."
msgctxt "#36025"
msgid "Send 'inactive source' command when stopping XBMC"
msgstr "Send 'inactive source' command when stopping XBMC"
msgctxt "#36026"
msgid "Put devices in standby mode when putting the PC in standby"
msgstr "Put devices in standby mode when putting the PC in standby"
msgctxt "#36027"
msgid "This device needs servicing"
msgstr "This device needs servicing"
msgctxt "#36028"
msgid "Ignore"
msgstr "Ignore"
msgctxt "#36029"
msgid "When the TV is switched off"
msgstr "When the TV is switched off"
msgctxt "#36030"
msgid "Connection lost"
msgstr "Connection lost"
msgctxt "#36031"
msgid "This user does not have permissions to open the CEC adaptor"
msgstr "This user does not have permissions to open the CEC adaptor"
msgctxt "#36032"
msgid "The port is busy. Only one program can access the CEC adaptor"
msgstr "The port is busy. Only one program can access the CEC adaptor"
msgctxt "#36033"
msgid "Pause playback when switching to another source"
msgstr "Pause playback when switching to another source"
msgctxt "#36035"
msgid "Always"
msgstr "Always"
msgctxt "#36036"
msgid "On start/stop"
msgstr "On start/stop"
msgctxt "#36037"
msgid "TV"
msgstr "TV"
msgctxt "#36038"
msgid "Amplifier / AVR device"
msgstr "Amplifier / AVR device"
msgctxt "#36039"
msgid "TV and AVR device (explicit)"
msgstr "TV and AVR device (explicit)"
msgctxt "#36040"
msgid "Unsupported libCEC interface version. %x is lower than the version XBMC supports (%x)"
msgstr "Unsupported libCEC interface version. %x is lower than the version XBMC supports (%x)"
msgctxt "#36041"
msgid "* Item folder"
msgstr "* Item folder"
msgctxt "#36042"
msgid "Use limited colour range (16-235)"
msgstr "Use limited colour range (16-235)"
msgctxt "#36101"
msgid "Change the look and feel of the user interface."
msgstr "Change the look and feel of the user interface."
msgctxt "#36102"
msgid "Category containing all Skin related settings."
msgstr "Category containing all Skin related settings."
msgctxt "#36103"
msgid "Select the skin for the user interface. This will define the look and feel of XBMC."
msgstr "Select the skin for the user interface. This will define the look and feel of XBMC."
msgctxt "#36104"
msgid "Change specific skin settings. The available options are dependent on the skin used."
msgstr "Change specific skin settings. The available options are dependent on the skin used."
msgctxt "#36105"
msgid "Change the theme associated with your selected skin."
msgstr "Change the theme associated with your selected skin."
msgctxt "#36106"
msgid "Change the colours of your selected skin."
msgstr "Change the colours of your selected skin."
msgctxt "#36107"
msgid "Choose the fonts displayed in the user interface. The font sets are configured by your skin."
msgstr "Choose the fonts displayed in the user interface. The font sets are configured by your skin."
msgctxt "#36108"
msgid "Resize the view of the user interface."
msgstr "Resize the view of the user interface."
msgctxt "#36109"
msgid "Select the media window that XBMC displays on startup."
msgstr "Select the media window that XBMC displays on startup."
msgctxt "#36110"
msgid "Select or disable the sound scheme used in the user interface."
msgstr "Select or disable the sound scheme used in the user interface."
msgctxt "#36111"
msgid "Turn this off to remove the scrolling RSS news ticker."
msgstr "Turn this off to remove the scrolling RSS news ticker."
msgctxt "#36112"
msgid "Edit the RSS feeds."
msgstr "Edit the RSS feeds."
msgctxt "#36113"
msgid "Category containing all locale/regional settings."
msgstr "Category containing all locale/regional settings."
msgctxt "#36114"
msgid "Chooses the language of the user interface."
msgstr "Chooses the language of the user interface."
msgctxt "#36115"
msgid "Select the formats for temperature, time and date. The available options depend on the selected language."
msgstr "Select the formats for temperature, time and date. The available options depend on the selected language."
msgctxt "#36116"
msgid "Choose which character set is used for displaying text in the user interface."
msgstr "Choose which character set is used for displaying text in the user interface."
msgctxt "#36117"
msgid "Select country location."
msgstr "Select country location."
msgctxt "#36118"
msgid "Select your current timezone."
msgstr "Select your current timezone."
msgctxt "#36119"
msgid "Select the default audio track when different language tracks are available."
msgstr "Select the default audio track when different language tracks are available."
msgctxt "#36120"
msgid "Select the default subtitles when different languages are available."
msgstr "Select the default subtitles when different languages are available."
msgctxt "#36121"
msgid "Category containing settings related to how file lists are displayed."
msgstr "Category containing settings related to how file lists are displayed."
msgctxt "#36122"
msgid "Display the (..) item in lists for visiting the parent folder."
msgstr "Display the (..) item in lists for visiting the parent folder."
msgctxt "#36123"
msgid "Show file extensions on media files. For example, 'You Enjoy Myself.mp3' would be simply be shown as 'You Enjoy Myself'."
msgstr "Show file extensions on media files. For example, 'You Enjoy Myself.mp3' would be simply be shown as 'You Enjoy Myself'."
msgctxt "#36125"
msgid "Allow files to be deleted and renamed through the user interface, via the contextual menu (press C on a keyboard, for example, to bring up this menu)."
msgstr "Allow files to be deleted and renamed through the user interface, via the contextual menu (press C on a keyboard, for example, to bring up this menu)."
msgctxt "#36126"
msgid "Show the add source button in root sections of the user interface."
msgstr "Show the add source button in root sections of the user interface."
msgctxt "#36127"
msgid "Show hidden files and directories when listing files."
msgstr "Show hidden files and directories when listing files."
msgctxt "#36128"
msgid "Category containing all screensaver settings."
msgstr "Category containing all screensaver settings."
msgctxt "#36129"
msgid "Set the amount of idle time required before displaying the screensaver."
msgstr "Set the amount of idle time required before displaying the screensaver."
msgctxt "#36130"
msgid "Select the screensaver. XBMC will force the 'Dim' screensaver when fullscreen video playback is paused or a dialogue box is active."
msgstr "Select the screensaver. XBMC will force the 'Dim' screensaver when fullscreen video playback is paused or a dialogue box is active."
msgctxt "#36131"
msgid "Change specific screensaver settings. The available options are dependent on the screensaver used."
msgstr "Change specific screensaver settings. The available options are dependent on the screensaver used."
msgctxt "#36132"
msgid "Preview the selected screensaver."
msgstr "Preview the selected screensaver."
msgctxt "#36133"
msgid "If music is being played, XBMC will start the selected visualisation instead of displaying the screensaver."
msgstr "If music is being played, XBMC will start the selected visualisation instead of displaying the screensaver."
msgctxt "#36134"
msgid "Dim the display when media is paused. Not valid for the 'Dim' screensaver mode."
msgstr "Dim the display when media is paused. Not valid for the 'Dim' screensaver mode."
msgctxt "#36135"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36136"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36137"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36138"
msgid "Section that contains settings related to videos and how they are handled."
msgstr "Section that contains settings related to videos and how they are handled."
msgctxt "#36139"
msgid "Category containing the settings for how the video library is handled."
msgstr "Category containing the settings for how the video library is handled."
msgctxt "#36140"
msgid "Enable the video library."
msgstr "Enable the video library."
msgctxt "#36141"
msgid "Show plot information for unwatched media in the Video Library."
msgstr "Show plot information for unwatched media in the Video Library."
msgctxt "#36143"
msgid "Get thumbnails for actors when scanning media."
msgstr "Get thumbnails for actors when scanning media."
msgctxt "#36144"
msgid "Remove the TV show season node, toggles between 'If only one season' (default), 'Always' and 'Never'."
msgstr "Remove the TV show season node, toggles between 'If only one season' (default), 'Always' and 'Never'."
msgctxt "#36145"
msgid "Group movies into 'Movie sets' when browsing the movie library."
msgstr "Group movies into 'Movie sets' when browsing the movie library."
msgctxt "#36146"
msgid "Check for new media files on XBMC startup."
msgstr "Check for new media files on XBMC startup."
msgctxt "#36147"
msgid "Hide the library scanning progress bar during scans."
msgstr "Hide the library scanning progress bar during scans."
msgctxt "#36148"
msgid "Remove items from your library that can't be found (either renamed, deleted, or on removable storage that is currently unplugged)."
msgstr "Remove items from your library that can't be found (either renamed, deleted, or on removable storage that is currently unplugged)."
msgctxt "#36149"
msgid "Export the Video Library database to XML files. This will optionally overwrite your current XML files."
msgstr "Export the Video Library database to XML files. This will optionally overwrite your current XML files."
msgctxt "#36150"
msgid "Import a XML file into the Video Library database."
msgstr "Import a XML file into the Video Library database."
msgctxt "#36151"
msgid "Category containing settings for how video playback is handled."
msgstr "Category containing settings for how video playback is handled."
msgctxt "#36152"
msgid "Enable automatic playback of the next file in the list."
msgstr "Enable automatic playback of the next file in the list."
msgctxt "#36153"
msgid "Adjust the method used to process and display video."
msgstr "Adjust the method used to process and display video."
msgctxt "#36156"
msgid "Enable VAAPI hardware decoding of video files, mainly used for Intel graphics and in some circumstances AMD graphics."
msgstr "Enable VAAPI hardware decoding of video files, mainly used for Intel graphics and in some circumstances AMD graphics."
msgctxt "#36158"
msgid "Enable DXVA2 hardware decoding of video files."
msgstr "Enable DXVA2 hardware decoding of video files."
msgctxt "#36159"
msgid "Enable CrystalHD decoding of video files."
msgstr "Enable CrystalHD decoding of video files."
msgctxt "#36160"
msgid "Enable VDA hardware decoding of video files."
msgstr "Enable VDA hardware decoding of video files."
msgctxt "#36161"
msgid "Enable OpenMax hardware decoding of video files."
msgstr "Enable OpenMax hardware decoding of video files."
msgctxt "#36162"
msgid "Enable VideoToolbox hardware decoding of video files."
msgstr "Enable VideoToolbox hardware decoding of video files."
msgctxt "#36163"
msgid "Enable decoding of video files using pixel buffer objects."
msgstr "Enable decoding of video files using pixel buffer objects."
msgctxt "#36164"
msgid "Allow the refresh rate of the display to be changed so that it best matches the video frame rate. This may yield smoother video playback."
msgstr "Allow the refresh rate of the display to be changed so that it best matches the video frame rate. This may yield smoother video playback."
msgctxt "#36165"
msgid "Pause for a small amount of time during a refresh rate change."
msgstr "Pause for a small amount of time during a refresh rate change."
msgctxt "#36166"
msgid "Synchronise the video to the refresh rate of the monitor."
msgstr "Synchronise the video to the refresh rate of the monitor."
msgctxt "#36167"
msgid "Audio has to stay in sync, this can either be done by resampling, skipping/duplicating packets, or adjusting the clock if it gets out of sync too far."
msgstr "Audio has to stay in sync, this can either be done by resampling, skipping/duplicating packets, or adjusting the clock if it gets out of sync too far."
msgctxt "#36168"
msgid "Maximum video speed adjust to match actual screen refresh rate."
msgstr "Maximum video speed adjust to match actual screen refresh rate."
msgctxt "#36170"
msgid "Allow video player to ignoring aspect ratio by a certain amount to fill a larger amount of the screen with video."
msgstr "Allow video player to ignoring aspect ratio by a certain amount to fill a larger amount of the screen with video."
msgctxt "#36171"
msgid "Select the zoom level that 4:3 videos are shown on widescreen displays."
msgstr "Select the zoom level that 4:3 videos are shown on widescreen displays."
msgctxt "#36172"
msgid "VDPAU studio level conversion provides a way for advanced applications like XBMC to influence the colour space conversion."
msgstr "VDPAU studio level conversion provides a way for advanced applications like XBMC to influence the colour space conversion."
msgctxt "#36173"
msgid "Enable upscaling using VDPAU."
msgstr "Enable upscaling using VDPAU."
msgctxt "#36174"
msgid "Enable Teletext when watching a live TV stream."
msgstr "Enable Teletext when watching a live TV stream."
msgctxt "#36175"
msgid "Scale Teletext to 4:3 ratio."
msgstr "Scale Teletext to 4:3 ratio."
msgctxt "#36176"
msgid "Category containing settings for how video file lists are handled."
msgstr "Category containing settings for how video file lists are handled."
msgctxt "#36177"
msgid "Toggle between Choose, Play (default), Resume and Show Information. Choose will select an item, e.g. open a directory in files mode. Resume will automatically resume videos from the last position that you were viewing them, even after restarting the system."
msgstr "Toggle between Choose, Play (default), Resume and Show Information. Choose will select an item, e.g. open a directory in files mode. Resume will automatically resume videos from the last position that you were viewing them, even after restarting the system."
msgctxt "#36178"
msgid "Extract thumbnails and metadata information such as codec and aspect ratio from videos."
msgstr "Extract thumbnails and metadata information such as codec and aspect ratio from videos."
msgctxt "#36179"
msgid "When a file is scanned into the library it will display the metadata title instead of the file name."
msgstr "When a file is scanned into the library it will display the metadata title instead of the file name."
msgctxt "#36180"
msgid "Extract thumbnails and information, such as codecs and aspect ratio, to display in Library Mode."
msgstr "Extract thumbnails and information, such as codecs and aspect ratio, to display in Library Mode."
msgctxt "#36181"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36182"
msgid "Combines multi-part video files, DVD folders, and movie folders down to a single item in non-library views."
msgstr "Combines multi-part video files, DVD folders, and movie folders down to a single item in non-library views."
msgctxt "#36183"
msgid "Removes the title, genre etc nodes from the library view. Selecting a category takes you straight to the title view."
msgstr "Removes the title, genre etc nodes from the library view. Selecting a category takes you straight to the title view."
msgctxt "#36184"
msgid "Category containing settings for how subtitles are handled."
msgstr "Category containing settings for how subtitles are handled."
msgctxt "#36185"
msgid "Set the font type to be used for subtitles."
msgstr "Set the font type to be used for subtitles."
msgctxt "#36186"
msgid "Set the font size to be used for subtitles."
msgstr "Set the font size to be used for subtitles."
msgctxt "#36187"
msgid "Set the font style to be used for subtitles."
msgstr "Set the font style to be used for subtitles."
msgctxt "#36188"
msgid "Set the font colour to be used for subtitles."
msgstr "Set the font colour to be used for subtitles."
msgctxt "#36189"
msgid "Set the font character set to be used for subtitles."
msgstr "Set the font character set to be used for subtitles."
msgctxt "#36190"
msgid "Override ASS/SSA subtitles fonts."
msgstr "Override ASS/SSA subtitles fonts."
msgctxt "#36191"
msgid "Set a custom directory for your subtitles. This can be a file share."
msgstr "Set a custom directory for your subtitles. This can be a file share."
msgctxt "#36192"
msgid "Location of subtitles on the screen."
msgstr "Location of subtitles on the screen."
msgctxt "#36193"
msgid "Category containing settings for how DVDs are handled."
msgstr "Category containing settings for how DVDs are handled."
msgctxt "#36194"
msgid "Autorun DVD video when inserted in drive."
msgstr "Autorun DVD video when inserted in drive."
msgctxt "#36195"
msgid "Force a region for DVD playback."
msgstr "Force a region for DVD playback."
msgctxt "#36196"
msgid "Attempt to skip 'unskippable' introductions before DVD menu."
msgstr "Attempt to skip 'unskippable' introductions before DVD menu."
msgctxt "#36197"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36198"
msgid "Select the default movie information source. See the Add-ons Manager for options."
msgstr "Select the default movie information source. See the Add-ons Manager for options."
msgctxt "#36199"
msgid "Select the default TV show information source. See the Add-ons Manager for options."
msgstr "Select the default TV show information source. See the Add-ons Manager for options."
msgctxt "#36200"
msgid "Default scraper used for adding music videos to your library."
msgstr "Default scraper used for adding music videos to your library."
msgctxt "#36202"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36204"
msgid "Import channel groups from the PVR backend (if supported). Will delete user created groups if they're not found on the backend."
msgstr "Import channel groups from the PVR backend (if supported). Will delete user created groups if they're not found on the backend."
msgctxt "#36205"
msgid "Sort the channels by channel number on the backend, but use XBMC's own numbering for channels."
msgstr "Sort the channels by channel number on the backend, but use XBMC's own numbering for channels."
msgctxt "#36206"
msgid "Use numbering from the backend, instead of configuring them manually over XBMC."
msgstr "Use numbering from the backend, instead of configuring them manually over XBMC."
msgctxt "#36207"
msgid "Open the channel manager, which allows modifying the channel order, channel name, icon, etc."
msgstr "Open the channel manager, which allows modifying the channel order, channel name, icon, etc."
msgctxt "#36208"
msgid "Instruct the backend to search for channels (if supported)."
msgstr "Instruct the backend to search for channels (if supported)."
msgctxt "#36209"
msgid "Delete channel/EPG database and reimport the data from the backend afterwards."
msgstr "Delete channel/EPG database and reimport the data from the backend afterwards."
msgctxt "#36220"
msgid "Number of days of EPG data to import from backends."
msgstr "Number of days of EPG data to import from backends."
msgctxt "#36221"
msgid "Time between EPG data imports from backends."
msgstr "Time between EPG data imports from backends."
msgctxt "#36222"
msgid "Do not import EPG data while playing TV to minimise CPU usage."
msgstr "Do not import EPG data while playing TV to minimise CPU usage."
msgctxt "#36223"
msgid "By default, EPG data is stored in a local database to speed up importing when XBMC is restarted."
msgstr "By default, EPG data is stored in a local database to speed up importing when XBMC is restarted."
msgctxt "#36224"
msgid "Hide \"no information available\" labels when no EPG data can be retrieved for a channel."
msgstr "Hide \"no information available\" labels when no EPG data can be retrieved for a channel."
msgctxt "#36227"
msgid "Display stream of selected channel in a small box instead of fullscreen."
msgstr "Display stream of selected channel in a small box instead of fullscreen."
msgctxt "#36228"
msgid "Continue with the last viewed channel on startup."
msgstr "Continue with the last viewed channel on startup."
msgctxt "#36231"
msgid "Pressing a number button in full screen mode will automatically switch to the channel number that was entered after 1 second."
msgstr "Pressing a number button in full screen mode will automatically switch to the channel number that was entered after 1 second."
msgctxt "#36234"
msgid "Duration of instant recordings when pressing the record button."
msgstr "Duration of instant recordings when pressing the record button."
msgctxt "#36235"
msgid "Priority of the recording. Higher number means higher priority. Not supported by all Add-ons and backends."
msgstr "Priority of the recording. Higher number means higher priority. Not supported by all Add-ons and backends."
msgctxt "#36236"
msgid "Delete recording after this time. Not supported by all Add-ons and backends."
msgstr "Delete recording after this time. Not supported by all Add-ons and backends."
msgctxt "#36237"
msgid "Start recordings before the actual time. Not supported by all Add-ons and backends."
msgstr "Start recordings before the actual time. Not supported by all Add-ons and backends."
msgctxt "#36238"
msgid "End recordings after the actual time. Not supported by all Add-ons and backends."
msgstr "End recordings after the actual time. Not supported by all Add-ons and backends."
msgctxt "#36239"
msgid "Display a notification when timers are added, finished or removed by the backend."
msgstr "Display a notification when timers are added, finished or removed by the backend."
msgctxt "#36241"
msgid "Execute the \"wakeup command\" below when XBMC exits or is going into hibernation mode. The timestamp of the next scheduled recording is passed as parameter."
msgstr "Execute the \"wakeup command\" below when XBMC exits or is going into hibernation mode. The timestamp of the next scheduled recording is passed as parameter."
msgctxt "#36242"
msgid "The command will not be executed when a recording will be started within this timeout."
msgstr "The command will not be executed when a recording will be started within this timeout."
msgctxt "#36243"
msgid "The command to execute."
msgstr "The command to execute."
msgctxt "#36245"
msgid "Execute the wakeup command every day at the given time."
msgstr "Execute the wakeup command every day at the given time."
msgctxt "#36246"
msgid "When to execute the daily wakeup command."
msgstr "When to execute the daily wakeup command."
msgctxt "#36248"
msgid "Asks for a pin code to access parental locked channels. Channels can be marked as locked in the channels editor on the general tab. Parental locked channels can not be played or recorded without entering a pin code, and the EPG information is hidden for those channels."
msgstr "Asks for a pin code to access parental locked channels. Channels can be marked as locked in the channels editor on the general tab. Parental locked channels can not be played or recorded without entering a pin code, and the EPG information is hidden for those channels."
msgctxt "#36249"
msgid "Enter a new pin code to unlock parental locked channels."
msgstr "Enter a new pin code to unlock parental locked channels."
msgctxt "#36250"
msgid "Ask for the pin code again when trying to access a parental locked channel and the code hasn't been asked for this duration."
msgstr "Ask for the pin code again when trying to access a parental locked channel and the code hasn't been asked for this duration."
msgctxt "#36253"
msgid "Section that contains settings related to music files and how they are handled."
msgstr "Section that contains settings related to music files and how they are handled."
msgctxt "#36254"
msgid "Enable the music library."
msgstr "Enable the music library."
msgctxt "#36255"
msgid "Determine if artists that appear only on compilations are shown in the library artist view."
msgstr "Determine if artists that appear only on compilations are shown in the library artist view."
msgctxt "#36256"
msgid "Automatically fetch album and artist information via scrapers during scan."
msgstr "Automatically fetch album and artist information via scrapers during scan."
msgctxt "#36257"
msgid "Select the default album information source."
msgstr "Select the default album information source."
msgctxt "#36258"
msgid "Select the default artist information source. See the Add-ons Manager for options."
msgstr "Select the default artist information source. See the Add-ons Manager for options."
msgctxt "#36259"
msgid "Check for new and removed media files on XBMC startup."
msgstr "Check for new and removed media files on XBMC startup."
msgctxt "#36260"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36262"
msgid "Export the Music Library database to XML files. This will optionally overwrite your current XML files."
msgstr "Export the Music Library database to XML files. This will optionally overwrite your current XML files."
msgctxt "#36263"
msgid "Import a XML file into the Music Library database."
msgstr "Import a XML file into the Music Library database."
msgctxt "#36264"
msgid "Category containing settings for how music playback is handled."
msgstr "Category containing settings for how music playback is handled."
msgctxt "#36265"
msgid "XBMC automatically plays the next item in the current folder. For example, in Files View: After a track has been played, XBMC would automatically play the next track in the same folder."
msgstr "XBMC automatically plays the next item in the current folder. For example, in Files View: After a track has been played, XBMC would automatically play the next track in the same folder."
msgctxt "#36266"
msgid "When songs are selected they are queued instead of playback starting immediately."
msgstr "When songs are selected they are queued instead of playback starting immediately."
msgctxt "#36267"
msgid "XBMC will read the ReplayGain information encoded in your audio files by a program such as MP3Gain and normalise the sound levels accordingly."
msgstr "XBMC will read the ReplayGain information encoded in your audio files by a program such as MP3Gain and normalise the sound levels accordingly."
msgctxt "#36268"
msgid "Default is 89dB per standard. Change with caution."
msgstr "Default is 89dB per standard. Change with caution."
msgctxt "#36269"
msgid "Default is 89dB per standard. Change with caution."
msgstr "Default is 89dB per standard. Change with caution."
msgctxt "#36270"
msgid "Reduce the volume of the file if clipping will occur."
msgstr "Reduce the volume of the file if clipping will occur."
msgctxt "#36271"
msgid "Smoothly fade from one audio track to the next. You can set the amount of overlap from 1-15 seconds."
msgstr "Smoothly fade from one audio track to the next. You can set the amount of overlap from 1-15 seconds."
msgctxt "#36273"
msgid "Select the visualisation that will be displayed while listening to music."
msgstr "Select the visualisation that will be displayed while listening to music."
msgctxt "#36274"
msgid "Read the tag information from song files. For large directories this can slow down read time, especially over a network."
msgstr "Read the tag information from song files. For large directories this can slow down read time, especially over a network."
msgctxt "#36275"
msgid "Control the way that the names of songs are displayed in the user interface. In order to function properly, tag reading needs to be enabled."
msgstr "Control the way that the names of songs are displayed in the user interface. In order to function properly, tag reading needs to be enabled."
msgctxt "#36276"
msgid "Used for formatting the second column in file lists."
msgstr "Used for formatting the second column in file lists."
msgctxt "#36277"
msgid "Control the way that the names of songs are displayed in the now playing list."
msgstr "Control the way that the names of songs are displayed in the now playing list."
msgctxt "#36278"
msgid "Used for formatting the second column in the now playing list."
msgstr "Used for formatting the second column in the now playing list."
msgctxt "#36279"
msgid "Control the way that the names of songs are displayed in library lists."
msgstr "Control the way that the names of songs are displayed in library lists."
msgctxt "#36280"
msgid "Used for formatting the second column in library lists."
msgstr "Used for formatting the second column in library lists."
msgctxt "#36281"
msgid "XBMC will search for thumbs on remote shares and optical media. This can often slow down the listing of network folders."
msgstr "XBMC will search for thumbs on remote shares and optical media. This can often slow down the listing of network folders."
msgctxt "#36282"
msgid "Category containing settings for how CDs are handled."
msgstr "Category containing settings for how CDs are handled."
msgctxt "#36283"
msgid "Autorun CDs when inserted in drive."
msgstr "Autorun CDs when inserted in drive."
msgctxt "#36284"
msgid "Read the information belonging to an audio CD from an internet database."
msgstr "Read the information belonging to an audio CD from an internet database."
msgctxt "#36285"
msgid "Select the location on your hard drive where ripped tracks will be saved to."
msgstr "Select the location on your hard drive where ripped tracks will be saved to."
msgctxt "#36286"
msgid "Control how saved music is named from the tags. Tags: [B]%N[/B]: TrackNumber, [B]%S[/B]: DiscNumber, [B]%A[/B]: Artist, [B]%T[/B]: Title, [B]%B[/B]: Album, [B]%G[/B]: Genre, [B]%Y[/B]: Year, [B]%F[/B]: FileName, [B]%D[/B]: Duration, [B]%J[/B]: Date, [B]%R[/B]: Rating, [B]%I[/B]: FileSize."
msgstr "Control how saved music is named from the tags. Tags: [B]%N[/B]: TrackNumber, [B]%S[/B]: DiscNumber, [B]%A[/B]: Artist, [B]%T[/B]: Title, [B]%B[/B]: Album, [B]%G[/B]: Genre, [B]%Y[/B]: Year, [B]%F[/B]: FileName, [B]%D[/B]: Duration, [B]%J[/B]: Date, [B]%R[/B]: Rating, [B]%I[/B]: FileSize."
msgctxt "#36287"
msgid "Select which audio encoder to use when ripping."
msgstr "Select which audio encoder to use when ripping."
msgctxt "#36288"
msgid "Select which quality you want to rip your files."
msgstr "Select which quality you want to rip your files."
msgctxt "#36289"
msgid "Select which bitrate to use for the specified audio encoder for audio compression."
msgstr "Select which bitrate to use for the specified audio encoder for audio compression."
msgctxt "#36290"
msgid "For FLAC define compression level, default 5."
msgstr "For FLAC define compression level, default 5."
msgctxt "#36291"
msgid "Auto eject disc after rip is complete."
msgstr "Auto eject disc after rip is complete."
msgctxt "#36292"
msgid "Category containing the settings for how karaoke is handled."
msgstr "Category containing the settings for how karaoke is handled."
msgctxt "#36293"
msgid "When playing any music file, XBMC will look for a matching .cdg file and display its graphics."
msgstr "When playing any music file, XBMC will look for a matching .cdg file and display its graphics."
msgctxt "#36294"
msgid "Show song selection dialog once the last song in the queue has been played."
msgstr "Show song selection dialogue once the last song in the queue has been played."
msgctxt "#36299"
msgid "Export the karaoke numbered songs to HTML or CSV files."
msgstr "Export the karaoke numbered songs to HTML or CSV files."
msgctxt "#36300"
msgid "Import the karaoke numbered songs from HTML or CSV files."
msgstr "Import the karaoke numbered songs from HTML or CSV files."
msgctxt "#36301"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36302"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36303"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36304"
msgid "Section that contains settings related to pictures and how they are handled."
msgstr "Section that contains settings related to pictures and how they are handled."
msgctxt "#36305"
msgid "Category containing settings for how picture file lists are handled."
msgstr "Category containing settings for how picture file lists are handled."
msgctxt "#36306"
msgid "If EXIF information exists (date, time, camera used, etc.), it will be displayed."
msgstr "If EXIF information exists (date, time, camera used, etc.), it will be displayed."
msgctxt "#36307"
msgid "Automatically generate picture thumbnails when entering picture folder."
msgstr "Automatically generate picture thumbnails when entering picture folder."
msgctxt "#36308"
msgid "Pictures will automatically rotate according to information in the EXIF tag, if found."
msgstr "Pictures will automatically rotate according to information in the EXIF tag, if found."
msgctxt "#36309"
msgid "Show videos in picture file lists."
msgstr "Show videos in picture file lists."
msgctxt "#36310"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36311"
msgid "Category containing settings for how picture slideshows are handled."
msgstr "Category containing settings for how picture slideshows are handled."
msgctxt "#36312"
msgid "Select the amount of time that each image is displayed in a slideshow."
msgstr "Select the amount of time that each image is displayed in a slideshow."
msgctxt "#36313"
msgid "Images in a slideshow will pan and zoom while displayed."
msgstr "Images in a slideshow will pan and zoom while displayed."
msgctxt "#36314"
msgid "View slideshow images in a random order."
msgstr "View slideshow images in a random order."
msgctxt "#36315"
msgid "Section that contains weather related settings."
msgstr "Section that contains weather related settings."
msgctxt "#36316"
msgid "Category containing settings for how weather addons are handled."
msgstr "Category containing settings for how weather addons are handled."
msgctxt "#36317"
msgid "Select up to three locations for which the weather can be displayed."
msgstr "Select up to three locations for which the weather can be displayed."
msgctxt "#36318"
msgid "Specify the default weather information source. See the Add-ons Manager for options."
msgstr "Specify the default weather information source. See the Add-ons Manager for options."
msgctxt "#36319"
msgid "Section containing settings for how network services are handled."
msgstr "Section containing settings for how network services are handled."
msgctxt "#36320"
msgid "Category containing settings used for all services."
msgstr "Category containing settings used for all services."
msgctxt "#36321"
msgid "Display name of the XBMC installation when using various network services."
msgstr "Display name of the XBMC installation when using various network services."
msgctxt "#36322"
msgid "Category containing settings for how the UPnP service is handled."
msgstr "Category containing settings for how the UPnP service is handled."
msgctxt "#36323"
msgid "Enable the UPnP server. This allows you to stream media to a UPnP client."
msgstr "Enable the UPnP server. This allows you to stream media to a UPnP client."
msgctxt "#36325"
msgid "Enable the UPnP client. This allows you to stream media from any UPnP server with a control point and control playback from that server."
msgstr "Enable the UPnP client. This allows you to stream media from any UPnP server with a control point and control playback from that server."
msgctxt "#36326"
msgid "Enable the UPnP control point. This allows you to stream media to any UPnP client and control playback from XBMC."
msgstr "Enable the UPnP control point. This allows you to stream media to any UPnP client and control playback from XBMC."
msgctxt "#36327"
msgid "Category containing settings for how the webserver service is handled."
msgstr "Category containing settings for how the webserver service is handled."
msgctxt "#36328"
msgid "Enable remote users to control XBMC through the built-in webserver."
msgstr "Enable remote users to control XBMC through the built-in webserver."
msgctxt "#36329"
msgid "Define the webserver port."
msgstr "Define the webserver port."
msgctxt "#36330"
msgid "Define the webserver username."
msgstr "Define the webserver username."
msgctxt "#36331"
msgid "Define the webserver password."
msgstr "Define the webserver password."
msgctxt "#36332"
msgid "Select between web interfaces installed via the Add-on Manager."
msgstr "Select between web interfaces installed via the Add-on Manager."
msgctxt "#36333"
msgid "Category containing settings for how the remote control service is handled."
msgstr "Category containing settings for how the remote control service is handled."
msgctxt "#36334"
msgid "Allow programs on this computer to control XBMC via the Web Interface or the JSON-RPC interface protocol."
msgstr "Allow programs on this computer to control XBMC via the Web Interface or the JSON-RPC interface protocol."
msgctxt "#36335"
msgid "Define the remote control port."
msgstr "Define the remote control port."
msgctxt "#36336"
msgid "Define the remote control port range."
msgstr "Define the remote control port range."
msgctxt "#36337"
msgid "Define the maximum number of clients that can connect."
msgstr "Define the maximum number of clients that can connect."
msgctxt "#36338"
msgid "Allow programs on the network to control XBMC."
msgstr "Allow programs on the network to control XBMC."
msgctxt "#36339"
msgid "Initial repeat delay (ms)."
msgstr "Initial repeat delay (ms)."
msgctxt "#36340"
msgid "Continuous repeat delay (ms)."
msgstr "Continuous repeat delay (ms)."
msgctxt "#36341"
msgid "Category containing settings for how the zeroconf network discovery service is handled, required for AirPlay."
msgstr "Category containing settings for how the zeroconf network discovery service is handled, required for AirPlay."
msgctxt "#36342"
msgid "Allows applications on the network to discover XBMC's running services."
msgstr "Allows applications on the network to discover XBMC's running services."
msgctxt "#36343"
msgid "Allows XBMC to receive content from other AirPlay devices or applications."
msgstr "Allows XBMC to receive content from other AirPlay devices or applications."
msgctxt "#36344"
msgid "Enable AirPlay password protection."
msgstr "Enable AirPlay password protection."
msgctxt "#36345"
msgid "Sets the AirPlay password."
msgstr "Sets the AirPlay password."
msgctxt "#36346"
msgid "Category containing settings for how the SMB Client (samba) service is handled."
msgstr "Category containing settings for how the SMB Client (samba) service is handled."
msgctxt "#36347"
msgid "If a WINS server is running on the network, enter its IP address here. Otherwise, leave blank."
msgstr "If a WINS server is running on the network, enter its IP address here. Otherwise, leave blank."
msgctxt "#36348"
msgid "If a WINS server is running on the network, enter its workgroup name here. Otherwise, leave blank."
msgstr "If a WINS server is running on the network, enter its workgroup name here. Otherwise, leave blank."
msgctxt "#36349"
msgid "Section that contains the System related settings for the device XBMC is installed on."
msgstr "Section that contains the System related settings for the device XBMC is installed on."
msgctxt "#36350"
msgid "Automatically send 'Wake-On-Lan' to server(s) right before trying to access shared files or services."
msgstr "Automatically send 'Wake-On-Lan' to server(s) right before trying to access shared files or services."
msgctxt "#36351"
msgid "Display XBMC in a window, or fullscreen on the selected screen."
msgstr "Display XBMC in a window, or fullscreen on the selected screen."
msgctxt "#36352"
msgid "Changes the resolution that the user interface is displayed in."
msgstr "Changes the resolution that the user interface is displayed in."
msgctxt "#36353"
msgid "Changes the refresh rate that the user interface is displayed in."
msgstr "Changes the refresh rate that the user interface is displayed in."
msgctxt "#36355"
msgid "In a multi-screen configuration, the screens where XBMC is not displayed are blacked out."
msgstr "In a multi-screen configuration, the screens where XBMC is not displayed are blacked out."
msgctxt "#36356"
msgid "Eliminate vertical tearing."
msgstr "Eliminate vertical tearing."
msgctxt "#36357"
msgid "Calibrate the user interface by adjusting the overscan. Use this tool if the image being displayed is too large or small for your display."
msgstr "Calibrate the user interface by adjusting the overscan. Use this tool if the image being displayed is too large or small for your display."
msgctxt "#36358"
msgid "Test patterns for display hardware calibration."
msgstr "Test patterns for display hardware calibration."
msgctxt "#36359"
msgid "Use limited colour range (16-235) instead of full colour range (0-255). Limited range should be used if your display is a regular HDMI TV and doesn't have a PC or other mode to display full range colour, however if your display is a PC monitor then leave this disabled to get proper blacks."
msgstr "Use limited colour range (16-235) instead of full colour range (0-255). Limited range should be used if your display is a regular HDMI TV and doesn't have a PC or other mode to display full range colour, however if your display is a PC monitor then leave this disabled to get proper blacks."
msgctxt "#36360"
msgid "Category containing settings for how audio output is handled."
msgstr "Category containing settings for how audio output is handled."
msgctxt "#36363"
msgid "Boost AC3 streams that have been downmixed to 2 channels."
msgstr "Boost AC3 streams that have been downmixed to 2 channels."
msgctxt "#36364"
msgid "Select to enable upmixing of 2 channel audio to the number of audio channels specified by the channel configuration."
msgstr "Select to enable upmixing of 2 channel audio to the number of audio channels specified by the channel configuration."
msgctxt "#36365"
msgid "Select this option if your receiver is capable of decoding AC3 streams."
msgstr "Select this option if your receiver is capable of decoding AC3 streams."
msgctxt "#36366"
msgid "Select this option if your receiver is capable of decoding DTS streams."
msgstr "Select this option if your receiver is capable of decoding DTS streams."
msgctxt "#36369"
msgid "Select this option if your receiver is capable of decoding TrueHD streams."
msgstr "Select this option if your receiver is capable of decoding TrueHD streams."
msgctxt "#36370"
msgid "Select this option if your receiver is capable of decoding DTS-HD streams."
msgstr "Select this option if your receiver is capable of decoding DTS-HD streams."
msgctxt "#36371"
msgid "Select the device to be used for playback of audio that has been decoded such as mp3."
msgstr "Select the device to be used for playback of audio that has been decoded such as mp3."
msgctxt "#36373"
msgid "Configure how interface sounds are handled, such as menu navigation and important notifications."
msgstr "Configure how interface sounds are handled, such as menu navigation and important notifications."
msgctxt "#36374"
msgid "Category containing settings for how input devices are handled."
msgstr "Category containing settings for how input devices are handled."
msgctxt "#36375"
msgid "Configure any attached peripheral devices."
msgstr "Configure any attached peripheral devices."
msgctxt "#36376"
msgid "When activated, your keyboard arrows will move the selection on the virtual keyboard. When deactivated, they will move the cursor from your text."
msgstr "When activated, your keyboard arrows will move the selection on the virtual keyboard. When deactivated, they will move the cursor from your text."
msgctxt "#36377"
msgid "Use a mouse or touch screen device to control XBMC. Note: disabling will cause you to lose control over XBMC when no keyboard or remote is present."
msgstr "Use a mouse or touch screen device to control XBMC. Note: disabling will cause you to lose control over XBMC when no keyboard or remote is present."
msgctxt "#36378"
msgid "Use a joystick to control XBMC."
msgstr "Use a joystick to control XBMC."
msgctxt "#36379"
msgid "Category containing settings for internet access."
msgstr "Category containing settings for internet access."
msgctxt "#36380"
msgid "If your internet connection uses a proxy, configure it here."
msgstr "If your internet connection uses a proxy, configure it here."
msgctxt "#36381"
msgid "Configure which proxy type is used."
msgstr "Configure which proxy type is used."
msgctxt "#36382"
msgid "Configure the proxy server address."
msgstr "Configure the proxy server address."
msgctxt "#36383"
msgid "Configure the proxy server port."
msgstr "Configure the proxy server port."
msgctxt "#36384"
msgid "Configure the proxy server username."
msgstr "Configure the proxy server username."
msgctxt "#36385"
msgid "Configure the proxy server password."
msgstr "Configure the proxy server password."
msgctxt "#36386"
msgid "If you have limited bandwidth available, XBMC will try to keep within these limits."
msgstr "If you have limited bandwidth available, XBMC will try to keep within these limits."
msgctxt "#36387"
msgid "Category containing settings for power saving."
msgstr "Category containing settings for power saving."
msgctxt "#36388"
msgid "Turn off display when idle. Useful for TVs that turn off when there is no display signal detected."
msgstr "Turn off display when idle. Useful for TVs that turn off when there is no display signal detected."
msgctxt "#36389"
msgid "Define how long XBMC should idle before shutting down."
msgstr "Define how long XBMC should idle before shutting down."
msgctxt "#36390"
msgid "Define what action XBMC should do when it has been idle for a long period of time."
msgstr "Define what action XBMC should do when it has been idle for a long period of time."
msgctxt "#36391"
msgid "Category containing settings for debugging functions."
msgstr "Category containing settings for debugging functions."
msgctxt "#36392"
msgid "Turn debug logging on or off. Useful for troubleshooting."
msgstr "Turn debug logging on or off. Useful for troubleshooting."
msgctxt "#36393"
msgid "Folder used to save screenshots taken within XBMC."
msgstr "Folder used to save screenshots taken within XBMC."
msgctxt "#36394"
msgid "Specify additional libraries to be included in the debug log."
msgstr "Specify additional libraries to be included in the debug log."
msgctxt "#36395"
msgid "Category containing settings for the master lock function."
msgstr "Category containing settings for the master lock function."
msgctxt "#36396"
msgid "Define the PIN code used for the master lock."
msgstr "Define the PIN code used for the master lock."
msgctxt "#36397"
msgid "If enabled, the master lock code is required to unlock XBMC on startup."
msgstr "If enabled, the master lock code is required to unlock XBMC on startup."
msgctxt "#36398"
msgid "Define the maximum number of retries before XBMC is closed down."
msgstr "Define the maximum number of retries before XBMC is closed down."
msgctxt "#36399"
msgid "Category containing settings for the cache function."
msgstr "Category containing settings for the cache function."
msgctxt "#36400"
msgid "Enable cache for playback of Video, Audio or DVDs from hard disk."
msgstr "Enable cache for playback of Video, Audio or DVDs from hard disk."
msgctxt "#36401"
msgid "Enable cache for playback of Video from DVD-ROM."
msgstr "Enable cache for playback of Video from DVD-ROM."
msgctxt "#36402"
msgid "Enable cache for Video playback from Local Network."
msgstr "Enable cache for Video playback from Local Network."
msgctxt "#36403"
msgid "Enable cache for Video playback from Internet."
msgstr "Enable cache for Video playback from Internet."
msgctxt "#36404"
msgid "Enable cache for playback of Audio from DVD-ROM."
msgstr "Enable cache for playback of Audio from DVD-ROM."
msgctxt "#36405"
msgid "Enable cache for Audio playback from Local Network."
msgstr "Enable cache for Audio playback from Local Network."
msgctxt "#36406"
msgid "Enable cache for Audio playback from Internet."
msgstr "Enable cache for Audio playback from Internet."
msgctxt "#36407"
msgid "Enable cache for playback of DVD from DVD-ROM."
msgstr "Enable cache for playback of DVD from DVD-ROM."
msgctxt "#36408"
msgid "Enable cache for DVD playback from Local Network."
msgstr "Enable cache for DVD playback from Local Network."
msgctxt "#36409"
msgid "Enable cache of unknown types from Internet."
msgstr "Enable cache of unknown types from Internet."
msgctxt "#36410"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36411"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36412"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36413"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36414"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36415"
msgid "No info available yet."
msgstr "No info available yet."
msgctxt "#36416"
msgid "Specify the type of remote used."
msgstr "Specify the type of remote used."
msgctxt "#36417"
msgid "Always run an XBMC helper so that the remote can be used to start XBMC."
msgstr "Always run an XBMC helper so that the remote can be used to start XBMC."
msgctxt "#36418"
msgid "Specify the delay between button sequences on a universal remote."
msgstr "Specify the delay between button sequences on a universal remote."
msgctxt "#36419"
msgid "Define locations used for retrieving weather information."
msgstr "Define locations used for retrieving weather information."
msgctxt "#36421"
msgid "Bypassing VDPAU mixer saves resources on low power systems but slightly reduces picture quality."
msgstr "Bypassing VDPAU mixer saves resources on low power systems but slightly reduces picture quality."
msgctxt "#36422"
msgid "Enable hardware video decode using AMLogic decoder."
msgstr "Enable hardware video decode using AMLogic decoder."
msgctxt "#36423"
msgid "Enables frame-multi-threaded software decoding (less reliable than the default single threaded mode)."
msgstr "Enables frame-multi-threaded software decoding (less reliable than the default single threaded mode)."
msgctxt "#36428"
msgid "Record"
msgstr "Record"
msgctxt "#36429"
msgid "Select this if the audio out connection only supports multichannel audio as Dolby Digital 5.1, such as an SPDIF connection. If your system supports LPCM multichannel sound via HDMI, leave this disabled."
msgstr "Select this if the audio out connection only supports multichannel audio as Dolby Digital 5.1, such as an SPDIF connection. If your system supports LPCM multichannel sound via HDMI, leave this disabled."
msgctxt "#36430"
msgid "Configure how video processing will be accelerated. This includes things like decoding and scaling."
msgstr "Configure how video processing will be accelerated. This includes things like decoding and scaling."
msgctxt "#36431"
msgid "Defines whether video decoding should be performed in software (requires more CPU) or with hardware acceleration where possible."
msgstr "Defines whether video decoding should be performed in software (requires more CPU) or with hardware acceleration where possible."
msgctxt "#36500"
msgid "Stereoscopic mode (current)"
msgstr "Stereoscopic mode (current)"
msgctxt "#36501"
msgid "Stereoscopic mode"
msgstr "Stereoscopic mode"
msgctxt "#36502"
msgid "None"
msgstr "None"
msgctxt "#36503"
msgid "Over/Under"
msgstr "Over/Under"
msgctxt "#36504"
msgid "Side by side"
msgstr "Side by side"
msgctxt "#36505"
msgid "Anaglyph Red/Cyan"
msgstr "Anaglyph Red/Cyan"
msgctxt "#36506"
msgid "Anaglyph Green/Magenta"
msgstr "Anaglyph Green/Magenta"
msgctxt "#36507"
msgid "Interlaced"
msgstr "Interlaced"
msgctxt "#36508"
msgid "Hardware Based"
msgstr "Hardware Based"
msgctxt "#36509"
msgid "Monoscopic - 2D"
msgstr "Monoscopic - 2D"
msgctxt "#36520"
msgid "Playback mode of stereoscopic videos."
msgstr "Playback mode of stereoscopic videos."
msgctxt "#36521"
msgid "Ask me"
msgstr "Ask me"
msgctxt "#36522"
msgid "Use preferred mode"
msgstr "Use preferred mode"
msgctxt "#36523"
msgid "Maximum sampling rate for spdif or sampling rate for fixed output configuration."
msgstr "Maximum sampling rate for spdif or sampling rate for fixed output configuration."
msgctxt "#36524"
msgid "Preferred mode"
msgstr "Preferred mode"
msgctxt "#36525"
msgid "Same as movie (autodetect)"
msgstr "Same as movie (autodetect)"
msgctxt "#36526"
msgid "Disable stereoscopic mode when playback is stopped"
msgstr "Disable stereoscopic mode when playback is stopped"
msgctxt "#36527"
msgid "This video is stereoscopic. Select playback mode"
msgstr "This video is stereoscopic. Select playback mode"
msgctxt "#36528"
msgid "Select stereoscopic mode"
msgstr "Select stereoscopic mode"
msgctxt "#36529"
msgid "Mono (2D)"
msgstr "Mono (2D)"
msgctxt "#36530"
msgid "Preferred mode"
msgstr "Preferred mode"
msgctxt "#36531"
msgid "Select alternate mode..."
msgstr "Select alternate mode..."
msgctxt "#36532"
msgid "Same as movie"
msgstr "Same as movie"
msgctxt "#36535"
msgid "Stereoscopic mode of video"
msgstr "Stereoscopic mode of video"
msgctxt "#36536"
msgid "Stereoscopic mode inverted"
msgstr "Stereoscopic mode inverted"
msgctxt "#36537"
msgid "Set playback mode of stereoscopic 3D videos."
msgstr "Set playback mode of stereoscopic 3D videos."
msgctxt "#36538"
msgid "Prevents XBMC exiting out of stereoscopic 3D mode when playback is stopped as not all TVs will recognise the switch from 3D back to 2D without the viewing mode being toggled on the TV."
msgstr "Prevents XBMC exiting out of stereoscopic 3D mode when playback is stopped as not all TVs will recognise the switch from 3D back to 2D without the viewing mode being toggled on the TV."
msgctxt "#36539"
msgid "Changes the stereoscopic 3D mode of the user interface."
msgstr "Changes the stereoscopic 3D mode of the user interface."
msgctxt "#36540"
msgid "The preferred stereoscopic 3D mode."
msgstr "The preferred stereoscopic 3D mode."
msgctxt "#36541"
msgid "Allows volume control from AirPlay clients."
msgstr "Allows volume control from AirPlay clients."
msgctxt "#36542"
msgid "Output to both analogue (headphones) and HDMI"
msgstr "Output to both analogue (headphones) and HDMI"
msgctxt "#36543"
msgid "Enable this to make dialogue louder compared to background sounds when downmixing multichannel audio"
msgstr "Enable this to make dialogue louder compared to background sounds when downmixing multichannel audio"
msgctxt "#36544"
msgid "Enable hardware decoding of video files."
msgstr "Enable hardware decoding of video files."
msgctxt "#36546"
msgid "Sets the visual depth of subtitles for stereoscopic 3D videos. The higher the value, the closer the subtitles will appear to the viewer."
msgstr "Sets the visual depth of subtitles for stereoscopic 3D videos. The higher the value, the closer the subtitles will appear to the viewer."
msgctxt "#36600"
msgid "Category containing the settings for how the music library is handled."
msgstr "Category containing the settings for how the music library is handled."
msgctxt "#36601"
msgid "Category containing settings for how music file lists are handled."
msgstr "Category containing settings for how music file lists are handled."
msgctxt "#36602"
msgid "Category containing settings for how the AirPlay service is handled."
msgstr "Category containing settings for how the AirPlay service is handled."
msgctxt "#36603"
msgid "Category containing settings for how video output is handled."
msgstr "Category containing settings for how video output is handled."
msgctxt "#37000"
msgid "(Visually Impaired)"
msgstr "(Visually Impaired)"
msgctxt "#37001"
msgid "(Directors Comments)"
msgstr "(Directors Comments)"
msgctxt "#37002"
msgid "(Directors Comments 2)"
msgstr "(Directors Comments 2)"
msgctxt "#37011"
msgid "(CC)"
msgstr "(CC)"
msgctxt "#37012"
msgid "(Forced)"
msgstr "(Forced)"
msgctxt "#37013"
msgid "(Directors Comments)"
msgstr "(Directors Comments)"
msgctxt "#37014"
msgid "Last used profile"
msgstr "Last used profile"
msgctxt "#37015"
msgid "Browse Into"
msgstr "Browse Into"
msgctxt "#37016"
msgid "Select this option if your receiver is capable of decoding E-AC3 streams."
msgstr "Select this option if your receiver is capable of decoding E-AC3 streams."
msgctxt "#37017"
msgid "Dual audio output"
msgstr "Dual audio output"
msgctxt "#37018"
msgid "Boost centre channel when downmixing"
msgstr "Boost centre channel when downmixing"
msgctxt "#37019"
msgid "Enables system keys like printscreen, alt-tab and volume keys when in fullscreen."
msgstr "Enables system keys like printscreen, alt-tab and volume keys when in fullscreen."
msgctxt "#37024"
msgid "Select this if the audio out connection only supports multichannel audio as Dolby Digital 5.1, this allows multichannel audio such as AAC5.1 or FLAC5.1 to be listened to in 5.1 surround sound. Note - Not recommended on Pi as this requires a lot of CPU."
msgstr "Select this if the audio out connection only supports multichannel audio as Dolby Digital 5.1, this allows multichannel audio such as AAC5.1 or FLAC5.1 to be listened to in 5.1 surround sound. Note - Not recommended on Pi as this requires a lot of CPU."
|