File: es.po

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

#: src/output.c:208
#, c-format
msgid "Realtime problem... I must remove this output! %f %f"
msgstr ""

#: src/output.c:308 src/output.c:378 src/output.c:450 src/output.c:527
#, fuzzy
msgid "One output has some problems. I remove it."
msgstr "Una salida tiene algunos problemas. Se elimina."

#: src/output.c:596 src/gtk/o_sndfile_new.c:147 src/gtk/o_sndfile_new.c:152
#: src/gtk/o_sndfile_new.c:239 src/gtk/interface.c:832 src/gtk/o_ogg_new.c:149
#: src/gtk/o_ogg_new.c:153 src/gtk/o_ogg_new.c:168
#: src/gtk/o_icecast2_new.c:248 src/gtk/o_icecast2_new.c:254
#: src/gtk/o_icecast2_new.c:271 src/gtk/o_icecast2_new.c:274
#: src/gtk/o_icecast2_new.c:279 src/gtk/o_icecast2_new.c:282
#: src/gtk/o_icecast2_new.c:285 src/gtk/o_icecast2_new.c:290
#: src/gtk/o_icecast2_new.c:293 src/gtk/o_icecast2_new.c:303
#: src/gtk/o_ao_new.c:106 src/gtk/o_daemon_new.c:204
#: src/gtk/o_daemon_new.c:223 src/gtk/o_icecast_new.c:241
#: src/gtk/o_icecast_new.c:259 src/gtk/o_icecast_new.c:262
#: src/gtk/o_icecast_new.c:267 src/gtk/o_icecast_new.c:270
#: src/gtk/o_icecast_new.c:273 src/gtk/o_icecast_new.c:278
#: src/gtk/o_icecast_new.c:281 src/gtk/o_icecast_new.c:291
#: src/gtk/o_icecast_new.c:301 src/gtk/o_icecast_new.c:309
#: src/gtk/o_shoutcast_new.c:244 src/gtk/o_shoutcast_new.c:250
#: src/gtk/o_shoutcast_new.c:268 src/gtk/o_shoutcast_new.c:271
#: src/gtk/o_shoutcast_new.c:276 src/gtk/o_shoutcast_new.c:279
#: src/gtk/o_shoutcast_new.c:282 src/gtk/o_shoutcast_new.c:285
#: src/gtk/o_shoutcast_new.c:288 src/gtk/o_shoutcast_new.c:291
#: src/gtk/o_shoutcast_new.c:294 src/gtk/o_shoutcast_new.c:304
#: src/gtk/o_lame_new.c:149 src/gtk/o_lame_new.c:164 src/gtk/o_lame_new.c:167
#: src/gtk/main.c:137 src/gtk/tools.c:264 src/gtk/tools.c:280
#: src/input/mp3/mp3.c:50 src/input/mp3/id3.c:128 src/input/mic/mic.c:90
#: src/input/mic/mic.c:149 src/input/ogg/ogg.c:140 src/config.c:68
#: src/config.c:158 src/buffer.c:50 src/buffer.c:146 src/util.c:333
#: src/gdaemon/gstatus.c:56 src/gdaemon/mix.c:298 src/gdaemon/mix.c:413
#: src/output/vorbis/vorbis.c:49 src/output/vorbis/config.c:84
#: src/output/vorbis/common.c:53 src/output/streaming/config.c:125
#: src/output/streaming/streaming.c:79 src/output/streaming/streaming.c:294
#: src/output/streaming/streaming.c:687 src/output/streaming/streaming.c:986
#: src/output/lame/lame.c:48 src/output/lame/config.c:83
#: src/output/lame/common.c:143 src/output/monitor/monitor.c:68
#: src/audio.c:407 src/list.c:66 src/list.c:78 src/list.c:98 src/list.c:110
#: src/list.c:120 src/list.c:308 src/list.c:423 src/list.c:435 src/list.c:438
#: src/list.c:497 src/list.c:509 src/list.c:528 src/list.c:539 src/list.c:544
#: src/format.c:178 src/format.c:180 src/format.c:203 src/format.c:205
#: src/format.c:228 src/format.c:230 src/format.c:253 src/format.c:258
#: src/format.c:284 src/format.c:286 src/format.c:322 src/format.c:324
#: src/file.c:207 src/file.c:265 src/main.c:76 src/main.c:85 src/main.c:87
#: src/options.c:85 src/options.c:96 src/options.c:108 src/options.c:194
#: src/options.c:225 src/options.c:249 src/options.c:288 src/daemon.c:426
#: src/daemon.c:608 src/daemon.c:810 src/sock.c:130 src/sock.c:133
#: src/admin.c:70 src/admin.c:326
msgid "Error: memory."
msgstr "Error: memoria."

#: src/output.c:616
msgid "Searching your audio interface..."
msgstr "Buscando su interfaz de audio..."

#: src/output.c:638 src/output.c:669 src/output.c:729 src/output.c:792
#: src/gtk/input.c:54 src/gtk/input.c:107 src/gtk/input.c:157
#: src/gdaemon/crossfade_v.c:115 src/gdaemon/crossfade_v.c:135
#: src/gdaemon/crossfade_b.c:119 src/gdaemon/crossfade_b.c:139
#: src/gdaemon/autofader.c:69 src/output/vorbis/vorbis.c:249
#: src/output/vorbis/vorbis.c:282 src/output/vorbis/vorbis.c:294
#: src/output/vorbis/vorbis.c:321 src/output/vorbis/common.c:47
#: src/output/vorbis/common.c:159 src/output/vorbis/common.c:162
#: src/output/vorbis/common.c:196 src/output/sndfile/sndfile.c:181
#: src/output/sndfile/sndfile.c:269 src/output/streaming/lame.c:40
#: src/output/streaming/vorbis.c:40 src/output/streaming/streaming.c:180
#: src/output/streaming/streaming.c:234 src/output/streaming/streaming.c:878
#: src/output/streaming/icecast.c:51 src/output/streaming/shoutcast.c:51
#: src/output/streaming/icecast2.c:55 src/output/lame/lame.c:246
#: src/output/lame/lame.c:281 src/output/lame/lame.c:316 src/audio.c:61
#: src/format.c:101 src/daemon.c:1022 src/admin.c:210
msgid "Internal error."
msgstr "Error interno."

#: src/gtk/o_sndfile_new.c:53 src/gtk/o_sndfile_show.c:52
#, fuzzy
msgid "SomaPlayer - Write a File configuration"
msgstr "SomaPlayer - configuracin de icecast"

#: src/gtk/o_sndfile_new.c:75 src/gtk/o_sndfile_show.c:74
#, fuzzy
msgid "File:"
msgstr "_Fichero"

#: src/gtk/o_sndfile_new.c:80 src/gtk/o_sndfile_show.c:81
#, fuzzy
msgid "Type File:"
msgstr "_Abrir fichero"

#: src/gtk/o_sndfile_new.c:141 src/gtk/o_ogg_new.c:144
#: src/gtk/o_lame_new.c:144
msgid "No file?"
msgstr "Ningn fichero?"

#: src/gtk/o_sndfile_new.c:242 src/gtk/o_ogg_new.c:190
#: src/gtk/o_icecast2_new.c:337 src/gtk/o_ao_new.c:159
#: src/gtk/o_daemon_new.c:226 src/gtk/o_icecast_new.c:329
#: src/gtk/o_shoutcast_new.c:329 src/gtk/o_lame_new.c:187 src/audio.c:263
#: src/daemon.c:632 src/daemon.c:777 src/bad_list.c:118
msgid "Error: Cond init."
msgstr "Error: Inicializacin cond."

#: src/gtk/o_sndfile_new.c:244 src/gtk/o_ogg_new.c:192
#: src/gtk/o_icecast2_new.c:339 src/gtk/o_ao_new.c:161
#: src/gtk/o_daemon_new.c:228 src/gtk/o_icecast_new.c:331
#: src/gtk/o_shoutcast_new.c:331 src/gtk/o_lame_new.c:189
#: src/gdaemon/main.c:87 src/audio.c:265 src/daemon.c:178 src/daemon.c:634
#: src/daemon.c:775 src/bad_list.c:120
msgid "Error: Mutex init."
msgstr "Error: Inicializacin de Mutex."

#: src/gtk/o_sndfile_new.c:246 src/gtk/o_ogg_new.c:194
#: src/gtk/o_icecast2_new.c:341 src/gtk/o_ao_new.c:163
#: src/gtk/o_daemon_new.c:230 src/gtk/o_icecast_new.c:333
#: src/gtk/o_shoutcast_new.c:333 src/gtk/o_lame_new.c:191 src/gtk/main.c:89
#: src/input/cdaudio/cdaudio.c:153 src/player.c:209 src/audio.c:267
#: src/main.c:157 src/daemon.c:190 src/daemon.c:204 src/daemon.c:636
#: src/daemon.c:818 src/bad_list.c:68 src/bad_list.c:122 src/admin.c:346
msgid "Thread error."
msgstr "Error de hebras."

#: src/gtk/interface.c:154
msgid "_File"
msgstr "_Fichero"

#: src/gtk/interface.c:161
msgid "_Open File"
msgstr "_Abrir fichero"

#: src/gtk/interface.c:172
msgid "Open _Directory"
msgstr "Abrir _directorio"

#: src/gtk/interface.c:184
msgid "Open _Cdaudio"
msgstr "Abrir _CD audio"

#: src/gtk/interface.c:196
msgid "Open _Stream"
msgstr "Abrir _flujo"

#: src/gtk/interface.c:207
msgid "Open _Playlist"
msgstr "Abrir lista de re_produccin"

#: src/gtk/interface.c:223
msgid "Save _Playlist"
msgstr "Guardar lista de re_produccin"

#: src/gtk/interface.c:235
msgid "_Save Configuration"
msgstr "_Guardar configuracin"

#: src/gtk/interface.c:258
msgid "I_nput"
msgstr "E_ntrada"

#: src/gtk/interface.c:268
msgid "_Microphone/Line-in"
msgstr "_Micrfono/Line-in"

#: src/gtk/interface.c:276 src/gtk/interface.c:447
msgid "_Playlist"
msgstr "Lista de re_produccin"

#: src/gtk/interface.c:285 src/gdaemon/main.c:188
msgid "_SdS"
msgstr "_SdS"

#: src/gtk/interface.c:334 src/gdaemon/main.c:195
#, fuzzy
msgid "O_utputs"
msgstr "S_alida"

#: src/gtk/interface.c:341
#, fuzzy
msgid "_Add"
msgstr "Aadir"

#: src/gtk/interface.c:349 src/gdaemon/main.c:217
#, fuzzy
msgid "Audio"
msgstr "audio"

#: src/gtk/interface.c:359 src/gtk/o_interface.c:671 src/gdaemon/main.c:227
#, fuzzy
msgid "Soma Distribuited Sound"
msgstr "Soma Daemon Sound"

#: src/gtk/interface.c:368 src/gtk/o_interface.c:680 src/gdaemon/main.c:236
msgid "Encode Mp3"
msgstr "Codificar MP3"

#: src/gtk/interface.c:377 src/gtk/o_interface.c:689 src/gdaemon/main.c:245
msgid "Encode Ogg"
msgstr "Codificar Ogg"

#: src/gtk/interface.c:386 src/gtk/o_interface.c:698 src/gdaemon/main.c:254
msgid "Write a file"
msgstr "Escribir un fichero"

#: src/gtk/interface.c:397 src/gtk/o_interface.c:709 src/gdaemon/main.c:265
msgid "Icecast"
msgstr "Icecast"

#: src/gtk/interface.c:406 src/gtk/o_interface.c:718 src/gdaemon/main.c:274
msgid "Icecast2"
msgstr "Icecast2"

#: src/gtk/interface.c:415 src/gtk/o_interface.c:727 src/gdaemon/main.c:283
msgid "Shoutcast"
msgstr "Shoutcast"

#: src/gtk/interface.c:425
#, fuzzy
msgid "_Remove"
msgstr "Eliminar"

#: src/gtk/interface.c:432
msgid "_Show"
msgstr ""

#: src/gtk/interface.c:439
msgid "S_top/Start"
msgstr ""

#: src/gtk/interface.c:454
#, fuzzy
msgid "_Show Playlist Admin"
msgstr "Lista de re_produccin"

#: src/gtk/interface.c:462
msgid "_Tools"
msgstr ""

#: src/gtk/interface.c:469
msgid "_Silence Trimming"
msgstr ""

#: src/gtk/interface.c:476
msgid "_Admin Interface"
msgstr ""

#: src/gtk/interface.c:488
#, fuzzy
msgid "_Realtime Output"
msgstr "Eliminar salida"

#: src/gtk/interface.c:500
msgid "_Help"
msgstr "_Ayuda"

#: src/gtk/interface.c:507
msgid "_About..."
msgstr "_Acerca de..."

#: src/gtk/interface.c:537
msgid "Random sequence of audio files."
msgstr "Activa la seleccin aleatoria de ficheros de la lista de reproduccin."

#: src/gtk/interface.c:552
msgid "Random"
msgstr "Aleatorio"

