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
|
# translation of kaffeine.po to Khmer
# translation of kaffeine.po to
#
# Khoem Sokhem <[email protected]>, 2006.
# Leang Chumsoben <[email protected]>, 2006.
msgid ""
msgstr ""
"Project-Id-Version: kaffeine\n"
"POT-Creation-Date: 2018-12-25 11:05+0100\n"
"PO-Revision-Date: 2006-04-25 15:50+0700\n"
"Last-Translator: Leang Chumsoben <[email protected]>\n"
"Language-Team: Khmer <[email protected]>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11\n"
#: _translatorinfo:1
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr "ααΉα αα»ααα, ααα»α
αα»αααα, ααα αα»ααα»αα·α, α’αα ααααα, α’αα αα·αα·ααα"
#: _translatorinfo:2
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
msgstr ""
"[email protected],[email protected],[email protected],"
"[email protected],[email protected]"
#: input/audiobrowser/googlefetcher.cpp:261
msgid "Cover Downloader"
msgstr "αααααα·ααΈβααΆαβααβααααα"
#: input/audiobrowser/googlefetcher.cpp:263
msgid "No matching images found, please enter new search terms:"
msgstr "ααβαα·αβααΎαβααΌαααΆαβααΌα
βα‘αΎαΒ α ααΌαβαααα
αΌαβααΆαααβαααααααβααααΈΒ α"
#: input/audiobrowser/googlefetcher.cpp:264
msgid "Enter new search terms:"
msgstr "αααα
αΌαβααΆαααβαααααααβααααΈΒ α"
#: input/audiobrowser/googlefetcherdialog.cpp:67
msgid "All Sizes"
msgstr "ααα αβααΆααα’αα"
#: input/audiobrowser/googlefetcherdialog.cpp:68
msgid "Very Small"
msgstr "ααΌα
βαααα»α"
#: input/audiobrowser/googlefetcherdialog.cpp:69
msgid "Small"
msgstr "ααΌα
"
#: input/audiobrowser/googlefetcherdialog.cpp:70
msgid "Medium"
msgstr "ααααα"
#: input/audiobrowser/googlefetcherdialog.cpp:71
msgid "Large"
msgstr "αα"
#: input/audiobrowser/googlefetcherdialog.cpp:72
msgid "Very Large"
msgstr "ααβαααα»α"
#: input/audiobrowser/googlefetcherdialog.cpp:79
msgid "New Search"
msgstr "αααααααβααααΈ"
#: input/audiobrowser/googlefetcherdialog.cpp:129
msgid "The cover you have selected is unavailable. Please select another."
msgstr "αα·αβααΆαβαααααβαααβα’αααβααΆαβααααΎαβα‘αΎαΒ α ααΌαβααααΎαβαααααβαα½αβαααΒ α"
#: input/audiobrowser/googlefetcherdialog.cpp:130
msgid "Cover Unavailable"
msgstr "αα·αβααΆαβαααααβα‘αΎα"
#: input/audiobrowser/playlist.cpp:263
msgid "Choose a Cover..."
msgstr "ααααΎαβαααααβαα½α..."
#: input/audiobrowser/playlist.cpp:264
msgid "Gallery..."
msgstr "αα·α
α·αααααΆα..."
#: input/audiobrowser/playlist.cpp:354 input/disc/disc.cpp:143
#: input/dvb/kevents.cpp:125
msgid "Title"
msgstr "α
αααααΎα"
#: input/audiobrowser/playlist.cpp:355 input/audiobrowser/urllistview.cpp:191
#: player-parts/gstreamer-part/gstreamer_part.cpp:584
#: player-parts/xine-part/xine_part.cpp:1216
msgid "Artist"
msgstr "αα·ααααα"
#: input/audiobrowser/playlist.cpp:356 input/audiobrowser/urllistview.cpp:192
#: player-parts/gstreamer-part/gstreamer_part.cpp:586
#: player-parts/xine-part/xine_part.cpp:1218
msgid "Album"
msgstr "α’αΆααααα»α"
#: input/audiobrowser/playlist.cpp:357 input/audiobrowser/urllistview.cpp:68
#: input/audiobrowser/urllistview.cpp:193 input/disc/disc.cpp:142
#: input/disc/disc.cpp:496 input/disc/disc.cpp:499
#: player-parts/gstreamer-part/gstreamer_part.cpp:588
#: player-parts/xine-part/xine_part.cpp:1220
msgid "Track"
msgstr "αα"
#: input/audiobrowser/playlist.cpp:358 input/audiobrowser/urllistview.cpp:61
#: input/audiobrowser/urllistview.cpp:196
#: player-parts/gstreamer-part/gstreamer_part.cpp:598
#: player-parts/xine-part/xine_part.cpp:1226
msgid "Length"
msgstr "αααααα"
#: input/audiobrowser/playlist.cpp:392 input/dvb/kevents.cpp:96
#, fuzzy
msgid "Search"
msgstr "αααααααβαα
"
#: input/audiobrowser/playlist.cpp:395 input/audiobrowser/playlist.cpp:2087
#: input/dvb/dvbpanel.cpp:175
msgid "Filter"
msgstr "ααααα"
#: input/audiobrowser/playlist.cpp:403
#, fuzzy
msgid "Playlist:"
msgstr "αααααΈα
αΆαα"
#: input/audiobrowser/playlist.cpp:411
msgid ""
"Select the active playlist. To change playlist name edit it and confirm with "
"'Return'."
msgstr "ααααΎαβαααααΈβα
αΆααβαααααΒ α ααΎααααΈβααααΆααααααΌαββαααααβαααααΈα
αΆαα ααΌαβααααααα½αβααΆ α αΎαβα
α»α
βαααΌαα»α 'αααα
αΌα'Β α"
#: input/audiobrowser/playlist.cpp:472
msgid "Play Playlist"
msgstr "α
αΆααβαααααΈα
αΆαα"
#: input/audiobrowser/playlist.cpp:500
msgid "&Repeat"
msgstr "α
αΆααβααααβααα"
#: input/audiobrowser/playlist.cpp:501
msgid "Loop playlist"
msgstr "ααααα·ααα»αβαααααΈα
αΆαα"
#: input/audiobrowser/playlist.cpp:502
msgid "Sh&uffle"
msgstr "ααΆαα"
#: input/audiobrowser/playlist.cpp:503
msgid "Play items in random order"
msgstr "α
αΆααβααΆαα»βααΆαβααααΆααβα
ααααα"
#: input/audiobrowser/playlist.cpp:504
msgid "Autodownload covers"
msgstr ""
#: input/audiobrowser/playlist.cpp:505
msgid "Automatic dowloading of covers"
msgstr ""
#: input/audiobrowser/playlist.cpp:506
msgid "Don't switch to player window"
msgstr ""
#: input/audiobrowser/playlist.cpp:507
msgid "Don't switch automatically to player window"
msgstr ""
#: input/audiobrowser/playlist.cpp:508
#, fuzzy
msgid "&Clear Current Playlist"
msgstr "ααβαααααΈα
αΆααβαα
αα
α»ααααααβα
αα"
#: input/audiobrowser/playlist.cpp:509
msgid "Ne&w Playlist"
msgstr "αααααΈα
αΆααβααααΈ"
#: input/audiobrowser/playlist.cpp:510
msgid "&Import Playlist..."
msgstr "ααΆαα
αΌαβαααααΈα
αΆαα..."
#: input/audiobrowser/playlist.cpp:511
msgid "&Save Current Playlist As..."
msgstr "αααααΆαα»αβαααααΈα
αΆααβαα
αα
α»ααααααβααΆ..."
#: input/audiobrowser/playlist.cpp:512
msgid "Re&move Current Playlist"
msgstr "ααβαααααΈα
αΆααβαα
αα
α»ααααααβα
αα"
#: input/audiobrowser/playlist.cpp:547 input/audiobrowser/playlist.cpp:559
#: kaffeine.cpp:226
msgid "Kaffeine Playlists"
msgstr "αααααΈα
αΆαα Kaffeine"
#: input/audiobrowser/playlist.cpp:547 input/audiobrowser/playlist.cpp:562
#: kaffeine.cpp:228
msgid "All Files"
msgstr "α―αααΆαβααΆααα’αα"
#: input/audiobrowser/playlist.cpp:547
msgid "Open Playlist"
msgstr "ααΎαβαααααΈα
αΆαα"
#: input/audiobrowser/playlist.cpp:560 kaffeine.cpp:224
msgid "M3U Playlists"
msgstr "αααααΈα
αΆαα M3U"
#: input/audiobrowser/playlist.cpp:561 kaffeine.cpp:225
msgid "PLS Playlists"
msgstr "αααααΈα
αΆαα PLS"
#: input/audiobrowser/playlist.cpp:562
msgid "Save Playlist"
msgstr "αααααΆαα»αβαααααΈα
αΆαα"
#: input/audiobrowser/playlist.cpp:624 input/audiobrowser/playlist.cpp:1793
#: inputmanager.cpp:222 inputmanager.cpp:267 kaffeine.cpp:191
msgid "Playlist"
msgstr "αααααΈα
αΆαα"
#: input/audiobrowser/playlist.cpp:627 input/audiobrowser/playlist.cpp:667
#: kaffeine.cpp:1508
msgid "NEW"
msgstr "ααααΈ"
#: input/audiobrowser/playlist.cpp:1027
msgid "Importing media resources..."
msgstr "αααα»αβααΆαα
αΌαβααααΆαβαααα..."
#: input/audiobrowser/playlist.cpp:1294 input/audiobrowser/playlist.cpp:1301
#: input/audiobrowser/playlist.cpp:1319
msgid "(no subtitles)"
msgstr "(ααααΆαβα
αααβααΎααα)"
#: input/audiobrowser/playlist.cpp:1295 input/audiobrowser/playlist.cpp:1301
#: input/audiobrowser/playlist.cpp:1303 input/audiobrowser/playlist.cpp:1320
msgid "Other subtitle..."
msgstr "α
αααβααΎαααβαααααααα..."
#: input/audiobrowser/playlist.cpp:1305 input/audiobrowser/urllistview.cpp:292
#: player-parts/xine-part/xine_part.cpp:615
msgid ""
"*.smi *.srt *.sub *.txt *.ssa *.asc|Subtitle Files\n"
"*.*|All Files"
msgstr ""
"*.smi *.srt *.sub *.txt *.ssa *.asc|α―αααΆαβα
αααβααΎαβαα\n"
"*.*|α―αααΆαβααΆααα’αα"
#: input/audiobrowser/playlist.cpp:1305 input/audiobrowser/urllistview.cpp:293
#: player-parts/xine-part/xine_part.cpp:616
msgid "Select Subtitle File"
msgstr "ααααΎαβα―αααΆαβα
αααααΎαβαα"
#: input/audiobrowser/playlist.cpp:1346
#, fuzzy
msgid "Files"
msgstr "α―αααΆαβααΆααα’αα"
#: input/audiobrowser/playlist.cpp:1614
msgid "Gallery"
msgstr "αα·α
α·αααααΆα"
#: input/audiobrowser/playlist.cpp:1777
msgid "Queue: %1 Entries, Playtime: %2"
msgstr "αα½αΒ α %1 ααΆαα», α
ααα½αβα
αΆααΒ α %2 αα"
#: input/audiobrowser/playlist.cpp:1784
msgid "Entries: %1, Playtime: %2"
msgstr "ααΆαα»Β α %1, α
ααα½αβα
αΆααΒ α %2 αα"
#: input/audiobrowser/playlist.cpp:1889
msgid "Remove '%1' from list and from disk?"
msgstr "αα '%1' α
ααβααΈβαααααΈ αα·α ααΈβααΆαΒ ?"
#: input/audiobrowser/playlist.cpp:1914
msgid "Playlist Name Already Exists"
msgstr "ααΆαβαααααβαααααΈα
αΆααβαα½α
βα αΎα"
#: input/audiobrowser/playlist.cpp:1915
msgid "Enter different playlist name:"
msgstr "αααα
αΌαβαααααβαααααΈα
αΆααβαααααβαααΒ α"
#: input/audiobrowser/playlist.cpp:2326
#: player-parts/xine-part/xine_part.cpp:1386
msgid "Select Subtitle"
msgstr "ααααΎαβα
αααβααΎααα"
#: input/audiobrowser/playlist.cpp:2330
msgid "Media file:"
msgstr "α―αααΆαβααααΒ α"
#: input/audiobrowser/playlist.cpp:2347
msgid "Select Movie"
msgstr "ααααΎαβααΆαααααβ"
#: input/audiobrowser/playlist.cpp:2351
msgid "Subtitle file:"
msgstr "α―αααΆαβα
αααβααΎαααΒ α"
#: input/audiobrowser/urllistview.cpp:44
#: player-parts/dummy-part/dummy_part.cpp:117
#: player-parts/gstreamer-part/gstreamer_part.cpp:696
#: player-parts/xine-part/xine_part.cpp:1332
msgid "Play"
msgstr "α
αΆαα"
#: input/audiobrowser/urllistview.cpp:45
msgid "Play Next/Add to Queue"
msgstr "α
αΆααβαααααΆαα/ααααααβαα
αα½α"
#: input/audiobrowser/urllistview.cpp:48
msgid "C&ut"
msgstr ""
#: input/audiobrowser/urllistview.cpp:49
msgid "&Copy"
msgstr ""
#: input/audiobrowser/urllistview.cpp:50
msgid "&Paste"
msgstr ""
#: input/audiobrowser/urllistview.cpp:51
msgid "Select &All"
msgstr "ααααΎαβααΆααα’αα"
#: input/audiobrowser/urllistview.cpp:52
msgid "Create Playlist From Selected"
msgstr "αααααΎαβαααααΈβα
αΆααβααΈβααΆαα»βαααβααΆαβααααΎα"
#: input/audiobrowser/urllistview.cpp:54
msgid "Add Sub&title..."
msgstr "ααααααβα
αααααΎααα..."
#: input/audiobrowser/urllistview.cpp:56
msgid "&Edit Title"
msgstr "ααααααα½αβα
αααααΎα"
#: input/audiobrowser/urllistview.cpp:57
msgid "&Info"
msgstr "ααααααΆα"
#: input/audiobrowser/urllistview.cpp:190
msgid "URL"
msgstr "URL"
#: input/audiobrowser/urllistview.cpp:194
#: player-parts/gstreamer-part/gstreamer_part.cpp:590
#: player-parts/xine-part/xine_part.cpp:1222
msgid "Year"
msgstr "ααααΆα"
#: input/audiobrowser/urllistview.cpp:195
#: player-parts/gstreamer-part/gstreamer_part.cpp:592
#: player-parts/xine-part/xine_part.cpp:1224
msgid "Genre"
msgstr "α
ααααΆαα"
#: input/audiobrowser/urllistview.cpp:199
msgid "Subtitles"
msgstr "α
αααβααΎαβαα"
#: input/audiobrowser/urllistview.cpp:205
msgid "in use"
msgstr "αααα»αβααααΎ"
#: input/disc/cddb.cpp:293
msgid "No Title"
msgstr "ααααΆαβα
αααβααΎα"
#: input/disc/cddb.cpp:297 input/disc/disc.cpp:493 input/disc/disc.cpp:494
#: input/dvb/dvbconfig.cpp:613
msgid "Unknown"
msgstr "αα·αααααΆαα"
#: input/disc/cddb.cpp:305
#, c-format
msgid "Track %1"
msgstr "αα %1"
#: input/disc/cddb.cpp:381
msgid "Searching local cddb entry ..."
msgstr "αααα»αβαααααααβααΆαα» cddb ααΌαααααΆα..."
#: input/disc/cddb.cpp:406
msgid "Searching remote cddb entry ..."
msgstr "αααα»αβαααααααβααΆαα» cddb ααΈβα
ααααΆα..."
#: input/disc/cddb.cpp:430
msgid "Found exact match cddb entry ..."
msgstr "ααΆαβααααΎαβααΆαα» cddb ααΌα
βααααα·α..."
#: input/disc/cddb.cpp:488
msgid "Found close cddb entry ..."
msgstr "ααΆαβααβααΎαβααΆαα» cddb ααααααβααααΆ..."
#: input/disc/cddb.cpp:511
msgid "CDDB Matches"
msgstr ""
#: input/disc/cddb.cpp:511
#, fuzzy
msgid "Several close CDDB entries found. Choose one:"
msgstr "ααΆαβααβααΎαβααΈααα’αΌβααΈααΈααΈβααΆβα
αααΎαΒ α ααΌαβααααΎαβααΈααα’αΌααΈααΈααΈβαα½αΒ α"
#: input/disc/disc.cpp:47 input/disc/disc.cpp:422 kaffeine.cpp:196
msgid "Audio CD"
msgstr "αααΈααΈβα’αΌααΈαααΌ"
#: input/disc/disc.cpp:99 input/disc/disc.cpp:103
msgid "Play CD"
msgstr "α
αΆααβαααΈααΈ"
#: input/disc/disc.cpp:105 input/disc/disc.cpp:109
msgid "Rip CD"
msgstr "ααααααβαααΈααΈ"
#: input/disc/disc.cpp:123
msgid "Artist:"
msgstr "αα·αααααΒ α"
#: input/disc/disc.cpp:131
msgid "Album:"
msgstr "βα’αΆααααα»αΒ α"
#: input/disc/disc.cpp:144 input/dvb/kevents.cpp:124 input/dvb/krecord.cpp:49
msgid "Duration"
msgstr "αα·αααααΆ"
#: input/disc/disc.cpp:156
msgid "Select the tracks you want to rip and click the <b>Encode</b> button."
msgstr "ααααΎαβααβαααβα’αααβα
ααβαααααα α αΎαβα
α»α
βαααΌαα»α <b>α’αα·αααΌα</b>Β α"
#: input/disc/disc.cpp:160
msgid "Encode..."
msgstr "α’αα·αααΌα..."
#: input/disc/disc.cpp:204
msgid "Audio CD encoding"
msgstr "ααΆαβα’αα·αααΌαββαααΈααΈβα’αΌααΈαααΌ"
#: input/disc/disc.cpp:207
msgid "Play Audio CD"
msgstr "α
αΆααβαααΈααΈβα’αΌααΈαααΌ"
#: input/disc/disc.cpp:210
msgid "Play DVD"
msgstr "α
αΆααβααΈααΈααΈ"
#: input/disc/disc.cpp:213
msgid "Play VCD"
msgstr "α
αΆααβααΈαααΈααΈ"
#: input/disc/disc.cpp:269
msgid "Open &DVD"
msgstr "ααΎαβααΈααΈααΈ"
#: input/disc/disc.cpp:270
msgid "Open &VCD"
msgstr "ααΎαβααΈαααΈααΈ"
#: input/disc/disc.cpp:271
msgid "Open &Audio-CD"
msgstr "ααΎαβαααΈααΈββα’αΌααΈαααΌ"
#: input/disc/disc.cpp:317
msgid "You must select the tracks to rip."
msgstr "α’αααβααααΌαααβααααΎαβαα ααΎααααΈβααααααΒ α"
#: input/disc/disc.cpp:317 input/disc/disc.cpp:325 input/disc/disc.cpp:520
#: input/disc/paranoia.cpp:249 input/dvb/krecord.cpp:232
msgid "Warning"
msgstr ""
#: input/disc/disc.cpp:325
msgid "Unable to initialize cdparanoia."
msgstr ""
#: input/disc/disc.cpp:422
msgid "Several Audio CD found. Choose one:"
msgstr "ααΆαβααααΎαβαααΈααΈβα’αΌααΈαααΌβααΆβα
αααΎαΒ α ααΌαβααααΎαβαααΈααΈβαα½αΒ α"
#: input/disc/disc.cpp:520
msgid "No audio CD found."
msgstr "ααβαα·αβααΎαβαααΈααΈβα’αΌααΈαααΌβα‘αΎαΒ α"
#: input/disc/disc.cpp:556
msgid "DVD Video"
msgstr "ααΈααα’αΌβααΈααΈααΈ"
#: input/disc/disc.cpp:556
msgid "Several DVD Video found. Choose one:"
msgstr "ααΆαβααβααΎαβααΈααα’αΌβααΈααΈααΈβααΆβα
αααΎαΒ α ααΌαβααααΎαβααΈααα’αΌααΈααΈααΈβαα½αΒ α"
#: input/disc/disc.cpp:610
msgid "VCD-SVCD"
msgstr "ααΈαααΈααΈ-α’ααααΈαααΈααΈ"
#: input/disc/disc.cpp:610
msgid "Several (S)VCD found. Choose one:"
msgstr "ααΆαβααβααΎα (α’αα)ααΈαααΈααΈβααΆβα
αααΎαΒ α ααΌαβααααΎα (α’αα)ααΈαααΈααΈαα½αΒ α"
#: input/disc/paranoia.cpp:58 input/disc/plugins/mp3lame/klameenc.cpp:35
#: input/disc/plugins/oggvorbis/koggenc.cpp:33 input/dvb/broadcasteditor.cpp:41
#: input/dvb/crontimer.cpp:54
msgid "OK"
msgstr ""
#: input/disc/paranoia.cpp:59 input/disc/plugins/mp3lame/klameenc.cpp:36
#: input/disc/plugins/oggvorbis/koggenc.cpp:34 input/dvb/broadcasteditor.cpp:40
#: input/dvb/crontimer.cpp:53 input/dvb/dvbstream.cpp:700
msgid "Cancel"
msgstr ""
#: input/disc/paranoia.cpp:249
msgid "No audio encoders could be found."
msgstr "αα·αβα’αΆα
βααβααΎαβα’αα·αααΌαααβα’αΌααΈαααΌβα‘αΎαΒ α"
#: input/disc/paranoia.cpp:291 input/disc/paranoia.cpp:298
msgid "Loading of encoder '%1' failed."
msgstr "ααΆαβαααα»αβα’αα·αααΌααα '%1' ααΆαβαααΆαααΒ α"
#: input/disc/paranoia.cpp:323
msgid "Unable to create folder: "
msgstr "αα·αβα’αΆα
βαααααΎαβααΒ α "
#: input/disc/paranoia.cpp:518 input/dvb/dvbpanel.cpp:310
msgid "MB"
msgstr "ααααΆαα"
#: input/disc/paranoia.cpp:519
msgid "KB"
msgstr "ααΈα‘αΌαα"
#: input/disc/paranoia.cpp:520
msgid "Bytes"
msgstr "αα"
#: input/disc/plugins/mp3lame/klameenc.cpp:90
msgid "KaffeineMp3Lame"
msgstr "KaffeineMp3Lame"
#: input/disc/plugins/mp3lame/klameenc.cpp:91
msgid "A Lame mp3 encoder plugin for Kaffeine."
msgstr "αααααα·ααΈβαααα½αβα’αα·αααΌααα mp3 αααα Lame αααααΆαα KaffeineΒ α"
#: input/disc/plugins/oggvorbis/koggenc.cpp:70
msgid "KaffeineOggVorbis"
msgstr "KaffeineOggVorbis"
#: input/disc/plugins/oggvorbis/koggenc.cpp:71
msgid "A Ogg Vorbis encoder plugin for Kaffeine."
msgstr "αααααα·ααΈβαααα½αβα’αα·αααΌααα Vorbis αααα Ogg αααααΆαα KaffeineΒ α"
#: input/dvb/audioeditor.cpp:144 input/dvb/subeditor.cpp:163
msgid "Pid must be non zero!"
msgstr "Pid ααααΌαβααβαα·ααααβααΆβααΌαααΒ !"
#: input/dvb/broadcasteditor.cpp:38
msgid "Add"
msgstr ""
#: input/dvb/broadcasteditor.cpp:39
msgid "Reset"
msgstr "αααααβα‘αΎαβαα·α"
#: input/dvb/channeleditor.cpp:62
msgid "Initial Transponder Settings"
msgstr "ααΆαβαααααβα§αααααβααα½αβααΌααααβααααΌα"
#: input/dvb/channeleditor.cpp:103 input/dvb/ktimereditor.cpp:183
msgid "You must give it a name!"
msgstr "α’αααβααααΌαβααβααΆααβαααααβα²ααβααΆΒ !"
#: input/dvb/channeleditor.cpp:110
msgid "This name is not unique."
msgstr "αααααβαααβαα·ααααβααΆαβααβαα½αβα‘αΎαΒ α"
#: input/dvb/channeleditor.cpp:122
msgid "Missing audio pid(s)!"
msgstr "ααΆαα pid ααααβα’αΌααΈαααΌΒ !"
#: input/dvb/crontimer.cpp:100
msgid "You have to choose some days."
msgstr "α’αααβααααΌαβααβααααΎαβααααβααΆβαα½αΒ αβ"
#: input/dvb/dvbconfig.cpp:76
msgid "CAM"
msgstr ""
#: input/dvb/dvbconfig.cpp:285
msgid "Downloading... "
msgstr "αααα»αβααΆααα... "
#: input/dvb/dvbconfig.cpp:285
msgid "Copying data files..."
msgstr "αααα»αβα
ααααβα―αααΆαβαα·αααααα..."
#: input/dvb/dvbconfig.cpp:380 input/dvb/dvbpanel.cpp:546
#: input/dvb/dvbpanel.cpp:571 input/dvb/dvbpanel.cpp:619
#: input/dvb/dvbpanel.cpp:1030
msgid "All"
msgstr "ααΆααα’αα"
#: input/dvb/dvbconfig.cpp:382 input/dvb/dvbpanel.cpp:548
#: input/dvb/dvbpanel.cpp:571 input/dvb/dvbpanel.cpp:1035
#: input/dvb/scandialogui.ui:332
#, no-c-format
msgid "TV"
msgstr "ααΌααααααα"
#: input/dvb/dvbconfig.cpp:384 input/dvb/dvbpanel.cpp:550
#: input/dvb/dvbpanel.cpp:571 input/dvb/dvbpanel.cpp:1033
#: input/dvb/scandialogui.ui:316
#, no-c-format
msgid "Radio"
msgstr "αα·αααα»"
#: input/dvb/dvbconfig.cpp:569
msgid "DVB Settings"
msgstr "ααΆαβααααα DVB"
#: input/dvb/dvbconfig.cpp:586
msgid "No rotor"
msgstr ""
#: input/dvb/dvbconfig.cpp:586
msgid "USALS rotor"
msgstr ""
#: input/dvb/dvbconfig.cpp:586
#, fuzzy
msgid "Positions rotor"
msgstr "αααΆαβα§αααααβααΈααΆαα"
#: input/dvb/dvbconfig.cpp:586
msgid "External positionner"
msgstr ""
#: input/dvb/dvbconfig.cpp:592
msgid "DVB Device"
msgstr "α§ααααα DVB"
#: input/dvb/dvbconfig.cpp:592
msgid "Device Settings"
msgstr "ααΆαβαααααβα§ααααα"
#: input/dvb/dvbconfig.cpp:599
msgid "<qt><b>Name:</b></qt>"
msgstr "<qt><b>αααααΒ α</b></qt>"
#: input/dvb/dvbconfig.cpp:605
msgid "<qt><b>Type:</b></qt>"
msgstr "<qt><b>ααααααΒ α</b></qt>"
#: input/dvb/dvbconfig.cpp:609
msgid "Cable"
msgstr ""
#: input/dvb/dvbconfig.cpp:610
msgid "Terrestrial"
msgstr ""
#: input/dvb/dvbconfig.cpp:611
#, fuzzy
msgid "Satellite"
msgstr "αααααΆαα»αβαααααΈα
αΆαα"
#: input/dvb/dvbconfig.cpp:612
#, fuzzy
msgid "Atsc"
msgstr "αα·ααααα"
#: input/dvb/dvbconfig.cpp:625
msgid "Tuner priority (0=Don't use):"
msgstr ""
#: input/dvb/dvbconfig.cpp:633
msgid "Tuner timeout :"
msgstr ""
#: input/dvb/dvbconfig.cpp:639
msgid "(ms)"
msgstr ""
#: input/dvb/dvbconfig.cpp:644
msgid "S2 capable device"
msgstr ""
#: input/dvb/dvbconfig.cpp:649
msgid "Number of LNBs:"
msgstr "α
ααα½α LNBΒ α"
#: input/dvb/dvbconfig.cpp:655
msgid "Set rotor coordinates..."
msgstr ""
#: input/dvb/dvbconfig.cpp:661
msgid "Mini DiSEqC (A-B)."
msgstr ""
#: input/dvb/dvbconfig.cpp:665
msgid "Send DiSEqC commands twice."
msgstr ""
#: input/dvb/dvbconfig.cpp:672
#, fuzzy
msgid "LNB 1 settings..."
msgstr "ααΆαβααααα LNB..."
#: input/dvb/dvbconfig.cpp:687 input/dvb/dvbconfig.cpp:719
#: input/dvb/dvbconfig.cpp:751 input/dvb/dvbconfig.cpp:783
msgid "Sources list..."
msgstr ""
#: input/dvb/dvbconfig.cpp:701
#, fuzzy
msgid "LNB 2 settings..."
msgstr "ααΆαβααααα LNB..."
#: input/dvb/dvbconfig.cpp:733
#, fuzzy
msgid "LNB 3 settings..."
msgstr "ααΆαβααααα LNB..."
#: input/dvb/dvbconfig.cpp:765
#, fuzzy
msgid "LNB 4 settings..."
msgstr "ααΆαβααααα LNB..."
#: input/dvb/channeleditorui.ui:57 input/dvb/dvbconfig.cpp:799
#, no-c-format
msgid "Source:"
msgstr "αααααααΎαΒ α"
#: input/dvb/dvbconfig.cpp:810
msgid ""
"<qt>This device seems to support the <b><i>autoscan</i></b> feature. You can "
"choose <b>AUTO</b> in Source list to let Kaffeine search for a range of "
"frequencies.<br>If <b><i>autoscan</i></b> fails to find your channels, "
"choose a real Source in list.</qt>"
msgstr ""
#: input/dvb/dvbconfig.cpp:818
msgid ""
"<qt><i>If you can't find your network/location in the list, you'll have to "
"create one. Look in $HOME/.trinity/share/apps/kaffeine/dvb-x/ and take an "
"existing file as start point. Fill in with the values for your network/"
"location and give it a sensible name (follow the naming convention). If you "
"think your new file could be usefull for others, send it to kaffeine-"
"user(AT)lists.sf.net.</i></qt>"
msgstr ""
#: input/dvb/dvbconfig.cpp:829 input/dvb/dvbpanel.cpp:223
#: player-parts/xine-part/kxinewidget.cpp:2168
msgid "Recording"
msgstr "αααα»ααα"
#: input/dvb/dvbconfig.cpp:829
msgid "DVB Recording Options"
msgstr "αααααΎαβααΆαβαα DVB"
#: input/dvb/dvbconfig.cpp:835
msgid "Records directory:"
msgstr "ααβααΆαβααΒ α"
#: input/dvb/dvbconfig.cpp:844 pref.cpp:112
msgid "Time shifting directory:"
msgstr "ααααααΆααααααΌαβαααααααΆΒ α"
#: input/dvb/dvbconfig.cpp:853
msgid "Begin margin:"
msgstr "ααΉαβα
αΆααααααΎαΒ α"
#: input/dvb/dvbconfig.cpp:858 input/dvb/dvbconfig.cpp:867
#: input/dvb/dvbconfig.cpp:876
msgid "(minutes)"
msgstr "(ααΆααΈ)"
#: input/dvb/dvbconfig.cpp:862
msgid "End margin:"
msgstr "ααΉαβαααα
ααΒ α"
#: input/dvb/dvbconfig.cpp:871
msgid "Instant record duration:"
msgstr "αα·αααααΆβααβααααΆααΒ α"
#: input/dvb/dvbconfig.cpp:880
msgid "Max file size (0=Unlimited):"
msgstr ""
#: input/dvb/dvbconfig.cpp:886
msgid "(MB)"
msgstr ""
#: input/dvb/dvbconfig.cpp:890
msgid "Filename Format:"
msgstr ""
#: input/dvb/dvbconfig.cpp:909 input/dvb/dvbpanel.cpp:231
msgid "Broadcasting"
msgstr "αααα»αααααΆα"
#: input/dvb/dvbconfig.cpp:909
msgid "DVB Broadcasting"
msgstr "ααΆαβααααΆαβ DVB"
#: input/dvb/dvbconfig.cpp:915 pref.cpp:99
msgid "Broadcast address:"
msgstr "α’αΆααααααΆαβααΆαβααααΆαΒ α"
#: input/dvb/dvbconfig.cpp:919 pref.cpp:103
msgid "Broadcast port:"
msgstr "α
αααβααΆαααααΆαΒ α"
#: input/dvb/dvbconfig.cpp:923 pref.cpp:107
msgid "Info port:"
msgstr "α
αααβααααααΆαΒ α"
#: input/dvb/dvbconfig.cpp:935 pref.cpp:126
msgid "Misc"
msgstr "αααααα"
#: input/dvb/dvbconfig.cpp:941
msgid "Probe Multiple-Frontends (Restart required)."
msgstr ""
#: input/dvb/dvbconfig.cpp:945
msgid "LiveShow ringbuffer size (MB) :"
msgstr ""
#: input/dvb/dvbconfig.cpp:951
msgid "Default charset (restart needed):"
msgstr "αααα»αβαα½α’ααααβααααΆαααΎα (ααΆαααΆαβα
αΆααααααΎαβα‘αΎαβαα·α)Β α"
#: input/dvb/dvbconfig.cpp:962
msgid "Update scan data:"
msgstr "βααααΎβα²ααβααΆαβαα·ααΆαααββαα·ααααααβααΆααβααααΒ α"
#: input/dvb/dvbconfig.cpp:965
msgid "Download"
msgstr "ααΆααα"
#: input/dvb/dvbconfig.cpp:968
msgid ""
"Dump epg's events to \n"
"~/kaffeine_dvb_events.tx:"
msgstr ""
"αααα
ααβααααΉαααα·ααΆαααβαααα epg αα
βααααα \n"
"~/kaffeine_dvb_events.txΒ α"
#: input/dvb/dvbconfig.cpp:971
msgid "Dump"
msgstr "αααα
αα"
#: input/dvb/dvbconfig.cpp:978
#, fuzzy
msgid "DVB plugins"
msgstr "αααΆαααΈαβαααααβ DVB"
#: input/dvb/dvbconfig.cpp:1002
#, fuzzy
msgid "Rotors settings"
msgstr "ααΆαβααααα DVB"
#: input/dvb/dvbconfig.cpp:1008
msgid "Set your position coordinates for rotors:"
msgstr ""
#: input/dvb/dvbconfig.cpp:1013
msgid "Latitude:"
msgstr ""
#: input/dvb/dvbconfig.cpp:1018
msgid "Longitude:"
msgstr ""
#: input/dvb/dvbconfig.cpp:1087
msgid ""
"<qt>Can't get DVB data from http://hftom.free.fr/kaxtv/dvbdata.tar.gz!<br>\t"
"\t\tCheck your internet connection, and say Yes to try again.<br>\t\t\tOr "
"say No to cancel.<br> Should I try again?</qt>"
msgstr ""
"<qt>αα·αβα’αΆα
βααα½αβαα·ααααααβ DVB ααΈhttp://hftom.free.fr/kaxtv/dvbdata.tar.gz α‘αΎαΒ !<br>\t"
"\t\tααΌααα·αα·αααβααΎαβααΆαβαααααΆααβα’αα·αααΊαα·αβααααβα’ααα α αΎαβα
α»α
ααΆα/α
αΆα ααΎααααΈβααααΆααΆαβααααβαααΒ α<br>\t\t\tα¬β"
"α
α»α
αα ααΎααααΈβααααααΒ α<br> ααΎβαααα»αβαα½αβααααΆααΆαβααααβαααα¬Β ?</qt>"
#: input/dvb/dvbconfig.cpp:1144
#, c-format
msgid ""
"Special strings are:\n"
"- %chan (channel's name)\n"
"- %date (the starting date, YYMMdd-hhmmss)\n"
"- %name (the name given in timer editor or the program name from EPG)\n"
"So, if you set template to '%chan-%date-%name', the resulting filename will "
"be, for example, BBC-20070919-210000-News.m2t"
msgstr ""
#: input/dvb/dvbconfig.cpp:1173
msgid "Invalid records directory."
msgstr "ααββααΆαβααβαα·αβααααΉαααααΌαβα‘αΎαΒ α"
#: input/dvb/dvbconfig.cpp:1178
msgid "Invalid time shifting directory."
msgstr "ααβααααΆααααααΌαβαααααααΆβαα·αβααααΉαααααΌαβα‘αΎαΒ α"
#: input/dvb/dvbconfig.cpp:1183
msgid "Broadcast and Info ports must be different."
msgstr "α
αααβααΆαβααααΆα αα·α α
αααβααααααΆαβααααΌαβααβαα»αβααααΆΒ α"
#: input/dvb/dvbconfig.cpp:1188
msgid "Invalid broadcast address."
msgstr "α’αΆααααααΆαβααΆαβααααΆαβαα·αβααααΉαααααΌαβα‘αΎαΒ α"
#: input/dvb/dvbconfig.cpp:1193
msgid "Invalid filename format."
msgstr ""
#: input/dvb/dvbconfig.cpp:1275
msgid "LNB Settings"
msgstr "ααΆαβααααα LNB"
#: input/dvb/dvbconfig.cpp:1285
msgid "Universal LNB"
msgstr "LNB ααα"
#: input/dvb/dvbconfig.cpp:1288
msgid "C-Band LNB"
msgstr ""
#: input/dvb/dvbconfig.cpp:1291
msgid "C-Band Multipoint LNB"
msgstr ""
#: input/dvb/dvbconfig.cpp:1298
msgid "Dual LO"
msgstr "LO αααα"
#: input/dvb/dvbconfig.cpp:1299
msgid "Single LO"
msgstr "LO ααα"
#: input/dvb/dvbconfig.cpp:1300
msgid "H/V LO"
msgstr ""
#: input/dvb/dvbconfig.cpp:1302
msgid "Dual LO switch frequency:"
msgstr "αααααααβααααΌα LO ααααΒ α"
#: input/dvb/dvbconfig.cpp:1302 input/dvb/dvbconfig.cpp:1306
#: input/dvb/dvbconfig.cpp:1310 input/dvb/dvbconfig.cpp:1314
#: input/dvb/dvbconfig.cpp:1318 input/dvb/dvbconfig.cpp:1322
msgid " (MHz)"
msgstr " (MHz)"
#: input/dvb/dvbconfig.cpp:1306
msgid "Lo-band frequency:"
msgstr "αααααααβαααβα’αΆααΆαααΆαΒ α"
#: input/dvb/dvbconfig.cpp:1310
msgid "Hi-band frequency:"
msgstr "αααααααβαααα’αΆααΆαβαααααΒ α"
#: input/dvb/dvbconfig.cpp:1314
msgid "Single LO frequency:"
msgstr "ααααααα LO αααΒ α"
#: input/dvb/dvbconfig.cpp:1318
#, fuzzy
msgid "Vertical pol. LO frequency:"
msgstr "ααααααα LO αααΒ α"
#: input/dvb/dvbconfig.cpp:1322
#, fuzzy
msgid "Horizontal pol. LO frequency:"
msgstr "ααααααα LO αααΒ α"
#: input/dvb/dvbconfig.cpp:1467
#, fuzzy
msgid "Rotor Settings"
msgstr "ααΆαβαααααβααΈααα’αΌ"
#: input/dvb/dvbconfig.cpp:1480 input/dvb/dvbconfig.cpp:1500
#, fuzzy
msgid "Sattelite:"
msgstr "αααααΆαα»αβαααααΈα
αΆαα"
#: input/dvb/dvbconfig.cpp:1483 input/dvb/dvbconfig.cpp:1530
#, fuzzy
msgid "Position:"
msgstr "ααΈααΆαα"
#: input/dvb/dvbconfig.cpp:1494
#, fuzzy
msgid "Add to list"
msgstr "ααααααβαα
βα§αααααβαααααβαααααααΆ"
#: input/dvb/dvbconfig.cpp:1503
#, fuzzy
msgid "Clear list"
msgstr "αααααΈα
αΆαα"
#: input/dvb/dvbconfig.cpp:1510
msgid "13V rotor speed:"
msgstr ""
#: input/dvb/dvbconfig.cpp:1515 input/dvb/dvbconfig.cpp:1522
msgid "sec./ Β°"
msgstr ""
#: input/dvb/dvbconfig.cpp:1517
msgid "18V rotor speed:"
msgstr ""
#: input/dvb/dvbpanel.cpp:144 input/dvb/scandialog.cpp:81
#: input/dvb/scandialogui.ui:16 input/dvb/scandialogui.ui:43
#, no-c-format
msgid "Channels"
msgstr "ααΆααα"
#: input/dvb/dvbpanel.cpp:147 input/dvb/krecord.cpp:98
msgid "Timers"
msgstr "α§αααααβαααααβαααβααααΆ"
#: input/dvb/dvbpanel.cpp:150 input/dvb/kevents.cpp:69
msgid "Electronic Program Guide"
msgstr "ααααα»αααααααβαααααα·ααΈβα’αα‘α·α
βααααΌαα·α"
#: input/dvb/dvbpanel.cpp:153
msgid "OSD"
msgstr "OSD"
#: input/dvb/dvbpanel.cpp:156
msgid "DVB settings"
msgstr "ααΆαβααααα DVB"
#: input/dvb/dvbpanel.cpp:159 input/dvb/dvbpanel.cpp:444
msgid "Recall"
msgstr ""
#: input/dvb/dvbpanel.cpp:174
#, fuzzy
msgid "Search channel(s)"
msgstr "αααααααβαα
"
#: input/dvb/dvbpanel.cpp:191
msgid "Number"
msgstr "ααα"
#: input/dvb/dvbpanel.cpp:192 input/dvb/dvbpanel.cpp:476
#: input/dvb/krecord.cpp:46 input/dvb/scandialogui.ui:60
#: input/dvb/scandialogui.ui:441
#, no-c-format
msgid "Name"
msgstr "ααααα"
#: input/dvb/dvbpanel.cpp:193 input/dvb/scandialogui.ui:71
#, fuzzy, no-c-format
msgid "Source"
msgstr "αααααααΎαΒ α"
#: input/dvb/dvbpanel.cpp:201 input/dvb/dvbpanel.cpp:443
msgid "Instant Record"
msgstr "ααααααΆαα"
#: input/dvb/dvbpanel.cpp:205
msgid "Broadcast"
msgstr "ααααΆα"
#: input/dvb/dvbpanel.cpp:215
msgid "Time shifting"
msgstr "ααΆαβααααΆααααααΌαβαααααααΆ"
#: input/dvb/dvbpanel.cpp:310
msgid "Warning: low disc space"
msgstr ""
#: input/dvb/dvbpanel.cpp:329
#, fuzzy
msgid "Select icon..."
msgstr "ααααΎαβααΆαααααβ"
#: input/dvb/dvbpanel.cpp:330 input/dvb/scandialog.cpp:249
msgid "Edit..."
msgstr "ααααααα½α..."
#: input/dvb/dvbpanel.cpp:337
#, fuzzy
msgid "Choose channel icon"
msgstr "αααααα·ααΈβαα·ααααβααΆααα"
#: input/dvb/dvbpanel.cpp:413 kaffeine.cpp:206
msgid "Digital TV"
msgstr "ααΌαααααααβααΈααΈαα"
#: input/dvb/dvbpanel.cpp:424
msgid "Live digital TV only works with the xine engine."
msgstr "ααΌαααααααβααΈααΈααβααααααααΆαα ααααΎαααΆαβααβααΆαα½αβαααΆαααΈα xine ααα»αααααΒ α"
#: input/dvb/dvbpanel.cpp:438
msgid "OSD Next Channel"
msgstr "ααΆαααβαααααΆααβαααα OSD"
#: input/dvb/dvbpanel.cpp:439
msgid "OSD Previous Channel"
msgstr "ααΆαααβαα»αβαααα OSD"
#: input/dvb/dvbpanel.cpp:440
msgid "OSD Zap"
msgstr "OSD Zap"
#: input/dvb/dvbpanel.cpp:441
msgid "OSD Next Event"
msgstr "ααααΉαααα·ααΆαααβαααααΆααβαααα OSD"
#: input/dvb/dvbpanel.cpp:442
msgid "OSD Previous Event"
msgstr "ααααΉαααα·ααΆαααβαα»αβαααα OSD"
#: input/dvb/dvbpanel.cpp:445
msgid "Show OSD"
msgstr "αααα αΆα OSD"
#: input/dvb/dvbpanel.cpp:446
msgid "EPG..."
msgstr "EPG..."
#: input/dvb/dvbpanel.cpp:447
msgid "Timers..."
msgstr "α§αααααβαααααβαααβααααΆ..."
#: input/dvb/dvbpanel.cpp:448
msgid "Broadcasting..."
msgstr "αααα»αβααααΆα..."
#: input/dvb/dvbpanel.cpp:449
msgid "Channels..."
msgstr "ααΆααα..."
#: input/dvb/dvbpanel.cpp:450
msgid "Configure DVB..."
msgstr "αααααβαα
ααΆαααααααα DVB..."
#: input/dvb/dvbpanel.cpp:567
msgid "New Category..."
msgstr "ααααααβααααΈ..."
#: input/dvb/dvbpanel.cpp:570
msgid "Change Icon..."
msgstr "ααααΆααααααΌαβααΌαααααΆα..."
#: input/dvb/dvbpanel.cpp:572
msgid "Delete Category..."
msgstr "αα»αβαααααα..."
#: input/dvb/dvbpanel.cpp:577
msgid "New Category"
msgstr "ααααααβααααΈ"
#: input/dvb/dvbpanel.cpp:577
msgid "Enter a name for this category:"
msgstr "αααα
αΌαβαααααβαα½αβα²ααβααααααβαααΒ α"
#: input/dvb/dvbpanel.cpp:596
msgid "Do you really want to delete this category?"
msgstr "ααΎβα’αααβαα·αβααΆβα
ααβαα»αβααααααβαααβα¬Β ?"
#: input/dvb/dvbpanel.cpp:1103 input/dvb/dvbpanel.cpp:1671
msgid ""
"<qt>Can't get DVB data from http://hftom.free.fr/kaxtv/dvbdata.tar.gz!<br>\t"
"\t\tCheck your internet connection, and say Yes to try again.<br>\t\t\tOr "
"say No to cancel.<br>\t\t\tIf you already have this archive, copy it to ~/."
"trinity/share/apps/kaffeine/dvbdata.tar.gz and say Yes.<br><br>Should I try "
"again?</qt>"
msgstr ""
"<qt>αα·αβα’αΆα
βααα½αβαα·αααααα DVB ααΈhttp://hftom.free.fr/kaxtv/dvbdata.tar.gz ααΆαβα‘αΎαΒ !<br>"
"\t\t\tααΌαβαα·αα·αααβααΎαβααΆαβαααααΆααβα’αα·αααΊαα·αβααααβα’ααα α αΎαβα
α»α
β ααΆα/α
αΆα ααΎααααΈβααααΆααΆαβααααβαααΒ α<br>\t\t"
"\tα¬ α
α»α
ααβ βααΎααααΈββααααααΒ α<br>\t\t\tααααα·αβααΎβα’αααβααΆαβαααααααΆαβαααβαα½α
βα αΎα ααΌαβα
ααααβααΆβαα
βαααα»α~/."
"trinity/share/apps/kaffeine/dvbdata.tar.gz α αΎαβα
α»α
β ααΆα/α
αΆαΒ α<br><br>ααΎβαααα»αβαα½αβ"
"ααααΆααΆαβααααβαααβααΒ ?</qt>"
#: input/dvb/dvbpanel.cpp:1308
msgid "Broadcasting failed."
msgstr "ααΆαβααααΆαβααΆαβαααΆαααΒ α"
#: input/dvb/dvbpanel.cpp:1312
msgid "Can't start broadcasting."
msgstr "αα·αβα’αΆα
βα
αΆααααααΎαβααααΆαβα‘αΎαΒ α"
#: input/dvb/dvbpanel.cpp:1440
#, fuzzy
msgid "Instant Record successfully started"
msgstr "ααΆαβαααααΎαβα§αααααβαααααβαααααααΆβαααβααααααΒ α"
#: input/dvb/dvbpanel.cpp:1443
msgid "Instant Recording failed to start."
msgstr ""
#: input/dvb/dvbpanel.cpp:1454
#, fuzzy
msgid "Recording successfully stopped"
msgstr "ααΆαβαααααΎαβα§αααααβαααααβαααααααΆβαααβααααααΒ α"
#: input/dvb/dvbpanel.cpp:1597
msgid "You may want to define some channel first!"
msgstr "α’αααβαααα ααβααΆβα
ααβαααααβααΆαααβαα½αβα
ααα½αβαα·αΒ !"
#: input/dvb/dvbpanel.cpp:1660
msgid "Timer successfully created."
msgstr "ααΆαβαααααΎαβα§αααααβαααααβαααααααΆβαααβααααααΒ α"
#: input/dvb/dvbpanel.cpp:2009
msgid "Still recording."
msgstr "αα
βαααα»αβααβαα
βα‘αΎαΒ α"
#: input/dvb/dvbpanel.cpp:2012
msgid "Still broadcasting."
msgstr "αα
βαααα»αβααααΆαβαα
βα‘αΎαΒ α"
#: input/dvb/dvbpanel.cpp:2015
msgid "Can't tune dvb!"
msgstr "αα·αβα’αΆα
βααΆαβααα»αααα·α dvb α‘αΎαΒ !"
#: input/dvb/dvbpanel.cpp:2018
msgid "Can't set pid(s)"
msgstr "αα·αβα’αΆα
βααααα pid α‘αΎα"
#: input/dvb/dvbpanel.cpp:2021
msgid "No CAM free"
msgstr ""
#: input/dvb/dvbpanel.cpp:2663
msgid "Kaffeine is still recording. Do you really want to quit?"
msgstr "Kaffeine αα
βαααα»αβααβαα
βα‘αΎαΒ α ααΎβα’αααβαα·αβααΆβα
ααβα
ααβα¬Β ?"
#: input/dvb/dvbpanel.cpp:2668
msgid "Kaffeine has queued timers. Do you really want to quit?"
msgstr "Kaffeine ααΆαβαααβα§αααααβαααααβαααααααΆβααΆβαα½αΒ α ααΎβα’αααβαα·αβααΆβα
ααβα
ααβα¬Β ?"
#: input/dvb/dvbstream.cpp:678
msgid "Moving rotor from unknown position..."
msgstr ""
#: input/dvb/dvbstream.cpp:690
msgid "Moving rotor..."
msgstr ""
#: input/dvb/kevents.cpp:75 input/dvb/kevents.cpp:137
msgid "Refresh"
msgstr "ααααΎβα²ααβααααα"
#: input/dvb/kevents.cpp:77 input/dvb/kevents.cpp:138
msgid "Scheduled"
msgstr ""
#: input/dvb/kevents.cpp:79 input/dvb/kevents.cpp:139
msgid "Current/Next"
msgstr "αα
αα
α»αααααα/αααααΆαα"
#: input/dvb/kevents.cpp:81 input/dvb/kevents.cpp:140
#, fuzzy
msgid "Current Channel"
msgstr "ααΆαααβαααααΆααβαααα OSD"
#: input/dvb/kevents.cpp:93
#, fuzzy
msgid "Electronic Program Guide Search"
msgstr "ααααα»αααααααβαααααα·ααΈβα’αα‘α·α
βααααΌαα·α"
#: input/dvb/kevents.cpp:102
#, fuzzy
msgid "TV "
msgstr "ααΌααααααα"
#: input/dvb/kevents.cpp:103
msgid "Search TV Channels only (omit Radio)"
msgstr ""
#: input/dvb/kevents.cpp:107
#, fuzzy
msgid "Titles "
msgstr "α
αααββααΎαβ"
#: input/dvb/kevents.cpp:108
msgid "Search Event Titles only (omit Description)"
msgstr ""
#: input/dvb/kevents.cpp:112
msgid "FTA "
msgstr ""
#: input/dvb/kevents.cpp:113
msgid "Search Free to Air Channels only (omit PayTV)"
msgstr ""
#: input/dvb/kevents.cpp:122 input/dvb/krecord.cpp:47
msgid "Channel"
msgstr "ααΆααα"
#: input/dvb/kevents.cpp:123 input/dvb/krecord.cpp:48
msgid "Begin"
msgstr "α
αΆααααααΎα"
#: input/dvb/kevents.cpp:317
msgid "View All Programs"
msgstr "ααΎαβαααααα·ααΈβααΆααβα’αα"
#: input/dvb/kevents.cpp:319
msgid "Add to Timers"
msgstr "ααααααβαα
βα§αααααβαααααβαααααααΆ"
#: input/dvb/krecord.cpp:41
msgid "Timers list:"
msgstr "αααααΈβα§αααααβαααααβαααααααΆΒ α"
#: input/dvb/krecord.cpp:62 input/dvb/krecord.cpp:89
msgid "New"
msgstr "ααααΈ"
#: input/dvb/krecord.cpp:64 input/dvb/krecord.cpp:90
#, fuzzy
msgid "Edit"
msgstr "ααααααα½α..."
#: input/dvb/krecord.cpp:66 input/dvb/krecord.cpp:232
#: input/dvb/scandialog.cpp:250
#, fuzzy
msgid "Delete"
msgstr "αααααα/αα»α"
#: input/dvb/audioeditorui.ui:289 input/dvb/krecord.cpp:76
#: input/dvb/krecord.cpp:93
#, no-c-format
msgid "Close"
msgstr ""
#: input/dvb/krecord.cpp:92
msgid "Stop/Delete"
msgstr "αααααα/αα»α"
#: input/dvb/krecord.cpp:232
msgid ""
"This timer is repeated. Do you want to skip the current job or delete the "
"timer?"
msgstr ""
"α§αααααβαααααβαααααααΆβαααβααααΌαβααΆαααααΎβααααβαααΒ α ααΎβα’αααβα
ααβααααβααΆαααΆαβαα
αα
α»αααααα α¬ ααβαα»αβα§αααααβαααααβ"
"αααααααΆΒ ?"
#: input/dvb/krecord.cpp:232
msgid "Skip Current"
msgstr "ααααβαα
αα
α»αααααα"
#: input/dvb/krecord.cpp:234
msgid "Delete the selected timer?"
msgstr "αα»αβα§αααααβαααααβαααααααΆβαααβααΆαβααααΎαΒ ?"
#: input/dvb/channeleditorui.ui:105 input/dvb/ktimereditor.cpp:37
#, no-c-format
msgid "Name:"
msgstr "αααααΒ α"
#: input/dvb/ktimereditor.cpp:41
msgid "Channel:"
msgstr "ααΆαααΒ α"
#: input/dvb/ktimereditor.cpp:45
msgid "Begin:"
msgstr "α
αΆααααααΎαΒ α"
#: input/dvb/ktimereditor.cpp:49
msgid "Duration:"
msgstr "αα·αααααΆΒ α"
#: input/dvb/ktimereditor.cpp:53
msgid "End:"
msgstr "αααα
ααΒ α"
#: input/dvb/crontimerui.ui:79 input/dvb/ktimereditor.cpp:109
#: input/dvb/ktimereditor.cpp:170
#, no-c-format
msgid "None"
msgstr "ααααΆα"
#: input/dvb/crontimerui.ui:90 input/dvb/ktimereditor.cpp:110
#: input/dvb/ktimereditor.cpp:171
#, no-c-format
msgid "Daily"
msgstr "ααΆααβαααα"
#: input/dvb/crontimerui.ui:101 input/dvb/ktimereditor.cpp:111
#: input/dvb/ktimereditor.cpp:172
#, no-c-format
msgid "Weekly"
msgstr "ααΆααβαααααΆα α"
#: input/dvb/crontimerui.ui:112 input/dvb/ktimereditor.cpp:112
#: input/dvb/ktimereditor.cpp:173
#, no-c-format
msgid "Monthly"
msgstr "ααΆααβαα"
#: input/dvb/crontimerui.ui:123 input/dvb/ktimereditor.cpp:113
#: input/dvb/ktimereditor.cpp:174
#, no-c-format
msgid "Custom"
msgstr "ααααΆαααααα½α"
#: input/dvb/ktimereditor.cpp:119
msgid "Repeat..."
msgstr "α
αΆααβααααβααα..."
#: input/dvb/ktimereditor.cpp:121
msgid "Timer Editor"
msgstr "αααααα·ααΈβαα·ααααβα§αααααβαααααβαααααααΆ"
#: input/dvb/ktimereditor.cpp:204
msgid "Duration must be at least 1 minute!"
msgstr "αα·αααααΆβααααΌαβααΆαβααααααβαααΆαβα αα
βααΆαα α‘ ααΆααΈΒ !"
#: input/dvb/ktimereditor.cpp:220
msgid "Name must not contain any of the following characters: > < \\ / : \" |"
msgstr "αααααβααααΌαβααβαα·αβααΆαβαα½α’ααααβααΆαααααΒ α > < \\ / : \" |"
#: input/dvb/scandialog.cpp:87
msgid "Signal:"
msgstr "αααααΆΒ α"
#: input/dvb/scandialog.cpp:91
msgid "SNR:"
msgstr "SNRΒ α"
#: input/dvb/scandialog.cpp:95
msgid "Tuned:"
msgstr ""
#: input/dvb/scandialog.cpp:355
msgid "Do you really want to delete all channels?"
msgstr "ααΎβα’αααβαα·αβααΆβα
ααβαα»αβααΆαααβααΆααβα’ααβα¬Β ?"
#: input/dvb/scandialog.cpp:904 input/dvb/scandialog.cpp:950
msgid "START scan"
msgstr "α
αΆααααααΎαβαα·ααΆααα"
#: input/dvb/scandialog.cpp:931
msgid "STOP scan"
msgstr "αααβαα·ααΆααα"
#: input/dvb/scandialog.cpp:937
msgid "Stopping..."
msgstr "αααα»αβαααααα..."
#: input/dvb/scandialog.cpp:1033
msgid "Found: %1 TV - %2 radio"
msgstr "ααααΎαΒ α ααΌααααααα %1 - αα·αααα» %2"
#: input/dvb/sender.cpp:44 input/dvb/sender.cpp:56
msgid "Can't open DVB info socket."
msgstr "αα·αβα’αΆα
βααΎαβααααβααααααΆα DVB α‘αΎαΒ α"
#: input/dvb/ts2rtp.cpp:165
msgid "Can't open DVB broadcast socket."
msgstr "αα·αβα’αΆα
βααΎαβααααβααΆαααααΆα DVB α‘αΎαΒ α"
#: input/dvb/ts2rtp.cpp:177
msgid "Can't init DVB broadcast socket."
msgstr "αα·αβα’αΆα
βα
αΆααααααΎαβααααβααΆαβααααΆα DVB α‘αΎαΒ α"
#: input/dvbclient/cddump.cpp:193
msgid "Can't open socket."
msgstr "αα·αβα’αΆα
βααΎαβααααβα‘αΎαΒ α"
#: input/dvbclient/cddump.cpp:193 input/dvbclient/cddump.cpp:204
#: input/dvbclient/cddump.cpp:211 input/dvbclient/cdlisten.cpp:71
#: input/dvbclient/cdlisten.cpp:82 input/dvbclient/cdwidget.cpp:98 pref.cpp:91
msgid "DVB Client"
msgstr "αααΆαααΈαβααααα DVB"
#: input/dvbclient/cddump.cpp:204
msgid "Can't set socket option!!!"
msgstr "αα·αβα’αΆα
βαααααβαααααΎαβααααβα‘αΎαΒ !!!"
#: input/dvbclient/cddump.cpp:211
msgid "Can't bind socket!!!"
msgstr "αα·αβα’αΆα
βα
αβααααβα‘αΎαΒ !!!"
#: input/dvbclient/cdlisten.cpp:71
msgid "Can't open info socket."
msgstr "αα·αβα’αΆα
βααΎαβααααβααααααΆαβα‘αΎαΒ α"
#: input/dvbclient/cdlisten.cpp:82
msgid "Can't bind info socket!!!"
msgstr "αα·αβα’αΆα
βα
αβααααβααααααΆαβα‘αΎαΒ !!!"
#: instwizard.cpp:52
msgid "Kaffeine %1 Installation Wizard"
msgstr "α’αααβαααα½αβααΆαβααα‘αΎα Kaffeine %1"
#: instwizard.cpp:58
msgid "Installation Check"
msgstr "αα·αα·αααβααΎαβααΆαβααα‘αΎα"
#: instwizard.cpp:69
#, fuzzy
msgid "Kaffeine-Xine"
msgstr "ααΆαβαααα
α Kaffeine"
#: instwizard.cpp:72 instwizard.cpp:80 instwizard.cpp:144 instwizard.cpp:154
#: instwizard.cpp:166 instwizard.cpp:187
msgid "Ok."
msgstr "ααααΆαβαααα αΆΒ α"
#: instwizard.cpp:74
msgid "Part not found. Please check your installation!"
msgstr "ααβαα·αβααΎαβαααααβα‘αΎαΒ α ααΌαβαα·αα·αααααΎαβααΆαβααα‘αΎαβααααβα’αααΒ !"
#: instwizard.cpp:78
msgid "Found version"
msgstr "ααΆαβααααΎαβαααα"
#: instwizard.cpp:82
#, fuzzy, c-format
msgid "Kaffeine requires TDE >= %1."
msgstr "Kaffeine ααααΌαβααΆα KDE >= %1Β α"
#: instwizard.cpp:141
msgid ""
"libdvdcss not found. You're not able to play encrypted (most commercial) "
"DVD's. You can get the library here (but using it may violate copyright "
"regulations of your country!):"
msgstr ""
"ααβαα·αααΎα libdvdcss α‘αΎαΒ α α’αααβαα·αβα’αΆα
βα
αΆααβααΈααΈααΈβαααβααΆαβα’αα·αααααΈαβ (ααΆαβα
αααΎαβααΆβααΈααΈααΈβαααβααβααΆααβααα) "
"ααΆαβα‘αΎαΒ α α’αααβα’αΆα
βααβαααααΆαααβαα
βααΈβααα (ααα»ααααβααΆαβααααΎααααΆααβααΆ α’αΆα
βααΉαβααααΆαβα
αααΆααβαααααΆαα·αααα·βαα
βαααα»αβ"
"ααααααβααααβα’αααΒ !)Β α"
#: instwizard.cpp:147
msgid "DVD Drive"
msgstr "ααααΆαβααΈααΈααΈ"
#: instwizard.cpp:156
msgid "DMA mode off! For smooth DVD playback run as root:"
msgstr "αααα DMA ααΆαβαα·αβα αΎαΒ ! ααΎααααΈα
αΆααβααΈααΈααΈβααΆααβααβαααααΎα ααΌαβαααβααΆ rootΒ α"
#: instwizard.cpp:158
msgid "Can't check DMA mode. Permission denied or no such device:"
msgstr "αα·αβα’αΆα
βαα·αα·αααβααΎαβαααα DMA ααΆαβα‘αΎαΒ α α’αααβαα·αβααΆαβαα·αααα· α¬ αα·αβααΆαβααααΆαβααααααβαααΒ α"
#: instwizard.cpp:163
msgid "DVB-Device"
msgstr "α§ααααα DVB"
#: instwizard.cpp:170
msgid "No DVB-Devices found. The DVB related functions will be hidden."
msgstr "ααβαα·αβααΎαβα§ααααα DVB α‘αΎαΒ α αα»αααΆαβαααβααΆααααβααΉα DVB ααΉαβααααΌαβααΆαβααΆααΒ α"
#: instwizard.cpp:175
msgid "Distribution"
msgstr "ααΆαβα
ααα
αΆα"
#: input/dvb/scandialogui.ui:421 instwizard.cpp:181
#, no-c-format
msgid "Found"
msgstr "ααααΎα"
#: instwizard.cpp:182
msgid ""
"The xine-lib shipped by SuSE \"may lack certain features because of legal "
"requirements (potential patent violation)\". You should use the packages "
"from here:"
msgstr ""
"xine-lib αααβααααΆααβααβααΆαα½αβαααΌαααΈ \"α’αΆα
βααΉαβααΆαβααααααβαα·αααβαα·αβαααααααααΆαα αααααβααβαααα αΆβααααΌαα
αααΆαα (αα·αβ"
"α’αΆα
βααααΆαβαααΆαααβααΆαβα‘αΎα)\"Β α α’αααβαα½αααβααααΎβαααα
ααβααΈβααΈαααΒ α"
#: instwizard.cpp:190
msgid "RESULT"
msgstr "αααααα"
#: instwizard.cpp:194
#, fuzzy
msgid "Found some problems, but nevertheless Kaffeine might work."
msgstr "ααΆαβααααΎαβαααα αΆβαα½αβα
ααα½α ααα»ααααβαααααΆβαααΆαβααΆβααβαααβ Kaffeine αα
βααα’αΆα
βααααΎαααΆαβααΆαΒ α"
#: instwizard.cpp:198
msgid "All ok!"
msgstr "ααααΆαβαααα αΆβα’αααΈβααΆααα’ααΒ !"
#: instwizard.cpp:209
msgid "Use Kaffeine as helper application for mms:// (Microsoft Media) streams"
msgstr "ααααΎ Kaffeine ααΆβαααααα·ααΈβαααα½αβαααααΆααβααααααΈα mms:// (αααΈαααΌαααα)"
#: instwizard.cpp:213
msgid ""
"Use Kaffeine as helper application for rtsp:// (Real Media and others) "
"streams"
msgstr "ααααΎ Kaffeine ααΆβαααααα·ααΈβαααα½αβαααααΆαα rtsp:// ααααααΈα (Real Media αα·αβααααααααα)"
#: instwizard.cpp:217
msgid "Create a Kaffeine icon on desktop"
msgstr "αααααΎαβααΌαααααΆα Kaffeine ααΎβαααααα»"
#: instwizard.cpp:221
msgid "Installation Options"
msgstr "αααααΎαβααα‘αΎαβ"
#: kaffeine.cpp:103
msgid "Start playing immediately"
msgstr "α
αΆααααααΎαβα
αΆααβααααΆαα"
#: kaffeine.cpp:105
msgid "Start in fullscreen mode"
msgstr "α
αΆααααααΎαβαααα»αβααααβββαααβα’ααααααβ"
#: kaffeine.cpp:107
#, fuzzy
msgid "Start in minimal mode"
msgstr "α
αΆααααααΎαβαααα»αβααααβββαααβα’ααααααβ"
#: kaffeine.cpp:109
msgid "Set audio driver"
msgstr "αααααβαααααα·ααΈβαααααΆβα’αΌααΈαααΌ"
#: kaffeine.cpp:111
msgid "Set video driver"
msgstr "αααααβαααααα·ααΈβαααααΆβααΈααα’αΌ"
#: kaffeine.cpp:113
msgid "Set Audio-CD/VCD/DVD device path."
msgstr "αααααβααααΌαβα§αααααβαααα αααΈααΈα’αΌααΈαααΌ/ααΈαααΈααΈ/ααΈααΈααΈΒ α"
#: kaffeine.cpp:114
msgid "Output xine debug messages"
msgstr "αααα αΆαβααΆαβααα α»αβαααα xine"
#: kaffeine.cpp:116
msgid "Run installation wizard"
msgstr "αααβα’αααβαααα½αααΆαβααα‘αΎαβ"
#: kaffeine.cpp:117
msgid "tempfile to delete after use"
msgstr ""
#: kaffeine.cpp:118
#, fuzzy
msgid ""
"File(s) to play. Can be a local file, a URL, a directory or 'DVD', 'VCD', "
"'AudioCD', 'DVB'."
msgstr "α―αααΆαβααααΌαα
αΆααΒ α α’αΆα
βααΆβα―αααΆαβααΌαααααΆα, URL, αα α¬ 'ααΈααΈααΈ', 'ααΈαααΈααΈ', 'αααΈααΈβα’αΌααΈαααΌ'Β α"
#: kaffeine.cpp:183
msgid "Start"
msgstr "α
αΆααααααΎα"
#: kaffeine.cpp:187
msgid "Player Window"
msgstr "αααα’α½α
βαααααα·ααΈβα
αΆαα"
#: kaffeine.cpp:213
msgid "Supported Media Formats"
msgstr "αααααααααΆαβααααβαααβααΆαααα"
#: kaffeine.cpp:214
msgid "MPEG Audio Files"
msgstr "α―αααΆαβα’αΌααΈαααΌ MPEG"
#: kaffeine.cpp:215
msgid "MPEG Video Files"
msgstr "α―αααΆαβααΈααα’αΌ MPEG"
#: kaffeine.cpp:216
msgid "Ogg Vorbis Files"
msgstr "α―αααΆα Vorbis Ogg"
#: kaffeine.cpp:217
msgid "AVI Files"
msgstr "α―αααΆα AVI"
#: kaffeine.cpp:218
msgid "Quicktime Files"
msgstr "α―αααΆα Quicktime"
#: kaffeine.cpp:219
msgid "Real Media Files"
msgstr "α―αααΆα Real Media"
#: kaffeine.cpp:220
msgid "Matroska Files"
msgstr "α―αααΆα Matroska"
#: kaffeine.cpp:221
msgid "FLAC Files"
msgstr "α―αααΆα FLAC"
#: kaffeine.cpp:222
msgid "Windows Media Files"
msgstr "α―αααΆαβααααβααααβαααΈαααΌ"
#: kaffeine.cpp:223
msgid "WAV Files"
msgstr "α―αααΆα WAV"
#: kaffeine.cpp:227
msgid "DVD ISO IMAGE"
msgstr ""
#: kaffeine.cpp:370 kaffeine.cpp:390 kaffeine.cpp:458
msgid "Loading of player part '%1' failed."
msgstr "ααΆαβαααα»αβααααα '%1' ααααβαααααα·ααΈα
αΆαα ααΆαβαααΆαααΒ α"
#: kaffeine.cpp:370
msgid "%1 not found in search path."
msgstr "ααβαα·αβααΎα %1 αααα»αβααααΌαβαααααααβα‘αΎαΒ α"
#: kaffeine.cpp:667
msgid "Open &URL..."
msgstr "ααΎα &URL..."
#: kaffeine.cpp:668
msgid "Open D&irectory..."
msgstr "ααΎαβαα..."
#: kaffeine.cpp:670
msgid "Quit && Shutoff Monitor After This Track"
msgstr "α
αα && αα·αβαααΌααΈααα αααααΆααβααΈβααβααα"
#: kaffeine.cpp:671
msgid "Quit After This Track"
msgstr "α
ααβαααααΆααααΈβααβααα"
#: kaffeine.cpp:672
msgid "Quit After Playlist"
msgstr "α
ααβαααααΆααααΈβαααααΈα
αΆαα"
#: kaffeine.cpp:677
msgid "&Minimal Mode"
msgstr "ααααβα’αααααααΆβ"
#: kaffeine.cpp:678
msgid "Toggle &Playlist/Player"
msgstr "αα·αααΎα αααααΈα
αΆαα/αααααα·ααΈα
αΆαα"
#: kaffeine.cpp:679
#, fuzzy
msgid "Keep &Original Aspect"
msgstr "ααΆαααΆαβαααααααααΆαβααΎα"
#: kaffeine.cpp:680 player-parts/gstreamer-part/gstreamer_part.cpp:427
#, fuzzy
msgid "Off"
msgstr "αα·α"
#: kaffeine.cpp:681
msgid "Original Size"
msgstr "ααα αβααΎα"
#: kaffeine.cpp:682
msgid "Double Size"
msgstr "ααα αβαααα"
#: kaffeine.cpp:683
msgid "Triple Size"
msgstr "ααα αβααααΈαα»α"
#: kaffeine.cpp:685
msgid "&Player Engine"
msgstr "αααΆαααΈαβαααααα·ααΈβα
αΆαα"
#: kaffeine.cpp:686
#, fuzzy
msgid "Installation &Wizard"
msgstr "αααβα’αααβαααα½αααΆαβααα‘αΎαβ"
#: kaffeine.cpp:802 kaffeine.cpp:918
msgid "DVB client"
msgstr "αααΆαααΈαβαααααβ DVB"
#: kaffeine.cpp:949
msgid "Player"
msgstr "αααααα·ααΈα
αΆαα"
#: kaffeine.cpp:950
msgid "Main Window"
msgstr "αααα’α½α
βαα"
#: kaffeine.cpp:1011
msgid "DPMS Xserver extension was not found."
msgstr "ααβαα·αβααΎαβαααααβαααααα DPMS Xserver α‘αΎαΒ α"
#: kaffeine.cpp:1018
msgid ""
"This will quit Kaffeine and shut off the monitor's power after the file/"
"playlist has finished. Option \"dpms\" must be in your X config file for "
"the monitor to power off."
msgstr ""
"α’αααΎβαααβααΉαβα
ααβααΈ Kaffeine α αΎαβαα·αβαααΌααΈααα αααααΆααβααΈβαααα
ααβα―αααΆα α¬ αααααΈα
αΆααΒ α αααααΎα \"dpms\" ααααΌαβ"
"ααβαααα·αβαα
αααα»αβα―αααΆαβααααααα
ααΆαααααααα X ααααβα’ααα ααΎααααΈβα²ααβαααΌααΈαααβαα·αβααΆαΒ α"
#: kaffeine.cpp:1089
msgid "Open File(s)"
msgstr "ααΎαβα―αααΆα"
#: kaffeine.cpp:1396
msgid "Open URL"
msgstr "ααΎα URL"
#: kaffeine.cpp:1396
msgid "Enter a URL:"
msgstr "αααα
αΌα URLΒ αα½αΒ α"
#: kaffeine.cpp:1416
msgid "Open Folder"
msgstr "ααΎαβαα"
#: main.cpp:69 player-parts/xine-part/xine_part.cpp:1266 systemtray.cpp:79
msgid "Kaffeine Player"
msgstr "αααααα·ααΈβα
αΆαα Kaffeine"
#: main.cpp:70
#, fuzzy
msgid ""
"A media player for TDE. Can use multiple backends for playback, default (and "
"recommended) is xine."
msgstr ""
"αααααα·ααΈβα
αΆααβααααββαααααΆαα KDE α£Β α α’αΆα
βααααΎβαααααα·ααΈβααΆαβαααααβααΆα
αααΎαβααΎααααΈβα
αΆαα ααααΆαααΎαβααΊ xineΒ α"
#: main.cpp:71
#, fuzzy
msgid "Copyright (C) 2003-2007, The Kaffeine Authors"
msgstr "αααααΆαα·αααα·βααααΆα α’α α α£-α’α α α₯ αααβα’αααβαα·αααα Kaffeine"
#: main.cpp:74
msgid "Current maintainer"
msgstr ""
#: main.cpp:75
msgid "Developer"
msgstr "α’αααβα’αα·αααααα"
#: main.cpp:76
#, fuzzy
msgid "Original author"
msgstr "ααα αβααΎα"
#: main.cpp:80
msgid "ATSC scanning."
msgstr ""
#: main.cpp:81
msgid "DVB patches."
msgstr ""
#: main.cpp:82 main.cpp:83 main.cpp:84
msgid "Various patches."
msgstr ""
#: main.cpp:85
msgid "DVB OSD browsing patch."
msgstr ""
#: main.cpp:86
msgid "DVB categories patches."
msgstr ""
#: main.cpp:87
msgid "Logo for Kaffeine 0.8 and other artwork."
msgstr "α‘αΌα αααβαααααΆαα Kaffeine α .α¨ αα·αβαα·αααααααβαααααβαααΒ α"
#: main.cpp:88
msgid "Logo animation for Kaffeine 0.5"
msgstr "α‘αΌα αααββααΆαβα
αααΆβαααααΆαα Kaffeine α .α₯"
#: main.cpp:89
msgid "Alternate encoding for meta tags. Many patches."
msgstr "ααΆαβα’αα·αααΌαβαααα½α αααααΆααβααααΆαβααααΆΒ α ααααβαα½αβα
ααα½αβαααΒ α"
#: main.cpp:90
msgid "xine post plugin handling. Many patches."
msgstr "αααααααΆαβαααααα·ααΈβαααα½αβαααααΆααβααΈ xineΒ α ααααβαα½αβα
ααα½αβαααΒ α"
#: main.cpp:91
msgid "Subtitle file import."
msgstr "ααΆαβααΆαα
αΌαβα―αααΆαβα
αααβααΎαααΒ α"
#: main.cpp:92
msgid "M3U import. Testing."
msgstr "ααΆαβααΆαα
αΌα M3UΒ αα·α ααΆαααααΒ α"
#: player-parts/dummy-part/dummy_part.cpp:71
msgid "DummyPart"
msgstr "DummyPart"
#: player-parts/dummy-part/dummy_part.cpp:118
#: player-parts/gstreamer-part/gstreamer_part.cpp:469
#: player-parts/gstreamer-part/gstreamer_part.cpp:697
#: player-parts/xine-part/kxinewidget.cpp:3012
#: player-parts/xine-part/xine_part.cpp:1333
msgid "Pause"
msgstr "ααα’αΆα"
#: player-parts/dummy-part/dummy_part.cpp:119
#: player-parts/gstreamer-part/gstreamer_part.cpp:490
#: player-parts/gstreamer-part/gstreamer_part.cpp:698
#: player-parts/xine-part/kxinewidget.cpp:2882
#: player-parts/xine-part/xine_part.cpp:1336 systemtray.cpp:63
msgid "Stop"
msgstr ""
#: player-parts/gstreamer-part/gstreamer_part.cpp:73
msgid "GStreamer initializing failed!"
msgstr "ααΆαβα
αΆααααααΎα GStreamer ααΆαβαααΆαααΒ !"
#: player-parts/gstreamer-part/gstreamer_part.cpp:89
#: player-parts/xine-part/kxinewidget.cpp:1380
#: player-parts/xine-part/xine_part.cpp:1064
msgid "Ready"
msgstr "αα½α
ααΆαα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:151
msgid "GStreamerPart"
msgstr "GStreamerPart"
#: player-parts/gstreamer-part/gstreamer_part.cpp:283
#: player-parts/xine-part/kxinewidget.cpp:1947
msgid "Opening..."
msgstr "αααα»αβααΎα..."
#: player-parts/gstreamer-part/gstreamer_part.cpp:389
#: player-parts/gstreamer-part/gstreamer_part.cpp:722
#: player-parts/gstreamer-part/gstreamer_part.cpp:728
#: player-parts/xine-part/kxinewidget.cpp:2686
#: player-parts/xine-part/xine_part.cpp:1417
#: player-parts/xine-part/xine_part.cpp:1424
msgid "Volume"
msgstr "ααααα·αβαααααα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:423
#: player-parts/gstreamer-part/gstreamer_part.cpp:427
msgid "Mute"
msgstr "ααααΆαα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:423
#: player-parts/xine-part/equalizer.cpp:40
msgid "On"
msgstr ""
#: player-parts/gstreamer-part/gstreamer_part.cpp:435
#: player-parts/gstreamer-part/videosettings.cpp:51
#: player-parts/xine-part/kxinewidget.cpp:3534
#: player-parts/xine-part/videosettings.cpp:60
msgid "Saturation"
msgstr "αα·αααα·ααΆα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:443
#: player-parts/gstreamer-part/videosettings.cpp:41
#: player-parts/xine-part/kxinewidget.cpp:3528
#: player-parts/xine-part/videosettings.cpp:50
msgid "Hue"
msgstr "αααααΆαα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:451
#: player-parts/gstreamer-part/videosettings.cpp:61
#: player-parts/xine-part/kxinewidget.cpp:3540
#: player-parts/xine-part/videosettings.cpp:70
msgid "Contrast"
msgstr "ααααα·αβαααβ"
#: player-parts/gstreamer-part/gstreamer_part.cpp:459
#: player-parts/gstreamer-part/videosettings.cpp:71
#: player-parts/xine-part/kxinewidget.cpp:3546
#: player-parts/xine-part/videosettings.cpp:80
msgid "Brightness"
msgstr "αααααΊ"
#: player-parts/gstreamer-part/gstreamer_part.cpp:481
#: player-parts/xine-part/kxinewidget.cpp:1511
#: player-parts/xine-part/kxinewidget.cpp:2170
#: player-parts/xine-part/kxinewidget.cpp:3022
#: player-parts/xine-part/xine_part.cpp:1064
msgid "Playing"
msgstr "αααα»αβα
αΆαα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:594
msgid "Comment"
msgstr "ααα
ααααΈβα’αα·ααααΆα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:602
#: player-parts/gstreamer-part/gstreamerconfig.cpp:47
#: player-parts/xine-part/filterdialog.cpp:45
#: player-parts/xine-part/xine_part.cpp:1231
msgid "Audio"
msgstr "α’αΌααΈαααΌ"
#: player-parts/gstreamer-part/gstreamer_part.cpp:606
#: player-parts/gstreamer-part/gstreamerconfig.cpp:60
#: player-parts/xine-part/filterdialog.cpp:78
#: player-parts/xine-part/xine_part.cpp:1234
msgid "Video"
msgstr "ααΈααα’αΌ"
#: player-parts/gstreamer-part/gstreamer_part.cpp:695
#: player-parts/xine-part/xine_part.cpp:1330
#, fuzzy
msgid "Toggle Minimal Mode"
msgstr "ααααβα’αααααααΆβ"
#: player-parts/gstreamer-part/gstreamer_part.cpp:699
#: player-parts/xine-part/xine_part.cpp:1334 systemtray.cpp:61
msgid "&Next"
msgstr "αααααΆαα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:700
#: player-parts/xine-part/xine_part.cpp:1335 systemtray.cpp:62
msgid "&Previous"
msgstr ""
#: player-parts/gstreamer-part/gstreamer_part.cpp:703
#: player-parts/xine-part/xine_part.cpp:1428
#: player-parts/xine-part/xine_part.cpp:1438
msgid "Position"
msgstr "ααΈααΆαα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:704
#: player-parts/xine-part/xine_part.cpp:1447
msgid "Playtime"
msgstr "α
ααα½αβα
αΆαα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:706
#: player-parts/xine-part/xine_part.cpp:1360
msgid "Audio &Visualization"
msgstr "ααΌαααΆαβααΎαβααΎαβααααβα’αΌααΈαααΌ"
#: player-parts/gstreamer-part/gstreamer_part.cpp:712
#: player-parts/xine-part/xine_part.cpp:1362 systemtray.cpp:64
msgid "&Mute"
msgstr "ααααΆαα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:713
#: player-parts/xine-part/xine_part.cpp:1368
msgid "&Auto"
msgstr "ααααααααααααα·"
#: player-parts/gstreamer-part/gstreamer_part.cpp:714
#: player-parts/xine-part/xine_part.cpp:1369
msgid "&4:3"
msgstr "&4:3"
#: player-parts/gstreamer-part/gstreamer_part.cpp:715
#: player-parts/xine-part/xine_part.cpp:1370
msgid "A&namorphic"
msgstr "ααα"
#: input/dvb/kaffeinedvb.rc:4
#: player-parts/gstreamer-part/gstreamer_part.cpp:716
#: player-parts/xine-part/xine_part.cpp:1371
#, no-c-format
msgid "&DVB"
msgstr "&DVB"
#: player-parts/gstreamer-part/gstreamer_part.cpp:717
#: player-parts/xine-part/xine_part.cpp:1372
msgid "&Square"
msgstr "ααΆαα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:718
#: player-parts/xine-part/xine_part.cpp:1381
msgid "&Video Settings"
msgstr "ααΆαβαααααβααΈααα’αΌ"
#: player-parts/gstreamer-part/gstreamer_part.cpp:719
#: player-parts/xine-part/xine_part.cpp:1409
msgid "Track &Info"
msgstr "ααααααΆααα"
#: player-parts/gstreamer-part/gstreamer_part.cpp:729
msgid "&GStreamer Engine Parameters"
msgstr "αααΆαααΆααααααβαααΆαααΈα &GStreamer"
#: player-parts/gstreamer-part/gstreamer_part.cpp:740
#: player-parts/xine-part/kxinewidget.cpp:948
msgid "Error: Can't init new Audio Driver %1 - using %2!"
msgstr "ααα α»αΒ α αα·αβα’αΆα
βα
αΆααααααΎαβαααααα·ααΈβαααααΆβα’αΌααΈαααΌβααααΈ %1 ααΆαβα‘αΎα - αααα»αβααααΎ %2Β !"
#: player-parts/gstreamer-part/gstreamer_part.cpp:757
msgid "GStreamer could not be initialized!"
msgstr "αα·αβα’αΆα
βα
αΆααααααΎα GStreamer ααΆαβα‘αΎαΒ !"
#: player-parts/gstreamer-part/gstreamer_part.cpp:798
msgid "Can't init Audio Driver '%1' - trying another one..."
msgstr "αα·αβα’αΆα
βα
αΆααααααΎαβαααααα·ααΈβαααααΆβα’αΌααΈαααΌ '%1' ααΆαβα‘αΎα - βαααα»αβααΆαααααβαααααα·ααΈβαααααΆβαα½αβααα..."
#: player-parts/gstreamer-part/gstreamer_part.cpp:808
msgid "No useable audio-driver found!"
msgstr "ααβαα·αβααΎαβαααααα·ααΈβαααααΆβα’αΌααΈαααΌβαααβα’αΆα
βααααΎβααΆαβα‘αΎαΒ !"
#: player-parts/gstreamer-part/gstreamer_part.cpp:822
msgid "Can't init Video Driver '%1' - trying another one..."
msgstr "αα·αβα’αΆα
βα
αΆααααααΎαβαααααα·ααΈβαααααΆβααΈααα’αΌ '%1' ααΆαβα‘αΎα - αααα»αβααΆαααααββαααααα·ααΈβαααααΆβαα½αβααα..."
#: player-parts/gstreamer-part/gstreamer_part.cpp:829
msgid "No useable video-driver found!"
msgstr "ααβαα·αβααΎαβαααααα·ααΈβαααααΆβααΈααα’αΌβαααβα’αΆα
βααααΎβααΆαβα‘αΎαΒ !"
#: player-parts/gstreamer-part/gstreamer_part.cpp:857
#, fuzzy
msgid "GStreamer playbin could not be initialized!"
msgstr "αα·αβα’αΆα
βα
αΆααααααΎα GStreamer ααΆαβα‘αΎαΒ !"
#: player-parts/gstreamer-part/gstreamer_part.cpp:861
#, fuzzy
msgid "GStreamer sink(s) missing, playbin could not be initialized!"
msgstr "αα·αβα’αΆα
βα
αΆααααααΎα GStreamer ααΆαβα‘αΎαΒ !"
#: player-parts/gstreamer-part/gstreamer_part.cpp:994
#: player-parts/xine-part/kxinewidget.cpp:2250
#, fuzzy
msgid "Error"
msgstr "ααα α»α xine"
#: player-parts/gstreamer-part/gstreamerconfig.cpp:36
msgid "GStreamer Engine Parameters"
msgstr "αααΆαααΆααααααβαααΆαααΈα GStreamer"
#: player-parts/gstreamer-part/gstreamerconfig.cpp:47
msgid "Audio Options"
msgstr "αααααΎαβα’αΌααΈαααΌβ"
#: player-parts/gstreamer-part/gstreamerconfig.cpp:54
msgid "Prefered audio driver"
msgstr "αααααα·ααΈβαααααΆβα’αΌααΈαααΌβαααβαααα
α·ααα"
#: player-parts/gstreamer-part/gstreamerconfig.cpp:60
msgid "Video Options"
msgstr "αααααΎαβααΈααα’αΌβ"
#: player-parts/gstreamer-part/gstreamerconfig.cpp:67
msgid "Prefered video driver"
msgstr "αααααα·ααΈβαααααΆβααΈααα’αΌβαααβαααα
α·ααα"
#: player-parts/gstreamer-part/gstreamerconfig.cpp:71
msgid "* Restart required!"
msgstr "* ααΆαααΆαβα
αΆααααααΎαβα‘αΎαβαα·αΒ !"
#: player-parts/gstreamer-part/gstreamerconfig.cpp:74
msgid "Media"
msgstr "αααα"
#: player-parts/gstreamer-part/gstreamerconfig.cpp:74
msgid "Media Options"
msgstr "αααααΎαβααααβ"
#: player-parts/gstreamer-part/gstreamerconfig.cpp:80
msgid "CD, VCD, DVD drive"
msgstr "ααααΆαβαααΈααΈ, ααΈαααΈααΈ, ααΈααΈααΈ"
#: player-parts/gstreamer-part/videosettings.cpp:33
#: player-parts/xine-part/videosettings.cpp:35
msgid "Video Settings"
msgstr "ααΆαβαααααβααΈααα’αΌ"
#: player-parts/xine-part/deinterlacequality.cpp:37
msgid "Deinterlace Quality"
msgstr "αα»αααΆαβαα·αβαααααΆαα"
#: player-parts/xine-part/deinterlacequality.cpp:58
msgid ""
"<b>Very low cpu usage, worst quality.</b><br>Half of vertical resolution is "
"lost. For some systems (with PCI video cards) this might decrease the cpu "
"usage when compared to plain video playback (no deinterlacing)."
msgstr ""
"<b>ααααΎααααΆααβαααΈααΈααΌβααΆαβαααα»α αα»αααΆαβα’ααβαααα»αΒ α</b><br>ααΆαααααβαα»αααΆαβαααα αΆαβαααααβααΆαααααααΆαΒ α αααααΆααβ"
"ααααααααβαα½αβα
ααα½α (αααβααΆαβααΆαβααΈααα’αΌ PCI) ααΆβα’αΆα
βαααααβααΆαβααααΎααααΆααβαααΈααΈααΌ αααβααααααααβαα
βααΉαβααΆαβα
αΆααβ"
"ααΈααα’αΌβααααααΆ (αα·αβααΆαβααΆαβαααααΆαα)Β α"
#: player-parts/xine-part/deinterlacequality.cpp:61
msgid ""
"<b>Low cpu usage, poor quality.</b><br>Image is blurred vertically so "
"interlacing effects are removed."
msgstr ""
"<b>ααααΎααααΆααβαααΈααΈααΌβααΆα αα»αααΆαβα’ααΒ α</b><br>ααΌαααΆαβααααΌαβααΆαβααααΎβα²ααβαααα·αβααααα ααΌα
ααααβααααααβαααααΆααβααΉαβ"
"ααααΌαβααΆαβααβα
ααΒ α"
#: player-parts/xine-part/deinterlacequality.cpp:64
msgid ""
"<b>Medium cpu usage, medium quality.</b><br>Image is analysed and areas "
"showing interlacing artifacts are fixed (interpolated)."
msgstr ""
"<b>ααααΎααααΆααβαααΈααΈααΌβααααα αα»αααΆαβαααααΒ α</b><br>ααΌαααΆαβααααΌαβααΆαβαα·ααΆα α αΎαβααααβαααβαααα αΆαβααΆαβαααααΆααβααΉαβ"
"αα·αβαααααααα½αβα‘αΎα (ααΆαβαααα)Β α"
#: player-parts/xine-part/deinterlacequality.cpp:67
msgid ""
"<b>High cpu usage, good quality.</b><br>Conversion of dvd image format "
"improves quality and fixes chroma upsampling bug."
msgstr ""
"<b>ααααΎααααΆααβαααΈααΈααΌβααααα αα»αααΆαβααα’Β α</b><br>ααΆαβααααααβαααααααααΆαββααΌαααΆαβααΈααΈααΈβ ααΉαβαααααΎαβαα»αααΆα α αΎαβααΉαβ"
"αα½αβαα½ααα»αβααα α»αβαααα»αβααΆαβααααΆαβαααΒ α"
#: player-parts/xine-part/deinterlacequality.cpp:70
msgid ""
"<b>Very high cpu usage, great quality.</b><br>Besides using smart "
"deinterlacing algorithms it will also double the frame rate (30->60fps) to "
"match the field rate of TVs. Detects and reverts 3-2 pulldown. *"
msgstr ""
"<b>ααααΎααααΆααβαααΈααΈααΌβαααααβαα½ααα αα»αααΆαααα’βααΆααΒ α</b><br>αααα
βααΈβααααΎβαααα½αβαααααααΆαβααΆαβαα·αβαααααΆααβααβααα·ααααααα β"
"ααΆβααβααΉαβαααααΎαβα’ααααΆβααα»αβααααααβααβααα (ααΈ α£α ->α¦α fps) ααΎααααΈβααααΌααααβααΉαβα’ααααΆβααΆαβααααβααΌαααααααΒ α ααΆβααΉαβ"
"ααβααΎα α αΎαβαααα‘ααβαα
βααΆαβααΎαβαα·ααααβααααα α£-α’Β α *"
#: player-parts/xine-part/deinterlacequality.cpp:73
msgid ""
"<b>Very very high cpu usage, great quality with (experimental) improvements."
"</b><br>Enables judder correction (play films at their original 24 fps "
"speed) and vertical color smoothing (fixes small color stripes seen in some "
"dvds). *"
msgstr ""
"<b>ααααΎααααΆααβαααΈααΈααΌβαααααβαααα»α αα»αααΆαβααα’βαααα»αβααααβααΆαα½αβααΉαβααΆαβαααααΎαβααααα·αααα·ααΆαΒ α</b><br>α’αα»ααααΆαβα²ααβααΆαβ"
"ααΆαβαααααα judder (α
αΆααβααΆαααααβααααΉαβααααΏαβααΎαβααααβαα½αβααΆβααΊ 24 fps) ααααβααΆααβα’αα»ααααΆαβα²ααβαααα αΆαβαααβ"
"αααααβαααΆαβαααΌα (ααααΆααβααααΆαβααααΌαβααΌα
α αααβααααΆααβααΎαβαα
βαααα»αβααΈααΈααΈβαααα)Β α *"
#: player-parts/xine-part/deinterlacequality.cpp:76
msgid "User defined"
msgstr "αααααβαααβα’αααβααααΎ"
#: player-parts/xine-part/deinterlacequality.cpp:80
msgid "Configure tvtime Deinterlace Plugin..."
msgstr "αααααβαα
ααΆααααααααβαααααα·ααΈβαααα½αβαα·αβαααααΆααβαααα tvtime..."
#: player-parts/xine-part/deinterlacequality.cpp:85
msgid ""
"* <i>May require a patched 2.4 kernel (like RedHat one) or 2.6 kernel.</i>"
msgstr ""
"* <i>α’αΆα
βααΆαααΆαβααΊααα α’.α€ αααβααΆαβααααααΌα (ααΌα
βααΆ RedHat ααΆααΎα) α¬ ααΊααα α’.α¦ Β α</i>"
#: player-parts/xine-part/deinterlacequality.h:42
msgid "Configure tvtime Deinterlace Plugin"
msgstr "αααααβαα
ααΆααααααααβαααααα·ααΈβαααα½αβαα·αβαααααΆααβαααα tvtime"
#: player-parts/xine-part/equalizer.cpp:32
msgid "Equalizer Settings"
msgstr "ααΆαβαααααβα’αα ααα»α"
#: player-parts/xine-part/equalizer.cpp:44
msgid "Volume gain"
msgstr "ααΆαβαααααΎαβααααα·αβαααααα"
#: player-parts/xine-part/equalizer.cpp:45
msgid "Volume Gain for Equalizer - If the sound becomes noisy disable this"
msgstr "ααΆαβαααααΎαβααααα·αβααααααβαααααΆααβα’αα ααα»α - ααΎβααααααβααααβααΆβαααααααα ααΌαβαα·αβααΆ"
#: player-parts/xine-part/filterdialog.cpp:39
msgid "Effect Plugins"
msgstr "αααααα·ααΈβαααα½αβαααααα"
#: player-parts/xine-part/filterdialog.cpp:45
msgid "Audio Filters"
msgstr "βαααααβα’αΌααΈαααΌ"
#: player-parts/xine-part/filterdialog.cpp:51
msgid "Enable audio filters"
msgstr "α’αα»ααααΆαβαααααβα’αΌααΈαααΌ"
#: player-parts/xine-part/filterdialog.cpp:60
#: player-parts/xine-part/filterdialog.cpp:93
msgid "Add Filter"
msgstr "ααααααβααααα"
#: player-parts/xine-part/filterdialog.cpp:62
#: player-parts/xine-part/filterdialog.cpp:95
msgid "Remove All Filters"
msgstr "ααβαααααβααΆααβα’ααβα
αα"
#: player-parts/xine-part/filterdialog.cpp:78
msgid "Video Filters"
msgstr "αααααβααΈααα’αΌ"
#: player-parts/xine-part/filterdialog.cpp:84
msgid "Enable video filters"
msgstr "α’αα»ααααΆαβαααααβααΈααα’αΌ"
#: player-parts/xine-part/kxinewidget.cpp:390
msgid "auto"
msgstr "ααααααααααααα·"
#: player-parts/xine-part/kxinewidget.cpp:414
#: player-parts/xine-part/xine_part.cpp:708 pref.cpp:80
msgid "off"
msgstr "αα·α"
#: player-parts/xine-part/kxinewidget.cpp:566
msgid "General Warning: \n"
msgstr "ααΆααααααΆαβααΌαα
Β α \n"
#: player-parts/xine-part/kxinewidget.cpp:571
msgid "No Informations available."
msgstr "αα·αβααΆαβααααααΆαβα‘αΎαΒ α"
#: player-parts/xine-part/kxinewidget.cpp:577
msgid "Security Warning: \n"
msgstr "ααΆαβαααααΆαβαα»ααααα·ααΆαΒ α \n"
#: player-parts/xine-part/kxinewidget.cpp:586
msgid ""
"The host you're trying to connect is unknown.\n"
"Check the validity of the specified hostname. "
msgstr ""
"αα·αααααΆααβαααΆαααΈαβαααβα’αααβαααα»αβααααΆααΆαβαααααΆααβα‘αΎαΒ α\n"
"ααΌαβαα·αα·αααβααΎαβαα»ααααΆαββααααβαααααβαααΆαααΈαβαααβααΆαβαααααΆααΒ α"
#: player-parts/xine-part/kxinewidget.cpp:593
msgid "The device name you specified seems invalid. "
msgstr "αααααβα§αααααβαααβα’αααβααΆαβαααααΆαα βα αΆααβααΌα
βααΆβαα·αβααααΉαααααΌαβα‘αΎαΒ α "
#: player-parts/xine-part/kxinewidget.cpp:600
msgid ""
"The network looks unreachable.\n"
"Check your network setup and the server name. "
msgstr ""
"αααααΆαβααααβααΆβαα·αβα’αΆα
βαα
βαααβα‘αΎαΒ α\n"
"ααΌαβαα·αα·αααααΎαβααΆαβαααα
αβαααααΆαβααααβα’ααα αα·α αααααβαααΆαααΈαβαααααΎΒ α "
#: player-parts/xine-part/kxinewidget.cpp:607
msgid "Audio output unavailable. Device is busy. "
msgstr "αα·αααΆαβααααααβα’αΌααΈαααΌβα‘αΎαΒ α α§αααααβαααα»αβααΆααααααΒ α "
#: player-parts/xine-part/kxinewidget.cpp:614
msgid ""
"The connection was refused.\n"
"Check the host name. "
msgstr ""
"ααΆααααααΆααβααααΌαβααΆαβααα·αααΒ α\n"
"ααΌαβαα·αα·αααααΎαβαααααβαααΆαααΈαΒ α "
#: player-parts/xine-part/kxinewidget.cpp:621
msgid "The specified file or url was not found. Please check it. "
msgstr "ααβαα·αβααΎαβα―αααΆα α¬ url αααβααΆαβαααααΆααβα‘αΎαΒ α ααΌαβαα·αα·αααβααΎαβααΆβΒ α "
#: player-parts/xine-part/kxinewidget.cpp:628
msgid "Permission to this source was denied. "
msgstr "ααΆαβααα·αααβαα·αααα·ββα
αΌαααααΎαβααΆαβααααΆαβαααΒ α "
#: player-parts/xine-part/kxinewidget.cpp:635
msgid ""
"The source can't be read.\n"
"Maybe you don't have enough rights for this, or source doesn't contain data "
"(e.g: no disc in drive). "
msgstr ""
"αα·αβα’αΆα
βα’αΆαβαααααβααΆαβα‘αΎαΒ α\n"
"αααα ααβααΆβα’αααβαα·αβααΆαβαα·αααα·βαααααααααΆααβα‘αΎα α¬βααβαααααβαα·αααΆαβαα·αααααα(α§. ααααΆαβααΆαβαααα»αβααααΆαβααΆααΎα)Β α "
#: player-parts/xine-part/kxinewidget.cpp:642
msgid "A problem occur while loading a library or a decoder: "
msgstr "αααα αΆβαα½αββααΆαβααΎαα‘αΎαβ ααααααβαααα»αβαααααΆααα α¬ αα·ααΌαααβαα½αΒ α "
#: player-parts/xine-part/kxinewidget.cpp:649
msgid "The source seems encrypted, and can't be read. "
msgstr "αααααβααααααΆβααααΌαβααΆαβα’αα·αααααΈαβαα½α
βα αΎα ααΌα
ααααβαα·αβα’αΆα
βα’αΆαβααΆαβα‘αΎαΒ α "
#: player-parts/xine-part/kxinewidget.cpp:651
msgid ""
"\n"
"Your DVD is probably crypted. According to your country laws, you can or "
"can't use libdvdcss to be able to read this disc. "
msgstr ""
"\n"
"ααΈααΈααΈβααααβα’αααβαααα ααβααΆβααααΌαβααΆαβααααΈαβαα½α
βα αΎαΒ α α’αΆαααααβααΆαβα
αααΆααβαα
βαααα»αβααααααβααααα’ααα α’αααβα’αΆα
α¬ αα·αβα’αΆα
β"
"ααααΎβ libdvdcss ααΎααααΈβα’αΆα
βα’αΆαβααΆαβαααΒ α "
#: player-parts/xine-part/kxinewidget.cpp:658
msgid "Unknown error: \n"
msgstr "ααα α»αβαα·αβααααΆααΒ α \n"
#: player-parts/xine-part/kxinewidget.cpp:858
msgid "Error: Can't init new Video Driver %1 - using %2!"
msgstr "ααα α»αΒ α αα·αβα’αΆα
βα
αΆααααααΎαβαααααα·ααΈβαααααΆβααΈααα’αΌβααααΈ %1 ααΆαβα‘αΎα - αααα»αβααααΎ %2Β !"
#: player-parts/xine-part/kxinewidget.cpp:872
#, fuzzy, c-format
msgid "Using Video Driver: %1"
msgstr "αααα»αβααααΎβαααααα·ααΈβαααααΆβααΈααα’αΌΒ α "
#: player-parts/xine-part/kxinewidget.cpp:956
#, fuzzy, c-format
msgid "Using Audio Driver: %1"
msgstr "αααα»αβααααΎβαααααα·ααΈβαααααΆβα’αΌααΈαααΌΒ α "
#: player-parts/xine-part/kxinewidget.cpp:1112
msgid "Init xine..."
msgstr "α
αΆααααααΎα xine..."
#: player-parts/xine-part/kxinewidget.cpp:1128
msgid "Failed to connect to X-Server!"
msgstr "αααΆαααβαααα»αβααΆαβαααααΆααβαα
X-ServerΒ !"
#: player-parts/xine-part/kxinewidget.cpp:1167
msgid "Can't init xine Engine!"
msgstr "αα·αβα’αΆα
βα
αΆααααααΎαβαααΆαααΈα xine ααΆαβα‘αΎαΒ !"
#: player-parts/xine-part/kxinewidget.cpp:1203
msgid "Audiodriver to use (default: auto)"
msgstr "αααααα·ααΈβαααααΆβα’αΌααΈαααΌβαααβααααΌαβααααΎ (ααααΆαααΎαΒ α ααααααααααααα·)"
#: player-parts/xine-part/kxinewidget.cpp:1229
msgid "Videodriver to use (default: auto)"
msgstr "αααααα·ααΈβαααααΆβααΈααα’αΌβαααβααααΌβαααααΎ (ααααΆαααΎαΒ α ααααααααααααα·)"
#: player-parts/xine-part/kxinewidget.cpp:1240
msgid "Use software audio mixer"
msgstr "ααααΎβα§αααααβααΆαβα’αΌααΈαααΌββαααααααα"
#: player-parts/xine-part/kxinewidget.cpp:1244
msgid "Show OSD Messages"
msgstr "αααα αΆαβααΆα OSD"
#: player-parts/xine-part/kxinewidget.cpp:1257
msgid "Size of OSD text"
msgstr "ααα αβααααβα’ααααα OSD"
#: player-parts/xine-part/kxinewidget.cpp:1261
msgid "Font for OSD Messages"
msgstr "αα»αααα’ααααβαααααΆααβααΆα OSD"
#: player-parts/xine-part/kxinewidget.cpp:1265
msgid "Monitor horizontal resolution (dpi)."
msgstr ""
#: player-parts/xine-part/kxinewidget.cpp:1268
msgid "Monitor vertical resolution (dpi)."
msgstr ""
#: player-parts/xine-part/kxinewidget.cpp:1310
msgid "Can't init Video Driver '%1' - trying 'auto'..."
msgstr "αα·αβα’αΆα
βα
αΆααααααΎαβαααααα·ααΈβαααααΆβααΈααα’αΌ '%1' ααΆαβα‘αΎα - αααα»αβααΆααααα 'ααααααααααααα·'..."
#: player-parts/xine-part/kxinewidget.cpp:1323
msgid "All Video Drivers failed to initialize!"
msgstr "αααΆαααβαααα»αβααΆαβα
αΆααααααΎα αααααα·ααΈβαααααΆβααΈααα’αΌβααΆααβα’ααΒ !β"
#: player-parts/xine-part/kxinewidget.cpp:1334
msgid "Can't init Audio Driver '%1' - trying 'auto'..."
msgstr "αα·αβα’αΆα
βα
αΆααααααΎαβαααααα·ααΈβαααααΆβα’αΌααΈαααΌ '%1' ααΆαβα‘αΎα - αααα»αβααΆααααα 'ααααααααααααα·'..."
#: player-parts/xine-part/kxinewidget.cpp:1341
msgid "All Audio Drivers failed to initialize!"
msgstr "αααΆαααβαααα»αβααΆαβα
αΆααααααΎα βαααααα·ααΈβαααααΆβα’αΌααΈαααΌβααΆααβα’ααΒ !"
#: player-parts/xine-part/kxinewidget.cpp:1350
msgid "Can't create a new xine Stream!"
msgstr "αα·αβα’αΆα
βαααααΎαβααααααΈαβ xine ααααΈβααΆαβα‘αΎαΒ !"
#: player-parts/xine-part/kxinewidget.cpp:1893
msgid "DVB: opening..."
msgstr "DVBΒ α αααα»αβααΎα..."
#: player-parts/xine-part/kxinewidget.cpp:2209
msgid "Audio Codec"
msgstr "ααΌαα·αβα’αΌααΈαααΌ"
#: player-parts/xine-part/kxinewidget.cpp:2211
msgid "Video Codec"
msgstr "ααΌαα·αβααΈααα’αΌ"
#: player-parts/xine-part/kxinewidget.cpp:2221
msgid "No plugin found to handle this resource"
msgstr "ααβαα·αβααΎαβαααααα·ααΈβαααα½α ααΎααααΈβααααΎααααΆααβααααΆαβαααβααΆαβα‘αΎα"
#: player-parts/xine-part/kxinewidget.cpp:2226
msgid "Resource seems to be broken"
msgstr "ααααΆαβααααβααΆβααΌα
βα αΎα"
#: player-parts/xine-part/kxinewidget.cpp:2231
msgid "Requested resource does not exist"
msgstr "αα·αβααΆαβααααΆαβαααβααΆαβααααΎβα‘αΎα"
#: player-parts/xine-part/kxinewidget.cpp:2236
msgid "Resource can not be opened"
msgstr "αα·αβα’αΆα
βααΎαβααααΆαβααΆαβα‘αΎα"
#: player-parts/xine-part/kxinewidget.cpp:2241
msgid "Generic error"
msgstr "ααα α»αβααΌαα
"
#: player-parts/xine-part/kxinewidget.cpp:2722
#, fuzzy
msgid "Mute Off"
msgstr "ααααΆαα"
#: player-parts/xine-part/kxinewidget.cpp:2727
#, fuzzy
msgid "Mute On"
msgstr "ααααΆαα"
#: player-parts/xine-part/kxinewidget.cpp:3033
#: player-parts/xine-part/kxinewidget.cpp:3057
#: player-parts/xine-part/kxinewidget.cpp:3088
#, c-format
msgid "Fast Forward %1"
msgstr "αα
βαα»αβααΏα %1"
#: player-parts/xine-part/kxinewidget.cpp:3050
#: player-parts/xine-part/kxinewidget.cpp:3071
#: player-parts/xine-part/kxinewidget.cpp:3095
#, c-format
msgid "Slow Motion %1"
msgstr "α
αααΆβααΊα %1"
#: player-parts/xine-part/kxinewidget.cpp:3334
msgid "Deinterlace: on"
msgstr "αα·αβαααααΆααΒ α ααΎα"
#: player-parts/xine-part/kxinewidget.cpp:3335
msgid "Deinterlace: off"
msgstr "αα·αβαααααΆααΒ α αα·α"
#: player-parts/xine-part/kxinewidget.cpp:3358
#: player-parts/xine-part/kxinewidget.cpp:3364
#: player-parts/xine-part/kxinewidget.cpp:3370
#: player-parts/xine-part/kxinewidget.cpp:3376
#: player-parts/xine-part/kxinewidget.cpp:3382
msgid "Aspect Ratio"
msgstr "αααΆααΆααα"
#: player-parts/xine-part/kxinewidget.cpp:3358
msgid "Auto"
msgstr "ααααααααααααα·"
#: player-parts/xine-part/kxinewidget.cpp:3364
msgid "4:3"
msgstr "4:3"
#: player-parts/xine-part/kxinewidget.cpp:3370
msgid "16:9"
msgstr "16:9"
#: player-parts/xine-part/kxinewidget.cpp:3376
msgid "1:1"
msgstr "1:1"
#: player-parts/xine-part/kxinewidget.cpp:3382
msgid "2.11:1"
msgstr "2.11:1"
#: player-parts/xine-part/kxinewidget.cpp:3391
#: player-parts/xine-part/kxinewidget.cpp:3401
msgid "Zoom X"
msgstr "αααααΈα X"
#: player-parts/xine-part/kxinewidget.cpp:3411
#: player-parts/xine-part/kxinewidget.cpp:3421
msgid "Zoom Y"
msgstr "αααααΈα Y"
#: player-parts/xine-part/kxinewidget.cpp:3433
#: player-parts/xine-part/kxinewidget.cpp:3445
#: player-parts/xine-part/kxinewidget.cpp:3455
#, fuzzy
msgid "Zoom"
msgstr "αααααΈα X"
#: player-parts/xine-part/kxinewidget.cpp:3552
#: player-parts/xine-part/videosettings.cpp:90
msgid "Audio/Video Offset"
msgstr "α’α»α αααα·αββα’αΌααΈαααΌ/ααΈααα’αΌ"
#: player-parts/xine-part/kxinewidget.cpp:3552
#: player-parts/xine-part/kxinewidget.cpp:3558
msgid "msec"
msgstr "αα·.αα·."
#: player-parts/xine-part/kxinewidget.cpp:3558
#: player-parts/xine-part/videosettings.cpp:100
msgid "Subtitle Offset"
msgstr "α’α»α αααα·αβα
αααβααΎααα"
#: player-parts/xine-part/postfilter.cpp:159
msgid "Delete Filter"
msgstr "αα»αβααααα"
#: player-parts/xine-part/postfilter.cpp:166
#: player-parts/xine-part/postfilter.cpp:378
msgid "Help"
msgstr ""
#: player-parts/xine-part/xine_part.cpp:150
#, fuzzy
msgid "XinePart"
msgstr "KaffeinePart"
#: player-parts/xine-part/xine_part.cpp:151
msgid "A xine based player part for Kaffeine."
msgstr "αααααβαααααα·ααΈβα
αΆααβαααβααα’ααβααΎ xine αααααΆαα KaffeineΒ α"
#: player-parts/xine-part/xine_part.cpp:215
#, fuzzy
msgid ""
"SMIL (Synchronized Multimedia Integration Language) support is rudimentary!\n"
"XinePart can now try to playback contained video sources without any layout. "
"Proceed?"
msgstr ""
"ααΆαβααΆαααα SMIL (Synchronized Multimedia Integration Language) ααΊβαα
βααΆαβααααα·αβααΆαβαα
β"
"α‘αΎαΒ !\n"
"α₯α‘αΌαααα KaffeinePart α’αΆα
βααΆαααααβα
αΆααβαααααβααΈααα’αΌβαααβααΆα αααβαα·αβααΆαβαααααβα’αααΈβααΆααα’ααΒ α ααααΒ ?"
#: player-parts/xine-part/xine_part.cpp:582
msgid "Save Stream As"
msgstr "αααααΆβαα»αβββααααααΈαβααΆ"
#: player-parts/xine-part/xine_part.cpp:608
#: player-parts/xine-part/xine_part.cpp:609
#: player-parts/xine-part/xine_part.cpp:631
#: player-parts/xine-part/xine_part.cpp:632
#: player-parts/xine-part/xine_part.cpp:1385
msgid "Subtitle"
msgstr "α
αααααΎαβαα"
#: player-parts/xine-part/xine_part.cpp:640
#: player-parts/xine-part/xine_part.cpp:641
msgid "Audiochannel"
msgstr "ααΆαααβα’αΌααΈαααΌ"
#: player-parts/xine-part/xine_part.cpp:789
msgid "%1 of %2"
msgstr "%1 αα %2"
#: player-parts/xine-part/xine_part.cpp:810
msgid ""
"*.png|PNG-File\n"
"*.bmp|BMP-File\n"
"*.xbm|XBM-File"
msgstr ""
"*.png|α―αααΆα PNG\n"
"*.bmp|α―αααΆα BMP\n"
"*.xbm|α―αααΆα XBM"
#: player-parts/xine-part/xine_part.cpp:813
msgid "Save Screenshot As"
msgstr "αααααΆαα»αβααΌαααβα’ααααααβααΆ"
#: player-parts/xine-part/xine_part.cpp:929
msgid "Broadcasting port:"
msgstr "α
αααβααΆαβααααΆαΒ α"
#: player-parts/xine-part/xine_part.cpp:951
msgid "Configure Receive Broadcast Stream"
msgstr "αααααβαα
ααΆααααααααβααααααΈαβααα½αβααΆαβααααΆα"
#: player-parts/xine-part/xine_part.cpp:953
msgid "Sender address:"
msgstr "α’αΆααααααΆαβα’αααβααααΎΒ α"
#: player-parts/xine-part/xine_part.cpp:955
msgid "Port:"
msgstr "α
αααΒ α"
#: player-parts/xine-part/xine_part.cpp:978
msgid "Jump to position:"
msgstr "αααβαα
βααΈααΆααΒ α"
#: player-parts/xine-part/xine_part.cpp:1045
msgid "xine Error"
msgstr "ααα α»α xine"
#: player-parts/xine-part/xine_part.cpp:1058
msgid "xine Message"
msgstr "ααΆα xine"
#: player-parts/xine-part/xine_part.cpp:1229
msgid "Mime"
msgstr "Mime"
#: player-parts/xine-part/xine_part.cpp:1239
msgid "Subtitle File"
msgstr "α―αααΆαβα
αααααΎαβαα"
#: player-parts/xine-part/xine_part.cpp:1241
msgid "Save Stream as"
msgstr "αααααΆαα»αβααααααΈαβααΆ"
#: player-parts/xine-part/xine_part.cpp:1245
#, fuzzy
msgid "Track info"
msgstr "ααααααΆααα"
#: player-parts/xine-part/xine_part.cpp:1279
msgid "Copy URL to Clipboard"
msgstr "α
αααα URL αα
βααααΆαβααααααβααααΆαα"
#: player-parts/xine-part/xine_part.cpp:1281
msgid "Play in Kaffeine Externally"
msgstr "α
αΆααβαα
βααΆαβαααα»α Kaffeine"
#: player-parts/xine-part/xine_part.cpp:1322
msgid "&Send Broadcast Stream..."
msgstr "ααααΎβααααααΈαβααΆαααααΆα..."
#: player-parts/xine-part/xine_part.cpp:1323
msgid "&Receive Broadcast Stream..."
msgstr "ααα½αβααααααΈαβααΆαααααΆα..."
#: player-parts/xine-part/xine_part.cpp:1324
msgid "&Save Screenshot..."
msgstr "αααααΆαα»αβααΌαααβα’αααααα..."
#: player-parts/xine-part/xine_part.cpp:1325
msgid "Save Stream..."
msgstr "αααααΆαα»αβββααααααΈα..."
#: player-parts/xine-part/xine_part.cpp:1326
msgid ""
"Saves current stream to harddisc. This feature was disabled for some formats "
"(e.g. Real Media) to prevent potential legal problems."
msgstr ""
"αααααΆαα»αβααααααΈαβαα
αα
α»ααααααβαα
βααΆαααΉαΒ α ααααααβαα·αααβαααβαα·αβααααΌαβααΆαββα’αα»ααααΆαβα‘αΎα αααααΆααβαααααααααΆαβαα½αβα
ααα½α "
"(α§. Real Media) ααΎααααΈβααΆαααΆαβαα»αβα²ααβααΆαβαααα αΆβαααααβα
αααΆααΒ α"
#: player-parts/xine-part/xine_part.cpp:1338
msgid "&Fast Forward"
msgstr "αα
βαα»αβααΏα"
#: player-parts/xine-part/xine_part.cpp:1339
msgid "Slow &Motion"
msgstr "α
αααΆβααΊα"
#: player-parts/xine-part/xine_part.cpp:1341
#, fuzzy
msgid "Skip Forward (20s)"
msgstr "ααααβαα
βαα»α (α‘α αα·.)"
#: player-parts/xine-part/xine_part.cpp:1342
#, fuzzy
msgid "Skip Backward (20s)"
msgstr "ααααβααααααα (α‘α αα·.)"
#: player-parts/xine-part/xine_part.cpp:1343
msgid "Skip Forward (1m)"
msgstr "ααααβαα
βαα»α (α‘ ααΆααΈ)"
#: player-parts/xine-part/xine_part.cpp:1344
msgid "Skip Backward (1m)"
msgstr "ααααβααααααα (α‘ ααΆααΈ)"
#: player-parts/xine-part/xine_part.cpp:1345
msgid "Skip Forward (10m)"
msgstr "ααααβαα
βαα»α (α‘α ααΆααΈ)"
#: player-parts/xine-part/xine_part.cpp:1346
msgid "Skip Backward (10m)"
msgstr "ααααβααααααα (α‘α ααΆααΈ)"
#: player-parts/xine-part/xine_part.cpp:1347
msgid "Jump to Position..."
msgstr "αααβαα
βααΈααΆαα..."
#: player-parts/xine-part/xine_part.cpp:1349
msgid "DVD Menu Left"
msgstr "αααΊαα»αβααΈααΈααΈ ααααα"
#: player-parts/xine-part/xine_part.cpp:1350
msgid "DVD Menu Right"
msgstr "αααΊαα»αβααΈααΈααΈ ααααΆα"
#: player-parts/xine-part/xine_part.cpp:1351
msgid "DVD Menu Up"
msgstr "αααΊαα»αβααΈααΈααΈ α‘αΎαβααΎ"
#: player-parts/xine-part/xine_part.cpp:1352
msgid "DVD Menu Down"
msgstr "αααΊαα»αβααΈααΈααΈ α
α»αααααα"
#: player-parts/xine-part/xine_part.cpp:1353
msgid "DVD Menu Select"
msgstr "αααΊαα»αβααΈααΈααΈ ααααΎα"
#: player-parts/xine-part/xine_part.cpp:1355
msgid "Audio Channel"
msgstr "ααΆαααβα’αΌααΈαααΌ"
#: player-parts/xine-part/xine_part.cpp:1356
msgid "Select audio channel"
msgstr "ααααΎαβααΆαααβα’αΌααΈαααΌ"
#: player-parts/xine-part/xine_part.cpp:1359
#, fuzzy
msgid "&Next Audio Channel"
msgstr "ααΆαααβα’αΌααΈαααΌ"
#: player-parts/xine-part/xine_part.cpp:1363
msgid "Volume Up"
msgstr "αααααΎαβααααα·αβαααααα"
#: player-parts/xine-part/xine_part.cpp:1364
msgid "Volume Down"
msgstr "αααααβααααα·αβαααααα"
#: player-parts/xine-part/xine_part.cpp:1366
msgid "&Deinterlace"
msgstr "αα·αβαααααΆαα"
#: player-parts/xine-part/xine_part.cpp:1367
msgid "Activate this for interlaced streams, some DVD's for example."
msgstr "ααααΎβα²ααβααΆβααααα αααααΆααβααααααΈαβαααααΆαα α§ααΆα αααβ ααααβααΈααΈααΈβαα½αβα
ααα½αΒ α"
#: player-parts/xine-part/xine_part.cpp:1376
msgid "Zoom In Horizontal"
msgstr "αααααΈαβααααα"
#: player-parts/xine-part/xine_part.cpp:1377
msgid "Zoom Out Horizontal"
msgstr "ααααα½αβααααα"
#: player-parts/xine-part/xine_part.cpp:1378
msgid "Zoom In Vertical"
msgstr "αααααΈαββααααα"
#: player-parts/xine-part/xine_part.cpp:1379
msgid "Zoom Out Vertical"
msgstr "ααααα½αβααααα"
#: player-parts/xine-part/xine_part.cpp:1380
msgid "Deinterlace &Quality"
msgstr "αα»αααΆαβαα·αβαααααΆαα"
#: player-parts/xine-part/xine_part.cpp:1382
msgid "&Equalizer"
msgstr "α’αα ααα»α"
#: player-parts/xine-part/xine_part.cpp:1389
#, fuzzy
msgid "&Next Subtitle Channel"
msgstr "ααΆαααβαααααΆααβαααα OSD"
#: player-parts/xine-part/xine_part.cpp:1390
#, fuzzy
msgid "Delay Subtitle"
msgstr "ααααΎαβα
αααβααΎααα"
#: player-parts/xine-part/xine_part.cpp:1391
#, fuzzy
msgid "Advance Subtitle"
msgstr "ααααααβα
αααααΎααα..."
#: player-parts/xine-part/xine_part.cpp:1392
#, fuzzy
msgid "Add subtitle..."
msgstr "ααααααβα
αααααΎααα..."
#: player-parts/xine-part/xine_part.cpp:1394
msgid "&Menu Toggle"
msgstr "αα·αααΎα αααΊαα»α"
#: player-parts/xine-part/xine_part.cpp:1395
msgid "&Title"
msgstr "α
αααααΎα"
#: player-parts/xine-part/xine_part.cpp:1396
msgid "&Root"
msgstr "&Root"
#: player-parts/xine-part/xine_part.cpp:1397
msgid "&Subpicture"
msgstr "ααΌαααΆααα"
#: player-parts/xine-part/xine_part.cpp:1398
#: player-parts/xine-part/xine_part.rc:56
#, no-c-format
msgid "&Audio"
msgstr "α’αΌααΈαααΌ"
#: player-parts/xine-part/xine_part.cpp:1399
msgid "An&gle"
msgstr "αααα»α"
#: player-parts/xine-part/xine_part.cpp:1400
msgid "&Part"
msgstr "ααααα"
#: player-parts/xine-part/xine_part.cpp:1402
msgid "Titles"
msgstr "α
αααββααΎαβ"
#: player-parts/xine-part/xine_part.cpp:1404
msgid "Chapters"
msgstr "αααα"
#: player-parts/xine-part/xine_part.cpp:1406
msgid "Angles"
msgstr "αααα»α"
#: player-parts/xine-part/xine_part.cpp:1410
msgid "Effect &Plugins..."
msgstr "αααααα·ααΈβαααα½αβαααααα..."
#: player-parts/xine-part/xine_part.cpp:1413
msgid "&xine Engine Parameters"
msgstr "αααΆαααΆααααααβαααΆαααΈα xine"
#: player-parts/xine-part/xine_part.cpp:1442
msgid ""
"Short click: Toggle Timer Forward/Backward\n"
"Long click: Toggle Timer OSD"
msgstr ""
"α
α»α
βαα½αβαααααΒ α αα·αααΎα αα
αα»α/ααααααα ααααβα§αααααβαααααβαααααααΆ\n"
"α
α»α
βααΌαΒ α αα·αααΎα OSD ααααβα§αααααβαααααβαααααααΆ"
#: player-parts/xine-part/xine_part.cpp:1618
msgid "Looking for CDDB entries..."
msgstr "αααα»αβααααΆαα» CDDB..."
#: player-parts/xine-part/xine_part.cpp:1626
#, fuzzy, c-format
msgid "AudioCD Track %1"
msgstr "αα %1"
#: player-parts/xine-part/xine_part.cpp:1701
#, fuzzy, c-format
msgid "VCD Track %1"
msgstr "αα %1"
#: player-parts/xine-part/xineconfig.cpp:234
msgid "xine Engine Parameters"
msgstr "αααΆαααΆααααααβαααΆαααΈα xine"
#: player-parts/xine-part/xineconfig.cpp:275
msgid "%1 Options"
msgstr "αααααΎα %1"
#: player-parts/xine-part/xineconfig.cpp:282
msgid "Beginner Options"
msgstr "αααααΎαβααααΌα"
#: player-parts/xine-part/xineconfig.cpp:286
msgid "Expert Options"
msgstr "αααααΎαβααααΆαββ"
#: pref.cpp:48
msgid "Kaffeine Setup"
msgstr "ααΆαβαααα
α Kaffeine"
#: pref.cpp:58
msgid "Behavior"
msgstr "α₯αα·ααΆαα"
#: pref.cpp:62
#, fuzzy
msgid "Pause video when window is minimized"
msgstr "ααα’αΆαβααΈααα’αΌ αα
βαααβααΆαα"
#: pref.cpp:69
msgid "Appearance"
msgstr ""
#: pref.cpp:73
msgid "Embed in system tray"
msgstr "ααααααβαααα»αβααΆαβαααααααα"
#: pref.cpp:79
msgid " sec"
msgstr " αα·."
#: pref.cpp:82
msgid "Duration of title announcement in system tray"
msgstr "αα·αααααΆβααβααΆαβαααααΆαβα
αααβααΎαβαααα»αβααΆαβααααααααβ"
#: pref.cpp:93
msgid "Enable DVB client"
msgstr "α’αα»ααααΆαβαααΆαααΈαβαααααβ DVB"
#: pref.cpp:126
msgid "Miscellaneous Options"
msgstr "αααααΎαβααααααββ"
#: pref.cpp:132
msgid "Use alternate (non-Unicode) encoding for Meta tags"
msgstr "ααααΎβααΆαβα’αα·αααΌαβ (αα·αβαααβααΆβααΌααΈααΌα) αααα½α βαααααΆααβααααΆαβααααΆ"
#: pref.cpp:143
msgid "Clear"
msgstr ""
#: pref.cpp:147
msgid "Clear recent files list"
msgstr "αααααβαααααΈβα―αααΆαβαα
αα
α»αααααα"
#: startwindow.cpp:88
msgid "[Kaffeine Player]"
msgstr "[αααααα·ααΈβα
αΆαα Kaffeine]"
#: systemtray.cpp:60
msgid "Play / Pause"
msgstr "α
αΆαα / ααα’αΆα"
#: input/audiobrowser/kaffeineplaylist.rc:4
#, no-c-format
msgid "Play&list"
msgstr "αααααΈα
αΆαα"
#: input/disc/kaffeinedisc.rc:12
#, no-c-format
msgid "CD Toolbar"
msgstr "αααΆαβα§αααααβαααΈααΈ"
#: input/disc/paranoiasettings.ui:16
#, no-c-format
msgid "Encoding Preferences"
msgstr "α
ααααα
αααΌαβα
α·αααααΆαββα’αα·αααΌα"
#: input/disc/paranoiasettings.ui:38
#, no-c-format
msgid "Encoder:"
msgstr "α’αα·αααΌαααΒ α"
#: input/disc/paranoiasettings.ui:56
#, no-c-format
msgid "Base directory:"
msgstr "ααβαααΒ α"
#: input/disc/paranoiasettings.ui:73
#, no-c-format
msgid "..."
msgstr "..."
#: input/disc/paranoiasettings.ui:99
#, no-c-format
msgid "Paranoia:"
msgstr "αααα½ααΒ α"
#: input/disc/paranoiasettings.ui:116
#, no-c-format
msgid "Disable all checking"
msgstr "αα·αβααΆαβαα·αα·αααβααΎαβααΆααβα’αα"
#: input/disc/paranoiasettings.ui:124
#, no-c-format
msgid "Normal mode"
msgstr "ααααβααααααΆ"
#: input/disc/paranoiasettings.ui:132
#, no-c-format
msgid "Paranoia mode"
msgstr "ααααβαααα½αα"
#: input/disc/paranoiasettings.ui:153
#, no-c-format
msgid "Normalize"
msgstr "ααααΎβα²ααβααΆαααα"
#: input/disc/paranoiasettings.ui:205
#: input/disc/plugins/mp3lame/lameconfig.ui:148
#: input/disc/plugins/oggvorbis/oggconfig.ui:138
#: input/dvb/channeleditorui.ui:681
#, no-c-format
msgid "&Cancel"
msgstr ""
#: input/disc/paranoiasettings.ui:219
#: input/disc/plugins/mp3lame/lameconfig.ui:162
#: input/disc/plugins/oggvorbis/oggconfig.ui:152
#: input/dvb/channeleditorui.ui:656
#, no-c-format
msgid "&OK"
msgstr ""
#: input/disc/plugins/mp3lame/lameconfig.ui:16
#, no-c-format
msgid "Lame mp3 options"
msgstr "αααααΎα mp3 αααα Lame"
#: input/disc/plugins/mp3lame/lameconfig.ui:49
#, no-c-format
msgid "VBR"
msgstr "VBR"
#: input/disc/plugins/mp3lame/lameconfig.ui:73
#, no-c-format
msgid "Bitrate:"
msgstr "α’ααααΆβαααΈαΒ α"
#: input/disc/plugins/mp3lame/lameconfig.ui:94
#, no-c-format
msgid "Kb/s"
msgstr "ααΈα‘αΌαα/αα·."
#: input/disc/plugins/oggvorbis/oggconfig.ui:16
#, no-c-format
msgid "Ogg Vorbis Options"
msgstr "αααααΎα Vorbis αααα Ogg"
#: input/disc/plugins/oggvorbis/oggconfig.ui:86
#, no-c-format
msgid "Quality :"
msgstr "αα»αααΆαΒ α"
#: input/dvb/audioeditorui.ui:16
#, no-c-format
msgid "Audio PIDs editor"
msgstr "αααααα·ααΈβαα·αααα PID ααααβα’αΌααΈαααΌ"
#: input/dvb/audioeditorui.ui:43
#, no-c-format
msgid "Audio PIDs"
msgstr "PID ααααβα’αΌααΈαααΌ"
#: input/dvb/audioeditorui.ui:52 input/dvb/broadcasteditorui.ui:84
#: input/dvb/broadcasteditorui.ui:187 input/dvb/subeditorui.ui:93
#, no-c-format
msgid "New Item"
msgstr "ααΆαα»βααααΈ"
#: input/dvb/audioeditorui.ui:90 input/dvb/subeditorui.ui:131
#, no-c-format
msgid "Move Up"
msgstr "ααααΆααααΈβα‘αΎαβααΎ"
#: input/dvb/audioeditorui.ui:98 input/dvb/subeditorui.ui:139
#, no-c-format
msgid "Move Down"
msgstr "ααααΆααααΈβα
α»αβααααα"
#: input/dvb/audioeditorui.ui:106 input/dvb/subeditorui.ui:147
#, no-c-format
msgid "Remove"
msgstr ""
#: input/dvb/audioeditorui.ui:168 input/dvb/subeditorui.ui:209
#, no-c-format
msgid "<< Update Selected"
msgstr "<< ααααΎβα²ααβααΆαα»βαααβααΆαβααααΎαβααΆαααααα"
#: input/dvb/audioeditorui.ui:176 input/dvb/subeditorui.ui:217
#, no-c-format
msgid "<< New"
msgstr "<< ααααΈ"
#: input/dvb/audioeditorui.ui:186 input/dvb/subeditorui.ui:227
#, no-c-format
msgid "Properties"
msgstr ""
#: input/dvb/audioeditorui.ui:205 input/dvb/subeditorui.ui:246
#, no-c-format
msgid "Pid:"
msgstr "PidΒ α"
#: input/dvb/audioeditorui.ui:213 input/dvb/subeditorui.ui:270
#, no-c-format
msgid "Lang:"
msgstr "ααΆααΆΒ α"
#: input/dvb/audioeditorui.ui:221
#, no-c-format
msgid "AC3"
msgstr "AC3"
#: input/dvb/broadcasteditorui.ui:16
#, no-c-format
msgid "Broadcasting Editor"
msgstr "αααααα·ααΈβαα·ααααβααΆαβααααΆα"
#: input/dvb/broadcasteditorui.ui:75
#, no-c-format
msgid "Available channels:"
msgstr "ααΆαααβαααβααΆαΒ α"
#: input/dvb/broadcasteditorui.ui:181
#, no-c-format
msgid "Broadcasting list:"
msgstr "αααααΈβααΆαααααΆαΒ α"
#: input/dvb/camdialog.ui:16
#, fuzzy, no-c-format
msgid "CAM settings"
msgstr "ααΆαβααααα DVB"
#: input/dvb/camdialog.ui:43
#, no-c-format
msgid "Maximum Concurrent Services:"
msgstr ""
#: input/dvb/camdialog.ui:72
#, no-c-format
msgid "Application Type:"
msgstr ""
#: input/dvb/camdialog.ui:80
#, no-c-format
msgid "Manufacturer Code:"
msgstr ""
#: input/dvb/camdialog.ui:88
#, no-c-format
msgid "Menu String:"
msgstr ""
#: input/dvb/camdialog.ui:96 input/dvb/camdialog.ui:104
#: input/dvb/camdialog.ui:120 input/dvb/camdialog.ui:128
#, no-c-format
msgid "_"
msgstr ""
#: input/dvb/camdialog.ui:112
#, no-c-format
msgid "Application Manufacturer:"
msgstr ""
#: input/dvb/camdialog.ui:138 input/dvb/cammenudialog.ui:16
#, no-c-format
msgid "CAM Menu"
msgstr ""
#: input/dvb/cammenudialog.ui:48
#, no-c-format
msgid "Your choice (enter to validate):"
msgstr ""
#: input/dvb/channeleditorui.ui:16
#, no-c-format
msgid "Channel Editor"
msgstr "αααααα·ααΈβαα·ααααβααΆααα"
#: input/dvb/channeleditorui.ui:126
#, no-c-format
msgid "Nr:"
msgstr "NrΒ α"
#: input/dvb/channeleditorui.ui:163
#, no-c-format
msgid "Polarity"
msgstr "ααααααβααΆβαααΌα"
#: input/dvb/channeleditorui.ui:174
#, fuzzy, no-c-format
msgid "Vertical"
msgstr "αααααΈαββααααα"
#: input/dvb/channeleditorui.ui:182
#, fuzzy, no-c-format
msgid "Horizontal"
msgstr "αααααΈαβααααα"
#: input/dvb/channeleditorui.ui:200
#, no-c-format
msgid "Frequency:"
msgstr "αααααααΒ α"
#: input/dvb/channeleditorui.ui:216
#, no-c-format
msgid "Symbol rate:"
msgstr "α’ααααΆβαα·αα·ααααααααΆΒ α"
#: input/dvb/channeleditorui.ui:246
#, no-c-format
msgid "Scrambled"
msgstr "αα»αβααααααβααΎα"
#: input/dvb/channeleditorui.ui:305
#, no-c-format
msgid "Service ID:"
msgstr "αααβαααααΆααβααααΆΒ α"
#: input/dvb/channeleditorui.ui:313
#, no-c-format
msgid "Network ID:"
msgstr ""
#: input/dvb/channeleditorui.ui:329
#, no-c-format
msgid "Teletext PID:"
msgstr "PID ααααβα’αααααβαααβααΎβα’ααααααβααΌαααααααΒ α"
#: input/dvb/channeleditorui.ui:375
#, no-c-format
msgid "Video PID:"
msgstr "PID ααααβααΈααα’αΌΒ α"
#: input/dvb/channeleditorui.ui:391
#, no-c-format
msgid "Transport stream ID:"
msgstr "ααααααααΆααβααααααΈαβααΆαβαααααΒ α"
#: input/dvb/channeleditorui.ui:401
#, no-c-format
msgid "Subtitle PIDs..."
msgstr "PID ααααβα
αααααΎααα..."
#: input/dvb/channeleditorui.ui:412
#, no-c-format
msgid "Audio PIDs..."
msgstr "PID ααααβα’αΌααΈαααΌ..."
#: input/dvb/channeleditorui.ui:448
#, no-c-format
msgid "FEC high:"
msgstr "FEC αααααΒ α"
#: input/dvb/channeleditorui.ui:464
#, no-c-format
msgid "Transmission:"
msgstr "ααΆαβαααααΌαΒ α"
#: input/dvb/channeleditorui.ui:490
#, no-c-format
msgid "FEC low:"
msgstr "FEC ααΆαΒ α"
#: input/dvb/channeleditorui.ui:506
#, no-c-format
msgid "Guard interval:"
msgstr "α
ααααααααβααΆαΒ α"
#: input/dvb/channeleditorui.ui:527
#, no-c-format
msgid "Hierarchy:"
msgstr "ααΆααΆαα»ααααΒ α"
#: input/dvb/channeleditorui.ui:543
#, no-c-format
msgid "Modulation:"
msgstr "ααΆαβααααΌαβααααααβα‘αΎαβα
α»αΒ α"
#: input/dvb/channeleditorui.ui:569
#, no-c-format
msgid "Inversion:"
msgstr "ααΆαβαααα
αααΆαΒ α"
#: input/dvb/channeleditorui.ui:585
#, no-c-format
msgid "Bandwidth:"
msgstr "ααααα·αβαααααΌαΒ α"
#: input/dvb/channeleditorui.ui:598
#, no-c-format
msgid "Type:"
msgstr ""
#: input/dvb/channeleditorui.ui:616
#, no-c-format
msgid "Roll off:"
msgstr ""
#: input/dvb/crontimerui.ui:16
#, no-c-format
msgid "Repeated Timer"
msgstr "ααααΎβα§αααααβαααααβαααααααΆβααααβααα"
#: input/dvb/crontimerui.ui:183
#, no-c-format
msgid "Monday"
msgstr ""
#: input/dvb/crontimerui.ui:191
#, no-c-format
msgid "Tuesday"
msgstr ""
#: input/dvb/crontimerui.ui:199
#, no-c-format
msgid "Wednesday"
msgstr ""
#: input/dvb/crontimerui.ui:207
#, no-c-format
msgid "Thursday"
msgstr ""
#: input/dvb/crontimerui.ui:215
#, no-c-format
msgid "Friday"
msgstr ""
#: input/dvb/crontimerui.ui:223
#, fuzzy, no-c-format
msgid "Saturday"
msgstr "αα·αααα·ααΆα"
#: input/dvb/crontimerui.ui:231
#, no-c-format
msgid "Sunday"
msgstr ""
#: input/dvb/scandialogui.ui:54
#, no-c-format
msgid "(Right click to edit/delete)"
msgstr "(α
α»α
βααααα»αβααααΆα ααΎααααΈβααααααα½α/αα»α)"
#: input/dvb/scandialogui.ui:100
#, no-c-format
msgid "New..."
msgstr "ααααΈ..."
#: input/dvb/scandialogui.ui:108
#, fuzzy, no-c-format
msgid "Delete All"
msgstr "αα»αβααααα"
#: input/dvb/scandialogui.ui:143
#, no-c-format
msgid "Search On"
msgstr "αααααααβαα
"
#: input/dvb/scandialogui.ui:159
#, no-c-format
msgid "Offset (KHz)"
msgstr ""
#: input/dvb/scandialogui.ui:170
#, no-c-format
msgid "-167"
msgstr ""
#: input/dvb/scandialogui.ui:178
#, fuzzy, no-c-format
msgid "(7MHz)"
msgstr " (MHz)"
#: input/dvb/scandialogui.ui:186
#, fuzzy, no-c-format
msgid "(8MHz)"
msgstr " (MHz)"
#: input/dvb/scandialogui.ui:194
#, no-c-format
msgid "+167"
msgstr ""
#: input/dvb/scandialogui.ui:202
#, no-c-format
msgid "+125"
msgstr ""
#: input/dvb/scandialogui.ui:210 input/dvb/scandialogui.ui:221
#, no-c-format
msgid "0"
msgstr ""
#: input/dvb/scandialogui.ui:244
#, no-c-format
msgid "Start Scan"
msgstr "α
αΆααααααΎαβαα·ααΆααα"
#: input/dvb/scandialogui.ui:297
#, no-c-format
msgid "Filters"
msgstr "ααααα"
#: input/dvb/scandialogui.ui:348
#, no-c-format
msgid "Provider:"
msgstr "αααα»αα αα»αβαααααΒ α"
#: input/dvb/scandialogui.ui:377
#, no-c-format
msgid "Free to air"
msgstr "ααααΆαβαααβααααΈ"
#: input/dvb/scandialogui.ui:395
#, no-c-format
msgid "<< Add Selected"
msgstr "<< ααααααβααΆαα»βαααβααΆαβααααΎα"
#: input/dvb/scandialogui.ui:411
#, no-c-format
msgid "<< Add Filtered"
msgstr "<< ααααααβααΆαα»βαααβααΆαβαααα"
#: input/dvb/scandialogui.ui:430
#, fuzzy, no-c-format
msgid "SNR"
msgstr "SNRΒ α"
#: input/dvb/scandialogui.ui:467
#, fuzzy, no-c-format
msgid "Select All"
msgstr "ααααΎαβααΆααα’αα"
#: input/dvb/scandialogui.ui:518
#, no-c-format
msgid "Done"
msgstr "ααααΎαα½α
"
#: input/dvb/subeditorui.ui:16
#, no-c-format
msgid "Subtitle PIDs Editor"
msgstr "αααααα·ααΈβαα·αααα PID ααααβα
αααααΎααα"
#: input/dvb/subeditorui.ui:66
#, no-c-format
msgid "&Close"
msgstr ""
#: input/dvb/subeditorui.ui:84
#, no-c-format
msgid "Subtitle PIDs"
msgstr "PID ααααβα
αααααΎααα"
#: input/dvb/subeditorui.ui:254
#, no-c-format
msgid "Page:"
msgstr "αααααΒ α"
#: input/dvb/subeditorui.ui:262
#, no-c-format
msgid "Sub page:"
msgstr "αααααβααΒ α"
#: kaffeineui.rc:4
#, no-c-format
msgid "&File"
msgstr ""
#: kaffeineui.rc:12
#, no-c-format
msgid "Quit Options"
msgstr "αααααΎαβα
ααβ"
#: kaffeineui.rc:19 player-parts/dummy-part/dummy_part.rc:4
#: player-parts/gstreamer-part/gstreamer_part.rc:4
#: player-parts/xine-part/xine_part.rc:13
#, no-c-format
msgid "&Player"
msgstr "αααααα·ααΈα
αΆαα"
#: kaffeineui.rc:21
#, no-c-format
msgid "&View"
msgstr ""
#: kaffeineui.rc:26
#, no-c-format
msgid "Enable Auto &Resize"
msgstr "α’αα»ααααΆαβα²ααβααααΌαβααα αβαααβαααααβαααααααα·"
#: kaffeineui.rc:35
#, fuzzy, no-c-format
msgid "&Settings"
msgstr "ααΆαβααααα DVB"
#: kaffeineui.rc:50
#, fuzzy, no-c-format
msgid "Main Toolbar"
msgstr "αααΆαβα§αααααβαααΈααΈ"
#: player-parts/gstreamer-part/gstreamer_part.rc:14
#: player-parts/gstreamer-part/gstreamer_part.rc:56
#: player-parts/xine-part/xine_part.rc:67
#, no-c-format
msgid "&Aspect Ratio"
msgstr "αααΆααΆααα"
#: player-parts/gstreamer-part/gstreamer_part.rc:28
#: player-parts/xine-part/xine_part.rc:106
#, no-c-format
msgid "Controls Toolbar"
msgstr "αααΆαα§αααααβααααα»βαααααΆ"
#: player-parts/gstreamer-part/gstreamer_part.rc:35
#: player-parts/xine-part/xine_part.rc:115
#, no-c-format
msgid "Volume Toolbar"
msgstr "αααΆαβα§αααααβααααα·αβαααααα"
#: player-parts/gstreamer-part/gstreamer_part.rc:39
#: player-parts/xine-part/xine_part.rc:119
#, no-c-format
msgid "Position Toolbar"
msgstr "αααΆαβα§αααααβααΈααΆαα"
#: player-parts/xine-part/xine_part.rc:5
#, no-c-format
msgid "&Network Broadcasting"
msgstr "ααΆαβααααΆαβαααααΆα"
#: player-parts/xine-part/xine_part.rc:24
#: player-parts/xine-part/xine_part.rc:34
#: player-parts/xine-part/xine_part.rc:139
#, no-c-format
msgid "&Navigation"
msgstr "ααΆαβαα»ααα"
#: player-parts/xine-part/xine_part.rc:33
#: player-parts/xine-part/xine_part.rc:148
#, no-c-format
msgid "&DVD"
msgstr "ααΈααΈααΈ"
#: player-parts/xine-part/xine_part.rc:41
#: player-parts/xine-part/xine_part.rc:149
#, no-c-format
msgid "&DVD Menus"
msgstr "αααΊαα»αβααΈααΈααΈ"
#: player-parts/xine-part/xine_part.rc:65
#, no-c-format
msgid "&Video"
msgstr "ααΈααα’αΌ"
#: player-parts/xine-part/xine_part.rc:74
#, fuzzy, no-c-format
msgid "&Zoom"
msgstr "αααααΈα X"
#: player-parts/xine-part/xine_part.rc:87
#: player-parts/xine-part/xine_part.rc:168
#, fuzzy, no-c-format
msgid "&Subtitles"
msgstr "α
αααβααΎαβαα"
#: player-parts/xine-part/xine_part.rc:103
#, no-c-format
msgid "Screenshot Toolbar"
msgstr "αααΆαβα§αααααβααΌαααβα’αααααα"
#~ msgid "EPG"
#~ msgstr "EPG"
#~ msgid "Record as:"
#~ msgstr "ααβααΆΒ α"
#~ msgid "Audio Channels"
#~ msgstr "ααΆαααβα’αΌααΈαααΌ"
#~ msgid "Timer successfully created and started."
#~ msgstr "ααΆαβαααααΎα αα·α α
αΆααααααΎαβα§αααααβαααααβαααααααΆββαααβααααααΒ α"
#~ msgid "Lock:"
#~ msgstr "ααΒ α"
#~ msgid "1st sat:"
#~ msgstr "Sat ααΈαα½αΒ α"
#~ msgid "LNB Settings..."
#~ msgstr "ααΆαβααααα LNB..."
#~ msgid "2nd sat:"
#~ msgstr "Sat ααΈααΈαΒ α"
#~ msgid "3rd sat:"
#~ msgstr "Sat ααΈααΈΒ α"
#~ msgid "4th sat:"
#~ msgstr "Sat ααΈαα½αΒ α"
#~ msgid "Preferred format:"
#~ msgstr "αααααααααΆαββαααβα
αΌαα
α·αααΒ α"
#~ msgid ""
#~ "Choose alternate encoding name for Meta tags\n"
#~ "(in order to convert to Unicode)"
#~ msgstr ""
#~ "ααααΎαβαααααβααΆαβα’αα·αααΌαβαααα½αβαααααΆααβααααΆαβααααΆ\n"
#~ "(ααΎααααΈβα’αΆα
βααααααβαα
βααΆβααΌααΈααΌα)"
#~ msgid "No %1 in drive, or wrong path to device."
#~ msgstr "αα·αβααΆα %1 αα
αααα»αβααααΆαβα‘αΎα α¬ αα»αααααΌαβαα
βααΆααβα§αααααΒ α"
#~ msgid "Please select correct drive:"
#~ msgstr "ααΌαβααααΎαβααααΆαβαααββααααΉαααααΌαΒ αβ"
#~ msgid "WIN32 Codecs"
#~ msgstr "ααΌαα·α WIN32"
#~ msgid ""
#~ "No WIN32 codecs found in /usr/lib/win32. You're not able to play Windows "
#~ "Media 9 files, newer Real Media files and some less common formats. "
#~ "Download the codecs here:"
#~ msgstr ""
#~ "ααβαα·αααΎαβααΌαα·α WIN32 αα
βαααα»α /usr/lib/win32 α‘αΎαΒ α α’αααβαα·αβα’αΆα
βα
αΆααβα―αααΆα Windows "
#~ "Media 9, α―αααΆαβ Real Media ααααΈα αα·α αααααααααΆαβααΆαααααβαα½αβα
ααα½αβαααβα‘αΎαΒ α α’αααβα’αΆα
βααΆαααβααΌαα·αβ"
#~ "αα
βααΈαααΒ α"
#~ msgid "Seeking to %s"
#~ msgstr "αααα»αβαααααααβαα
βααα %s"
#~ msgid ""
#~ "Missing GStreamer-registry! Did you forget to run <b>gst-register</b> (as "
#~ "root) after installation?"
#~ msgstr ""
#~ "ααΆααβαααααΈβααααα GStreamerΒ ! ααΎβα’αααβααΆαβααααα
βααα <b>gst-register</b> (ααΆ root) αααααΆααααΈβ"
#~ "ααα‘αΎαβα¬βα’ααΒ ?"
#~ msgid "These channels already exist and were not added:"
#~ msgstr "ααΆαβααΆαααβααΆααβαααβαα½α
βα αΎα α αΎαβααΉαβααααΌαβααΆαβααααααβαααβα‘αΎαΒ α"
#~ msgid ""
#~ "Closing the main window will keep Kaffeine running in the system tray. "
#~ "Use Quit from the File menu to quit the application."
#~ msgstr ""
#~ "ααΆαβαα·αβαααα’α½α
βααβααΉαββαα»αβα²αα Kaffeine αααβαααα»αβααΆαβααααααααβααααΒ α α’αααβα’αΆα
βααααΎα α
αα ααΈβαααΊαα»α α―αααΆα "
#~ "ααΎααααΈβα
ααβααΈβαααααα·ααΈΒ α"
#~ msgid "No player"
#~ msgstr "ααααΆαβαααααα·ααΈα
αΆααβα‘αΎα"
#~ msgid "No layer"
#~ msgstr "ααααΆαβαααααΆαα"
#, fuzzy
#~ msgid "Ch %1"
#~ msgstr "ααΆααα "
#~ msgid "Alternate Layout"
#~ msgstr "αααααβαααα½αβ"
#~ msgid "Kaffeine Part"
#~ msgstr "αααααβ Kaffeine"
#~ msgid "DVB-C"
#~ msgstr "DVB-C"
#~ msgid "DVB-T"
#~ msgstr "DVB-T"
#~ msgid "DVB-S"
#~ msgstr "DVB-S"
#~ msgid "No DVD Video found."
#~ msgstr "ααβαα·αβααΎαβααΈααα’αΌβααΈααΈααΈβα‘αΎαΒ α"
#~ msgid "No (S)VCD found."
#~ msgstr "ααβαα·αβααΎα (α’αα)ααΈαααΈααΈβα‘αΎαΒ α"
#~ msgid "DVB Support"
#~ msgstr "ααΆαβααΆαααα DVB"
|