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
|
# Spanish translation of GNU LilyPond - http://lilypond.org
# Copyright (C) 2002 Free Software Foundation, Inc.
# Quique <quique@sindominio.net>, 2002.
#
msgid ""
msgstr ""
"Project-Id-Version: lilypond 1.4.13\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-13 00:40+0200\n"
"PO-Revision-Date: 2002-06-28 15:46CET\n"
"Last-Translator: Quique <quique@sindominio.net>\n"
"Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: lilylib.py:62
msgid "lilylib module"
msgstr ""
#: lilylib.py:65 lilypond-book.py:88 midi2ly.py:100 mup2ly.py:75 ps2png.py:41
#: main.cc:145
msgid "print this help"
msgstr "esta ayuda"
#: lilylib.py:112 midi2ly.py:136 mup2ly.py:130
#, python-format
msgid "Copyright (c) %s by"
msgstr "Copyright (c) %s "
#: lilylib.py:116 midi2ly.py:141 mup2ly.py:135
msgid "Distributed under terms of the GNU General Public License."
msgstr ""
#: lilylib.py:118 midi2ly.py:142 mup2ly.py:136
msgid "It comes with NO WARRANTY."
msgstr ""
#: lilylib.py:125 warn.cc:44 input.cc:79
#, fuzzy, c-format, python-format
msgid "warning: %s"
msgstr "advertencia: "
#: lilylib.py:128 warn.cc:50 input.cc:85 input.cc:93
#, fuzzy, c-format, python-format
msgid "error: %s"
msgstr "error: "
#: lilylib.py:132
#, fuzzy, python-format
msgid "Exiting (%d)..."
msgstr "Saliendo..."
#: lilylib.py:200 midi2ly.py:223 mup2ly.py:219
#, python-format
msgid "Usage: %s [OPTIONS]... FILE"
msgstr "Sintaxis: %s [OPTIONS]... FICHERO"
#: lilylib.py:204 convert-ly.py:57 midi2ly.py:227 mup2ly.py:223 main.cc:211
#, c-format
msgid "Options:"
msgstr "Opciones: "
#: lilylib.py:208 convert-ly.py:68 lilypond-pdfpc-helper.py:28 midi2ly.py:231
#: mup2ly.py:227 main.cc:215
#, c-format, python-format
msgid "Report bugs to %s."
msgstr "Informar de gazapos a %s."
#: lilylib.py:228
#, python-format
msgid "Binary %s has version %s, looking for version %s"
msgstr ""
#: lilylib.py:262
#, fuzzy, python-format
msgid "Opening pipe `%s'"
msgstr "Limpiando `%s'..."
#: lilylib.py:277 lilypond-book.py:1157
#, python-format
msgid "`%s' failed (%d)"
msgstr ""
#: lilylib.py:282 lilylib.py:341 lilypond-book.py:1158
msgid "The error log is as follows:"
msgstr ""
#: lilylib.py:313 midi2ly.py:259 mup2ly.py:255
#, python-format
msgid "Invoking `%s'"
msgstr "Invocando `%s'"
#: lilylib.py:315
#, python-format
msgid "Running %s..."
msgstr "Ejecutando %s..."
#: lilylib.py:334
#, python-format
msgid "`%s' failed (%s)"
msgstr ""
#: lilylib.py:337 midi2ly.py:265 mup2ly.py:263
msgid "(ignored)"
msgstr "(ignorado)"
#: lilylib.py:355 midi2ly.py:275 mup2ly.py:273
#, python-format
msgid "Cleaning %s..."
msgstr "Limpiando %s..."
#: lilylib.py:543
#, fuzzy, python-format
msgid "GS exited with status: %d"
msgstr "fin de la orden con valor %d"
#: convert-ly.py:32
#, python-format
msgid "%s has been replaced by %s"
msgstr ""
#: convert-ly.py:33
#, python-format
msgid "Not smart enough to convert %s"
msgstr ""
#: convert-ly.py:34
msgid "Please refer to the manual for details, and update manually."
msgstr ""
#: convert-ly.py:50
#, fuzzy, python-format
msgid "Usage: %s [OPTION]... [FILE]..."
msgstr "Sintaxis: %s [OPCI�N]... FICHERO..."
#: convert-ly.py:53
msgid ""
"Update LilyPond input to newer version. By default, update from the\n"
"version taken from the \\version command, to the current LilyPond version."
msgstr ""
#: convert-ly.py:59
msgid ""
" -e, --edit edit in place\n"
" -f, --from=VERSION start from VERSION [default: \\version found in "
"file]\n"
" -h, --help print this help\n"
" -n, --no-version do not add \\version command if missing\n"
" -s, --show-rules print rules [default: --from=0, --"
"to=@TOPLEVEL_VERSION@]\n"
" -t, --to=VERSION convert to VERSION [default: @TOPLEVEL_VERSION@]\n"
" -v, --version print program version"
msgstr ""
#: convert-ly.py:75 lilypond-pdfpc-helper.py:34 main.cc:98
#, fuzzy, c-format, python-format
msgid ""
"This program is free software. It is covered by the GNU General Public\n"
"License and you are welcome to change it and/or distribute copies of it\n"
"under certain conditions. Invoke as `%s --warranty' for more\n"
"information.\n"
msgstr ""
"Este software es libre. Est� protegido por la Licencia P�blica\n"
"General de GNU, y quedas invitado a modificarlo y/o distribuir copias de\n"
"�l bajo ciertas condiciones. Inv�calo como `%s --warranty' para m�s\n"
"informaci�n.\n"
#: convert-ly.py:2407
msgid "LilyPond source must be UTF-8"
msgstr ""
#: convert-ly.py:2410
msgid "Try the texstrings backend"
msgstr ""
#: convert-ly.py:2413
#, python-format
msgid "Do something like: %s"
msgstr ""
#: convert-ly.py:2416
msgid "Or save as UTF-8 in your editor"
msgstr ""
#: convert-ly.py:2487
msgid "Applying conversion: "
msgstr ""
#: convert-ly.py:2499
#, python-format
msgid "%s: error while converting"
msgstr ""
#: convert-ly.py:2502 score-engraver.cc:111
msgid "Aborting"
msgstr ""
#: convert-ly.py:2523
#, fuzzy, python-format
msgid "Processing `%s'... "
msgstr "Procesando `%s'..."
#: convert-ly.py:2625
#, fuzzy, python-format
msgid "%s: can't determine version for `%s'"
msgstr "no puedo encontrar la fuente por defecto: `%s'"
#: convert-ly.py:2634
#, fuzzy, python-format
msgid "%s: skipping: `%s'"
msgstr "no existe tal par�metro: %s"
#: lilypond-book.py:70
msgid ""
"Process LilyPond snippets in hybrid HTML, LaTeX, or texinfo document.\n"
"Example usage:\n"
"\n"
" lilypond-book --filter=\"tr '[a-z]' '[A-Z]'\" BOOK\n"
" lilypond-book --filter=\"convert-ly --no-version --from=2.0.0 -\" BOOK\n"
" lilypond-book --process='lilypond -I include' BOOK\n"
msgstr ""
#: lilypond-book.py:82
msgid "FMT"
msgstr ""
#: lilypond-book.py:83
#, fuzzy
msgid ""
"use output format FMT (texi [default], texi-html,\n"
"\t\tlatex, html)"
msgstr "utilizar el formato de salida EXT (scm, ps, tex o as) "
#: lilypond-book.py:85
#, fuzzy
msgid "FILTER"
msgstr "FICHERO"
#: lilypond-book.py:86
msgid "pipe snippets through FILTER [convert-ly -n -]"
msgstr ""
#: lilypond-book.py:89 lilypond-book.py:91 main.cc:147
msgid "DIR"
msgstr "DIR"
#: lilypond-book.py:90
#, fuzzy
msgid "add DIR to include path"
msgstr "a�adir DIR a la ruta de b�squeda"
#: lilypond-book.py:92
#, fuzzy
msgid "write output to DIR"
msgstr "escribir la salida en el FICHERO"
#: lilypond-book.py:93
msgid "COMMAND"
msgstr ""
#: lilypond-book.py:94
msgid "process ly_files using COMMAND FILE..."
msgstr ""
#: lilypond-book.py:96 midi2ly.py:105 mup2ly.py:78 ps2png.py:42 main.cc:155
msgid "be verbose"
msgstr "ser prolijo"
#: lilypond-book.py:98
#, fuzzy
msgid "print version information"
msgstr "mostrar n�mero de versi�n"
#: lilypond-book.py:100 midi2ly.py:107 mup2ly.py:80 main.cc:156
msgid "show warranty and copyright"
msgstr "mostrar los avisos de garant�a y de copyright"
#: lilypond-book.py:604
#, python-format
msgid "file not found: %s"
msgstr ""
#: lilypond-book.py:802
#, python-format
msgid "deprecated ly-option used: %s=%s"
msgstr ""
#: lilypond-book.py:805
#, python-format
msgid "compatibility mode translation: %s=%s"
msgstr ""
#: lilypond-book.py:809
#, python-format
msgid "deprecated ly-option used: %s"
msgstr ""
#: lilypond-book.py:812
#, python-format
msgid "compatibility mode translation: %s"
msgstr ""
#: lilypond-book.py:831
#, python-format
msgid "ignoring unknown ly option: %s"
msgstr ""
#: lilypond-book.py:1140
#, fuzzy, python-format
msgid "Opening filter `%s'"
msgstr "Limpiando `%s'..."
#: lilypond-book.py:1303
#, fuzzy
msgid "Writing snippets..."
msgstr "Escribiendo `%s'..."
#: lilypond-book.py:1308
#, fuzzy
msgid "Processing..."
msgstr "Procesando..."
#: lilypond-book.py:1312
#, fuzzy
msgid "All snippets are up to date..."
msgstr "calma, %s est� al d�a"
#: lilypond-book.py:1322
#, fuzzy, python-format
msgid "can't determine format for: %s"
msgstr "no puedo encontrar la fuente por defecto: `%s'"
#: lilypond-book.py:1367
msgid "Output would overwrite input file; use --output."
msgstr ""
#: lilypond-book.py:1374
#, fuzzy, python-format
msgid "Reading %s..."
msgstr "Limpiando %s..."
#: lilypond-book.py:1390
#, fuzzy
msgid "Dissecting..."
msgstr "Listando `%s'..."
#: lilypond-book.py:1421
#, fuzzy, python-format
msgid "Compiling %s..."
msgstr "Limpiando %s..."
#: lilypond-book.py:1429
#, fuzzy, python-format
msgid "Processing include: %s"
msgstr "Procesando `%s'..."
#: lilypond-book.py:1439
#, fuzzy, python-format
msgid "Removing `%s'"
msgstr "Invocando `%s'"
#: lilypond-book.py:1454 midi2ly.py:1016 ps2png.py:52
#, python-format
msgid "getopt says: `%s'"
msgstr "getopt() dice: `%s'"
#: lilypond-pdfpc-helper.py:72
msgid "Not in FILE:LINE:COL format: "
msgstr ""
#: lilypond-pdfpc-helper.py:100
#, python-format
msgid "Command failed: `%s' (status %d)"
msgstr ""
#. temp_dir = os.path.join (original_dir, '%s.dir' % program_name)
#. original_dir = os.getcwd ()
#. keep_temp_dir_p = 0
#: midi2ly.py:94
msgid "Convert MIDI to LilyPond source."
msgstr ""
#: midi2ly.py:97
msgid "print absolute pitches"
msgstr ""
#: midi2ly.py:98 midi2ly.py:103
msgid "DUR"
msgstr "DUR"
#: midi2ly.py:98
msgid "quantise note durations on DUR"
msgstr ""
#: midi2ly.py:99
msgid "print explicit durations"
msgstr ""
#: midi2ly.py:101
#, fuzzy
msgid "ALT[:MINOR]"
msgstr "ACC[:MENOR]"
#: midi2ly.py:101
msgid "set key: ALT=+sharps|-flats; MINOR=1"
msgstr ""
#: midi2ly.py:102 main.cc:148 main.cc:149
msgid "FILE"
msgstr "FICHERO"
#: midi2ly.py:102 mup2ly.py:76
msgid "write output to FILE"
msgstr "escribir la salida en el FICHERO"
#: midi2ly.py:103
msgid "quantise note starts on DUR"
msgstr ""
#: midi2ly.py:104
msgid "DUR*NUM/DEN"
msgstr ""
#: midi2ly.py:104
msgid "allow tuplet durations DUR*NUM/DEN"
msgstr ""
#: midi2ly.py:106 mup2ly.py:79 main.cc:154
msgid "print version number"
msgstr "mostrar n�mero de versi�n"
#: midi2ly.py:108
msgid "treat every text as a lyric"
msgstr ""
#: midi2ly.py:149 mup2ly.py:143
msgid "warning: "
msgstr "advertencia: "
#: midi2ly.py:164 midi2ly.py:1016 midi2ly.py:1081 mup2ly.py:146 mup2ly.py:160
msgid "error: "
msgstr "error: "
#: midi2ly.py:165 mup2ly.py:161
msgid "Exiting ... "
msgstr "Saliendo..."
#: midi2ly.py:263 mup2ly.py:260
#, python-format
msgid "command exited with value %d"
msgstr "fin de la orden con valor %d"
#: midi2ly.py:1000
#, python-format
msgid "%s output to `%s'..."
msgstr "%s producidos en `%s'..."
#: midi2ly.py:1031
msgid "Example:"
msgstr ""
#: midi2ly.py:1081
msgid "no files specified on command line."
msgstr "no se ha especificado ning�n fichero en la l�nea de �rdenes."
#: mup2ly.py:70
#, fuzzy
msgid "Convert mup to LilyPond source."
msgstr "Convertir mup a ly."
#: mup2ly.py:73
msgid "debug"
msgstr "depurar"
#: mup2ly.py:74
msgid "define macro NAME [optional expansion EXP]"
msgstr "define la macro NOMBRE [EXPRESI�N de expansi�n opcional]"
#: mup2ly.py:77
msgid "only pre-process"
msgstr "solamente preprocesar"
#: mup2ly.py:1075
#, python-format
msgid "no such context: %s"
msgstr "no hay tal contexto: %s"
#: mup2ly.py:1300
#, python-format
msgid "Processing `%s'..."
msgstr "Procesando `%s'..."
#: mup2ly.py:1319
#, python-format
msgid "Writing `%s'..."
msgstr "Escribiendo `%s'..."
#. ugr.
#: ps2png.py:36
msgid "Convert PostScript to PNG image."
msgstr ""
#: ps2png.py:43
msgid "PAPER"
msgstr ""
#: ps2png.py:43
msgid "use papersize PAPER"
msgstr ""
#: ps2png.py:44
msgid "RES"
msgstr ""
#: ps2png.py:44
msgid "set the resolution of the preview to RES"
msgstr ""
#: ps2png.py:76
#, fuzzy, python-format
msgid "Wrote `%s'"
msgstr "Escribiendo `%s'..."
#: getopt-long.cc:143
#, c-format
msgid "option `%s' requires an argument"
msgstr "la opci�n `%s' requiere un argumento"
#: getopt-long.cc:147
#, c-format
msgid "option `%s' doesn't allow an argument"
msgstr "la opci�n `%s' no permite argumentos"
#: getopt-long.cc:151
#, c-format
msgid "unrecognized option: `%s'"
msgstr "opci�n no reconocida: `%s'"
#: getopt-long.cc:158
#, c-format
msgid "invalid argument `%s' to option `%s'"
msgstr "arg�mento no v�lido `%s' para la opci�n `%s'"
#: warn.cc:64 grob.cc:632
#, fuzzy, c-format
msgid "programming error: %s"
msgstr "error de programaci�n: "
#: warn.cc:65
msgid "continuing, cross fingers"
msgstr ""
#.
#. todo i18n.
#.
#: kpath.c:142
#, fuzzy, c-format
msgid "can't dlopen: %s: %s"
msgstr "no se puede abrir el fichero: `%s'"
#: kpath.c:143
#, fuzzy, c-format
msgid "install package: %s or %s"
msgstr "no puedo cambiar de `%s' a `%s'"
#: kpath.c:156
#, fuzzy, c-format
msgid "no such symbol: %s: %s"
msgstr "no hay tal contexto: %s"
#: kpath.c:179
#, c-format
msgid "error opening kpathsea library"
msgstr ""
#: kpath.c:180
#, c-format
msgid "aborting"
msgstr ""
#: accidental-engraver.cc:235
#, c-format
msgid "accidental typesetting list must begin with context-name: %s"
msgstr ""
#: accidental-engraver.cc:263
#, c-format
msgid "ignoring unknown accidental: %s"
msgstr ""
#: accidental-engraver.cc:279
#, c-format
msgid "pair or context-name expected for accidental rule, found %s"
msgstr ""
#: accidental.cc:233 key-signature-interface.cc:127
#, c-format
msgid "accidental `%s' not found"
msgstr ""
#: afm.cc:142
#, fuzzy, c-format
msgid "parsing AFM file: `%s'"
msgstr "Error de an�lisis sint�ctico del fichero AFM: `%s'"
#. FIXME: broken sentence
#: all-font-metrics.cc:176
#, c-format
msgid "checksum mismatch for font file: `%s'"
msgstr "suma de control no acorde para el fichero de fuentes: `%s'"
#: all-font-metrics.cc:178
#, c-format
msgid "does not match: `%s'"
msgstr "no concuerda: `%s'"
#: all-font-metrics.cc:184
#, fuzzy
msgid "Rebuild all .afm files, and remove all .pk and .tfm files."
msgstr ""
"Reconstruir todos los ficheros .afm, y borrar todos los ficheros .pk y .tfm. "
"Re-ejecutar con la opci�n -V para mostrar las rutas de las fuentes."
#: all-font-metrics.cc:186
msgid "Rerun with -V to show font paths."
msgstr ""
#: all-font-metrics.cc:188
msgid "A script for removing font-files is delivered with the source-code:"
msgstr ""
#: all-font-metrics.cc:297
#, c-format
msgid "can't find font: `%s'"
msgstr "no encuentro la fuente: `%s'"
#: all-font-metrics.cc:298
#, fuzzy
msgid "loading default font"
msgstr "Cargando la fuente por defecto"
#: all-font-metrics.cc:313
#, c-format
msgid "can't find default font: `%s'"
msgstr "no puedo encontrar la fuente por defecto: `%s'"
#: all-font-metrics.cc:314 includable-lexer.cc:59 lily-parser-scheme.cc:70
#, c-format
msgid "(search path: `%s')"
msgstr "(ruta de b�squeda: `%s')"
#: all-font-metrics.cc:315 volta-engraver.cc:142
#, fuzzy
msgid "giving up"
msgstr "Abandonando"
#: apply-context-iterator.cc:33
msgid "\\applycontext argument is not a procedure"
msgstr ""
#: auto-change-iterator.cc:62 change-iterator.cc:60
#, fuzzy, c-format
msgid "can't change, already in translator: %s"
msgstr "no puedo cambiar de `%s' a `%s'"
#: axis-group-engraver.cc:112
msgid "Axis_group_engraver: vertical group already has a parent"
msgstr ""
#: axis-group-engraver.cc:113
msgid "are there two Axis_group_engravers?"
msgstr ""
#: axis-group-engraver.cc:114
msgid "removing this vertical group"
msgstr ""
#: bar-check-iterator.cc:70
#, c-format
msgid "barcheck failed at: %s"
msgstr ""
#: beam-engraver.cc:136
msgid "already have a beam"
msgstr ""
#: beam-engraver.cc:205
msgid "unterminated beam"
msgstr ""
#: beam-engraver.cc:238 chord-tremolo-engraver.cc:165
msgid "stem must have Rhythmic structure"
msgstr ""
#: beam-engraver.cc:251
msgid "stem doesn't fit in beam"
msgstr ""
#: beam-engraver.cc:252
msgid "beam was started here"
msgstr ""
#: beam.cc:142
msgid "beam has less than two visible stems"
msgstr ""
#: beam.cc:147
msgid "removing beam with less than two stems"
msgstr ""
#: beam.cc:988
msgid "no viable initial configuration found: may not find good beam slope"
msgstr ""
#: break-align-interface.cc:205
#, fuzzy, c-format
msgid "No spacing entry from %s to `%s'"
msgstr "No se a�ade el traductor: `%s'"
#: change-iterator.cc:22
#, fuzzy, c-format
msgid "can't change `%s' to `%s'"
msgstr "no puedo cambiar de `%s' a `%s'"
#. FIXME: constant error message.
#: change-iterator.cc:81
#, fuzzy
msgid "can't find context to switch to"
msgstr "no se puede encontrar el contexto de `%s'"
#. We could change the current translator's id, but that would make
#. errors hard to catch.
#.
#. last->translator_id_string () = get_change
#. ()->change_to_id_string ();
#: change-iterator.cc:90
#, fuzzy, c-format
msgid "not changing to same context type: %s"
msgstr "no hay tal contexto: %s"
#. FIXME: uncomprehensable message
#: change-iterator.cc:94
msgid "none of these in my family"
msgstr "ninguno de �stos en mi familia"
#: chord-tremolo-engraver.cc:94
#, c-format
msgid "expect 2 elements for chord tremolo, found %d"
msgstr ""
#: chord-tremolo-engraver.cc:131
msgid "unterminated chord tremolo"
msgstr "acorde de tr�molo sin terminar"
#: chord-tremolo-iterator.cc:64
msgid "no one to print a tremolos"
msgstr "ninguno para la impresi�n de tr�molos"
#: clef.cc:57
#, c-format
msgid "clef `%s' not found"
msgstr ""
#: cluster.cc:118
#, fuzzy, c-format
msgid "unknown cluster style `%s'"
msgstr "traductor desconocido: `%s'"
#: cluster.cc:144
msgid "junking empty cluster"
msgstr ""
#: coherent-ligature-engraver.cc:84
#, c-format
msgid "gotcha: ptr=%ul"
msgstr ""
#: coherent-ligature-engraver.cc:93
msgid "distance undefined, assuming 0.1"
msgstr ""
#: coherent-ligature-engraver.cc:96
#, c-format
msgid "distance=%f"
msgstr ""
#: coherent-ligature-engraver.cc:139
#, c-format
msgid "Coherent_ligature_engraver: setting `spacing-increment=0.01': ptr=%ul"
msgstr ""
#: context-def.cc:111
#, fuzzy, c-format
msgid "program has no such type: `%s'"
msgstr "El programa no tiene este tipo"
#: context-def.cc:285
#, c-format
msgid "can't find: `%s'"
msgstr "no se puede encontrar: `%s'"
#: context-property.cc:111
msgid "need symbol arguments for \\override and \\revert"
msgstr ""
#: context.cc:146
#, fuzzy, c-format
msgid "can't find or create new `%s'"
msgstr "no se puede encontrar o crear: `%s'"
#: context.cc:210
#, fuzzy, c-format
msgid "can't find or create `%s' called `%s'"
msgstr "no se puede encontrar o crear `%s' llamado `%s'"
#: context.cc:301
#, c-format
msgid "can't find or create: `%s'"
msgstr "no se puede encontrar o crear: `%s'"
#: custos.cc:83
#, c-format
msgid "custos `%s' not found"
msgstr ""
#: dynamic-engraver.cc:171 span-dynamic-performer.cc:84
msgid "can't find start of (de)crescendo"
msgstr "no puedo encontrar el principio del (de)crescendo"
#: dynamic-engraver.cc:180
msgid "already have a decrescendo"
msgstr "ya tengo un decrescendo"
#: dynamic-engraver.cc:182
msgid "already have a crescendo"
msgstr "ya tengo un crescendo"
#: dynamic-engraver.cc:185
msgid "cresc starts here"
msgstr ""
#: dynamic-engraver.cc:304
msgid "unterminated (de)crescendo"
msgstr "(de)crescendo sin terminar"
#: event-chord-iterator.cc:55 output-property-music-iterator.cc:29
#, fuzzy, c-format
msgid "junking event: `%s'"
msgstr "Invocando `%s'"
#: extender-engraver.cc:139 extender-engraver.cc:148
msgid "unterminated extender"
msgstr "prolongaci�n sin terminar"
#: folded-repeat-iterator.cc:64
msgid "no one to print a repeat brace"
msgstr "ninguno para la impresi�n de llaves repetidas"
#: font-config.cc:23
msgid "Initializing FontConfig..."
msgstr ""
#: font-config.cc:26
msgid "initializing FontConfig"
msgstr ""
#: font-config.cc:47
#, fuzzy, c-format
msgid "adding lilypond directory: %s"
msgstr "no se puede crear el directorio: `%s'"
#: font-config.cc:49
#, fuzzy, c-format
msgid "adding font directory: %s"
msgstr "no se puede crear el directorio: `%s'"
#: general-scheme.cc:172
msgid "infinity or NaN encountered while converting Real number"
msgstr ""
#: general-scheme.cc:173
msgid "setting to zero"
msgstr ""
#: glissando-engraver.cc:97
#, fuzzy
msgid "unterminated glissando"
msgstr "prolongaci�n sin terminar"
#: global-context-scheme.cc:50 global-context-scheme.cc:77
#, fuzzy
msgid "no music found in score"
msgstr "ya tengo un crescendo"
#: global-context-scheme.cc:67
#, fuzzy
msgid "Interpreting music... "
msgstr "Interpretaci�n de la m�sica..."
#: global-context-scheme.cc:88
#, c-format
msgid "elapsed time: %.2f seconds"
msgstr ""
#: global-context.cc:160
#, c-format
msgid "can't find `%s' context"
msgstr "no se puede encontrar el contexto de `%s'"
#: gourlay-breaking.cc:199
#, c-format
msgid "Optimal demerits: %f"
msgstr ""
#: gourlay-breaking.cc:204
#, fuzzy
msgid "no feasible line breaking found"
msgstr "No se ha encontrado ninguna ruptura de l�nea factible"
#: gourlay-breaking.cc:212
msgid "can't find line breaking that satisfies constraints"
msgstr ""
#: gregorian-ligature-engraver.cc:59
#, fuzzy, c-format
msgid "\\%s ignored"
msgstr "(ignorado)"
#: gregorian-ligature-engraver.cc:64
#, c-format
msgid "implied \\%s added"
msgstr ""
#: gregorian-ligature-engraver.cc:213
msgid "Cannot apply `\\~' on first head of ligature; ignoring `\\~'"
msgstr ""
#: gregorian-ligature-engraver.cc:227
msgid "can't apply `\\~' on heads with identical pitch; ignoring `\\~'"
msgstr ""
#: grob-interface.cc:45
#, fuzzy, c-format
msgid "Unknown interface `%s'"
msgstr "traductor desconocido: `%s'"
#: grob-interface.cc:56
#, c-format
msgid "Grob `%s' has no interface for property `%s'"
msgstr ""
#: hairpin.cc:105
msgid "decrescendo too small"
msgstr "decrescendo demasiado peque�o"
#: hairpin.cc:106
msgid "crescendo too small"
msgstr "crescendo demasiado peque�o"
#: horizontal-bracket-engraver.cc:55
msgid "don't have that many brackets"
msgstr ""
#: horizontal-bracket-engraver.cc:64
msgid "conflicting note group events"
msgstr ""
#: hyphen-engraver.cc:89
#, fuzzy
msgid "removing unterminated hyphen"
msgstr "prolongaci�n sin terminar"
#: hyphen-engraver.cc:102
#, fuzzy
msgid "unterminated hyphen; removing"
msgstr "acorde de tr�molo sin terminar"
#: includable-lexer.cc:50
msgid "include files are not allowed in safe mode"
msgstr ""
#: includable-lexer.cc:57 lily-guile.cc:90 lily-parser-scheme.cc:77
#, c-format
msgid "can't find file: `%s'"
msgstr "no puedo encontrar el fichero: `%s'"
#: input.cc:101 source-file.cc:137 source-file.cc:230
msgid "position unknown"
msgstr "posici�n desconocida"
#: ligature-engraver.cc:152
#, fuzzy
msgid "can't find start of ligature"
msgstr "no puedo encontrar el principio del (de)crescendo"
#: ligature-engraver.cc:158
msgid "no right bound"
msgstr ""
#: ligature-engraver.cc:184
#, fuzzy
msgid "already have a ligature"
msgstr "ya tengo un crescendo"
#: ligature-engraver.cc:200
msgid "no left bound"
msgstr ""
#: ligature-engraver.cc:256
#, fuzzy
msgid "unterminated ligature"
msgstr "prolongaci�n sin terminar"
#: ligature-engraver.cc:280
msgid "ignoring rest: ligature may not contain rest"
msgstr ""
#: ligature-engraver.cc:281
msgid "ligature was started here"
msgstr ""
#: lily-guile.cc:92
#, c-format
msgid "(load path: `%s')"
msgstr "(ruta de carga: `%s')"
#: lily-guile.cc:484
#, c-format
msgid "can't find property type-check for `%s' (%s)."
msgstr ""
#: lily-guile.cc:487
msgid "perhaps a typing error?"
msgstr ""
#: lily-guile.cc:493
msgid "doing assignment anyway"
msgstr ""
#: lily-guile.cc:505
#, c-format
msgid "type check for `%s' failed; value `%s' must be of type `%s'"
msgstr ""
#: lily-lexer.cc:210
#, fuzzy, c-format
msgid "identifier name is a keyword: `%s'"
msgstr "El nombre del identificativo es una palabra clave: `%s'"
#: lily-lexer.cc:225
#, c-format
msgid "error at EOF: %s"
msgstr "error al final del fichero (EOF): %s"
#: lily-parser-scheme.cc:30
#, fuzzy, c-format
msgid "deprecated function called: %s"
msgstr "no puedo encontrar el car�cter llamado: `%s'"
#: lily-parser-scheme.cc:69
#, fuzzy, c-format
msgid "can't find init file: `%s'"
msgstr "no puedo encontrar el fichero: `%s'"
#: lily-parser-scheme.cc:87
#, fuzzy, c-format
msgid "Processing `%s'"
msgstr "Procesando `%s'..."
#: lily-parser.cc:101
msgid "Parsing..."
msgstr "Analizando..."
#: lily-parser.cc:119
msgid "braces don't match"
msgstr ""
#. FIXME: cannot otherwise internationalize this bison warning.
#: lily-parser.cc:172
#, fuzzy
msgid "syntax error, unexpected "
msgstr "error no fatal: "
#: main.cc:104
msgid ""
" This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU General Public License version 2\n"
"as published by the Free Software Foundation.\n"
"\n"
" This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n"
"General Public License for more details.\n"
"\n"
" You should have received a copy (refer to the file COPYING) of the\n"
"GNU General Public License along with this program; if not, write to\n"
"the Free Software Foundation, Inc., 59 Temple Place - Suite 330,\n"
"Boston, MA 02111-1307, USA.\n"
msgstr ""
#: main.cc:135
msgid "BACK"
msgstr ""
#: main.cc:135
msgid ""
"use backend BACK (gnome, ps [default],\n"
" scm, svg, tex, texstr)"
msgstr ""
#: main.cc:136
msgid "EXPR"
msgstr "EXPR"
#: main.cc:136
msgid ""
"set scheme option, for help use\n"
" -e '(ly:option-usage)'"
msgstr ""
#. Bug in option parser: --output =foe is taken as an abbreviation
#. for --output-format.
#: main.cc:139
msgid "FORMATs"
msgstr ""
#: main.cc:139
msgid "dump FORMAT,... Also as separate options:"
msgstr ""
#: main.cc:140
#, fuzzy
msgid "generate DVI (tex backend only)"
msgstr "generar una salida PostScript"
#: main.cc:141
#, fuzzy
msgid "generate PDF (default)"
msgstr "generar una salida PostScript"
#: main.cc:142
#, fuzzy
msgid "generate PNG"
msgstr "generar una salida PostScript"
#: main.cc:143
#, fuzzy
msgid "generate PostScript"
msgstr "generar una salida PostScript"
#: main.cc:144
msgid "generate TeX (tex backend only)"
msgstr ""
#: main.cc:146
msgid "FIELD"
msgstr "CAMPO"
#: main.cc:146
msgid "write header field to BASENAME.FIELD"
msgstr "escribir campo de cabecera a BASENAME.FIELD"
#: main.cc:147
msgid "add DIR to search path"
msgstr "a�adir DIR a la ruta de b�squeda"
#: main.cc:148
msgid "use FILE as init file"
msgstr "usar FICHERO como fichero de inicializaci�n"
#: main.cc:149
#, fuzzy
msgid "write output to FILE (suffix will be added)"
msgstr "escribir la salida en el FICHERO"
#: main.cc:150
msgid "USER,GROUP,JAIL,DIR"
msgstr ""
#: main.cc:150
msgid ""
"chroot to JAIL, become USER:GROUP\n"
" and cd into DIR"
msgstr ""
#: main.cc:151
#, fuzzy
msgid "do not generate printed output"
msgstr "generar una salida PostScript"
#: main.cc:152
msgid "generate a preview of the first system"
msgstr ""
#: main.cc:153
msgid "run in safe mode"
msgstr ""
#: main.cc:177
#, fuzzy, c-format
msgid ""
"Copyright (c) %s by\n"
"%s and others."
msgstr "Copyright (c) %s "
#. No version number or newline here. It confuses help2man.
#: main.cc:203
#, fuzzy, c-format
msgid "Usage: %s [OPTION]... FILE..."
msgstr "Sintaxis: %s [OPCI�N]... FICHERO..."
#: main.cc:205
#, c-format
msgid "Typeset music and/or produce MIDI from FILE."
msgstr ""
#: main.cc:207
#, c-format
msgid "LilyPond produces beautiful music notation."
msgstr ""
#: main.cc:209
#, c-format
msgid "For more information, see %s"
msgstr ""
#: main.cc:299
#, c-format
msgid "expected %d arguments with jail, found: %d"
msgstr ""
#: main.cc:313
#, fuzzy, c-format
msgid "no such user: %s"
msgstr "no existe tal par�metro: %s"
#: main.cc:315
#, c-format
msgid "can't get user id from user name: %s: %s"
msgstr ""
#: main.cc:330
#, fuzzy, c-format
msgid "no such group: %s"
msgstr "no hay tal contexto: %s"
#: main.cc:332
#, fuzzy, c-format
msgid "can't get group id from group name: %s: %s"
msgstr "no puedo cambiar de `%s' a `%s'"
#: main.cc:340
#, fuzzy, c-format
msgid "can't chroot to: %s: %s"
msgstr "no se puede crear el directorio: `%s'"
#: main.cc:347
#, fuzzy, c-format
msgid "can't change group id to: %d: %s"
msgstr "no puedo cambiar de `%s' a `%s'"
#: main.cc:353
#, fuzzy, c-format
msgid "can't change user id to: %d: %s"
msgstr "no puedo cambiar de `%s' a `%s'"
#: main.cc:359
#, fuzzy, c-format
msgid "can't change working directory to: %s: %s"
msgstr "no se puede crear el directorio: `%s'"
#. FIXME: constant error message.
#: mark-engraver.cc:123
msgid "rehearsalMark must have integer value"
msgstr ""
#: mark-engraver.cc:129
msgid "mark label must be a markup object"
msgstr ""
#: mensural-ligature-engraver.cc:74
msgid "ligature with less than 2 heads -> skipping"
msgstr ""
#: mensural-ligature-engraver.cc:101
msgid "cannot determine pitch of ligature primitive -> skipping"
msgstr ""
#: mensural-ligature-engraver.cc:115
msgid "single note ligature - skipping"
msgstr ""
#: mensural-ligature-engraver.cc:127
msgid "prime interval within ligature -> skipping"
msgstr ""
#: mensural-ligature-engraver.cc:139
msgid "mensural ligature: duration none of Mx, L, B, S -> skipping"
msgstr ""
#: mensural-ligature-engraver.cc:187
msgid "semibrevis must be followed by another one -> skipping"
msgstr ""
#: mensural-ligature-engraver.cc:198
msgid ""
"semibreves can only appear at the beginning of a ligature,\n"
"and there may be only zero or two of them"
msgstr ""
#: mensural-ligature-engraver.cc:225
msgid ""
"invalid ligatura ending:\n"
"when the last note is a descending brevis,\n"
"the penultimate note must be another one,\n"
"or the ligatura must be LB or SSB"
msgstr ""
#: mensural-ligature-engraver.cc:345
msgid "unexpected case fall-through"
msgstr ""
#: mensural-ligature.cc:131
msgid "Mensural_ligature: unexpected case fall-through"
msgstr ""
#: mensural-ligature.cc:183
msgid "Mensural_ligature: (join_right == 0)"
msgstr ""
#: midi-item.cc:150
#, fuzzy, c-format
msgid "no such MIDI instrument: `%s'"
msgstr "no hay este instrumento: `%s'"
#: midi-item.cc:254
msgid "silly pitch"
msgstr ""
#: midi-item.cc:270
#, c-format
msgid "experimental: temporarily fine tuning (of %d cents) a channel."
msgstr ""
#: midi-stream.cc:27
#, fuzzy, c-format
msgid "can't open for write: %s: %s"
msgstr "no se puede abrir el fichero: `%s'"
#: midi-stream.cc:44
#, fuzzy, c-format
msgid "can't write to file: `%s'"
msgstr "no se puede abrir el fichero: `%s'"
#: music.cc:176
#, c-format
msgid "octave check failed; expected %s, found: %s"
msgstr ""
#: music.cc:239
#, c-format
msgid "transposition by %s makes alteration larger than double"
msgstr ""
#: new-fingering-engraver.cc:84
msgid "can't add text scripts to individual note heads"
msgstr ""
#.
#. music for the softenon children?
#.
#: new-fingering-engraver.cc:158
msgid "music for the martians."
msgstr ""
#: new-fingering-engraver.cc:266
msgid "no placement found for fingerings"
msgstr ""
#: new-fingering-engraver.cc:267
msgid "placing below"
msgstr ""
#: new-lyric-combine-music-iterator.cc:240
#, fuzzy, c-format
msgid "cannot find Voice `%s'"
msgstr "no puedo encontrar el fichero: `%s'"
#: note-collision.cc:404
#, fuzzy
msgid "ignoring too many clashing note columns"
msgstr "Demasiadas columnas de notas que chocan entre s�. Se las ignora."
#: note-column.cc:115
msgid "can't have note heads and rests together on a stem"
msgstr ""
#: note-head.cc:66
#, c-format
msgid "note head `%s' not found"
msgstr ""
#: open-type-font.cc:29
#, fuzzy, c-format
msgid "can't allocate %d bytes"
msgstr "no se puede abrir el fichero: `%s'"
#: open-type-font.cc:33
#, fuzzy, c-format
msgid "can't load font table: %s"
msgstr "no encuentro la fuente: `%s'"
#: open-type-font.cc:84
#, c-format
msgid "unsupported font format: %s"
msgstr ""
#: open-type-font.cc:86
#, c-format
msgid "unknown error: %d reading font file: %s"
msgstr ""
#: open-type-font.cc:140
#, c-format
msgid "FT_Get_Glyph_Name() returned error: %d"
msgstr ""
#: pango-font.cc:130
#, fuzzy, c-format
msgid "no PostScript font name for font `%s'"
msgstr "no es un fichero PostScript: `%s'"
#: pango-font.cc:177
msgid "FreeType face has no PostScript font name"
msgstr ""
#: paper-outputter-scheme.cc:26
#, fuzzy, c-format
msgid "Layout output to `%s'..."
msgstr "%s producidos en `%s'..."
#: paper-score.cc:66
#, fuzzy, c-format
msgid "Element count %d (spanners %d) "
msgstr "Elementos contados %d"
#: paper-score.cc:70
#, fuzzy
msgid "Preprocessing graphical objects..."
msgstr "Preprocesando elementos..."
#: parse-scm.cc:81
msgid "GUILE signaled an error for the expression beginning here"
msgstr ""
#: percent-repeat-engraver.cc:100
#, c-format
msgid "can't handle a percent repeat of length: %s"
msgstr ""
#: percent-repeat-engraver.cc:158
#, fuzzy
msgid "unterminated percent repeat"
msgstr "prolongaci�n sin terminar"
#: percent-repeat-iterator.cc:51
msgid "no one to print a percent"
msgstr ""
#: performance.cc:47
#, fuzzy
msgid "Track..."
msgstr "Pista ... "
#: performance.cc:71
msgid "MIDI channel wrapped around"
msgstr ""
#: performance.cc:72
msgid "remapping modulo 16"
msgstr ""
#: performance.cc:91
msgid "Creator: "
msgstr "Creador: "
#: performance.cc:111
#, fuzzy
msgid "at "
msgstr ", en "
#: performance.cc:164
#, c-format
msgid "MIDI output to `%s'..."
msgstr "Salida MIDI a `%s'..."
#: phrasing-slur-engraver.cc:115
msgid "unterminated phrasing slur"
msgstr ""
#: piano-pedal-engraver.cc:224
#, c-format
msgid "expect 3 strings for piano pedals, found: %d"
msgstr ""
#: piano-pedal-engraver.cc:240 piano-pedal-engraver.cc:255
#: piano-pedal-performer.cc:80
#, c-format
msgid "can't find start of piano pedal: `%s'"
msgstr ""
#: piano-pedal-engraver.cc:305
#, fuzzy, c-format
msgid "can't find start of piano pedal bracket: `%s'"
msgstr "no puedo encontrar el principio del (de)crescendo"
#: property-iterator.cc:90
#, c-format
msgid "not a grob name, `%s'"
msgstr ""
#: quote-iterator.cc:254
#, fuzzy, c-format
msgid "in quotation: junking event %s"
msgstr "Invocando `%s'"
#: relative-octave-check.cc:38
msgid "Failed octave check, got: "
msgstr ""
#: rest-collision.cc:147
msgid "rest direction not set. Cannot resolve collision."
msgstr ""
#: rest-collision.cc:162 rest-collision.cc:208
msgid "too many colliding rests"
msgstr ""
#: rest.cc:140
#, c-format
msgid "rest `%s' not found"
msgstr ""
#: scm-option.cc:54
#, c-format
msgid "lilypond -e EXPR means:"
msgstr ""
#: scm-option.cc:56
#, c-format
msgid " Evalute the Scheme EXPR before parsing any .ly files."
msgstr ""
#: scm-option.cc:58
#, c-format
msgid ""
" Multiple -e options may be given, they will be evaluated sequentially."
msgstr ""
#: scm-option.cc:60
#, c-format
msgid ""
" The function ly:set-option allows for access to some internal variables."
msgstr ""
#: scm-option.cc:62
#, c-format
msgid "Usage: lilypond -e \"(ly:set-option SYMBOL VAL)\""
msgstr ""
#: scm-option.cc:64
#, c-format
msgid "Use help as SYMBOL to get online help."
msgstr ""
#: scm-option.cc:135 scm-option.cc:175
#, fuzzy, c-format
msgid "no such internal option: %s"
msgstr "no hay este instrumento: `%s'"
#: score-engraver.cc:105
#, fuzzy, c-format
msgid "cannot find `%s'"
msgstr "no se puede encontrar: `%s'"
#: score-engraver.cc:107
msgid "Music font has not been installed properly."
msgstr ""
#: score-engraver.cc:109
#, fuzzy, c-format
msgid "Search path `%s'"
msgstr "(ruta de b�squeda: `%s')"
#: score.cc:213
#, fuzzy
msgid "already have music in score"
msgstr "ya tengo un crescendo"
#: score.cc:214
msgid "this is the previous music"
msgstr ""
#: score.cc:219
#, fuzzy
msgid "errors found, ignoring music expression"
msgstr ""
"Erreurs trouv�es/*, pas de traitement de la feuille de musique*/ Se han "
"encontrado errores/*, no se procesa la partitura*/"
#. FIXME:
#: script-engraver.cc:100
#, fuzzy
msgid "don't know how to interpret articulation: "
msgstr "No se sabe como interpretar la articulaci�n `%s'"
#: script-engraver.cc:101
msgid "scheme encoding: "
msgstr ""
#. this shouldn't happen, but let's continue anyway.
#: separation-item.cc:52 separation-item.cc:96
msgid "Separation_item: I've been drinking too much"
msgstr "Separation_item: He bebido demasiado"
#: simple-spacer.cc:410
#, c-format
msgid "No spring between column %d and next one"
msgstr ""
#: slur-engraver.cc:113
msgid "unterminated slur"
msgstr ""
#: slur-engraver.cc:122
#, fuzzy
msgid "can't end slur"
msgstr "no se puede encontrar: `%s'"
#: source-file.cc:48
#, c-format
msgid "can't open file: `%s'"
msgstr "no se puede abrir el fichero: `%s'"
#: source-file.cc:61
#, c-format
msgid "expected to read %d characters, got %d"
msgstr ""
#: spacing-spanner.cc:377
#, c-format
msgid "Global shortest duration is %s"
msgstr ""
#: stem-engraver.cc:88
msgid "tremolo duration is too long"
msgstr ""
#. FIXME:
#: stem-engraver.cc:125
#, c-format
msgid "adding note head to incompatible stem (type = %d)"
msgstr ""
#: stem-engraver.cc:126
msgid "maybe input should specify polyphonic voices"
msgstr ""
#: stem.cc:124
msgid "weird stem size, check for narrow beams"
msgstr ""
#: stem.cc:577
#, c-format
msgid "flag `%s' not found"
msgstr ""
#: stem.cc:588
#, c-format
msgid "flag stroke `%s' not found"
msgstr ""
#: system.cc:145
#, c-format
msgid "Element count %d."
msgstr "Elementos contados %d."
#: system.cc:224
#, fuzzy, c-format
msgid "Grob count %d"
msgstr "Elementos contados %d"
#: system.cc:240
#, fuzzy
msgid "Calculating line breaks..."
msgstr "Calculando las posiciones de las columnas"
#: text-spanner-engraver.cc:61
msgid "can't find start of text spanner"
msgstr ""
#: text-spanner-engraver.cc:75
msgid "already have a text spanner"
msgstr ""
#: text-spanner-engraver.cc:136
msgid "unterminated text spanner"
msgstr ""
#. Not using ngettext's plural feature here, as this message is
#. more of a programming error.
#: tfm-reader.cc:106
#, c-format
msgid "TFM header of `%s' has only %u word (s)"
msgstr ""
#: tfm-reader.cc:139
#, c-format
msgid "%s: TFM file has %u parameters, which is more than the %u I can handle"
msgstr ""
#: tfm.cc:70
#, c-format
msgid "can't find ascii character: %d"
msgstr ""
#: tie-engraver.cc:194
msgid "lonely tie"
msgstr ""
#: time-scaled-music-iterator.cc:22
msgid "no one to print a tuplet start bracket"
msgstr ""
#.
#. Todo: should make typecheck?
#.
#. OTOH, Tristan Keuris writes 8/20 in his Intermezzi.
#.
#: time-signature-engraver.cc:54
#, c-format
msgid "strange time signature found: %d/%d"
msgstr ""
#. If there is no such symbol, we default to the numbered style.
#. (Here really with a warning!)
#: time-signature.cc:83
#, c-format
msgid "time signature symbol `%s' not found; reverting to numbered style"
msgstr ""
#: translator-ctors.cc:52
#, c-format
msgid "unknown translator: `%s'"
msgstr "traductor desconocido: `%s'"
#: trill-spanner-engraver.cc:68
#, fuzzy
msgid "can't find start of trill spanner"
msgstr "no puedo encontrar el principio del (de)crescendo"
#: trill-spanner-engraver.cc:82
#, fuzzy
msgid "already have a trill spanner"
msgstr "ya tengo un crescendo"
#: trill-spanner-engraver.cc:142
#, fuzzy
msgid "unterminated trill spanner"
msgstr "prolongaci�n sin terminar"
#: tuplet-bracket.cc:438
msgid "removing tuplet bracket across linebreak"
msgstr ""
#: vaticana-ligature-engraver.cc:341
#, c-format
msgid ""
"ignored prefix (es) `%s' of this head according to restrictions of the "
"selected ligature style"
msgstr ""
#: vaticana-ligature-engraver.cc:568
#, c-format
msgid "Vaticana_ligature_engraver: setting `spacing-increment = %f': ptr =%ul"
msgstr ""
#: vaticana-ligature.cc:87
msgid "flexa-height undefined; assuming 0"
msgstr ""
#: vaticana-ligature.cc:93
msgid "ascending vaticana style flexa"
msgstr ""
#: vaticana-ligature.cc:182
msgid "Vaticana_ligature: zero join (delta_pitch == 0)"
msgstr ""
#. fixme: be more verbose.
#: volta-engraver.cc:127
#, fuzzy
msgid "can't end volta spanner"
msgstr "no puedo encontrar el principio del (de)crescendo"
#: volta-engraver.cc:137
msgid "already have a volta spanner, ending that one prematurely"
msgstr ""
#: volta-engraver.cc:141
#, fuzzy
msgid "also already have an ended spanner"
msgstr "ya tengo un crescendo"
#: parser.yy:82
msgid "tag must be symbol or list of symbols"
msgstr ""
#: parser.yy:559
#, fuzzy
msgid "identifier should have alphabetic characters only"
msgstr "El identificativo deber�a contener solamente caracteres alfab�ticos"
#: parser.yy:717
msgid "\\paper cannot be used in \\score, use \\layout instead"
msgstr ""
#: parser.yy:741
msgid "need \\paper for paper block"
msgstr ""
#: parser.yy:886
msgid "more alternatives than repeats"
msgstr ""
#: parser.yy:923
#, c-format
msgid "expect 2 elements for Chord tremolo, found %d"
msgstr ""
#: parser.yy:1078
msgid "music head function must return Music object"
msgstr ""
#: parser.yy:1350
msgid "Grob name should be alphanumeric"
msgstr ""
#: parser.yy:1710
#, fuzzy
msgid "second argument must be pitch list"
msgstr "El segundo argumento debe ser un s�mbolo"
#: parser.yy:1749 parser.yy:1754 parser.yy:2235
msgid "have to be in Lyric mode for lyrics"
msgstr ""
#: parser.yy:1847
msgid "expecting string as script definition"
msgstr ""
#: parser.yy:2010 parser.yy:2060
#, c-format
msgid "not a duration: %d"
msgstr "no es una duraci�n: %d"
#: parser.yy:2154
msgid "have to be in Note mode for notes"
msgstr ""
#: parser.yy:2248
msgid "have to be in Chord mode for chords"
msgstr ""
#: parser.yy:2399
msgid "need integer number arg"
msgstr ""
#: parser.yy:2597
#, fuzzy, c-format
msgid "suspect duration in beam: %d"
msgstr "no es una duraci�n: %d"
#: lexer.ll:193
#, fuzzy, c-format
msgid "Renaming input to: `%s'"
msgstr "Limpiando `%s'..."
#: lexer.ll:201
msgid "quoted string expected after \\version"
msgstr ""
#: lexer.ll:205
msgid "quoted string expected after \\renameinput"
msgstr ""
#: lexer.ll:218
msgid "EOF found inside a comment"
msgstr ""
#: lexer.ll:233
msgid "\\maininput not allowed outside init files"
msgstr ""
#: lexer.ll:257
#, c-format
msgid "wrong or undefined identifier: `%s'"
msgstr "identificativo equivocado o no definido: `%s'"
#. backup rule
#: lexer.ll:266
msgid "end quote missing"
msgstr ""
#: lexer.ll:428
msgid "Brace found at end of lyric. Did you forget a space?"
msgstr ""
#: lexer.ll:527
msgid "Brace found at end of markup. Did you forget a space?"
msgstr ""
#: lexer.ll:616
#, c-format
msgid "invalid character: `%c'"
msgstr "car�cter no v�lido: `%c'"
#: lexer.ll:703 lexer.ll:704
#, c-format
msgid "unknown escaped string: `\\%s'"
msgstr ""
#: lexer.ll:801 lexer.ll:802
#, fuzzy, c-format
msgid "Incorrect lilypond version: %s (%s, %s)"
msgstr "versi�n de lilypond incorrecta: %s (%s, %s)"
#: lexer.ll:802 lexer.ll:803
#, fuzzy
msgid "Consider updating the input with the convert-ly script"
msgstr ""
"Considere la conversi�n de la entrada con ayuda del gui�n (script) convert-ly"
#. TODO: print location
#: lexer.ll:939 lexer.ll:940
#, fuzzy
msgid "can't find signature for music function"
msgstr "no se puede encontrar el contexto de `%s'"
#: out/parser.cc:1881
#, fuzzy
msgid "syntax error: cannot back up"
msgstr "error no fatal: "
#: out/parser.cc:5600
msgid "syntax error; also virtual memory exhausted"
msgstr ""
#: out/parser.cc:5604
#, fuzzy
msgid "syntax error"
msgstr "error no fatal: "
#: out/parser.cc:5726
msgid "parser stack overflow"
msgstr ""
#: backend-library.scm:18
#, fuzzy, lisp-format
msgid "Invoking `~a'..."
msgstr "Invocando `%s'"
#: backend-library.scm:23
#, lisp-format
msgid "`~a' failed (~a)"
msgstr ""
#: backend-library.scm:42 framework-tex.scm:332 framework-tex.scm:357
#, fuzzy, lisp-format
msgid "Converting to `~a'..."
msgstr "Escribiendo `%s'..."
#. Do not try to guess the name of the png file,
#. GS produces PNG files like BASE-page%d.png.
#. (ly:message (_ "Converting to `~a'...")
#. (string-append (basename name ".ps") "-page1.png" )))
#: backend-library.scm:65
#, fuzzy, lisp-format
msgid "Converting to ~a..."
msgstr "Escribiendo `%s'..."
#: backend-library.scm:95
#, fuzzy, lisp-format
msgid "Writing header field `~a' to `~a'..."
msgstr "escribiendo el campo de cabecera `%s' a `%s'"
#: beam.scm:79
#, lisp-format
msgid "Error in beam quanting. Expected (~S,~S) found ~S."
msgstr ""
#: beam.scm:93
#, lisp-format
msgid "Error in beam quanting. Expected ~S 0, found ~S."
msgstr ""
#: clef.scm:124
#, fuzzy, lisp-format
msgid "unknown clef type `~a'"
msgstr "traductor desconocido: `%s'"
#: clef.scm:125
msgid "see scm/clef.scm for supported clefs"
msgstr ""
#: define-context-properties.scm:13 define-grob-properties.scm:10
#: define-music-properties.scm:10
#, lisp-format
msgid "symbol ~S redefined"
msgstr ""
#: define-markup-commands.scm:54
msgid "No systems found in \\score markup. Does it have a \\layout? block"
msgstr ""
#: define-markup-commands.scm:595
#, fuzzy, lisp-format
msgid "not a valid duration string: ~a"
msgstr "no es una duraci�n: %d"
#: define-music-types.scm:802
#, lisp-format
msgid "symbol expected: ~S"
msgstr ""
#: define-music-types.scm:805
#, fuzzy, lisp-format
msgid "can't find music object: ~S"
msgstr "no se puede encontrar el contexto de `%s'"
#: define-music-types.scm:825
#, fuzzy, lisp-format
msgid "unknown repeat type `~S'"
msgstr "traductor desconocido: `%s'"
#: define-music-types.scm:826
msgid "See music-types.scm for supported repeats"
msgstr ""
#: document-backend.scm:91
#, lisp-format
msgid "pair expected in doc ~s"
msgstr ""
#: document-backend.scm:135
#, fuzzy, lisp-format
msgid "can't find interface for property: ~S"
msgstr "no puedo encontrar el car�cter n�mero: %d"
#: document-backend.scm:144
#, fuzzy, lisp-format
msgid "unknown interface: ~S"
msgstr "traductor desconocido: `%s'"
#: documentation-lib.scm:45
#, fuzzy, lisp-format
msgid "Processing ~S..."
msgstr "Procesando..."
#: documentation-lib.scm:160
#, fuzzy, lisp-format
msgid "Writing ~S..."
msgstr "Escribiendo `%s'..."
#: documentation-lib.scm:182
#, lisp-format
msgid "can't find description for property ~S"
msgstr ""
#: framework-ps.scm:258
#, fuzzy, lisp-format
msgid "can't find CFF/PFA/PFB font ~S"
msgstr "no encuentro la fuente: `%s'"
#: framework-ps.scm:357
#, lisp-format
msgid "can't convert <stdout> to ~S"
msgstr ""
#: framework-ps.scm:372 framework-ps.scm:375
#, lisp-format
msgid "can't generate ~S using the postscript back-end"
msgstr ""
#: framework-tex.scm:349
#, fuzzy, lisp-format
msgid "TeX file name must not contain whitespace: `~a'"
msgstr "el nombre del fichero no deber�a contener espacios: `%s'"
#: lily-library.scm:314
#, fuzzy, lisp-format
msgid "unknown unit: ~S"
msgstr "traductor desconocido: `%s'"
#: lily-library.scm:345
#, lisp-format
msgid "No \\version statement found. Add~afor future compatibility."
msgstr ""
#: lily.scm:97
#, lisp-format
msgid "wrong type for argument ~a. Expecting ~a, found ~s"
msgstr ""
#: lily.scm:319
#, lisp-format
msgid "failed files: ~S"
msgstr ""
#: markup.scm:88
#, lisp-format
msgid "Wrong number of arguments. Expect: ~A, found ~A: ~S"
msgstr ""
#: markup.scm:94
#, lisp-format
msgid "Invalid argument in position ~A. Expect: ~A, found: ~S."
msgstr ""
#: music-functions.scm:507
#, lisp-format
msgid "music expected: ~S"
msgstr ""
#. FIXME: uncomprehensable message
#: music-functions.scm:558
#, lisp-format
msgid "Bar check failed. Expect to be at ~a, instead at ~a"
msgstr ""
#: music-functions.scm:702
#, fuzzy, lisp-format
msgid "can't find quoted music `~S'"
msgstr "no encuentro la fuente: `%s'"
#: music-functions.scm:875
#, fuzzy, lisp-format
msgid "unknown accidental style: ~S"
msgstr "traductor desconocido: `%s'"
#: output-lib.scm:245
#, fuzzy, lisp-format
msgid "unknown bar glyph: `~S'"
msgstr "traductor desconocido: `%s'"
#: output-ps.scm:307
msgid "utf8-string encountered in PS backend"
msgstr ""
#: output-svg.scm:41
#, fuzzy, lisp-format
msgid "undefined: ~S"
msgstr "prolongaci�n sin terminar"
#: output-svg.scm:119
#, lisp-format
msgid "can't decypher Pango description: ~a"
msgstr ""
#: output-tex.scm:114
#, fuzzy, lisp-format
msgid "can't find ~a in ~a"
msgstr "no encuentro la fuente: `%s'"
#: page-layout.scm:425
#, fuzzy
msgid "Calculating page breaks..."
msgstr "Calculando las posiciones de las columnas"
#: paper.scm:68
msgid "Not in toplevel scope"
msgstr ""
#: paper.scm:113
#, lisp-format
msgid "This is not a \\layout {} object, ~S"
msgstr ""
#. TODO: should raise (generic) exception with throw, and catch
#. that in parse-scm.cc
#: paper.scm:141
msgid "Must use #(set-paper-size .. ) within \\paper { ... }"
msgstr ""
#: to-xml.scm:190
msgid "assertion failed"
msgstr ""
#, fuzzy
#~ msgid "Second argument must be pitch list."
#~ msgstr "El segundo argumento debe ser un s�mbolo"
#, fuzzy
#~ msgid "programming error: "
#~ msgstr "error de programaci�n: "
#, fuzzy
#~ msgid "Programming error: "
#~ msgstr "error de programaci�n: "
#~ msgid "Can't switch translators, I'm there already"
#~ msgstr "No puedo pasar de un traductor al otro, ya estoy all�"
#~ msgid "I'm one myself"
#~ msgstr "Yo mismo soy uno"
#~ msgid "Huh? Got %d, expected %d characters"
#~ msgstr "�Eh? Se han obtenido %d caracteres, cuando se esperaban %d"
#~ msgid "EXT"
#~ msgstr "EXT"
#, fuzzy
#~ msgid "kpathsea can't find %s file: `%s'"
#~ msgstr "no puedo encontrar el fichero: `%s'"
#, fuzzy
#~ msgid "kpathsea can't find file: `%s'"
#~ msgstr "no puedo encontrar el fichero: `%s'"
#, fuzzy
#~ msgid "EXTs"
#~ msgstr "EXT"
#, fuzzy
#~ msgid "generate DVI"
#~ msgstr "generar una salida PostScript"
#, fuzzy
#~ msgid "generate TeX"
#~ msgstr "generar una salida PostScript"
#, fuzzy
#~ msgid "kpathsea can not find %s file: `%s'"
#~ msgstr "no puedo encontrar el fichero: `%s'"
#, fuzzy
#~ msgid "kpathsea can not find AFM file `%s'"
#~ msgstr "no puedo encontrar el fichero: `%s'"
#, fuzzy
#~ msgid "kpathsea can not find TFM file: `%s'"
#~ msgstr "no puedo encontrar el fichero: `%s'"
#, fuzzy
#~ msgid "Can't open file %s"
#~ msgstr "no se puede abrir el fichero: `%s'"
#, fuzzy
#~ msgid "Cannot switch translators, I'm there already"
#~ msgstr "No puedo pasar de un traductor al otro, ya estoy all�"
#, fuzzy
#~ msgid "Converting to `~a.ps'..."
#~ msgstr "Escribiendo `%s'..."
#~ msgid "find pfa fonts used in FILE"
#~ msgstr "buscar las fuentes pfa utilizadas en FICHERO"
#~ msgid "add DIR to LilyPond's search path"
#~ msgstr "a�adir DIR a la ruta de b�squeda de LilyPond"
#, fuzzy
#~ msgid "keep all output, output to directory %s.dir"
#~ msgstr "conservar todas las salidas, y nombrar el directorio %s.dir"
#~ msgid "don't run LilyPond"
#~ msgstr "no ejecutar LilyPond"
#~ msgid "produce MIDI output only"
#~ msgstr "producir solamente una salida MIDI"
#, fuzzy
#~ msgid "generate PDF output"
#~ msgstr "generar una salida PostScript"
#, fuzzy
#~ msgid "generate PS.GZ"
#~ msgstr "generar una salida PostScript"
#~ msgid "KEY=VAL"
#~ msgstr "CLAVE=VALOR"
#~ msgid "change global setting KEY to VAL"
#~ msgstr "cambiar el par�metro global CLAVE a VALOR"
#, fuzzy
#~ msgid "Continuing..."
#~ msgstr "Ejecutando %s..."
#~ msgid "Analyzing %s..."
#~ msgstr "Analizando %s..."
#, fuzzy
#~ msgid "no LilyPond output found for `%s'"
#~ msgstr "no se ha encontrado ninguna salida de lilypond para %s"
#, fuzzy
#~ msgid "no files specified on command line"
#~ msgstr "no se ha especificado ning�n fichero en la l�nea de �rdenes."
#, fuzzy
#~ msgid "%s output to <stdout>..."
#~ msgstr "%s producidos en `%s'..."
#, fuzzy
#~ msgid "%s output to %s..."
#~ msgstr "%s producidos en `%s'..."
#, fuzzy
#~ msgid "can't find file: `%s.%s'"
#~ msgstr "no puedo encontrar el fichero: `%s'"
#, fuzzy
#~ msgid "DIM"
#~ msgstr "DIR"
#, fuzzy
#~ msgid "write dependencies"
#~ msgstr "a�adir el prefijo DIR a las dependencias"
#, fuzzy
#~ msgid "prepend PREF before each -M dependency"
#~ msgstr "a�adir el prefijo DIR a las dependencias"
#, fuzzy
#~ msgid "don't run lilypond"
#~ msgstr "no ejecutar LilyPond"
#~ msgid "write Makefile dependencies for every input file"
#~ msgstr "crear las dependencias para Makefile de cada fichero de entrada"
#, fuzzy
#~ msgid "invalid value: `%s'"
#~ msgstr "valor no v�lido: %s"
#, fuzzy
#~ msgid "Writing HTML menu `%s'"
#~ msgstr "Escribiendo `%s'..."
#~ msgid "dependencies output to `%s'..."
#~ msgstr "dependencias producidas en `%s'..."
#, fuzzy
#~ msgid "programming error: %s (Continuing; cross thumbs)\n"
#~ msgstr " (Continuando; cruza los dedos)"
#~ msgid "NaN"
#~ msgstr "NaN"
#, fuzzy
#~ msgid ""
#~ "Nothing to connect extender to on the left. Ignoring extender event."
#~ msgstr ""
#~ "Nada a la izquierda a lo que conectar la prologaci�n. Ignorando la "
#~ "petici�n de prolongaci�n."
#~ msgid "couldn't find any font satisfying "
#~ msgstr "no he podido encontrar ninguna fuente satisfactoria "
#, fuzzy
#~ msgid "Nothing to connect hyphen to on the left. Ignoring hyphen event."
#~ msgstr ""
#~ "Nada a la izquierda a lo que conectar la prologaci�n. Ignorando la "
#~ "petici�n de prolongaci�n."
#~ msgid "Score contains errors; will not process it"
#~ msgstr "La partitura contiene errores; no ser� procesada."
#~ msgid "Now processing: `%s'"
#~ msgstr "Ahora en proceso: `%s'"
#~ msgid "prepend DIR to dependencies"
#~ msgstr "a�adir el prefijo DIR a las dependencias"
#~ msgid "inhibit file output naming and exporting"
#~ msgstr "inhibir la denominaci�n del fichero de salida y la exportaci�n"
#~ msgid "silly duration"
#~ msgstr "duraci�n rid�cula"
#~ msgid "I'm one myself: `%s'"
#~ msgstr "Yo mismo soy uno: `%s'"
#~ msgid "from musical definition: %s"
#~ msgstr "a partir de la definici�n musical: %s"
#, fuzzy
#~ msgid "unterminated pedal bracket"
#~ msgstr "prolongaci�n sin terminar"
#~ msgid "Already contains: `%s'"
#~ msgstr "Ya contiene: `%s'"
#~ msgid "Not adding translator: `%s'"
#~ msgstr "No se a�ade el traductor: `%s'"
#~ msgid "Fetch and rebuild from latest source package"
#~ msgstr "Obtener y reconstruir a partir del �ltimo paquete fuente"
#~ msgid "unpack and build in DIR [%s]"
#~ msgstr "desempaquetar y construir en DIR [%s]"
#~ msgid "execute COMMAND, subtitute:"
#~ msgstr "ejecutar la �rden de sustituci�n:"
#~ msgid "%b: build root"
#~ msgstr "%b: construir la ra�z"
#~ msgid "%n: package name"
#~ msgstr "%n: nombre del paquete"
#~ msgid "%r: release directory"
#~ msgstr "%r: directorio de publicaci�n"
#~ msgid "%t: tarball"
#~ msgstr "%t: tarball"
#~ msgid "%v: package version"
#~ msgstr "%v: versi�n del paquete"
#~ msgid "keep all output, and name the directory %s"
#~ msgstr "conservar todas las salidas, y nombrar el directorio %s"
#~ msgid "upon failure notify EMAIL[,EMAIL]"
#~ msgstr "en caso de fallo avisar por EMAIL[,EMAIL]"
#~ msgid "remove previous build"
#~ msgstr "eliminar la construcci�n anterior"
#~ msgid "fetch and build URL [%s]"
#~ msgstr "obtener y construir el URL [%s]"
#~ msgid "latest is: %s"
#~ msgstr "el �ltimo es: %s"
#~ msgid "Fetching `%s'..."
#~ msgstr "Obteniendo `%s'..."
#~ msgid "Building `%s'..."
#~ msgstr "Construyendo `%s'..."
#~ msgid "invalid subtraction: not part of chord: %s"
#~ msgstr "sustracci�n no v�lida: no forma parte del acorde: %s"
#~ msgid "invalid inversion pitch: not part of chord: %s"
#~ msgstr "inversi�n de tonos no v�lida: no forma parte del acorde: %s"
#~ msgid ", at "
#~ msgstr ", en "
#~ msgid "Generate .dvi with LaTeX for LilyPond"
#~ msgstr "Generar un fichero .dvi con la ayuda de LaTeX para LilyPond"
#~ msgid "can't map file"
#~ msgstr "no es posible producir el fichero map"
#~ msgid "This binary was compiled with the following options:"
#~ msgstr "Este binario fue compilado con las siguientes opciones:"
#~ msgid "%s is far from completed. Not all constructs are recognised."
#~ msgstr ""
#~ "%s est� lejos de estar completo. No se han reconocido todas las "
#~ "construcciones."
#~ msgid "EOF in a string"
#~ msgstr "Fin de fichero (EOF) en una cadena"
#~ msgid "<stdin>"
#~ msgstr "<stdin>"
#~ msgid "unknown spacing pair `%s', `%s'"
#~ msgstr "par de espacimiento desconocido `%s', `%s'"
#~ msgid "track %d:"
#~ msgstr "pista %d:"
#~ msgid "Creating voices..."
#~ msgstr "Creando voces..."
#~ msgid "track "
#~ msgstr "pista "
#~ msgid "% MIDI copyright:"
#~ msgstr "% Copyright MIDI:"
#~ msgid "% MIDI instrument:"
#~ msgstr "% Instrumento MIDI:"
#~ msgid "% Creator: "
#~ msgstr "% Creador: "
#~ msgid "% Automatically generated"
#~ msgstr "% Generado autom�ticamente"
#~ msgid "% from input file: "
#~ msgstr "% a partir del fichero de entrada: "
#~ msgid "set FILE as default output"
#~ msgstr "establecer FICHERO como salida por defecto"
#~ msgid "be quiet"
#~ msgstr "trabajar en silencio"
#~ msgid "don't output rests or skips"
#~ msgstr "no producir pausas o saltos"
#~ msgid "set smallest duration"
#~ msgstr "definir la duraci�n m�s peque�a"
#~ msgid "don't timestamp the output"
#~ msgstr "no datar la salida"
#~ msgid "assume no double dotted notes"
#~ msgstr "no asumir notas doblemente puntuadas"
#~ msgid "Usage: %s [OPTION]... [FILE]"
#~ msgstr "Sintaxis: %s [OPCI�N]... [FICHERO]"
#~ msgid "Translate MIDI-file to lilypond"
#~ msgstr "Traducir un fichero MIDI a lilypond"
#~ msgid "no_double_dots: %d\n"
#~ msgstr "no_double_dots: %d\n"
#~ msgid "no_rests: %d\n"
#~ msgstr "no_rests: %d\n"
#~ msgid "no_quantify_b_s: %d\n"
#~ msgstr "no_quantify_b_s: %d\n"
#~ msgid "no_smaller_than: %d (1/%d)\n"
#~ msgstr "no_smaller_than: %d (1/%d)\n"
#~ msgid "no_tuplets: %d\n"
#~ msgstr "no_tuplets: %d\n"
#~ msgid "zero length string encountered"
#~ msgstr "encontrada cadena de longitud cero"
#~ msgid "MIDI header expected"
#~ msgstr "Esperado encabezado de formato MIDI"
#~ msgid "invalid header length"
#~ msgstr "longitud del encabezado no v�lida"
#~ msgid "invalid MIDI format"
#~ msgstr "formato MIDI no v�lido"
#~ msgid "invalid number of tracks"
#~ msgstr "n�mero de pistas no v�lido"
#~ msgid "can't handle non-metrical time"
#~ msgstr "no se pueden manejar tiempos no m�tricos"
#~ msgid "invalid running status"
#~ msgstr "estado de ejecuci�n no v�lido"
#~ msgid "unimplemented MIDI meta-event"
#~ msgstr "meta-evento MIDI no implementado"
#~ msgid "invalid MIDI event"
#~ msgstr "evento MIDI no v�lido"
#~ msgid "MIDI track expected"
#~ msgstr "Esperada pista MIDI"
#~ msgid "invalid track length"
#~ msgstr "longitud de pista no v�lida"
|