#: src/gtk/interface.c:559
msgid "Repeat sequence audio files."
msgstr "Activa la repeticin de la lista de reproduccin."

#: src/gtk/interface.c:575
msgid "Repeat"
msgstr "Repeticin"

#: src/gtk/interface.c:611
msgid "Back"
msgstr "Atrs"

#: src/gtk/interface.c:631
msgid "Play"
msgstr "Reproducir"

#: src/gtk/interface.c:651 src/gtk/timeout.c:138
msgid "Stop"
msgstr "Detener"

#: src/gtk/interface.c:671
msgid "Next"
msgstr "Siguiente"

#: src/gtk/interface.c:679
msgid "Volume:"
msgstr "Volumen:"

#: src/gtk/interface.c:690
msgid "Change the output volume."
msgstr "Cambiar el volumen de salida."

#: src/gtk/interface.c:699
msgid "Balance:"
msgstr "Balance:"

#: src/gtk/interface.c:711
msgid "Change the output balance."
msgstr "Cambiar el balance de la salida."

#: src/gtk/interface.c:741
msgid "Add files or directories"
msgstr "Aadir ficheros o directorios"

#: src/gtk/interface.c:756 src/gtk/o_interface.c:592
msgid "Add"
msgstr "Aadir"

#: src/gtk/interface.c:763
msgid "Remove files or directories"
msgstr "Eliminar ficheros o directorios"

#: src/gtk/interface.c:779 src/gtk/o_interface.c:599
msgid "Remove"
msgstr "Eliminar"

#: src/gtk/interface.c:803
msgid "Q"
msgstr ""

#: src/gtk/interface.c:808
msgid "Playlist"
msgstr "Lista de reproduccin"

#: src/gtk/interface.c:819
msgid "SomaPlayer start..."
msgstr "SomaPlayer est iniciado..."

#: src/gtk/playlist.c:439
msgid "Insert files"
msgstr ""

#: src/gtk/playlist.c:446
#, fuzzy
msgid "Insert directories"
msgstr "Aadir ficheros o directorios"

#: src/gtk/playlist.c:454
#, fuzzy
msgid "Insert cdaudio tracks"
msgstr "aadir pista de cd audio"

#: src/gtk/playlist.c:462
#, fuzzy
msgid "Insert streams"
msgstr "flujo"

#: src/gtk/playlist.c:469
#, fuzzy
msgid "Insert playlists"
msgstr "lista de reproduccin"

#: src/gtk/playlist.c:503
msgid "add file"
msgstr "aadir fichero"

#: src/gtk/playlist.c:510
msgid "add directory"
msgstr "aadir directorio"

#: src/gtk/playlist.c:518
msgid "add cdaudio track"
msgstr "aadir pista de cd audio"

#: src/gtk/playlist.c:526
msgid "add stream"
msgstr "aadir flujo"

#: src/gtk/playlist.c:533
msgid "add playlist"
msgstr "aadir lista de reproduccin"

#: src/gtk/playlist.c:544
msgid "remove item"
msgstr "eliminar elemento"

#: src/gtk/playlist.c:555
#, fuzzy
msgid "queue item"
msgstr "eliminar elemento"

#: src/gtk/playlist.c:562
msgid "search item"
msgstr ""

#: src/gtk/playlist.c:573
msgid "select all"
msgstr "seleccionar todo"

#: src/gtk/playlist.c:580
msgid "cancel"
msgstr "cancelar"

#: src/gtk/o_ogg_new.c:61 src/gtk/o_ogg_show.c:64
msgid "SomaPlayer - ogg/vorbis configuration"
msgstr "SomaPlayer - configuracin de ogg/vorbis"

#: src/gtk/o_ogg_new.c:85 src/gtk/o_icecast2_show.c:102
#: src/gtk/o_icecast2_new.c:102 src/gtk/o_icecast_show.c:100
#: src/gtk/o_ogg_show.c:85 src/gtk/o_shoutcast_show.c:103 src/gtk/input.c:433
#: src/gtk/o_icecast_new.c:101 src/gtk/o_shoutcast_new.c:103
#: src/gtk/o_lame_new.c:85 src/gtk/o_lame_show.c:85
msgid "Rate:"
msgstr "Tasa:"

#: src/gtk/o_ogg_new.c:90 src/gtk/o_icecast2_show.c:110
#: src/gtk/o_icecast2_new.c:107 src/gtk/o_icecast_show.c:108
#: src/gtk/o_ogg_show.c:93 src/gtk/o_shoutcast_show.c:111
#: src/gtk/o_icecast_new.c:106 src/gtk/o_shoutcast_new.c:108
#: src/gtk/o_lame_new.c:90 src/gtk/o_lame_show.c:93
msgid "Quality:"
msgstr "Calidad:"

#: src/gtk/o_ogg_new.c:96 src/gtk/o_icecast2_show.c:118
#: src/gtk/o_icecast2_new.c:113 src/gtk/o_icecast_show.c:116
#: src/gtk/o_ogg_show.c:101 src/gtk/o_shoutcast_show.c:119
#: src/gtk/o_icecast_new.c:112 src/gtk/o_shoutcast_new.c:114
#: src/gtk/o_lame_new.c:96 src/gtk/o_lame_show.c:101
msgid "Bitrate:"
msgstr "Tasa de bits:"

#: src/gtk/o_ogg_new.c:101 src/gtk/o_icecast2_show.c:126
#: src/gtk/o_icecast2_new.c:118 src/gtk/o_icecast_show.c:124
#: src/gtk/o_ogg_show.c:109 src/gtk/o_shoutcast_show.c:127
#: src/gtk/o_icecast_new.c:117 src/gtk/o_shoutcast_new.c:119
#: src/gtk/o_lame_new.c:101 src/gtk/o_lame_show.c:109
msgid "Channels:"
msgstr "Canales:"

#: src/gtk/o_ogg_new.c:108 src/gtk/o_icecast2_show.c:135
#: src/gtk/o_icecast2_new.c:125 src/gtk/o_icecast_show.c:133
#: src/gtk/o_ogg_show.c:117 src/gtk/o_shoutcast_show.c:136
#: src/gtk/o_icecast_new.c:124 src/gtk/o_shoutcast_new.c:126
#: src/gtk/o_lame_new.c:108 src/gtk/o_lame_show.c:117
msgid "LowPass:"
msgstr "Paso bajo:"

#: src/gtk/o_ogg_new.c:113 src/gtk/o_icecast2_show.c:143
#: src/gtk/o_icecast2_new.c:130 src/gtk/o_icecast_show.c:141
#: src/gtk/o_ogg_show.c:125 src/gtk/o_shoutcast_show.c:145
#: src/gtk/o_icecast_new.c:129 src/gtk/o_shoutcast_new.c:131
#: src/gtk/o_lame_new.c:113 src/gtk/o_lame_show.c:125
msgid "HighPass:"
msgstr "Paso alto:"

#: src/gtk/o_ogg_new.c:118 src/gtk/o_ogg_show.c:133 src/gtk/o_lame_new.c:118
#: src/gtk/o_lame_show.c:133
msgid "File Output:"
msgstr "Fichero de salida:"

#: src/gtk/o_ogg_new.c:128
msgid "output.ogg"
msgstr "salida.ogg"

#: src/gtk/o_ogg_new.c:339 src/gtk/o_ogg_show.c:179
msgid "Ogg config saved!"
msgstr ""

#: src/gtk/about.c:77
#, fuzzy
msgid "About SomaPlayer"
msgstr "Lanza_r un SomaPlayer"

#: src/gtk/o_icecast2_show.c:81 src/gtk/o_icecast2_new.c:78
msgid "SomaPlayer - icecast2 configuration"
msgstr "SomaPlayer - configuracin de icecast2"

#: src/gtk/o_icecast2_show.c:151 src/gtk/o_icecast2_new.c:135
#: src/gtk/o_icecast_show.c:149 src/gtk/o_shoutcast_show.c:153
#: src/gtk/o_icecast_new.c:134 src/gtk/o_shoutcast_new.c:136
msgid "Server:"
msgstr "Servidor:"

#: src/gtk/o_icecast2_show.c:159 src/gtk/o_icecast2_new.c:140
#: src/gtk/o_icecast_show.c:157 src/gtk/o_shoutcast_show.c:161
#: src/gtk/o_icecast_new.c:139 src/gtk/o_shoutcast_new.c:141
msgid "Port:"
msgstr "Puerto:"

#: src/gtk/o_icecast2_show.c:167 src/gtk/o_icecast2_new.c:147
#: src/gtk/o_icecast_show.c:165 src/gtk/o_shoutcast_show.c:169
#: src/gtk/o_icecast_new.c:146 src/gtk/o_shoutcast_new.c:148
msgid "Mount:"
msgstr "Punto de montaje:"

#: src/gtk/o_icecast2_show.c:175 src/gtk/o_icecast2_new.c:152
#: src/gtk/o_icecast_show.c:173 src/gtk/o_shoutcast_show.c:177
#: src/gtk/o_icecast_new.c:151 src/gtk/o_shoutcast_new.c:153
msgid "Password:"
msgstr "Contrasea:"

#: src/gtk/o_icecast2_show.c:184 src/gtk/o_icecast2_new.c:164
#: src/gtk/o_icecast_show.c:182 src/gtk/o_shoutcast_show.c:186
#: src/gtk/o_icecast_new.c:163 src/gtk/o_shoutcast_new.c:165
msgid "Genre:"
msgstr "Gnero:"

#: src/gtk/o_icecast2_show.c:192 src/gtk/o_icecast2_new.c:169
#: src/gtk/o_icecast_show.c:190 src/gtk/o_shoutcast_show.c:194
#: src/gtk/o_icecast_new.c:168 src/gtk/o_shoutcast_new.c:170
msgid "Name:"
msgstr "Nombre:"

#: src/gtk/o_icecast2_show.c:199 src/gtk/o_icecast2_new.c:174
#: src/gtk/o_icecast_show.c:198 src/gtk/o_icecast_new.c:173
msgid "Description:"
msgstr "Descripcin:"

#: src/gtk/o_icecast2_show.c:207 src/gtk/o_icecast2_new.c:179
#: src/gtk/o_icecast_show.c:206 src/gtk/o_shoutcast_show.c:226
#: src/gtk/o_icecast_new.c:178 src/gtk/o_shoutcast_new.c:190
msgid "Url:"
msgstr "URL:"

#: src/gtk/o_icecast2_show.c:215 src/gtk/o_icecast2_new.c:184
#: src/gtk/o_icecast_show.c:214 src/gtk/o_shoutcast_show.c:234
#: src/gtk/o_icecast_new.c:183 src/gtk/o_shoutcast_new.c:195
msgid "Public:"
msgstr "Pblico:"

#: src/gtk/o_icecast2_show.c:222 src/gtk/o_icecast2_new.c:189
#: src/gtk/o_icecast_show.c:221 src/gtk/o_shoutcast_show.c:241
#: src/gtk/o_icecast_new.c:188 src/gtk/o_shoutcast_new.c:200
msgid "Dump File Local:"
msgstr "Fichero de volcado local:"

#: src/gtk/o_icecast2_show.c:230 src/gtk/o_icecast2_new.c:194
msgid "Type Streaming:"
msgstr "Tipo de reproduccin por red:"

#: src/gtk/o_icecast2_show.c:322 src/gtk/o_icecast2_new.c:613
msgid "Icecast2 config saved!"
msgstr ""

#: src/gtk/o_ao_show.c:51 src/gtk/o_ao_new.c:52
msgid "SomaPlayer - Audio configuration"
msgstr "SomaPlayer - Configuracin de audio"

#: src/gtk/o_ao_show.c:71 src/gtk/o_ao_new.c:74
msgid "Output Audio:"
msgstr "Output audio:"

#: src/gtk/o_ao_show.c:89
msgid "Oss - Open Sound System"
msgstr "OSS - Open Sound System"

#: src/gtk/o_ao_show.c:93
msgid "Alsa - Advanced Linux Sound Architecture"
msgstr "Alsa - Advanced Linux Sound Architecture"

#: src/gtk/o_ao_show.c:97
msgid "Alsa - Advanced Linux Sound Architecture v0.9"
msgstr "Alsa - Advanced Linux Sound Architecture v0.9"

#: src/gtk/o_ao_show.c:101
msgid "Esd - Enlightened Sound Daemon"
msgstr "Esd - Enlightened Sound Daemon"

#: src/gtk/o_ao_show.c:104
msgid "Arts - Arts Sound Server"
msgstr "Arts - Arts Sound Server"

#: src/gtk/o_ao_show.c:107
msgid "Sun - Sun Audio"
msgstr "Sun - Sun Audio"

#: src/gtk/o_ao_show.c:110
msgid "Null - Null Device"
msgstr "Null - Dispositivo nulo"

#: src/gtk/o_ao_show.c:117 src/gtk/o_ao_new.c:93
#, fuzzy
msgid "Options:"
msgstr "Descripcin:"

#: src/gtk/o_daemon_show.c:51 src/gtk/o_daemon_new.c:73 src/gtk/input.c:235
msgid "SomaPlayer - SdS configuration"
msgstr "SomaPlayer - Configuracin de SdS"

#: src/gtk/o_daemon_show.c:71
msgid "SdS Server:"
msgstr "Servidor SdS:"

#: src/gtk/o_icecast2_new.c:158 src/gtk/o_icecast_new.c:157
#: src/gtk/o_shoutcast_new.c:159
msgid "(Re)Password:"
msgstr "(Re)Contrasea:"

#: src/gtk/o_icecast2_new.c:231 src/gtk/o_icecast2_new.c:536
#: src/gtk/o_icecast_new.c:221 src/gtk/o_icecast_new.c:514
#: src/gtk/o_shoutcast_new.c:227 src/gtk/o_shoutcast_new.c:514
msgid "Passwords are different!"
msgstr "Las contraseas introducidas son diferentes."

#: src/gtk/o_icecast2_new.c:237 src/gtk/o_daemon_new.c:180 src/gtk/input.c:330
#: src/gtk/o_icecast_new.c:227 src/gtk/o_shoutcast_new.c:233
msgid "No server?"
msgstr "Ningn servidor?"

#: src/gtk/o_icecast2_new.c:243 src/gtk/o_icecast_new.c:233
#: src/gtk/o_shoutcast_new.c:239
msgid "No mount?"
msgstr "Ningn punto de montaje?"

#: src/gtk/o_icecast2_new.c:316 src/gtk/o_icecast2_new.c:570
msgid "No ogg support. Compile with ogg!"
msgstr "No tiene soporte para ogg. Compile con ogg."

#: src/gtk/fileselection.c:37
#, c-format
msgid "%s %s - Select Files"
msgstr "%s %s - Seleccionar ficheros"

#: src/gtk/o_ao_new.c:79
msgid "Try..."
msgstr "Intentar..."

#: src/gtk/o_icecast_show.c:79 src/gtk/o_icecast_new.c:77
msgid "SomaPlayer - icecast configuration"
msgstr "SomaPlayer - configuracin de icecast"

#: src/gtk/o_icecast_show.c:229
msgid "Dump File Remote"
msgstr "Fichero de volcado remoto"

#: src/gtk/o_icecast_show.c:294 src/gtk/o_icecast_new.c:583
msgid "Icecast config saved!"
msgstr ""

#: src/gtk/o_daemon_new.c:94 src/gtk/input.c:255 src/gtk/tools.c:185
msgid "Unix Socket"
msgstr ""

#: src/gtk/o_daemon_new.c:109 src/gtk/input.c:268 src/gtk/tools.c:200
#, fuzzy
msgid "Socket File: "
msgstr "Error de socket."

#: src/gtk/o_daemon_new.c:123 src/gtk/input.c:279 src/gtk/tools.c:215
msgid "Tcp Socket"
msgstr ""

#: src/gtk/o_daemon_new.c:138 src/gtk/input.c:292
#, fuzzy
msgid "Server: "
msgstr "Servidor:"

#: src/gtk/o_daemon_new.c:149 src/gtk/input.c:301 src/gtk/tools.c:241
#, fuzzy
msgid "Port: "
msgstr "Puerto:"

#: src/gtk/stream.c:43
#, fuzzy
msgid "SomaPlayer - Streaming"
msgstr "Iniciando SomaPlayer..."

#: src/gtk/stream.c:65
#, fuzzy
msgid "Stream:"
msgstr "flujo"

#: src/gtk/o_shoutcast_show.c:82 src/gtk/o_shoutcast_new.c:79
msgid "SomaPlayer - shoutcast configuration"
msgstr "SomaPlayer - configuracin de shoutcast"

#: src/gtk/o_shoutcast_show.c:202 src/gtk/o_shoutcast_new.c:175
msgid "Aim:"
msgstr "AIM:"

#: src/gtk/o_shoutcast_show.c:210 src/gtk/o_shoutcast_new.c:180
msgid "Icq:"
msgstr "ICQ:"

#: src/gtk/o_shoutcast_show.c:218 src/gtk/o_shoutcast_new.c:185
msgid "Irc:"
msgstr "IRC:"

#: src/gtk/o_shoutcast_show.c:304 src/gtk/o_shoutcast_new.c:585
msgid "Shoutcast config saved!"
msgstr ""

#: src/gtk/input.c:411
#, fuzzy
msgid "SomaPlayer - microphone configuration"
msgstr "SomaPlayer - configuracin de mp3"

#: src/gtk/input.c:441
#, fuzzy
msgid "Channels"
msgstr "Canales:"

#: src/gtk/input.c:450
#, fuzzy
msgid "Bitrate"
msgstr "Tasa de bits:"

#: src/gtk/input.c:468
#, fuzzy
msgid "No rate?"
msgstr "Ningn puerto?"

#: src/gtk/o_sndfile_show.c:90
#, fuzzy
msgid "WAV - Windows WAV format (little endian)"
msgstr "         wav           Formato WAV de Microsoft (little endian)\n"

#: src/gtk/o_sndfile_show.c:94
#, fuzzy
msgid "Apple/SGI AIFF format (big endian)"
msgstr "         aiff          Formato AIFF de Apple/SGI (big endian)\n"

#: src/gtk/o_sndfile_show.c:98
#, fuzzy
msgid "Sun/NeXT AU file format (big endian)"
msgstr ""
"         au            Formato de fichero AU de Sun/NeXT (big endian)\n"

#: src/gtk/o_sndfile_show.c:101
msgid "Raw PCM data"
msgstr ""

#: src/gtk/o_sndfile_show.c:104
#, fuzzy
msgid "Ensoniq PARIS file format"
msgstr "         paf           Formato de fichero PARIS de Ensoniq\n"

#: src/gtk/o_sndfile_show.c:108
#, fuzzy
msgid "Amiga IFF / SVX8 / SV16 format"
msgstr "         svx           Formato IFF / SVX8 / SV16 de Amiga\n"

#: src/gtk/o_sndfile_show.c:111
#, fuzzy
msgid "Sphere NIST format"
msgstr "         nist          Formato NIST de Sphere\n"

#: src/gtk/o_sndfile_show.c:114
#, fuzzy
msgid "Voc files"
msgstr "Ningn fichero?"

#: src/gtk/o_sndfile_show.c:117
#, fuzzy
msgid "Berkeley/IRCAM/CARL"
msgstr "         ircam         Berkeley/IRCAM/CARL\n"

#: src/gtk/o_sndfile_show.c:121
#, fuzzy
msgid "Sonic Foundry's 64 bit RIFF/WAV"
msgstr "         w64           RIFF/WAV a 64 bits de Sonic Foundry\n"

#: src/gtk/o_sndfile_show.c:125
#, fuzzy
msgid "Matlab (tm) V4.2 / GNU Octave 2.0"
msgstr "         mat4          Matlab (tm) V4.2 / GNU Octave 2.0\n"

#: src/gtk/o_sndfile_show.c:129
#, fuzzy
msgid "Matlab (tm) V5.0 / GNU Octave 2.1"
msgstr "         mat5          Matlab (tm) V5.0 / GNU Octave 2.1\n"

#: src/gtk/o_sndfile_show.c:132
#, fuzzy
msgid "Portable Voice Format"
msgstr "         pvf           Formato de voz portable\n"

#: src/gtk/o_sndfile_show.c:136
#, fuzzy
msgid "Fasttracker 2 Extended Instrument"
msgstr "         xi            Instrumento extendido Fasttracker 2\n"

#: src/gtk/o_sndfile_show.c:139
#, fuzzy
msgid "HMM Tool Kit format"
msgstr "         htk           Formato HMM Tool Kit\n"

#: src/gtk/o_sndfile_show.c:144
#, fuzzy
msgid "Midi Sample Dump Standard"
msgstr "         midi          Volcado de muestreo Midi estndar\n"

#: src/gtk/o_sndfile_show.c:150
#, fuzzy
msgid "Audio Visual Research"
msgstr "         avr           Audio Visual Research\n"

#: src/gtk/o_sndfile_show.c:156
#, fuzzy
msgid "MS WAVE with WAVEFORMATEX"
msgstr "         wavex         MS WAVE con WAVEFORMATEX\n"

#: src/gtk/o_icecast_new.c:193
#, fuzzy
msgid "Dump File Remote:"
msgstr "Fichero de volcado remoto"

#: src/gtk/o_lame_new.c:61 src/gtk/o_lame_show.c:64
msgid "SomaPlayer - mp3 configuration"
msgstr "SomaPlayer - configuracin de mp3"

#: src/gtk/o_lame_new.c:128
msgid "output.mp3"
msgstr "salida.mp3"

#: src/gtk/o_lame_new.c:339 src/gtk/o_lame_show.c:178
msgid "Mp3 config saved!"
msgstr ""

#: src/gtk/cdaudio.c:55 src/gtk/cdaudio.c:63 src/input/cdaudio/cdaudio.c:62
msgid "Cdaudio no present."
msgstr "Cdaudio no presente."

#: src/gtk/cdaudio.c:68
#, fuzzy
msgid "SomaPlayer - CdAudio Select Tracks"
msgstr "SomaPlayer - Configuracin de audio"

#: src/gtk/cdaudio.c:100
#, fuzzy
msgid "Tracks"
msgstr "Atrs"

#: src/gtk/cdaudio.c:107
#, c-format
msgid "Track %d"
msgstr ""

#: src/gtk/cdaudio.c:137
#, fuzzy
msgid "Error in cdaudio."
msgstr "Error en la codificacin."

#: src/gtk/o_interface.c:189
msgid "Sure to delete this output?"
msgstr "Seguro que de sea eliminar esta salida?"

#: src/gtk/o_interface.c:252
#, fuzzy, c-format
msgid "%sICECAST streaming server %ld Kbytes - %s"
msgstr "Servidor de transmisin por red ICECAST %ld kbytes - %s"

#: src/gtk/o_interface.c:258
#, fuzzy, c-format
msgid "%sICECAST streaming server: http://%s:%d/%s %ld Kbytes - %s"
msgstr ""
"Servidor de transmisin por red ICECAST: http://%s:%d/%s %ld Kkbytes - %s"

#: src/gtk/o_interface.c:273
#, fuzzy, c-format
msgid "%sICECAST2 streaming server %ld Kbytes - %s"
msgstr "Servidor de transmisin por red ICECAST2 %ld kbytes - %s"

#: src/gtk/o_interface.c:279
#, fuzzy, c-format
msgid "%sICECAST2 streaming server: http://%s:%d/%s %ld Kbytes - %s"
msgstr ""
"Servidor de transmisin por red ICECAST2: http://%s:%d/%s %ld kbytes - %s"

#: src/gtk/o_interface.c:294
#, fuzzy, c-format
msgid "%sSHOUTCAST streaming server %ld Kbytes - %s"
msgstr "Servidor de transmisin por red SHOUTCAST %ld kbytes - %s"

#: src/gtk/o_interface.c:300
#, fuzzy, c-format
msgid "%sSHOUTCAST streaming server: http://%s:%d/%s %ld Kbytes - %s"
msgstr ""
"Servidor de transmisin por red SHOUTCAST: http://%s:%d/%s %ld kbytes - %s"

#: src/gtk/o_interface.c:315
#, fuzzy, c-format
msgid "%sEncode Mp3 file %ld Kbytes - %s"
msgstr "Codificar fichero MP3 %ld kbytes - %s"

#: src/gtk/o_interface.c:320
#, fuzzy, c-format
msgid "%sEconde Mp3 output file %s %ld Kbytes - %s"
msgstr "Codificar fichero de salida MP3 %s %ld kbytes - %s"

#: src/gtk/o_interface.c:335
#, fuzzy, c-format
msgid "%sEncode Ogg/Vorbis file %ld Kbytes - %s"
msgstr "Codificar fichero Ogg/Vorbis %ld kbytes - %s"

#: src/gtk/o_interface.c:340
#, fuzzy, c-format
msgid "%sEconde Ogg/Vorbis output file %s %ld Kbytes - %s"
msgstr "Codificar fichero de salida Ogg/Vorbis %s %ld kbytes - %s"

#: src/gtk/o_interface.c:351
#, fuzzy, c-format
msgid "%sSoma Distirbuited Sound %ld Kbytes - %s"
msgstr "Soma Daemon Sound %ld kbytes - %s"

#: src/gtk/o_interface.c:356
#, fuzzy, c-format
msgid "%sSoma Distribuited Sound %s %ld Kbytes - %s"
msgstr "Soma Daemon Sound %s %ld kbytes - %s"

#: src/gtk/o_interface.c:365
#, fuzzy, c-format
msgid "%sESD output %ld Kbytes - %s"
msgstr "Salida ESD %ld kbytes - %s"

#: src/gtk/o_interface.c:370
#, fuzzy, c-format
msgid "%sARTS output %ld Kbytes - %s"
msgstr "Salida ARTS %ld kbytes - %s"

#: src/gtk/o_interface.c:375
#, fuzzy, c-format
msgid "%sSUN output %ld Kbytes - %s"
msgstr "Salida SUN %ld kbytes - %s"

#: src/gtk/o_interface.c:380
#, fuzzy, c-format
msgid "%sAudio Interface %ld Kbytes - %s"
msgstr "Interfaz de audio %ld kbytes - %s"

#: src/gtk/o_interface.c:385
#, fuzzy, c-format
msgid "%sOSS output %ld Kbytes - %s"
msgstr "Salida OSS %ld kbytes - %s"

#: src/gtk/o_interface.c:390
#, fuzzy, c-format
msgid "%sALSA v0.9 output %ld Kbytes - %s"
msgstr "Salida ALSA 0.9 %ld kbytes - %s"

#: src/gtk/o_interface.c:395
#, fuzzy, c-format
msgid "%sALSA output %ld Kbytes - %s"
msgstr "Salida ALSA %ld kbytes - %s"

#: src/gtk/o_interface.c:400
#, fuzzy, c-format
msgid "%sSTDOUT output %ld Kbytes - %s"
msgstr "Salida STDOUT %ld kbytes - %s"

#: src/gtk/o_interface.c:405
#, fuzzy, c-format
msgid "%sNULL output %ld Kbytes - %s"
msgstr "Salida NULA %ld kbytes - %s"

#: src/gtk/o_interface.c:413
#, fuzzy, c-format
msgid "%sWAV output: %s %ld Kbytes - %s"
msgstr "Salida WAV: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:419
#, fuzzy, c-format
msgid "%sAIFF output: %s %ld Kbytes - %s"
msgstr "Salida AIFF: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:425
#, fuzzy, c-format
msgid "%sAU output: %s %ld Kbytes - %s"
msgstr "Salida AU: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:431
#, fuzzy, c-format
msgid "%sRAW output: %s %ld Kbytes - %s"
msgstr "Salida EN BRUTO: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:437
#, fuzzy, c-format
msgid "%sPAF output: %s %ld Kbytes - %s"
msgstr "Salida PAF: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:443
#, fuzzy, c-format
msgid "%sSVX output: %s %ld Kbytes - %s"
msgstr "Salida SVX: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:449
#, fuzzy, c-format
msgid "%sNIST output: %s %ld Kbytes - %s"
msgstr "Salida NIST: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:455
#, fuzzy, c-format
msgid "%sVOC output: %s %ld Kbytes - %s"
msgstr "Salida VOC: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:461
#, fuzzy, c-format
msgid "%sIRCAM output: %s %ld Kbytes - %s"
msgstr "Salida IRCAM: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:467
#, fuzzy, c-format
msgid "%sW64 output: %s %ld Kbytes - %s"
msgstr "Salida W64: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:473
#, fuzzy, c-format
msgid "%sMAT4 output: %s %ld Kbytes - %s"
msgstr "Salida MAT4: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:479
#, fuzzy, c-format
msgid "%sMAT5 output: %s %ld Kbytes - %s"
msgstr "Salida MAT5: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:485
#, fuzzy, c-format
msgid "%sPVF output: %s %ld Kbytes - %s"
msgstr "Salida PVF: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:491
#, fuzzy, c-format
msgid "%sXI output: %s %ld Kbytes - %s"
msgstr "Salida XI: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:497
#, fuzzy, c-format
msgid "%sHTK output: %s %ld Kbytes - %s"
msgstr "Salida HTK: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:504
#, fuzzy, c-format
msgid "%sMIDI output: %s %ld Kbytes - %s"
msgstr "Salida MIDI: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:512
#, fuzzy, c-format
msgid "%sAVR output: %s %ld Kbytes - %s"
msgstr "Salida AVR: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:520
#, fuzzy, c-format
msgid "%sWAVEX output: %s %ld Kbytes - %s"
msgstr "Salida WAVEX: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:529
#, fuzzy, c-format
msgid "%sMONITOR output: %s %ld Kbytes - %s"
msgstr "Salida NIST: %s %ld kbytes - %s"

#: src/gtk/o_interface.c:535
#, c-format
msgid "Audio output"
msgstr "Salida de audio"

#: src/gtk/o_interface.c:606
msgid "Show"
msgstr ""

#: src/gtk/o_interface.c:613
msgid "Stop/Start"
msgstr ""

#: src/gtk/o_interface.c:662
msgid "audio"
msgstr "audio"

#: src/gtk/o_interface.c:779
msgid "Outputs"
msgstr "Salidas"

#: src/gtk/o_interface.c:845
#, c-format
msgid "%s %s - Output Window"
msgstr "%s %s - Ventana de salida"

#: src/gtk/o_interface.c:878
msgid "Add Output"
msgstr "Aadir salida"

#: src/gtk/o_interface.c:898
msgid "Remove Output"
msgstr "Eliminar salida"

#: src/gtk/o_interface.c:923
msgid "Show Description"
msgstr "Mostrar descripcin"

#: src/gtk/o_interface.c:946
msgid "Stop/Start Output"
msgstr ""

#: src/gtk/main.c:131 src/config.c:62
msgid "I can't know your home. Set the enviroment!"
msgstr ""

#: src/gtk/main.c:153 src/gtk/main.c:168 src/gtk/main.c:181
#, fuzzy
msgid "Error open config file."
msgstr "Error de apertura del fichero de configuracin %s"

#: src/gtk/timeout.c:134
msgid "Pause"
msgstr "Pausa"

#: src/gtk/timeout.c:144
msgid "SomaPlayer starting..."
msgstr "Iniciando SomaPlayer..."

#: src/gtk/timeout.c:213
#, c-format
msgid "%d output%s "
msgstr "%d salida%s "

#: src/gtk/timeout.c:220
msgid " - stop"
msgstr " - detener"

#: src/gtk/timeout.c:223
msgid " - pause"
msgstr " - pausa"

#: src/gtk/timeout.c:226
msgid " - skip"
msgstr " - omitir"

#: src/gtk/timeout.c:229
msgid " - playing"
msgstr " - reproduccin"

#: src/gtk/o_monitor_show.c:51
#, fuzzy
msgid "SomaPlayer - Monitor configuration"
msgstr "SomaPlayer - Configuracin de audio"

#: src/gtk/o_monitor_show.c:71
msgid "Monitor file descriptor"
msgstr ""

#: src/gtk/tools.c:59
#, c-format
msgid "%s %s - Silence Trimming Window"
msgstr ""

#: src/gtk/tools.c:168
#, fuzzy
msgid "SomaPlayer - Admin Interface"
msgstr "SomaPlayer - Configuracin de audio"

#: src/gtk/tools.c:230
msgid "Interface: "
msgstr ""

#: src/input/mp3/id3.c:47
#, c-format
msgid "* Read id3 info: %s\n"
msgstr "* Lectura de informacin id3: %s\n"

#: src/input/mp3/id3.c:50
#, c-format
msgid "\tTitle: %s\n"
msgstr "\tTtulo: %s\n"

#: src/input/mp3/id3.c:56
#, c-format
msgid "\tArtist: %s\n"
msgstr "\tArtista %s\n"

#: src/input/mp3/id3.c:62
#, c-format
msgid "\tAlbum: %s\n"
msgstr "\tlbum: %s\n"

#: src/input/mp3/id3.c:68
#, c-format
msgid "\tYear: %s\n"
msgstr "\tAo: %s\n"

#: src/input/mp3/id3.c:74
#, c-format
msgid "\tComment: %s\n"
msgstr "\tComentario: %s\n"

#: src/input/mp3/id3.c:80
#, c-format
msgid "\tGenre: %s\n"
msgstr "\tGnero: %s\n"

#: src/input/mp3/mad.c:105
#, c-format
msgid "\tLayer %s - %d Hz - %ld kbit/s - %s\n"
msgstr "\tCapa %s - %d Hz - %ld kbit/s - %s\n"

#: src/input/mp3/mad.c:109
#, c-format
msgid "\tChannels %d - Copyright %s - Original %s - Protection %s\n"
msgstr "\tCanales %d - Copyright %s - Original %s - Proteccin %s\n"

#: src/input/mp3/mad.c:116
#, fuzzy, c-format
msgid ""
"\tMode Extension %d - BPF %ld - Enphasis %d - Extension %d\n"
"\n"
msgstr "\tExtensin de modo %d - BPF %ld - nfasis %d - Extensin %d\n"

#: src/input/mp3/mad.c:122 src/input/cdaudio/cdaudio.c:100
#: src/input/mic/mic.c:154 src/input/ogg/ogg.c:167
#: src/input/sndfile/sndfile.c:74
#, fuzzy, c-format
msgid "Play file audio: %s\n"
msgstr ""
"\n"
"* Reproducir fichero de audio:\n"

#: src/input/mp3/mad.c:139
msgid "Single-Channel"
msgstr "Canal nico"

#: src/input/mp3/mad.c:141
msgid "Dual-Channel"
msgstr "Canal dual"

#: src/input/mp3/mad.c:143
msgid "Joint-Stereo"
msgstr "Estreo unido"

#: src/input/mp3/mad.c:145
msgid "Stereo"
msgstr "Estreo"

#: src/input/mp3/mad.c:147 src/input/mp3/mad.c:164
msgid "Unknow"
msgstr "Desconocido"

#: src/input/mp3/mad.c:190
#, c-format
msgid "No support channels > 2."
msgstr "No hay soporte para canales > 2."

#: src/input/cdaudio/cdaudio.c:70 src/input/cdaudio/cdaudio.c:77
msgid "Cdaudio error."
msgstr "Error de cdaudio."

#: src/input/cdaudio/cdaudio.c:85
#, c-format
msgid "Read: Track %d of %d; Frames %d to %d"
msgstr "Lectura: Pista %d de %d; Fotogramas %d a %d"

#: src/input/cdaudio/cdaudio.c:96 src/input/ogg/ogg.c:144
#: src/input/sndfile/sndfile.c:70
msgid "No > 2 channels."
msgstr "No > 2 canales"

#: src/input/cdaudio/cdaudio.c:110 src/player.c:188
msgid "Mutex error."
msgstr "Error de mutex."

#: src/input/cdaudio/cdaudio.c:143
#, c-format
msgid ""
"* Buffering: %4d/%d frames \n"
"\n"
msgstr ""
"* Estado del bfer: %4d/%d fotogramas \n"
"\n"

#: src/input/cdaudio/cdaudio.c:148 src/input/cdaudio/cdaudio.c:167
#, c-format
msgid "Buffering: %4d/%d frames"
msgstr "Estado del bfer: %4d/%d fotogramas"

#: src/input/cdaudio/cdaudio.c:162
#, c-format
msgid "* Buffering: %4d/%d frames \r"
msgstr "* Estado del bfer: %4d/%d fotogramas \r"

#: src/input/mic/config.c:51
msgid "No mic config file."
msgstr "No hay ningn fichero de configuracin de micrfono."

#: src/input/mic/config.c:53
msgid "Error of parsing mic file."
msgstr "Error al analizar el fichero del micrfono."

#: src/input/mic/config.c:58
msgid "Read mic config file."
msgstr "Lectura del fichero de configuracin del micrfono."

#: src/input/mic/mic.c:79
msgid "DSP bitrate must be 8 or 16!"
msgstr ""

#: src/input/mic/mic.c:92
msgid "Compile with devdsp support!"
msgstr "Compile con soporte para devdsp."

#: src/input/mic/mic.c:98
msgid "Device DSP open error."
msgstr "Error de apertura del dispositivo DSP."

#: src/input/mic/mic.c:106
msgid "Set bitrate in DSP error."
msgstr "Establecer la tasa de bits en el error DSP."

#: src/input/mic/mic.c:118
msgid "Set channels in DSP error."
msgstr "Establecer los canales en el error DSP."

#: src/input/mic/mic.c:125
msgid "Set rate in DSP error."
msgstr "Establecer la tasa de bits en el error DSP."

#: src/input/mic/mic.c:138
msgid "Fragment size on DSP dropped to zero... mmm..."
msgstr "El tamao del fragmento en DSP cay a cero... mmmh..."

#: src/input/mic/mic.c:143
msgid "Getblksize from DSP error."
msgstr "Getblksize del error DSP."

#: src/input/mic/mic.c:151
#, c-format
msgid ""
"Info Mic Audio:\n"
"\tMic %d Hz - Channels %d - Bitrate %d"
msgstr ""
"Informacin de audio del micrfono:\n"
"\tMic %d Hz - Canales %d - Tasa de bits %d"

#: src/input/mic/mic.c:169
msgid "Read from device DSP error."
msgstr "Error de lectura desde el dispositivo DSP."

#: src/input/mic/mic.c:237
msgid "Mic file config error."
msgstr "Error de configuracin del fichero del micrfono."

#: src/input/mic/mic.c:258 src/input/mic/mic.c:272 src/input/mic/mic.c:286
#: src/input/mic/mic.c:292
#, c-format
msgid "Error in mic parameter: %s"
msgstr "Error en parmetro del micrfono: %s"

#: src/input/ogg/ogg.c:132
msgid "Error ogg init."
msgstr "Error inicializacin ogg."

#: src/input/ogg/ogg.c:148
#, c-format
msgid ""
"\n"
"* Info File Audio:\n"
msgstr ""
"\n"
"* Informacin del fichero de audio:\n"

#: src/input/ogg/ogg.c:159
#, c-format
msgid "\tLayer %d - %ld Hz - Channels %d\n"
msgstr "\tCapa %d - %ld Hz - Canales %d\n"

#: src/input/ogg/ogg.c:162
#, c-format
msgid "\tBitrate hints: upper %ld - nominal %ld - lower %ld - window %ld\n"
msgstr ""
"\tConsejos de tasa de bits: mayor %ld - nominal %ld - menor %ld - ventana %"
"ld\n"

#: src/input/ogg/ogg.c:165
#, c-format
msgid "\tEncoder %s\n"
msgstr "\tCodificador %s\n"

#: src/input/sndfile/sndfile.c:64
msgid "Open file error."
msgstr "Error de apertura de fichero."

#: src/input/daemon/daemon.c:70
#, fuzzy
msgid "Write error."
msgstr "Error de escucha (Listen)"

#: src/input/daemon/daemon.c:75
#, c-format
msgid ""
"Info SdS Input:\n"
"\tType: %s\n"
"\tServer %s\n"
"\tPort %d\n"
msgstr ""

#: src/input/daemon/daemon.c:99 src/input/daemon/daemon.c:109
#, fuzzy
msgid "Read from SdS error."
msgstr "Error de lectura desde el dispositivo DSP."

#: src/config.c:73 src/config.c:79 src/config.c:90
#, c-format
msgid "No config file: %s"
msgstr "No existe el fichero de configuracin: %s"

#: src/config.c:95
#, c-format
msgid "Error of parsing file: %s"
msgstr "Error al analizar el fichero: %s"

#: src/config.c:101
#, c-format
msgid "Read config file: %s"
msgstr "Lectura del fichero de configuracin: %s"

#: src/config.c:163
#, fuzzy, c-format
msgid "Error: mkdir %s"
msgstr "Error: memoria."

#: src/config.c:170
#, c-format
msgid "Error: open config file %s"
msgstr "Error de apertura del fichero de configuracin %s"

#: src/buffer.c:63
#, c-format
msgid "* Buffering: %d kbyte %3d%%\r"
msgstr "* Estado del bfer: %d kbytes %3d%%\r"

#: src/buffer.c:68 src/buffer.c:90
#, c-format
msgid "Buffering: %d kbyte %3d%%"
msgstr "Estado del bfer: %d kbyte %3d%%"

#: src/buffer.c:85
#, c-format
msgid "* Buffering: %d kbyte %3d%%\n"
msgstr "* Estado del bfer: %d kbyte %3d%%\n"

#: src/buffer.c:423
#, c-format
msgid "Error in byte string %s"
msgstr "Error en la cadena byte %s"

#: src/gdaemon/crossfade_v.c:159
msgid "SdS - crossfade volume"
msgstr "SdS - crossfade del volumen"

#: src/gdaemon/crossfade_v.c:169 src/gdaemon/crossfade_b.c:173
#: src/gdaemon/autofader.c:101
msgid "_Active"
msgstr "_Activo"

#: src/gdaemon/gstatus.c:161
msgid "SdS - status input"
msgstr ""

#: src/gdaemon/main.c:125
msgid "Close the somaplayer client before!"
msgstr "Cierre antes el cliente somaplayer."

#: src/gdaemon/main.c:176 src/gdaemon/main.c:443
msgid "SdS Mixer"
msgstr "Mezclador SdS"

#: src/gdaemon/main.c:202
#, fuzzy
msgid "_Show Outputs"
msgstr "Salidas"

#: src/gdaemon/main.c:209
#, fuzzy
msgid "_Add Output"
msgstr "Aadir salida"

#: src/gdaemon/main.c:293
msgid "_Run a SomaPlayer"
msgstr "Lanza_r un SomaPlayer"

#: src/gdaemon/main.c:307
msgid "Show _Status input"
msgstr ""

#: src/gdaemon/main.c:321
msgid "Show _Crossfade Volume"
msgstr "Mostrar el _crossfade del volumen"

#: src/gdaemon/main.c:330
msgid "Show _Crossfade Balance"
msgstr "Mostrar el _crossfade del balance"

#: src/gdaemon/main.c:338
msgid "Show _Autofader"
msgstr ""

#: src/gdaemon/main.c:346
msgid "_About"
msgstr "_Acerca de"

#: src/gdaemon/main.c:368
msgid "General"
msgstr "General"

#: src/gdaemon/main.c:376 src/gdaemon/mix.c:145
msgid "Mute"
msgstr "Silencio"

#: src/gdaemon/main.c:395 src/gdaemon/mix.c:164
msgid "Volume"
msgstr "Volumen"

#: src/gdaemon/main.c:402 src/gdaemon/mix.c:171
msgid "Balance"
msgstr "Balance"

#: src/gdaemon/crossfade_b.c:163
msgid "SdS - crossfade balance"
msgstr "SdS - crossfade del balance"

#: src/gdaemon/volumes.c:113
msgid "General mute activate."
msgstr "Silencio general activado."

#: src/gdaemon/volumes.c:119
msgid "General mute deactivate."
msgstr "Silencio general desactivado."

#: src/gdaemon/volumes.c:129
msgid "One mute activate."
msgstr "Un silencio activado."

#: src/gdaemon/volumes.c:135
msgid "One mute deactivate."
msgstr "Un silencio desactivado."

#: src/gdaemon/volumes.c:154
msgid "Solo activate."
msgstr "Solo activado."

#: src/gdaemon/volumes.c:168
msgid "Solo deactivate."
msgstr "Solo desactivado."

#: src/gdaemon/player.c:77
msgid "SomaPlayer not found."
msgstr "SomaPlayer no encontrado."

#: src/gdaemon/player.c:138 src/gdaemon/mix.c:390
msgid "Fork error."
msgstr "Error de bifurcacin."

#: src/gdaemon/mix.c:124
#, fuzzy
msgid "Admin"
msgstr "audio"

#: src/gdaemon/mix.c:131
msgid "Kill"
msgstr ""

#: src/gdaemon/mix.c:133
msgid "Close"
msgstr ""

#: src/gdaemon/mix.c:139
msgid "Solo"
msgstr "Solo"

#: src/gdaemon/mix.c:195
msgid "CVU"
msgstr "CVU"

#: src/gdaemon/mix.c:196
msgid "Crossfade Volume Up"
msgstr "Subir el crossfade del volumen"

#: src/gdaemon/mix.c:203
msgid "CVD"
msgstr "CVD"

#: src/gdaemon/mix.c:204
msgid "Crossfade Volume Down"
msgstr "Bajar el crossfade del volumen"

#: src/gdaemon/mix.c:212
msgid "CBU"
msgstr "CBU"

#: src/gdaemon/mix.c:213
msgid "Crossfade Balance Up"
msgstr "Subir el crossfade del balance"

#: src/gdaemon/mix.c:220
msgid "CBD"
msgstr "CBD"

#: src/gdaemon/mix.c:221
msgid "Crossfade Balance Down"
msgstr "Bajar el crossfade del balance"

#: src/gdaemon/mix.c:229
msgid "AF"
msgstr ""

#: src/gdaemon/mix.c:230
msgid "Auto Fader"
msgstr ""

#: src/gdaemon/mix.c:371
#, fuzzy
msgid "SomaPlayer_Controller not found."
msgstr "SomaPlayer no encontrado."

#: src/gdaemon/mix.c:385
#, fuzzy, c-format
msgid "Exec somaplayer_controller %s"
msgstr "SomaPlayer no encontrado."

#: src/gdaemon/autofader.c:91
msgid "SdS - autofader"
msgstr ""

#: src/other.c:189
#, c-format
msgid "-ao or --audiooutput   output audio:\n"
msgstr "-ao o --audiooutput   audio de salida:\n"

#: src/other.c:191
#, c-format
msgid ""
"\n"
"Card / Daemon / Device / Dsp\n"
msgstr ""
"\n"
"Tarjeta / Daemon / Dispositivo / Dsp\n"

#: src/other.c:194
#, fuzzy, c-format
msgid "         audio           Try to search your audio interface\n"
msgstr "         audio         Intenta buscar su interfaz de audio\n"

#: src/other.c:195
#, fuzzy, c-format
msgid "         oss             Open Sound System\n"
msgstr "         oss           Open Sound System\n"

#: src/other.c:197
#, fuzzy, c-format
msgid "         alsa            Advanced Linux Sound Architecture\n"
msgstr "         alsa          Advanced Linux Sound Architecture\n"

#: src/other.c:200
#, fuzzy, c-format
msgid "         alsa09          Advanced Linux Sound Architecture v 0.9.x\n"
msgstr "         alsa09        Advanced Linux Sound Architecture v 0.9.x\n"

#: src/other.c:201
#, fuzzy, c-format
msgid "         esd             Enlightened Sound Daemon\n"
msgstr "         esd           Daemon de sonido Enlightened\n"

#: src/other.c:202
#, fuzzy, c-format
msgid "         arts            Arts Sound Server\n"
msgstr "         arts          Servidor de sonido Arts\n"

#: src/other.c:203
#, fuzzy, c-format
msgid "         sun             Sun Audio\n"
msgstr "         sun           Sun Audio\n"

#: src/other.c:204
#, fuzzy, c-format
msgid "         irix            IRIX Audio\n"
msgstr "         irix          IRIX Audio\n"

#: src/other.c:205
#, fuzzy, c-format
msgid "         null            Null Device\n"
msgstr "         null          Dispositivo nulo\n"

#: src/other.c:206
#, fuzzy, c-format
msgid "         output          Write on Standard Output\n"
msgstr "         output        Escribir en la salida estndar\n"

#: src/other.c:210
#, c-format
msgid ""
"\n"
"File Types 1-1\n"
msgstr ""
"\n"
"Tipos de fichero 1-1\n"

#: src/other.c:213
#, fuzzy, c-format
msgid "         wav             Microsoft WAV format (little endian)\n"
msgstr "         wav           Formato WAV de Microsoft (little endian)\n"

#: src/other.c:216
#, fuzzy, c-format
msgid "         aiff            Apple/SGI AIFF format (big endian)\n"
msgstr "         aiff          Formato AIFF de Apple/SGI (big endian)\n"

#: src/other.c:219
#, fuzzy, c-format
msgid "         au              Sun/NeXT AU file format (big endian)\n"
msgstr ""
"         au            Formato de fichero AU de Sun/NeXT (big endian)\n"

#: src/other.c:220
#, fuzzy, c-format
msgid "         raw             Raw PCM data\n"
msgstr "         raw           Datos PCM en bruto\n"

#: src/other.c:221
#, fuzzy, c-format
msgid "         paf             Ensoniq PARIS file format\n"
msgstr "         paf           Formato de fichero PARIS de Ensoniq\n"

#: src/other.c:223
#, fuzzy, c-format
msgid "         svx             Amiga IFF / SVX8 / SV16 format\n"
msgstr "         svx           Formato IFF / SVX8 / SV16 de Amiga\n"

#: src/other.c:224
#, fuzzy, c-format
msgid "         nist            Sphere NIST format\n"
msgstr "         nist          Formato NIST de Sphere\n"

#: src/other.c:225
#, fuzzy, c-format
msgid "         voc             Voc files\n"
msgstr "         voc           Ficheros Voc\n"

#: src/other.c:226
#, fuzzy, c-format
msgid "         ircam           Berkeley/IRCAM/CARL\n"
msgstr "         ircam         Berkeley/IRCAM/CARL\n"

#: src/other.c:228
#, fuzzy, c-format
msgid "         w64             Sonic Foundry's 64 bit RIFF/WAV\n"
msgstr "         w64           RIFF/WAV a 64 bits de Sonic Foundry\n"

#: src/other.c:230
#, fuzzy, c-format
msgid "         mat4            Matlab (tm) V4.2 / GNU Octave 2.0\n"
msgstr "         mat4          Matlab (tm) V4.2 / GNU Octave 2.0\n"

#: src/other.c:232
#, fuzzy, c-format
msgid "         mat5            Matlab (tm) V5.0 / GNU Octave 2.1\n"
msgstr "         mat5          Matlab (tm) V5.0 / GNU Octave 2.1\n"

#: src/other.c:233
#, fuzzy, c-format
msgid "         pvf             Portable Voice Format\n"
msgstr "         pvf           Formato de voz portable\n"

#: src/other.c:235
#, fuzzy, c-format
msgid "         xi              Fasttracker 2 Extended Instrument\n"
msgstr "         xi            Instrumento extendido Fasttracker 2\n"

#: src/other.c:236
#, fuzzy, c-format
msgid "         htk             HMM Tool Kit format\n"
msgstr "         htk           Formato HMM Tool Kit\n"

#: src/other.c:238
#, fuzzy, c-format
msgid "         midi            Midi Sample Dump Standard\n"
msgstr "         midi          Volcado de muestreo Midi estndar\n"

#: src/other.c:242
#, fuzzy, c-format
msgid "         avr             Audio Visual Research\n"
msgstr "         avr           Audio Visual Research\n"

#: src/other.c:246
#, fuzzy, c-format
msgid "         wavex           MS WAVE with WAVEFORMATEX\n"
msgstr "         wavex         MS WAVE con WAVEFORMATEX\n"

#: src/other.c:252
#, c-format
msgid ""
"\n"
"Streaming Server\n"
msgstr ""
"\n"
"Servidor de retransmisin por red\n"

#: src/other.c:254
#, fuzzy, c-format
msgid "         icecast         Icecast Streaming Server\n"
msgstr "         icecast       Servidor de retransmisin por red Icecast\n"

#: src/other.c:258
#, fuzzy, c-format
msgid "         icecast2        Icecast2 Streaming Server\n"
msgstr "         icecast2      Servidor de retransmisin Icecast2\n"

#: src/other.c:263
#, fuzzy, c-format
msgid "         shoutcast       Shoutcast Streaming Server\n"
msgstr "         shoutcast     Servidor de retransmisin Shoutcast\n"

#: src/other.c:267
#, c-format
msgid ""
"\n"
"Other\n"
msgstr ""
"\n"
"Otro\n"

#: src/other.c:269
#, fuzzy, c-format
msgid "         lame            Encode Mp3 File\n"
msgstr "         lame          Codificar fichero MP3\n"

#: src/other.c:273
#, fuzzy, c-format
msgid "         vorbis          Encode Ogg File\n"
msgstr "         vorbis        Codificar fichero Ogg\n"

#: src/other.c:278
#, fuzzy, c-format
msgid "         sds             Soma Didstribuited Sound Server\n"
msgstr "         sds           Servidor Soma Daemon Sound\n"

#: src/other.c:285
#, fuzzy, c-format
msgid ""
"-ad  or --audiodevice    [options] options for output audio. Read man page.\n"
msgstr ""
"-ad o --audiodevice   [opciones] opciones de la salida de audio. Lea la "
"pgina de manual.\n"

#: src/other.c:286
#, fuzzy, c-format
msgid "-no  or --nooutput       no audio output\n"
msgstr "-nv o --noverbose     sin salida prolija\n"

#: src/other.c:288
#, fuzzy, c-format
msgid "-nr  or --norealtime     no output realtime control\n"
msgstr "-r o --repeat         repetir su lista de reproduccin\n"

#: src/other.c:291
#, c-format
msgid ""
"-so  or --splitoutput    stop and start the single outputs when change the "
"song\n"
msgstr ""

#: src/other.c:294
#, c-format
msgid "-tf  or --timeforced     play with correct time.\n"
msgstr ""

#: src/other.c:297
#, c-format
msgid ""
"-blt or --badlist_timer  how many seconds between one retry and the next "
"one\n"
"                         [greater then 0] default %d\n"
msgstr ""

#: src/other.c:302
#, c-format
msgid ""
"-blmr  or --badlist_max_retry how many retry for output problems\n"
"                              [-1 always | 0 disactivated] default %d\n"
msgstr ""

#: src/other.c:306
#, fuzzy, c-format
msgid "-cd  or --cdromdevice    [your cdaudio device]"
msgstr "-cd o --cdromdevice   [su dispositivo cdaudio]"

#: src/other.c:316
#, fuzzy, c-format
msgid "-dsp or --devicedsp      [your dsp device]"
msgstr "-dsp o --devicedsp    [su dispositivo dsp]"

#: src/other.c:326
#, fuzzy, c-format
msgid "-z   or --random         active random playing\n"
msgstr "-z o --random         reproduccin aleatoria activa\n"

#: src/other.c:327
#, fuzzy, c-format
msgid "-r   or --repeat         repeat your playlist\n"
msgstr "-r o --repeat         repetir su lista de reproduccin\n"

#: src/other.c:329
#, fuzzy, c-format
msgid "-g   or --graphic        active the gtk interface\n"
msgstr "-g o --graphic        activar la interfaz gtk\n"

#: src/other.c:333
#, fuzzy, c-format
msgid "-nb  or --nobuffer       no buffering [dangerous for streaming files]\n"
msgstr ""
"-nb o --nobuffer      sin bfer [peligroso para retransmitir ficheros]\n"

#: src/other.c:335
#, fuzzy, c-format
msgid "-b   or --buffer         [size of buffer] default %d kbyte\n"
msgstr "-b o --buffer         [tamao del bfer] predeterminado %d kbyte\n"

#: src/other.c:337
#, fuzzy, c-format
msgid "-nv  or --noverbose      no verbose output\n"
msgstr "-nv o --noverbose     sin salida prolija\n"

#: src/other.c:338
#, fuzzy, c-format
msgid "-v   or --volume         [volume 0-100]\n"
msgstr "-v o --volume         [volumen 0-100]\n"

#: src/other.c:340
#, fuzzy, c-format
msgid "-m   or --mic            input mic or line-in\n"
msgstr "-m o --mic            microfono de entrada o line-in\n"

#: src/other.c:345
#, c-format
msgid "-s   or --sds            [protocol[://server[:port]]] input sds\n"
msgstr ""

#: src/other.c:347
#, fuzzy, c-format
msgid "-d   or --daemon         active SdS\n"
msgstr "-d o --daemon         activar SdS\n"

#: src/other.c:350
#, c-format
msgid ""
"-a   or --admin          active unix/tcp socket controller. Read man page.\n"
msgstr ""

#: src/other.c:351
#, fuzzy, c-format
msgid ""
"-h   or --help           this help.\n"
"\n"
msgstr ""
"-h  or --help          esta ayuda.\n"
"\n"

#: src/output/ao/ao.c:57
#, c-format
msgid ""
"Audio Device:\n"
"\tType: %s\n"
"\tAuthor: %s\n"
"\tComments: %s\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: %s\n"
"\tAutor: %s\n"
"\tComentarios: %s\n"

#: src/output/ao/ao.c:84
msgid "Error opening NULL driver."
msgstr "Error al abrirl el controlador NULO."

#: src/output/ao/ao.c:99
msgid "Error opening stdout."
msgstr "Error al abrir la salida estndar."

#: src/output/ao/ao.c:122 src/output/ao/ao.c:210
msgid "Error opening OSS device."
msgstr "Error al abrir el dispositivo OSS."

#: src/output/ao/ao.c:148
msgid "Error format ALSA card: device specifiction."
msgstr "Error al formatear la tarjeta ALSA: especificacin de dispositivo."

#: src/output/ao/ao.c:162
#, fuzzy
msgid "Error opening ALSA device."
msgstr "Error al abrirl el dispositivo ALSA."

#: src/output/ao/ao.c:186
#, fuzzy
msgid "Error opening ALSA09 device."
msgstr "Error al abrir el dispositivo ALSA 0.9."

#: src/output/ao/ao.c:234
msgid "Error opening SUN device."
msgstr "Error al abrir el dispositivo SUN."

#: src/output/ao/ao.c:258
msgid "Error opening ESD device."
msgstr "Error al abrir el dispositivo ESD."

#: src/output/ao/ao.c:279
msgid "Error opening ARTS device."
msgstr "Error al abrir el dispositivo ARTS."

#: src/output/ao/ao.c:291
msgid "Error opening audio device."
msgstr "Error al abrir el dispositivo de audio."

#: src/output/daemon/daemon.c:69
#, fuzzy
msgid ""
"Audio Device:\n"
"\tType: Soma Distribuited Sound\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: SomaPlayer Daemon Sound\n"

#: src/output/daemon/daemon.c:89
#, fuzzy, c-format
msgid ""
"Connect to play:\n"
"\tType %s\n"
"\tServer %s\n"
"\tPort %d\n"
"\tProtocol Somaplayer Distributed Sound"
msgstr ""
"Conectarse para reproducir:\n"
"\tServidor %s\n"
"\tPuerto %d\n"
"\tProtocolo Somaplayer Daemon Sound"

#: src/output/daemon/daemon.c:104
msgid "Server error."
msgstr "Error del servidor."

#: src/output/vorbis/vorbis.c:54
msgid "Vorbis init error."
msgstr "Error de inicializacin de Vorbis."

#: src/output/vorbis/vorbis.c:88 src/output/vorbis/vorbis.c:121
#: src/output/vorbis/vorbis.c:140 src/output/vorbis/vorbis.c:159
#: src/output/vorbis/vorbis.c:178 src/output/vorbis/vorbis.c:195
#: src/output/vorbis/vorbis.c:213 src/output/vorbis/vorbis.c:222
#: src/output/streaming/streaming.c:376 src/output/streaming/streaming.c:393
#: src/output/streaming/streaming.c:426 src/output/streaming/streaming.c:461
#: src/output/streaming/streaming.c:480 src/output/streaming/streaming.c:499
#: src/output/streaming/streaming.c:525 src/output/streaming/streaming.c:544
#: src/output/streaming/streaming.c:563 src/output/streaming/streaming.c:582
#: src/output/streaming/streaming.c:615 src/output/streaming/streaming.c:632
#: src/output/streaming/streaming.c:650 src/output/streaming/streaming.c:708
#: src/output/streaming/streaming.c:731 src/output/streaming/streaming.c:741
#: src/output/streaming/streaming.c:760 src/output/streaming/streaming.c:769
#: src/output/lame/lame.c:85 src/output/lame/lame.c:118
#: src/output/lame/lame.c:137 src/output/lame/lame.c:156
#: src/output/lame/lame.c:175 src/output/lame/lame.c:192
#: src/output/lame/lame.c:210 src/output/lame/lame.c:219 src/sock.c:125
#: src/admin.c:95 src/admin.c:110 src/admin.c:125 src/admin.c:140
#: src/admin.c:164 src/admin.c:172
#, c-format
msgid "Error in audiodevice parameter: %s"
msgstr "Error en el parmetro del dispositivo de audio: %s"

#: src/output/vorbis/vorbis.c:113 src/output/streaming/streaming.c:418
#: src/output/lame/lame.c:110
#, c-format
msgid "Error in audiodevice parameter mode: %s"
msgstr "Error en el modo de parmetro de dispositivo de audio: %s"

#: src/output/vorbis/vorbis.c:234
msgid "No file in vorbis config."
msgstr "No hay ningn fichero en la configuracin de Vorbis."

#: src/output/vorbis/vorbis.c:255 src/output/lame/lame.c:258
#, c-format
msgid "Open error: %s."
msgstr "Error de apertura: %s."

#: src/output/vorbis/vorbis.c:323
#, fuzzy, c-format
msgid ""
"Vorbis %d\n"
"\tRate %d\n"
"\tBitrate %d\n"
"\tchannels %d\n"
"\tQuality %d\n"
"\tFile %s\n"
msgstr ""
"Vorbis %d\n"
"\tTasa %d\n"
"\tTasa de bits %d\n"
"\tCalidad %d\n"
"\tFichero %s\n"

#: src/output/vorbis/config.c:60
msgid "No vorbis config file."
msgstr "No hay ningn fichero de configuracin Vorbis."

#: src/output/vorbis/config.c:62
msgid "Error of parsing vorbis file."
msgstr "Error al analizar el fichero vorbis."

#: src/output/vorbis/config.c:67
msgid "Read vorbis config file."
msgstr "Lectura del fichero de configuracin Vorbis."

#: src/output/vorbis/config.c:78
#, fuzzy
msgid "No output file in config file!"
msgstr "No hay ningn fichero de configuracin de retransmisin."

#: src/output/vorbis/common.c:62
msgid "Vorbis quality init error."
msgstr "Error de inicializacin de la calidad Vorbis."

#: src/output/vorbis/common.c:73
msgid "Vorbis bitrate init error."
msgstr "Error de inicializacin de tasa de bits Vorbis."

#: src/output/vorbis/common.c:84 src/output/vorbis/common.c:91
msgid "Vorbis analysis init error"
msgstr "Error de inicializacin de anlisis Vorbis"

#: src/output/vorbis/common.c:98
msgid "Vorbis block init error"
msgstr "Error de inicializacin de bloqueo Vorbis"

#: src/output/vorbis/common.c:105
msgid "Ogg stream init error"
msgstr "Error de inicializacin de retransmisin Ogg"

#: src/output/vorbis/common.c:121
msgid "Vorbis header init error."
msgstr "Error de inicializacin de encabezado Vorbis."

#: src/output/sndfile/sndfile.c:59
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Microsoft WAV format (little endian)\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Formato Microsoft WAV (little endian)\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:65
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Apple/SGI AIFF format (big endian)\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Formato Apple/SGI AIFF (big endian)\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:71
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Sun/NeXT AU file format (big endian)\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Formato Sun/NeXT AU file (big endian)\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:77
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Raw PCM data\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Datos PCM en bruto\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:83
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Ensoniq PARIS file format\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Formato de fichero Ensoniq PARIS\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:89
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Amiga IFF / SVX8 / SV16 format\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Formato Amiga IFF / SVX8 / SV16\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:95
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Sphere NIST format\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Formato Sphere NIST\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:101
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Voc files\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Ficheros Voc\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:107
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Berkeley/IRCAM/CARL\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Berkeley/IRCAM/CARL\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:113
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Sonic Foundry's 64 bit RIFF/WAV\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: RIFF/WAV a 64 bits de Sonic Foundry\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:119
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Matlab (tm) V4.2 / GNU Octave 2.0\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Matlab (tm) V4.2 / GNU Octave 2.0\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:125
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Matlab (tm) V5.0 / GNU Octave 2.1\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Matlab (tm) V5.0 / GNU Octave 2.1\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:131
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Portable Voice Format\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Formato de voz portable\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:137
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Fasttracker 2 Extended Instrument\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Instrumento extendido Fasttracker 2\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:143
#, c-format
msgid ""
"Audio Device:\n"
"\tType: HMM Tool Kit format\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Formato HMM Tool Kit\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:150
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Midi Sample Dump Standard\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Volcado de muestra MIDI estndar\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:158
#, c-format
msgid ""
"Audio Device:\n"
"\tType: Audio Visual Research\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: Audio Visual Research\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:166
#, c-format
msgid ""
"Audio Device:\n"
"\tType: MS WAVE with WAVEFORMATEX\n"
"\tSamplerate %d\n"
"\tChannels %d\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: MS WAVE con WAVEFORMATEX\n"
"\tTasa de muestreo %d\n"
"\tCanales %d\n"

#: src/output/sndfile/sndfile.c:277
#, c-format
msgid "Error opening snd file: %s - %s"
msgstr "Error al abrir el fichero de sonido %s - %s"

#: src/output/streaming/lame.c:42
#, c-format
msgid ""
"Lame %s - %s\n"
"\tRate %d\n"
"\tBitrate %d\n"
"\tQuality %d\n"
"\tServer %s\n"
"\tPort %d\n"
"\tPassword %s\n"
msgstr ""
"Lame %s - %s\n"
"\tTasa %d\n"
"\tTasa de bits %d\n"
"\tCalidad %d\n"
"\tServidor %s\n"
"\tPuerto %d\n"
"\tContrasea %s\n"

#: src/output/streaming/vorbis.c:42
#, c-format
msgid ""
"Ogg/Vorbis %d\n"
"\tRate %d\n"
"\tBitrate %d\n"
"\tQuality %d\n"
"\tServer %s\n"
"\tPort %d\n"
"\tPassword %s\n"
msgstr ""
"Ogg/Vorbis %d\n"
"\tTasa %d\n"
"\tTasa de bits %d\n"
"\tCalidad %d\n"
"\tServidor %s\n"
"\tPuerto %d\n"
"\tContrasea %s\n"

#: src/output/streaming/config.c:82
msgid "No streaming config file."
msgstr "No hay ningn fichero de configuracin de retransmisin."

#: src/output/streaming/config.c:84
msgid "Error of parsing streaming file."
msgstr "Error al analizar el fichero de retransmisin."

#: src/output/streaming/config.c:89
msgid "Read streaming config file."
msgstr "Lectura del fichero de configuracin de retransmisin."

#: src/output/streaming/config.c:102
msgid "No server in streaming config file."
msgstr ""
"No hay ningn servidor en el fichero de configuracin de la retransmisin."

#: src/output/streaming/streaming.c:56
msgid "Connect to streaming server."
msgstr "Conectado al servidor de retransmisin."

#: src/output/streaming/streaming.c:70 src/output/streaming/streaming.c:85
#: src/output/streaming/streaming.c:92 src/output/streaming/streaming.c:99
#: src/output/streaming/streaming.c:977 src/output/streaming/streaming.c:992
#: src/output/streaming/streaming.c:999 src/output/streaming/streaming.c:1006
#: src/file.c:258 src/file.c:271 src/file.c:278 src/file.c:285
msgid "Ssl connection error."
msgstr "Error en la conexin SSL."

#: src/output/streaming/streaming.c:107 src/output/streaming/streaming.c:1018
#: src/file.c:293
msgid "No support for ssl connection. Compile with SSL."
msgstr "No hay soporte para la conexin SSL. Compile con SSL."

#: src/output/streaming/streaming.c:117 src/output/streaming/streaming.c:1028
#: src/file.c:311 src/file.c:317 src/daemon.c:324 src/daemon.c:336
#: src/sock.c:152 src/sock.c:181 src/admin.c:243 src/admin.c:286
msgid "Socket error."
msgstr "Error de socket."

#: src/output/streaming/streaming.c:123 src/output/streaming/streaming.c:1034
msgid "Error: unknow host."
msgstr "Error: mquina desconocida."

#: src/output/streaming/streaming.c:134 src/output/streaming/streaming.c:1045
#: src/file.c:336 src/file.c:359 src/sock.c:169 src/sock.c:191
msgid "Connect error."
msgstr "Error de conexin."

#: src/output/streaming/streaming.c:255 src/output/lame/lame.c:286
msgid "Error in encoding."
msgstr "Error en la codificacin."

#: src/output/streaming/streaming.c:268
msgid "Streaming output can't write the dumpfile local."
msgstr ""
"La salida de retransmisin no puede escribir el fichero de volcado local."

#: src/output/streaming/streaming.c:299
msgid "Streaming output error."
msgstr "Error de salida de la retransmisin."

#: src/output/streaming/streaming.c:781
msgid "No support for lame encode. Compile with it."
msgstr "No hay soporte para codificacin lame. Compile con l."

#: src/output/streaming/streaming.c:790
msgid "No support for ogg/vorbis encode. Compile with it."
msgstr "No hay soporte para la codificacin ogg/vorbis. Compile con l."

#: src/output/streaming/streaming.c:798
msgid "No encoding type. Compile with lame or ogg/vorbis."
msgstr "No hay ningn tipo de codificacin. Compile con lame u ogg/vorbis."

#: src/output/streaming/streaming.c:805
msgid "No server in streaming config."
msgstr "No hay ningn servidor en la configuracin de la retransmisin."

#: src/output/streaming/streaming.c:812
msgid "No port in streaming config."
msgstr "No hay ningn puerto en la configuracin de la retransmisin."

#: src/output/streaming/streaming.c:819
msgid "No password in streaming config."
msgstr "No hay contrasea en la configuracin de la retransmisin."

#: src/output/streaming/streaming.c:826
msgid "No mount in streaming config."
msgstr "No hay punto de montaje en la configuracin de la retransmisin."

#: src/output/streaming/streaming.c:837
msgid "Icecast no support for aim."
msgstr "Icecast no soporta AIM."

#: src/output/streaming/streaming.c:839
msgid "Icecast no support for icq."
msgstr "Icecast no soporta ICQ."

#: src/output/streaming/streaming.c:841
msgid "Icecast no support for irc."
msgstr "Icecast no soporta IRC."

#: src/output/streaming/streaming.c:848
msgid "Icecast2 no support for dumpfileremote."
msgstr "Icecast no soporta dumpfileremote."

#: src/output/streaming/streaming.c:850
msgid "Icecast2 no support for aim."
msgstr "Icecast2 no soporta AIM."

#: src/output/streaming/streaming.c:852
msgid "Icecast2 no support for icq."
msgstr "Icecast2 no soporta ICQ."

#: src/output/streaming/streaming.c:854
msgid "Icecast2 no support for irc."
msgstr "Icecast2 no soporta IRC."

#: src/output/streaming/streaming.c:861
msgid "Shoutcast no support for dumpfileremote."
msgstr "Shoutcast no soporta dumpfileremote."

#: src/output/streaming/streaming.c:863
msgid "Shoutcast no support for description."
msgstr "Shoutcast no soporta descripcin."

#: src/output/streaming/streaming.c:923
msgid "Update metadata."
msgstr ""

#: src/output/streaming/icecast.c:106
msgid "Error icecast protocol."
msgstr "Error del protocolo icecast."

#: src/output/streaming/icecast.c:118 src/output/streaming/shoutcast.c:119
#: src/output/streaming/icecast2.c:144
#, c-format
msgid "Error in write into %s file."
msgstr "Error al escribir en el fichero %s."

#: src/output/streaming/icecast.c:146
msgid "Icecast no support for OGG. Use icecast2 server."
msgstr "Icecast no soporta OGG. Use el servidor icecast2."

#: src/output/streaming/shoutcast.c:107
msgid "Error shoutcast protocol."
msgstr "Error del protocolo shoutcast."

#: src/output/streaming/shoutcast.c:149
msgid "Shoutcast no support for OGG. Use icecast2 server."
msgstr "Shoutcast no soporta OGG. Use el servidor icecast2."

#: src/output/streaming/icecast2.c:131
msgid "Error icecast2 protocol."
msgstr "Error del protocolo icecast2."

#: src/output/lame/lame.c:53 src/output/lame/common.c:47
msgid "Lame init error."
msgstr "Error de inicializacin de Lame."

#: src/output/lame/lame.c:231
msgid "No file in lame config."
msgstr "No hay ningn fichero en la configuracin de lame."

#: src/output/lame/lame.c:318
#, fuzzy, c-format
msgid ""
"Lame %s - %s\n"
"\tRate %d\n"
"\tBitrate %d\n"
"\tChannels %d\n"
"\tQuality %d\n"
"\tFile %s\n"
msgstr ""
"Lame %s - %s\n"
"\tTasa %d\n"
"\tTasa de bits %d\n"
"\tCalidad %d\n"
"\tFichero %s\n"

#: src/output/lame/config.c:59
msgid "No lame config file."
msgstr "No hay ningn fichero de configuracin de Lame."

#: src/output/lame/config.c:61
msgid "Error of parsing lame file."
msgstr "Error al analizar el fichero de Lame."

#: src/output/lame/config.c:66
msgid "Read lame config file."
msgstr "Leer el fichero de configuracin de Lame."

#: src/output/lame/config.c:77
#, fuzzy
msgid "No file output in config file!"
msgstr "No existe el fichero de configuracin del daemon."

#: src/output/lame/common.c:41
msgid "Mp3 encoding no support channels>2"
msgstr "La codificacin MP3 no soporta canales>2"

#: src/output/lame/common.c:53
msgid "Lame setting channels error."
msgstr "Configuracin de Lame de error de canales."

#: src/output/lame/common.c:60
msgid "Lame set mode error."
msgstr "Configuracin de Lame de error de modo."

#: src/output/lame/common.c:67
msgid "Lame setting in samplerate"
msgstr "Configuracin de Lame de tasa de muestreo de entrada"

#: src/output/lame/common.c:74
msgid "Lame setting out samplerate"
msgstr "Configuracin de Lame de tasa de muestreo de salida"

#: src/output/monitor/monitor.c:45
#, fuzzy
msgid ""
"Audio Device:\n"
"\tType: Remote Monitor\n"
msgstr ""
"Dispositivo de audio:\n"
"\tTipo: SomaPlayer Daemon Sound\n"

#: src/player.c:152
#, c-format
msgid "Read file: %s"
msgstr "Lectura del fichero: %s"

#: src/player.c:191 src/player.c:197
msgid "Cond error."
msgstr "Error cond."

#: src/player.c:223
msgid "Skipping: no support for this type of file yet."
msgstr "Omitiendo: no hay todava soporte para este tipo de fichero."

#: src/audio.c:86 src/audio.c:147 src/audio.c:168 src/audio.c:230
msgid "Init output error."
msgstr "Error de inicializacin de la salida."

#: src/audio.c:90
#, c-format
msgid ""
"Encode Config:\n"
"\tType %s\n"
"\tRate %d\n"
"\tQuality %d\n"
"\tBitrate %d\n"
"\tChannels %s"
msgstr ""
"Configuracin de la codificacin:\n"
"\tTipo %s\n"
"\tTasa %d\n"
"\tCalidad %d\n"
"\tTasa de bits %d\n"
"\tCanales %s"

#: src/audio.c:97
#, fuzzy, c-format
msgid ""
"Streaming Config:\n"
"\tProtocol %s\n"
"\tServer %s\n"
"\tPort %d\n"
"\tMount %s\n"
"\tName %s\n"
"\tGenre %s\n"
"\tDescription %s\n"
"\tUrl %s\n"
"\t"
msgstr ""
"Configuracin de Icecast:\n"
"\tProtocolo %s\n"
"\tServidor %s\n"
"\tPuerto %d\n"
"\tMontaje %s\n"
"\tNombre %s\n"
"\tGnero %s\n"
"\tDescripcin %s\n"
"\tURL %s\n"
"\t"

#: src/audio.c:126
msgid ""
"No support for any streaming protocol. Compile with Icecast, Icecast2 or "
"Shoutcast."
msgstr ""
"No hay soporte para ningn protocolo de transmisin por red. Compile con "
"Icecast, Icecast2 o Shoutcast."

#: src/audio.c:257
msgid "No support for libao. Compile with ao."
msgstr "No hay soporte para libao. Compile con ao."

#: src/audio.c:383
#, fuzzy, c-format
msgid "No output recognize: %s."
msgstr "Ninguna salida reconocida."

#: src/list.c:133 src/file.c:190
#, c-format
msgid "Error Opening file %s"
msgstr "Error al abrir el fichero %s"

#: src/list.c:176 src/list.c:197
#, c-format
msgid "Syntax error: %s"
msgstr "Error de sintaxis: %s"

#: src/list.c:234
#, c-format
msgid "No support for this type of file: %s"
msgstr "No hay soporte para este tipo de fichero: %s"

#: src/list.c:295
#, c-format
msgid "Error opening directory %s"
msgstr "Error al abrir el directorio %s"

#: src/list.c:315 src/list.c:329 src/list.c:343
#, c-format
msgid "Error opening file %s"
msgstr "Error al abrir el fichero %s"

#: src/list.c:362 src/list.c:370
#, fuzzy
msgid "Cdaudio no present.\n"
msgstr "Cdaudio no presente."

#: src/list.c:378
msgid "Error number of cdrom track."
msgstr "Error del nmero de pista del cdrom."

#: src/list.c:393
#, c-format
msgid "Cdaudio with %d track.\n"
msgstr "Cdaudio con %d pistas.\n"

#: src/list.c:406
#, c-format
msgid "Track %d is no audio.\n"
msgstr "La pista %d no es de audio.\n"

#: src/signal.c:57
#, fuzzy
msgid ""
"You've probably found a bug in SomaPlayer.\n"
"Send an email to: soma@inventati.org. Thanks!\n"
"\n"
msgstr ""
"Probablemente ha encontrado un fallo en SomaPlayer.\n"
"\n"

#: src/format.c:106
#, c-format
msgid ""
"\n"
"* Init format audio "
msgstr ""
"\n"
"* Inicializacin formato audio"

#: src/format.c:261
#, fuzzy
msgid "Error: parameter!"
msgstr "Error en parmetro del micrfono: %s"

#: src/format.c:291
msgid "Mic config error."
msgstr "Error en la configuracin del micrfono."

#: lexer.l:143
#, c-format
msgid "invalid octal number '%s'"
msgstr "nmero octal no vlido %s"

#: lexer.l:149
#, c-format
msgid "bad escape sequence '%s'"
msgstr "secuencia de escape incorrecta %s"

#: lexer.l:224
msgid "unterminated string constant"
msgstr "constante de cadena sin terminar"

#: lexer.l:290
msgid "includes nested too deeply"
msgstr "incluye anidacin demasiado profunda"

#: src/confuse/confuse.c:86 src/confuse/confuse.c:106
#, c-format
msgid "no such option '%s'"
msgstr "no existe la opcin %s"

#: src/confuse/confuse.c:459
#, c-format
msgid "invalid integer value for option '%s'"
msgstr "valor entero no vlido para la opcin %s"

#: src/confuse/confuse.c:465
#, c-format
msgid "integer value for option '%s' is out of range"
msgstr "el valor entero para la opcin %s est fuera el intervalo"

#: src/confuse/confuse.c:480
#, c-format
msgid "invalid floating point value for option '%s'"
msgstr "valor en coma flotante no vlido para la opcin %s"

#: src/confuse/confuse.c:486
#, c-format
msgid "floating point value for option '%s' is out of range"
msgstr "el valor en coma flotante para la opcin %s est fuera del intervalo"

#: src/confuse/confuse.c:528
#, c-format
msgid "invalid boolean value for option '%s'"
msgstr "valor booleano no vlido para la opcin %s"

#: src/confuse/confuse.c:641
msgid "premature end of file"
msgstr "fin prematuro del fichero"

#: src/confuse/confuse.c:651
msgid "unexpected closing brace"
msgstr "llave de cierre inesperada"

#: src/confuse/confuse.c:657 src/confuse/confuse.c:712
#: src/confuse/confuse.c:743
#, c-format
msgid "unexpected token '%s'"
msgstr "token inesperado %s"

#: src/confuse/confuse.c:677
#, c-format
msgid "attempt to append to non-list option %s"
msgstr "intento de agregar a la opcin no de lista %s"

#: src/confuse/confuse.c:691
#, c-format
msgid "missing equal sign after option '%s'"
msgstr "falta el signo igual despus de la opcin %s"

#: src/confuse/confuse.c:728
#, c-format
msgid "missing opening brace for option '%s'"
msgstr "falta la llave de apertura de la opcin %s"

#: src/confuse/confuse.c:749
#, c-format
msgid "missing opening brace for section '%s'"
msgstr "falta la llave de apertura de la seccin %s"

#: src/confuse/confuse.c:770
#, c-format
msgid "missing title for section '%s'"
msgstr "falta el ttulo de la seccin %s"

#: src/confuse/confuse.c:779
#, c-format
msgid "missing parenthesis for function '%s'"
msgstr "faltan los parntesis de la funcin %s"

#: src/confuse/confuse.c:796 src/confuse/confuse.c:810
#, c-format
msgid "syntax error in call of function '%s'"
msgstr "error de sintaxis en una llamada a la funcin %s"

#: src/confuse/confuse.c:959
msgid "wrong number of arguments to cfg_include()"
msgstr "nmero incorrecto de argumentos a cfg_include()"

#: src/file.c:246
#, c-format
msgid ""
"Connect to streaming:\n"
"\tServer %s\n"
"\tPort %s\n"
"\tFile %s\n"
"\tProtocol https"
msgstr ""
"Conexin a la transmisin por red:\n"
"\tServidor %s\n"
"\tPuerto %s\n"
"\tFichero %s\n"
"\tProtocolo https"

#: src/file.c:306
#, c-format
msgid ""
"Connect to streaming:\n"
"\tServer %s\n"
"\tPort %s\n"
"\tFile %s\n"
"\tProtocol http"
msgstr ""
"Conexin a la transmisin por red:\n"
"\tServidor %s\n"
"\tPuerto %s\n"
"\tFichero %s\n"
"\tProtocolo http"

#: src/file.c:323 src/sock.c:158
msgid "Error: unknown host."
msgstr "Error: mquina desconocida."

#: src/file.c:382
msgid "http error."
msgstr "Error http."

#: src/file.c:400
msgid "Connection done."
msgstr "Conexin efectuada."

#: src/file.c:404
msgid "File not found."
msgstr "Fichero no encontrado."

#: src/file.c:409
msgid "Error in icecast protocol."
msgstr "Error en el protocolo icecast."

#: src/tty.c:57
#, c-format
msgid "* Pause."
msgstr "* Pausa."

#: src/tty.c:60
#, c-format
msgid "* Skipping."
msgstr "* Omitiendo."

#: src/main.c:66
#, c-format
msgid ""
"%s Version: %s - %s\n"
"\n"
msgstr ""
"%s Versin: %s - %s\n"
"\n"

#: src/main.c:174
msgid "Quitting."
msgstr "Saliendo."

#: src/main.c:193
msgid "Admin socket closed."
msgstr ""

#: src/main.c:199
msgid "Bad list thread join."
msgstr ""

#: src/main.c:203
msgid "Free memory."
msgstr "Memoria libre."

#: src/main.c:218
msgid "Done."
msgstr "Hecho."

#: src/options.c:68 src/options.c:78 src/options.c:93 src/options.c:105
#: src/options.c:143 src/options.c:154 src/options.c:164 src/options.c:178
#: src/options.c:219 src/options.c:261
#, c-format
msgid "Error: option '%s' must have a parameter!"
msgstr "Error: la opcin %s debe tener un parmetro."

#: src/options.c:82
msgid "No audiooutput setting."
msgstr "No hay ninguna configuracin de salida de audio."

#: src/options.c:169
msgid "Error: buffer is too small: min 1024 bytes."
msgstr "Error: el bfer es demasiado pequeo: mnimo 1024 bytes."

#: src/options.c:374
msgid "Error: missing audiodevice."
msgstr "Error: falta dispositivo de audio."

#: src/daemon.c:97 src/daemon.c:119 src/daemon.c:131 src/daemon.c:149
#: src/daemon.c:155
#, c-format
msgid "Error in daemon parameter: %s"
msgstr "Error en parmetro del daemon: %s"

#: src/daemon.c:199
#, fuzzy, c-format
msgid "soma distribuited sound start in %s mode."
msgstr "iniciado el daemon de soma sound."

#: src/daemon.c:267
#, c-format
msgid "Host error. %s"
msgstr "Error de la mquina. %s"

#: src/daemon.c:280
msgid "No ipv6 server."
msgstr "No hay servidor ipv6."

#: src/daemon.c:317 src/admin.c:233
#, c-format
msgid "Binding error: %s."
msgstr "Error de ligadura (binding): %s."

#: src/daemon.c:342
msgid "Non-blocking error."
msgstr "Error no bloqueante."

#: src/daemon.c:350 src/admin.c:252
msgid "Linger error."
msgstr "Error de linger."

#: src/daemon.c:353 src/admin.c:258
msgid "Setsockopt error."
msgstr "Error en setsockopt."

#: src/daemon.c:356 src/daemon.c:401 src/admin.c:264 src/admin.c:331
msgid "Binding error."
msgstr "Error de ligadura (binding)."

#: src/daemon.c:394 src/admin.c:322
msgid "You have 1000 somaplayer runs?"
msgstr ""

#: src/daemon.c:407 src/admin.c:270 src/admin.c:337
msgid "Listen error."
msgstr "Error de escucha (Listen)"

#: src/daemon.c:453 src/daemon.c:482
#, c-format
msgid "New client request (%d - %d.%d.%d.%d:%5d)"
msgstr "Nueva peticin de cliente (%d - %d.%d.%d.%d:%5d)"

#: src/daemon.c:513
#, fuzzy
msgid "New client request"
msgstr "Nueva peticin de cliente (%d - %d.%d.%d.%d:%5d)"

#: src/daemon.c:547 src/daemon.c:715
msgid "Error protocol."
msgstr "Error de protocolo."

#: src/daemon.c:558
#, fuzzy
msgid "Connection test"
msgstr "Conexin efectuada."

#: src/daemon.c:569
#, fuzzy
msgid "Connection data list request"
msgstr "Conexin efectuada."

#: src/daemon.c:753
#, c-format
msgid "Channels: %d"
msgstr "Canales: %d"

#: src/daemon.c:754
#, fuzzy, c-format
msgid "Rate: %d"
msgstr "Tasa: %d\n"

#: src/daemon.c:755
#, fuzzy, c-format
msgid "Bitrate: %d\n"
msgstr "Tasa de bits:"

#: src/daemon.c:797
msgid "Too clients."
msgstr "Demasiados clientes."

#: src/daemon.c:812
#, c-format
msgid "Connection from %s"
msgstr "Conexin de %s"

#: src/daemon.c:875
msgid "Remove one mixer."
msgstr "Eliminar un mezclador."

#: src/daemon.c:1096
#, c-format
msgid "Client exit (%d)"
msgstr "Salida de un cliente (%d)"

#: src/sock.c:217
#, fuzzy, c-format
msgid "Socket test: %s"
msgstr "Error de socket."

#: src/sock.c:221
#, fuzzy
msgid "Error test: Socket error."
msgstr "Error de socket."

#: src/sock.c:231
#, fuzzy
msgid "Error test: Connect error."
msgstr "Error de conexin."

#: src/bad_list.c:56
msgid "Insert the removed output in the bad list."
msgstr ""

#~ msgid "file"
#~ msgstr "fichero"

#~ msgid "directory"
#~ msgstr "directorio"

#~ msgid "cdaudio"
#~ msgstr "cdaudio"

#~ msgid "Stream error."
#~ msgstr "Error de transmisin por red."

#~ msgid "SdS Port:"
#~ msgstr "Puerto SdS:"

#, fuzzy
#~ msgid "Socket error"
#~ msgstr "Error de socket."

#, fuzzy
#~ msgid "Connect error"
#~ msgstr "Error de conexin."

#, fuzzy
#~ msgid "Set the SdS server!"
#~ msgstr "Servidor SdS:"

#~ msgid "Accept error."
#~ msgstr "Error de aceptacin."

#~ msgid "Select error."
#~ msgstr "Error de seleccin."

#~ msgid "No support for diffent rate or channels, yet :/"
#~ msgstr "No hay todava soporte para diferentes tasas o canales :/"

#~ msgid "hijacking /dev/dsp open, and taking it to sds: %s"
#~ msgstr "secuestrando /dev/dsp abierto, y llevndolo a sds: %s"

#~ msgid "hijacking /dev/dsp ioctl no important."
#~ msgstr "secuestrando /dev/dsp ioctl no importante."

#~ msgid "hijacking /dev/dsp ioctl - set bitrate: %d"
#~ msgstr "secuestrando /dev/dsp ioctl - establecer tasa de bits: %d"

#~ msgid "hijacking /dev/dsp ioctl - set rate: %d"
#~ msgstr "secuestrando /dev/dsp ioctl - establecer tasa: %d"

#~ msgid "hijacking /dev/dsp ioctl - set channels: %d"
#~ msgstr "secuestrando /dev/dsp ioctl - establecer canales: %d"

#~ msgid "unhandled /dev/dsp ioctl (%x - %p)"
#~ msgstr "ioctl /dev/dsp sin manejar (%x - %p)"

#~ msgid "hijacking /dev/dsp write initialize rate: %d - channels %d"
#~ msgstr ""
#~ "secuestrando /dev/dsp escritura tasa de inicializacin %d canales %d"

#~ msgid "Read daemon config file."
#~ msgstr "Lectura del fichero de configuracin del daemon."

#~ msgid "Error in input elements."
#~ msgstr "Error en elementos de entrada."

#~ msgid "Configuration saved."
#~ msgstr "Configuracin guardada."