summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msguniq-2
blob: 234274aec17b6de10d992236b120a94d40d519c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test --unique option.

: ${MSGUNIQ-msguniq}
${MSGUNIQ} -w 1000 -u -o msguniq-2.tmp "$abs_srcdir"/msguniq-a.in || Exit 1
LC_ALL=C tr -d '\r' < msguniq-2.tmp > msguniq-2.out || Exit 1

cat <<\EOF > msguniq-2.ok
# Template messages for CLISP
# Copyright (C) 1992-2001 Bruno Haible, Michael Stoll, Marcus Daniels
# Bruno Haible <haible@clisp.cons.org>, 2001.
#
msgid ""
msgstr ""
"Project-Id-Version: clisp 2.25.1\n"
"POT-Creation-Date: 2001-07-21 21:09:38 CEST\n"
"PO-Revision-Date: 2001-07-21 21:09:38 CEST\n"
"Last-Translator: Automatically generated <bruno@linuix>\n"
"Language-Team: Template <xx@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"

#: constobj.d:376
msgid "Please choose:"
msgstr ""

#: constobj.d:380
msgid "Please choose one of ~:{~A~:^, ~} ."
msgstr ""

#: constobj.d:383
msgid "symbol ~A from #<PACKAGE ~A> will become a shadowing symbol"
msgstr ""

#: constobj.d:385
msgid "You may choose the symbol in favour of which to resolve the conflict."
msgstr ""

#: constobj.d:387
msgid "uninterning ~S from ~S uncovers a name conflict."
msgstr ""

#: constobj.d:391
msgid "importing ~S into ~S produces a name conflict with ~S."
msgstr ""

#: constobj.d:393
msgid "importing ~S into ~S produces a name conflict with ~S and other symbols."
msgstr ""

#: constobj.d:395
msgid "((\"I\" \"import it and unintern the other symbol\" T) (\"N\" \"do not import it, leave undone\" NIL))"
msgstr ""

#: constobj.d:398
msgid "((\"I\" \"import it, unintern one other symbol and shadow the other symbols\" T) (\"N\" \"do not import it, leave undone\" NIL))"
msgstr ""

#: constobj.d:401
msgid "((\"I\" \"import it and shadow the other symbol\" T) (\"N\" \"do nothing\" NIL))"
msgstr ""

#: constobj.d:405
msgid "symbol ~S should be imported into ~S before being exported."
msgstr ""

#: constobj.d:407
msgid "((\"I\" \"import the symbol first\" T) (\"N\" \"do nothing, don't export the symbol\" NIL))"
msgstr ""

#: constobj.d:410
msgid "You may choose in favour of which symbol to resolve the conflict."
msgstr ""

#: constobj.d:412
msgid "exporting ~S from ~S produces a name conflict with ~S from ~S."
msgstr ""

#: constobj.d:414
msgid "Which symbol should be accessible in ~S ?"
msgstr ""

#: constobj.d:418
msgid "the symbol to export, "
msgstr ""

#: constobj.d:420
msgid "the old symbol, "
msgstr ""

#: constobj.d:422
msgid "You may choose for every conflict in favour of which symbol to resolve it."
msgstr ""

#: constobj.d:424
msgid "~S name conflicts while executing USE-PACKAGE of ~S into package ~S."
msgstr ""

#: constobj.d:426
msgid "which symbol with name ~S should be accessible in ~S ?"
msgstr ""

#: constobj.d:428
msgid "You can input another name."
msgstr ""

#: constobj.d:430
msgid "You can input another nickname."
msgstr ""

#: constobj.d:432
msgid "a package with name ~S already exists."
msgstr ""

#: constobj.d:434
msgid "Please input new package name:"
msgstr ""

#: constobj.d:436
msgid "Please input new package nickname:"
msgstr ""

#: constobj.d:438
msgid "Ignore."
msgstr ""

#: constobj.d:440
msgid "~S: There is no package with name ~S."
msgstr ""

#: constobj.d:442
msgid "~*Nevertheless delete ~S."
msgstr ""

#: constobj.d:444
msgid "~S: ~S is used by ~{~S~^, ~}."
msgstr ""

#: constobj.d:472
msgid "ANSI C program"
msgstr ""

#: constobj.d:476
msgid "GNU C++ "
msgstr ""

#: constobj.d:479
msgid "GNU C "
msgstr ""

#: constobj.d:486
msgid "C++ compiler"
msgstr ""

#: constobj.d:489
msgid "C compiler"
msgstr ""

#: constobj.d:494
msgid "ENGLISH"
msgstr ""

#: constobj.d:510
msgid "Continue execution"
msgstr ""

#: constobj.d:512
msgid "~S: User break"
msgstr ""

#: constobj.d:662
msgid "The value of ~S was not a pathname. ~:*~S is being reset."
msgstr ""

#: constobj.d:667
msgid "Creating directory: "
msgstr ""

#: constobj.d:824
msgid ""
"The variable ~S had an illegal value.\n"
"~S has been reset to ~S."
msgstr ""

#: constobj.d:826
msgid ""
"Floating point operation combines numbers of different precision.\n"
"See ANSI CL 12.1.4.4 and the CLISP impnotes for details.\n"
"The result's actual precision is controlled by\n"
"~S.\n"
"To shut off this warning, set ~S to ~S."
msgstr ""

#: constobj.d:841
msgid "Bye."
msgstr ""

#: constobj.d:843
msgid "Press a key to terminate..."
msgstr ""

#: constobj.d:848
msgid ""
"\n"
"  Next environment: "
msgstr ""

#: constobj.d:850
msgid ""
"\n"
"APPLY frame with breakpoint for call "
msgstr ""

#: constobj.d:852
msgid ""
"\n"
"APPLY frame for call "
msgstr ""

#: constobj.d:854
msgid ""
"\n"
"EVAL frame with breakpoint for form "
msgstr ""

#: constobj.d:856
msgid ""
"\n"
"EVAL frame for form "
msgstr ""

#: constobj.d:858
msgid ""
"\n"
"frame binding variables (~ = dynamically):"
msgstr ""

#: constobj.d:861
msgid ""
"\n"
"CALLBACK frame"
msgstr ""

#: constobj.d:864
msgid ""
"\n"
"frame binding variables "
msgstr ""

#: constobj.d:866
msgid ""
"\n"
"frame binding functions "
msgstr ""

#: constobj.d:868
msgid " binds (~ = dynamically):"
msgstr ""

#: constobj.d:871
msgid ""
"\n"
"block frame "
msgstr ""

#: constobj.d:873
msgid ""
"\n"
"nested block frame "
msgstr ""

#: constobj.d:875
msgid " for "
msgstr ""

#: constobj.d:877
msgid ""
"\n"
"compiled block frame for "
msgstr ""

#: constobj.d:879
msgid ""
"\n"
"tagbody frame "
msgstr ""

#: constobj.d:881
msgid ""
"\n"
"nested tagbody frame "
msgstr ""

#: constobj.d:883
msgid " for"
msgstr ""

#: constobj.d:886
msgid ""
"\n"
"compiled tagbody frame for "
msgstr ""

#: constobj.d:888
msgid ""
"\n"
"catch frame for tag "
msgstr ""

#: constobj.d:890
msgid ""
"\n"
"handler frame for conditions"
msgstr ""

#: constobj.d:892
msgid ""
"\n"
"unwind-protect frame"
msgstr ""

#: constobj.d:894
msgid ""
"\n"
"\n"
"driver frame"
msgstr ""

#: constobj.d:896
msgid ""
"\n"
"frame binding environments"
msgstr ""

#: spvw.d:595
msgid "could not make symbol value per-thread"
msgstr ""

#: spvw.d:659
msgid ""
"\n"
"*** - Program stack overflow. RESET"
msgstr ""

#: spvw.d:664
msgid ""
"\n"
"*** - Lisp stack overflow. RESET"
msgstr ""

#: spvw.d:801
msgid ""
"internal error: statement in file ~, line ~ has been reached!!\n"
"Please send the authors of the program a description how you produced this error!"
msgstr ""

#: spvw.d:863
msgid "Unknown signature of an FSUBR\n"
msgstr ""

#: spvw.d:972
msgid "Unknown signature of a SUBR\n"
msgstr ""

#: spvw.d:1614
msgid "module `%s' requires package %s.\n"
msgstr ""

#: spvw.d:1655
msgid ""
"GNU CLISP (http://clisp.cons.org/) is an ANSI Common Lisp.\n"
"Usage:  "
msgstr ""

#: spvw.d:1658
msgid ""
" [options] [lispfile [argument ...]]\n"
" When `lispfile' is given, it is loaded and `*ARGS*' is set\n"
" to the list of argument strings. Otherwise, an interactive\n"
" read-eval-print loop is entered.\n"
msgstr ""

#: spvw.d:1662
msgid "Informative output:\n"
msgstr ""

#: spvw.d:1663
msgid " -h, --help  - print this help and exit\n"
msgstr ""

#: spvw.d:1664
msgid " --version   - print the version information\n"
msgstr ""

#: spvw.d:1665
msgid " --license   - print the licensing information\n"
msgstr ""

#: spvw.d:1666
msgid "Memory image selection:\n"
msgstr ""

#: spvw.d:1667
msgid " -B lisplibdir - set the installation directory\n"
msgstr ""

#: spvw.d:1669
msgid " -K linkingset - use this executable and memory image\n"
msgstr ""

#: spvw.d:1671
msgid " -M memfile  - use this memory image\n"
msgstr ""

#: spvw.d:1672
msgid " -m size     - memory size (size = xxxxxxxB or xxxxKB or xMB)\n"
msgstr ""

#: spvw.d:1674
msgid " -s size     - stack size (size = xxxxxxxB or xxxxKB or xMB)\n"
msgstr ""

#: spvw.d:1677
msgid " -t tmpdir   - temporary directory for memmap\n"
msgstr ""

#: spvw.d:1679
msgid "Internationalization:\n"
msgstr ""

#: spvw.d:1680
msgid " -L language - set user language\n"
msgstr ""

#: spvw.d:1681
msgid " -N nlsdir   - NLS catalog directory\n"
msgstr ""

#: spvw.d:1682
msgid " -Edomain encoding - set encoding\n"
msgstr ""

#: spvw.d:1683
msgid "Interoperability:\n"
msgstr ""

#: spvw.d:1684
msgid " -q, --quiet, --silent - do not print the banner\n"
msgstr ""

#: spvw.d:1685
msgid " -w          - wait for keypress after program termination\n"
msgstr ""

#: spvw.d:1686
msgid " -I          - be ILISP-friendly\n"
msgstr ""

#: spvw.d:1687
msgid "Startup actions:\n"
msgstr ""

#: spvw.d:1688
msgid " -a          - more ANSI CL compliance\n"
msgstr ""

#: spvw.d:1689
msgid " -p package  - start in the package\n"
msgstr ""

#: spvw.d:1690
msgid " -C          - set *LOAD-COMPILING* to T\n"
msgstr ""

#: spvw.d:1691
msgid " -norc       - do not load the user ~/.clisprc file\n"
msgstr ""

#: spvw.d:1692
msgid " -i file     - load initfile (can be repeated)\n"
msgstr ""

#: spvw.d:1693
msgid "Actions:\n"
msgstr ""

#: spvw.d:1694
msgid " -c [-l] lispfile [-o outputfile] - compile LISPFILE\n"
msgstr ""

#: spvw.d:1695
msgid " -x expression - execute the expression, then exit\n"
msgstr ""

#: spvw.d:1696
msgid " lispfile [argument ...] - load lispfile, then exit\n"
msgstr ""

#: spvw.d:1697
msgid "Default action is an interactive read-eval-print loop.\n"
msgstr ""

#: spvw.d:1755
msgid "                    Amiga version: Joerg Hoehle\n"
msgstr ""

#: spvw.d:1759
msgid "                    RISCOS port: Peter Burwood, Bruno Haible\n"
msgstr ""

#: spvw.d:1970
msgid "Syntax for %s: nnnnnnn or nnnnKB or nMB\n"
msgstr ""

#: spvw.d:1974
msgid "%s out of range\n"
msgstr ""

#: spvw.d:1986
msgid "memory size"
msgstr ""

#: spvw.d:1996
msgid "stack size"
msgstr ""

#: spvw.d:2317
msgid "Return value of malloc() = %x is not compatible with type code distribution.\n"
msgstr ""

#: spvw.d:2324
msgid "Only %d bytes available.\n"
msgstr ""

#: spvw.d:2558
msgid "Couldn't determine the end of the SP stack!\n"
msgstr ""

#: spvw.d:2779
msgid ""
"\n"
"WARNING: No initialisation file specified.\n"
msgstr ""

#: spvw.d:2797
msgid ""
"\n"
"WARNING: No installation directory specified.\n"
msgstr ""

#: spvw.d:3002
msgid "Not enough memory for Lisp.\n"
msgstr ""

#: spvw_alloca.d:49
msgid ""
"\n"
"*** - Virtual memory exhausted. RESET"
msgstr ""

#: spvw_alloca.d:51
msgid ""
"\n"
"*** - Memory exhausted. RESET"
msgstr ""

#: spvw_mmap.d:188
msgid "Cannot reserve address range at 0x%x ."
msgstr ""

#: spvw_mmap.d:199
msgid "Cannot reserve address range 0x%x-0x%x ."
msgstr ""

#: spvw_mmap.d:252
msgid "CreateFileMapping() failed."
msgstr ""

#: spvw_mmap.d:259
msgid "MapViewOfFileEx(addr=0x%x,off=0x%x) failed."
msgstr ""

#: spvw_mmap.d:266
msgid "MapViewOfFileEx() returned 0x%x instead of 0x%x.\n"
msgstr ""

#: spvw_mmap.d:283
msgid "VirtualFree() failed."
msgstr ""

#: spvw_mmap.d:299
msgid "VirtualProtect() failed."
msgstr ""

#: spvw_multimap.d:144
msgid "msync(0x%x,0x%x,MS_INVALIDATE) fails."
msgstr ""

#: spvw_multimap.d:209
msgid "Cannot open %s ."
msgstr ""

#: spvw_multimap.d:220
msgid "Cannot delete %s ."
msgstr ""

#: spvw_multimap.d:235
msgid "** WARNING: ** Too few free disk space for %s .\n"
msgstr ""

#: spvw_multimap.d:238
msgid "Please restart LISP with fewer memory (option -m).\n"
msgstr ""

#: spvw_multimap.d:246
msgid "Cannot make %s long enough."
msgstr ""

#: spvw_multimap.d:265
msgid "Cannot fill %s ."
msgstr ""

#: spvw_multimap.d:282
msgid "Cannot close %s ."
msgstr ""

#: spvw_multimap.d:317
msgid "Cannot close /dev/zero ."
msgstr ""

#: spvw_multimap.d:353
msgid "Recompile your operating system with SYSV IPC support.\n"
msgstr ""

#: spvw_multimap.d:367
msgid "Cannot allocate private shared memory segment."
msgstr ""

#: spvw_multimap.d:389
msgid "Cannot map shared memory to address 0x%x."
msgstr ""

#: spvw_multimap.d:412
msgid "Cannot fill shared memory."
msgstr ""

#: spvw_multimap.d:418
msgid "Could not fill shared memory."
msgstr ""

#: spvw_multimap.d:433
msgid "Cannot remove shared memory segment."
msgstr ""

#: spvw_fault.d:482
msgid "mprotect() fails."
msgstr ""

#: spvw_sigsegv.d:31
msgid ""
"\n"
"SIGSEGV cannot be cured. Fault address = 0x%x.\n"
msgstr ""

#: spvw_sigsegv.d:73
msgid "Apollo 13 scenario: Stack overflow handling failed. On the next stack overflow we will crash!!!\n"
msgstr ""

#: spvw_garcol.d:2020
msgid "munmap() fails."
msgstr ""

#: spvw_allocate.d:34
msgid "No more room for LISP objects"
msgstr ""

#: spvw_allocate.d:54
msgid ""
"\n"
"*** - No more room for LISP objects: RESET"
msgstr ""

#: spvw_memfile.d:235
msgid "disk full"
msgstr ""

#: spvw_memfile.d:763
msgid "operating system error during load of initialisation file `%s'\n"
msgstr ""

#: spvw_memfile.d:1235
msgid "Cannot map the initialisation file into memory."
msgstr ""

#: spvw_memfile.d:1514
msgid "operating system error during load of initialisation file\n"
msgstr ""

#: spvw_memfile.d:1520
msgid "initialisation file was not created by this version of LISP\n"
msgstr ""

#: spvw_memfile.d:1524
msgid "not enough memory for initialisation\n"
msgstr ""

#: eval.d:553
msgid "~: ~ is a constant, cannot be bound dynamically"
msgstr ""

#: eval.d:1730
msgid "FUNCTION: lambda-list for ~ is missing"
msgstr ""

#: eval.d:1740
msgid "FUNCTION: lambda-list for ~ should be a list, not ~"
msgstr ""

#: eval.d:1853
msgid "FUNCTION: illegal declaration ~"
msgstr ""

#: eval.d:1864
msgid "FUNCTION: ~ is not a symbol, cannot be declared SPECIAL"
msgstr ""

#: eval.d:1947
msgid "FUNCTION: too long variable specification after &OPTIONAL: ~"
msgstr ""

#: eval.d:1988
msgid "FUNCTION: &REST var must be followed by &KEY or &AUX or end of list: ~"
msgstr ""

#: eval.d:1993
msgid "FUNCTION: &REST must be followed by a variable: ~"
msgstr ""

#: eval.d:2044
msgid "FUNCTION: ~ in ~ is not a symbol"
msgstr ""

#: eval.d:2100
msgid "FUNCTION: incorrect variable specification after &KEY: ~"
msgstr ""

#: eval.d:2107
msgid "FUNCTION: &ALLOW-OTHER-KEYS must be followed by &AUX or end of list: ~"
msgstr ""

#: eval.d:2142
msgid "FUNCTION: too long variable specification after &AUX: ~"
msgstr ""

#: eval.d:2165
msgid "FUNCTION: badly placed lambda-list keyword ~: ~"
msgstr ""

#: eval.d:2170
msgid "FUNCTION: ~ is not a symbol, may not be used as a variable"
msgstr ""

#: eval.d:2175
msgid "FUNCTION: ~ is a constant, may not be used as a variable"
msgstr ""

#: eval.d:2182
msgid "FUNCTION: too many parameters in the lambda-list ~"
msgstr ""

#: eval.d:2189
msgid "FUNCTION: a dot in a lambda-list is allowed only for macros, not here: ~"
msgstr ""

#: eval.d:2269
msgid "~: ~ is a special operator, not a function"
msgstr ""

#: eval.d:2303
msgid "~: the function ~ is undefined"
msgstr ""

#: eval.d:2411
msgid "EVAL/APPLY: keyword arguments for ~ should occur pairwise"
msgstr ""

#: eval.d:2439
msgid "EVAL/APPLY: ~ is not a symbol"
msgstr ""

#: eval.d:2465
msgid "EVAL/APPLY: keyword ~ is illegal for ~. The possible keywords are ~"
msgstr ""

#: eval.d:2659
msgid "EVAL/APPLY: too few arguments given to ~"
msgstr ""

#: eval.d:3153
msgid "EVAL: variable ~ has no value"
msgstr ""

#: eval.d:3332
msgid "EVAL: too few parameters for special-form ~: ~"
msgstr ""

#: eval.d:3346
msgid "EVAL: too many parameters for special-form ~: ~"
msgstr ""

#: eval.d:3359
msgid "EVAL: dotted parameter list for special form ~: ~"
msgstr ""

#: eval.d:3426
msgid "EVAL: too few arguments given to ~: ~"
msgstr ""

#: eval.d:3439
msgid "EVAL: too many arguments given to ~: ~"
msgstr ""

#: eval.d:3452
msgid "EVAL: argument list given to ~ is dotted: ~"
msgstr ""

#: eval.d:4295
msgid "APPLY: argument list given to ~ is dotted"
msgstr ""

#: eval.d:4307
msgid "APPLY: too many arguments given to ~"
msgstr ""

#: eval.d:4319
msgid "APPLY: too few arguments given to ~"
msgstr ""

#: eval.d:6813
msgid "assignment to constant symbol ~ is impossible"
msgstr ""

#: eval.d:7743
msgid "STACK corrupted"
msgstr ""

#: eval.d:8127
msgid "~: ~ is not a correct index into ~"
msgstr ""

#: eval.d:8739
msgid "undefined bytecode in ~ at byte ~"
msgstr ""

#: eval.d:8749
msgid "too many return values"
msgstr ""

#: eval.d:8756
msgid "Corrupted STACK in ~ at byte ~"
msgstr ""

#: control.d:63
msgid "~: function name ~ should be a symbol"
msgstr ""

#: control.d:91
msgid "~: undefined function ~"
msgstr ""

#: control.d:129
msgid "~: ~ has no dynamic value"
msgstr ""

#: control.d:261
msgid "~: the value of the constant ~ may not be altered"
msgstr ""

#: control.d:289
msgid "~ called with odd number of arguments: ~"
msgstr ""

#: control.d:299
msgid "dotted list given to ~ : ~"
msgstr ""

#: control.d:399
msgid "~: the value of the constant ~ must not be removed"
msgstr ""

#: control.d:424
msgid "~: the special operator definition of ~ must not be removed"
msgstr ""

#: control.d:506
msgid "~: doc-strings are not allowed here: ~"
msgstr ""

#: control.d:579
msgid "~: ~ is not a symbol, but was declared SPECIAL"
msgstr ""

#: control.d:661
msgid "~: symbol ~ is declared special and must not be declared a macro"
msgstr ""

#: control.d:668
msgid "~: symbol ~ must not be declared SPECIAL and a macro at the same time"
msgstr ""

#: control.d:697
msgid "~: too many variables and/or declarations"
msgstr ""

#: control.d:981
msgid "~: ~ is not a function specification"
msgstr ""

#: control.d:1146
msgid "~: ~ is not a macro specification"
msgstr ""

#: control.d:1154
msgid "~: macro name ~ should be a symbol"
msgstr ""

#: control.d:1192
msgid "~: ~ is not a function and macro specification"
msgstr ""

#: control.d:1200
msgid "~: function and macro name ~ should be a symbol"
msgstr ""

#: control.d:1327
msgid "~: clause ~ should be a list"
msgstr ""

#: control.d:1360
msgid "~: missing key list: ~"
msgstr ""

#: control.d:1370
msgid "~: the ~ clause must be the last one"
msgstr ""

#: control.d:1434
msgid "~: the block named ~ has already been left"
msgstr ""

#: control.d:1473
msgid "~: no block named ~ is currently visible"
msgstr ""

#: control.d:1722
msgid "~: ~ is neither tag nor form"
msgstr ""

#: control.d:1768
msgid "~: illegal tag ~"
msgstr ""

#: control.d:1807
msgid "~: tagbody for tag ~ has already been left"
msgstr ""

#: control.d:1822
msgid "~: no tag named ~ is currently visible"
msgstr ""

#: control.d:1841
msgid "~: too many values"
msgstr ""

#: control.d:1886
msgid "~: too many arguments to ~"
msgstr ""

#: control.d:2149
msgid "Argument ~ is not a macroexpansion environment"
msgstr ""

#: control.d:2211
msgid "declarations ~ are not allowed here"
msgstr ""

#: control.d:2233
msgid "~: ~ evaluated to the values ~, not of type ~"
msgstr ""

#: control.d:2249
msgid "~: bad declaration ~"
msgstr ""

#: control.d:2362
msgid "~: ~ may not be used as an environment"
msgstr ""

#: control.d:2510
msgid "no doc-strings allowed here: ~"
msgstr ""

#: control.d:2575
msgid "keyword argument list ~ has an odd length"
msgstr ""

#: control.d:2611
msgid "illegal keyword/value pair ~, ~ in argument list. The allowed keywords are ~"
msgstr ""

#: encoding.d:47
msgid "Character #\\u$$$$ cannot be represented in the character set ~"
msgstr ""

#: encoding.d:226
msgid "character #x$$$$$$$$ in ~ conversion, not a Unicode-16, sorry"
msgstr ""

#: encoding.d:420
msgid "invalid byte #x$$ in ~ conversion, not a Unicode-16"
msgstr ""

#: encoding.d:438
msgid "invalid byte sequence #x$$ #x$$ in ~ conversion"
msgstr ""

#: encoding.d:459
msgid "invalid byte sequence #x$$ #x$$ #x$$ in ~ conversion"
msgstr ""

#: encoding.d:1064
msgid "invalid byte #x$$ in ~ conversion"
msgstr ""

#: encoding.d:1446
msgid "~: illegal :CHARSET argument ~"
msgstr ""

#: encoding.d:1459
msgid "~: illegal :LINE-TERMINATOR argument ~"
msgstr ""

#: encoding.d:1471
msgid "~: illegal :INPUT-ERROR-ACTION argument ~"
msgstr ""

#: encoding.d:1483
msgid "~: illegal :OUTPUT-ERROR-ACTION argument ~"
msgstr ""

#: encoding.d:1532
msgid "~: argument ~ is not a character set"
msgstr ""

#: encoding.d:2195
msgid "~: ~ is not a 1:1 encoding"
msgstr ""

#: pathname.d:1302
msgid "~: host should be NIL, not ~"
msgstr ""

#: pathname.d:1421
msgid "~: argument should be a string, symbol, file stream or pathname, not ~"
msgstr ""

#: pathname.d:1464
msgid "~: filename for ~ is unknown"
msgstr ""

#: pathname.d:1884
msgid "~(~ ~ ~): a logical pathname must contain host"
msgstr ""

#: pathname.d:2335
msgid "~: there is no user named ~"
msgstr ""

#: pathname.d:2642
msgid "~: syntax error in filename ~ at position ~"
msgstr ""

#: pathname.d:2916
msgid "~: argument ~ is not a logical pathname, string, stream or symbol"
msgstr ""

#: pathname.d:2972
msgid "~: endless loop while resolving ~"
msgstr ""

#: pathname.d:2994
msgid "~: unknown logical host ~ in ~"
msgstr ""

#: pathname.d:3006
msgid "~: No replacement rule for ~ is known."
msgstr ""

#: pathname.d:3400
msgid "~: :VERSION-argument should be NIL or a positive fixnum or :WILD or :NEWEST, not ~"
msgstr ""

#: pathname.d:3427
msgid "~: :VERSION-argument should be NIL or :WILD or :NEWEST, not ~"
msgstr ""

#: pathname.d:4270
msgid "~: on host ~, device ~ is invalid, should be NIL"
msgstr ""

#: pathname.d:4520
msgid "~: illegal ~ argument ~"
msgstr ""

#: pathname.d:4866
msgid "wildcards are not allowed here: ~"
msgstr ""

#: pathname.d:4903
msgid "~: argument ~ should be ~, ~, ~, ~, ~, ~ or ~"
msgstr ""

#: pathname.d:6075
msgid "~: replacement pieces ~ do not fit into ~"
msgstr ""

#: pathname.d:6168
msgid "~: ~ is not a specialization of ~"
msgstr ""

#: pathname.d:6219
msgid "(~ ~ ~ ~) is ambiguous: ~"
msgstr ""

#: pathname.d:6245
msgid "nonexistent directory: ~"
msgstr ""

#: pathname.d:6261
msgid "~: File ~ already exists"
msgstr ""

#: pathname.d:6547
msgid "\"..\\\\\" after \"...\\\\\" is invalid: ~"
msgstr ""

#: pathname.d:6752
msgid "Couldn't access current directory"
msgstr ""

#: pathname.d:6902
msgid "~: ~ names a file, not a directory"
msgstr ""

#: pathname.d:6996
msgid "UNIX error while GETWD: ~"
msgstr ""

#: pathname.d:7005
msgid "UNIX GETWD returned ~"
msgstr ""

#: pathname.d:7107
msgid "UNIX REALPATH returned ~"
msgstr ""

#: pathname.d:7329
msgid "~: If a device is specified, the directory must begin with ~: ~"
msgstr ""

#: pathname.d:7721
msgid "no file name given: ~"
msgstr ""

#: pathname.d:7735
msgid "not a directory: ~"
msgstr ""

#: pathname.d:7804
msgid "~: file ~ does not exist"
msgstr ""

#: pathname.d:7833
msgid "~: pathname with type but without name makes no sense: ~"
msgstr ""

#: pathname.d:8064
msgid "cannot delete file ~ since there is file stream open to it"
msgstr ""

#: pathname.d:8126
msgid "cannot rename file ~ since there is file stream open to it"
msgstr ""

#: pathname.d:8720
msgid "file ~ does not exist"
msgstr ""

#: pathname.d:8726
msgid "a file named ~ already exists"
msgstr ""

#: pathname.d:8788
msgid "~: illegal :DIRECTION argument ~"
msgstr ""

#: pathname.d:8817
msgid "~: illegal :IF-EXISTS argument ~"
msgstr ""

#: pathname.d:8837
msgid "~: illegal :IF-DOES-NOT-EXIST argument ~"
msgstr ""

#: pathname.d:10035
msgid "~: cannot change default directory on remote host: ~"
msgstr ""

#: pathname.d:10081
msgid "root directory not allowed here: ~"
msgstr ""

#: pathname.d:11119
msgid "~: library directory is not known, use a command line option to specify it"
msgstr ""

#: stream.d:619
msgid "~: the last character read from ~ was not ~"
msgstr ""

#: stream.d:627
msgid "~ from ~ without ~ before it"
msgstr ""

#: stream.d:897
msgid "~: cannot output to ~"
msgstr ""

#: stream.d:913
msgid "~ is not a character, cannot be output onto ~"
msgstr ""

#: stream.d:929
msgid "~ is not an integer, cannot be output onto ~"
msgstr ""

#: stream.d:944
msgid "integer ~ is out of range, cannot be output onto ~"
msgstr ""

#: stream.d:997
msgid "~: argument ~ should be an input stream"
msgstr ""

#: stream.d:1015
msgid "~: argument ~ should be an output stream"
msgstr ""

#: stream.d:1354
msgid "~: argument should be a symbol, not ~"
msgstr ""

#: stream.d:2528
msgid "~: ~ is not a string input stream"
msgstr ""

#: stream.d:2658
msgid "~: ~ is not a string output stream"
msgstr ""

#: stream.d:2700
msgid "~: argument ~ should be a string with fill pointer"
msgstr ""

#: stream.d:3002
msgid "~: ~ is not a buffered input stream"
msgstr ""

#: stream.d:3329
msgid "~: stream must be a generic-stream, not ~"
msgstr ""

#: stream.d:3421
msgid "~: illegal :BUFFERED argument ~"
msgstr ""

#: stream.d:3611
msgid "~: illegal :EXTERNAL-FORMAT argument ~"
msgstr ""

#: stream.d:4052
msgid "~: Ctrl-C: User break"
msgstr ""

#: stream.d:4104
msgid "unknown character set ~"
msgstr ""

#: stream.d:6397
msgid "Unbuffered streams need an ~ with a bit size being a multiple of 8, not ~"
msgstr ""

#: stream.d:6789
msgid "Closed ~ because disk is full."
msgstr ""

#: stream.d:6977
msgid "cannot position ~ beyond EOF"
msgstr ""

#: stream.d:8604
msgid "~: argument ~ ~ was specified, but ~ is not a regular file."
msgstr ""

#: stream.d:8639
msgid "~: arguments ~ ~ and ~ ~ were specified, but ~ is not a regular file."
msgstr ""

#: stream.d:8701
msgid "file ~ is not an integer file"
msgstr ""

#: stream.d:10299
msgid "Return value ~ of call to ~ contains ~ which is not a ~."
msgstr ""

#: stream.d:10618
msgid "character ~ contains bits, cannot be output onto ~"
msgstr ""

#: stream.d:11357
msgid "RAW mode not supported on ~"
msgstr ""

#: stream.d:11789
msgid "~: argument ~ should be a window stream"
msgstr ""

#: stream.d:12444
msgid "cannot output to standard output"
msgstr ""

#: stream.d:13840
msgid "environment has no TERM variable"
msgstr ""

#: stream.d:13845
msgid "terminal type ~ unknown to termcap"
msgstr ""

#: stream.d:13870
msgid "insufficient terminal: hardcopy terminal"
msgstr ""

#: stream.d:13874
msgid "insufficient terminal: overstrikes, cannot clear output"
msgstr ""

#: stream.d:13878
msgid "insufficient terminal: cannot scroll"
msgstr ""

#: stream.d:13883
msgid "insufficient terminal: cannot clear screen"
msgstr ""

#: stream.d:13887
msgid "insufficient terminal: cannot position cursor randomly"
msgstr ""

#: stream.d:14399
msgid "~: package SCREEN is not implemented"
msgstr ""

#: stream.d:15928
msgid "host should be string, not ~"
msgstr ""

#: stream.d:15936
msgid "display should be a nonnegative fixnum, not ~"
msgstr ""

#: stream.d:16004
msgid "~: stream must be a socket-stream, not ~"
msgstr ""

#: stream.d:16017
msgid "~: argument ~ should be a vector of type (ARRAY (UNSIGNED-BYTE 8) (*))"
msgstr ""

#: stream.d:16243
msgid "~: ~ is not a SOCKET-SERVER"
msgstr ""

#: stream.d:16309
msgid "~: argument ~ is neither an open SOCKET-STREAM nor a positive FIXNUM"
msgstr ""

#: stream.d:16503
msgid "~: argument ~ is not an open SOCKET-STREAM"
msgstr ""

#: stream.d:16516
msgid "~: argument ~ is not a SOCKET-STREAM"
msgstr ""

#: stream.d:16562
msgid "~: list ~ is too long (~ maximum)"
msgstr ""

#: stream.d:16834
msgid "The value of ~ is not a stream: ~"
msgstr ""

#: stream.d:16838
msgid "The value of ~ is not an appropriate stream: ~"
msgstr ""

#: stream.d:16852
msgid "The value of ~ was not a stream: ~. It has been changed to ~."
msgstr ""

#: stream.d:16871
msgid "readline library: out of memory."
msgstr ""

#: stream.d:17175
msgid "~: The ~ of ~ cannot be changed from ~ to ~."
msgstr ""

#: stream.d:18342
msgid "Return value ~ of call to ~ is not a fixnum >= 0 or NIL."
msgstr ""

#: stream.d:18361
msgid "~ needs an ~ with a bit size being a multiple of 8, not ~"
msgstr ""

#: stream.d:18423
msgid "~: illegal endianness argument ~"
msgstr ""

#: stream.d:19158
msgid "~: argument ~ is not an open file stream"
msgstr ""

#: stream.d:19192
msgid "~: position argument should be ~ or ~ or a nonnegative integer, not ~"
msgstr ""

#: socket.d:1010
msgid "~: ~"
msgstr ""

#: io.d:484
msgid "The value of ~ was not a readtable. It has been reset."
msgstr ""

#: io.d:570
msgid "~: argument ~ is not a readtable"
msgstr ""

#: io.d:773
msgid "~: ~ is a dispatch macro character"
msgstr ""

#: io.d:838
msgid "~: ~ is not a dispatch macro character"
msgstr ""

#: io.d:867
msgid "~: digit $ not allowed as sub-char"
msgstr ""

#: io.d:917
msgid "~: new value ~ should be ~, ~, ~ or ~."
msgstr ""

#: io.d:954
msgid ""
"The value of ~ should be an integer between 2 and 36, not ~.\n"
"It has been reset to 10."
msgstr ""

#: io.d:1005
msgid "~ from ~: character read should be a character: ~"
msgstr ""

#: io.d:1059
msgid "~: input stream ~ ends within an object. Last opening parenthesis probably in line ~."
msgstr ""

#: io.d:1065
msgid "~: input stream ~ ends within an object"
msgstr ""

#: io.d:1374
msgid "~ from ~: illegal character ~"
msgstr ""

#: io.d:1387
msgid "~: input stream ~ ends within a token after single escape character"
msgstr ""

#: io.d:1435
msgid "~: input stream ~ ends within a token after multiple escape character"
msgstr ""

#: io.d:2017
msgid "~ from ~: ~ has no macro character definition"
msgstr ""

#: io.d:2031
msgid "~ from ~: macro character definition for ~ may not return ~ values, only one value."
msgstr ""

#: io.d:2055
msgid "~: input stream ~ ends within read macro beginning to ~"
msgstr ""

#: io.d:2089
msgid "~ from ~: After ~ is ~ an undefined dispatch macro character"
msgstr ""

#: io.d:2103
msgid "~ from ~: dispatch macro character definition for ~ after ~ may not return ~ values, only one value."
msgstr ""

#: io.d:2179
msgid "~ from ~: a token consisting only of dots cannot be meaningfully read in"
msgstr ""

#: io.d:2284
msgid "~ from ~: too many colons in token ~"
msgstr ""

#: io.d:2334
msgid "~ from ~: there is no package with name ~"
msgstr ""

#: io.d:2363
msgid "~ from ~: ~ has no external symbol with name ~"
msgstr ""

#: io.d:2411
msgid "~ from ~: token \".\" not allowed here"
msgstr ""

#: io.d:2481
msgid "~: no entry for ~ from ~ in ~ = ~"
msgstr ""

#: io.d:2692
msgid "~ from ~: illegal end of dotted list"
msgstr ""

#: io.d:2768
msgid "~ from ~: an object cannot start with ~"
msgstr ""

#: io.d:2859
msgid "~: input stream ~ ends within a string"
msgstr ""

#: io.d:2925
msgid "~ from ~: no number allowed between # and $"
msgstr ""

#: io.d:3024
msgid "~: input stream ~ ends within a comment #$ ... $#"
msgstr ""

#: io.d:3106
msgid "~ from ~: font number ~ for character is too large, should be = 0"
msgstr ""

#: io.d:3139
msgid "~ from ~: there is no character bit with name ~"
msgstr ""

#: io.d:3206
msgid "~ from ~: there is no character with name ~"
msgstr ""

#: io.d:3269
msgid "~ from ~: token ~ after #$ is not a rational number in base ~"
msgstr ""

#: io.d:3348
msgid "~ from ~: the number base must be given between # and R"
msgstr ""

#: io.d:3363
msgid "~ from ~: The base ~ given between # and R should lie between 2 and 36"
msgstr ""

#: io.d:3411
msgid "~ from ~: bad syntax for complex number: #C~"
msgstr ""

#: io.d:3446
msgid "~ from ~: token expected after #:"
msgstr ""

#: io.d:3475
msgid "~ from ~: token ~ after #: should contain no colon"
msgstr ""

#: io.d:3528
msgid "~ from ~: only zeroes and ones are allowed after #*"
msgstr ""

#: io.d:3557
msgid "~ from ~: bit vector is longer than the explicitly given length ~"
msgstr ""

#: io.d:3566
msgid "~ from ~: must specify element of bit vector of length ~"
msgstr ""

#: io.d:3646
msgid "~ from ~: vector is longer than the explicitly given length ~"
msgstr ""

#: io.d:3655
msgid "~ from ~: must specify element of vector of length ~"
msgstr ""

#: io.d:3740
msgid "~ from ~: bad syntax for array: #A~"
msgstr ""

#: io.d:3806
msgid "~ from ~: ~ = ~ doesn't allow the evaluation of ~"
msgstr ""

#: io.d:3933
msgid "~ from ~: a number must be given between # and $"
msgstr ""

#: io.d:3945
msgid "~ from ~: label #~? too large"
msgstr ""

#: io.d:3967
msgid "~ from ~: the value of ~ has been altered arbitrarily, it is not an alist: ~"
msgstr ""

#: io.d:3987
msgid "~ from ~: label #~= may not be defined twice"
msgstr ""

#: io.d:4014
msgid "~ from ~: #~= #~# is illegal"
msgstr ""

#: io.d:4042
msgid "~ from ~: undefined label #~#"
msgstr ""

#: io.d:4059
msgid "~ from ~: objects printed as #<...> cannot be read back in"
msgstr ""

#: io.d:4077
msgid "~ from ~: objects printed as # in view of ~ cannot be read back in"
msgstr ""

#: io.d:4159
msgid "~ from ~: illegal feature ~"
msgstr ""

#: io.d:4295
msgid "~ from ~: #S must be followed by the type and the contents of the structure, not ~"
msgstr ""

#: io.d:4308
msgid "~ from ~: the type of a structure should be a symbol, not ~"
msgstr ""

#: io.d:4322
msgid "~ from ~: bad HASH-TABLE"
msgstr ""

#: io.d:4349
msgid "~ from ~: bad ~"
msgstr ""

#: io.d:4381
msgid "~ from ~: no structure of type ~ has been defined"
msgstr ""

#: io.d:4392
msgid "~ from ~: bad ~ for ~"
msgstr ""

#: io.d:4404
msgid "~ from ~: structures of type ~ cannot be read in, missing constructor function"
msgstr ""

#: io.d:4426
msgid "~ from ~: a structure ~ may not contain a component \".\""
msgstr ""

#: io.d:4438
msgid "~ from ~: ~ is not a symbol, not a slot name of structure ~"
msgstr ""

#: io.d:4448
msgid "~ from ~: missing value of slot ~ in structure ~"
msgstr ""

#: io.d:4470
msgid "~ from ~: too many slots for structure ~"
msgstr ""

#: io.d:4517
msgid "~ from ~: illegal syntax of closure code vector after #~Y"
msgstr ""

#: io.d:4572
msgid "~ from ~: object #Y~ has not the syntax of a compiled closure"
msgstr ""

#: io.d:4718
msgid "~ from ~: bad syntax for pathname: #P~"
msgstr ""

#: io.d:4983
msgid "~: peek type should be NIL or T or a character, not ~"
msgstr ""

#: io.d:5144
msgid "~: ~ argument should be an integer between 2 and 36, not ~"
msgstr ""

#: io.d:5245
msgid "~: string ~ does not have integer syntax"
msgstr ""

#: io.d:5417
msgid "~: Despite of ~, ~ cannot be printed readably."
msgstr ""

#: io.d:5443
msgid ""
"~: the value ~ of ~ is neither ~ nor ~ nor ~.\n"
"It is reset to ~."
msgstr ""

#: io.d:5886
msgid "~: must be a positive integer or NIL, not ~"
msgstr ""

#: io.d:6847
msgid "~: not enough stack space for carrying out circularity analysis"
msgstr ""

#: io.d:8571
msgid "~: bad ~"
msgstr ""

#: io.d:9713
msgid "~: an unknown record type has been generated!"
msgstr ""

#: array.d:228
msgid "index too large"
msgstr ""

#: array.d:237
msgid "An array has been shortened by adjusting it while another array was displaced to it."
msgstr ""

#: array.d:329
msgid "~: ~ is not an array"
msgstr ""

#: array.d:474
msgid "~: index ~ for ~ is not of type `(INTEGER 0 (,ARRAY-DIMENSION-LIMIT))"
msgstr ""

#: array.d:495
msgid "~: index ~ for ~ is out of range"
msgstr ""

#: array.d:598
msgid "~: ~ does not fit into ~, bad type"
msgstr ""

#: array.d:917
msgid "~: ~ is not an nonnegative integer less than the rank of ~"
msgstr ""

#: array.d:1128
msgid "~: ~ is not an array of bits"
msgstr ""

#: array.d:1993
msgid "~: The arguments ~ and ~ should be arrays of bits with the same dimensions"
msgstr ""

#: array.d:2004
msgid "~: The arguments ~, ~ and ~ should be arrays of bits with the same dimensions"
msgstr ""

#: array.d:3994
msgid "~: vector ~ has no fill pointer"
msgstr ""

#: array.d:4044
msgid "~: ~ has length zero"
msgstr ""

#: array.d:4072
msgid "~ works only on adjustable arrays, not on ~"
msgstr ""

#: array.d:4090
msgid "~: extension ~ should be a positive fixnum"
msgstr ""

#: array.d:4114
msgid "~: extending the vector by ~ elements makes it too long"
msgstr ""

#: array.d:4186
msgid "~: cannot push ~ into array ~ (bad type)"
msgstr ""

#: array.d:4485
msgid "~: dimension ~ is not of type `(INTEGER 0 (,ARRAY-DIMENSION-LIMIT))"
msgstr ""

#: array.d:4528
msgid "~: dimensions ~ produce too large total-size"
msgstr ""

#: array.d:4570
msgid "~: ambiguous, more than one initialisation specified"
msgstr ""

#: array.d:4582
msgid "~: ~ must not be specified without ~"
msgstr ""

#: array.d:4629
msgid "~: the initial-element ~ is not of type ~"
msgstr ""

#: array.d:4720
msgid "~: ~ is of incorrect length"
msgstr ""

#: array.d:4751
msgid "~: ~-argument ~ is not an array"
msgstr ""

#: array.d:4794
msgid "~: ~-argument ~ does not have element type ~"
msgstr ""

#: array.d:4811
msgid "~: ~-argument ~ is not of type `(INTEGER 0 (,ARRAY-TOTAL-SIZE-LIMIT))"
msgstr ""

#: array.d:4823
msgid "~: array-total-size + displaced-offset (= ~) exceeds total size ~ of ~-argument"
msgstr ""

#: array.d:4849
msgid "~: fill-pointer ~ should be a nonnegative fixnum"
msgstr ""

#: array.d:4858
msgid "~: fill-pointer argument ~ is larger than the length ~"
msgstr ""

#: array.d:4928
msgid "~: attempted rank ~ is too large"
msgstr ""

#: array.d:4942
msgid "~: ~ may not be specified for an array of rank ~"
msgstr ""

#: array.d:5141
msgid "~: array ~ is not adjustable"
msgstr ""

#: array.d:5164
msgid "~: rank ~ of array ~ cannot be altered: ~"
msgstr ""

#: array.d:5180
msgid "~: array ~ does not have element-type ~"
msgstr ""

#: array.d:5234
msgid "~: cannot displace array ~ to itself"
msgstr ""

#: array.d:5258
msgid "~: array ~ has no fill-pointer"
msgstr ""

#: array.d:5273
msgid "~: the fill-pointer of array ~ is ~, greater than ~"
msgstr ""

#: array.d:5424
msgid "Illegal START index ~ for ~"
msgstr ""

#: array.d:5460
msgid "Illegal END index ~ for ~"
msgstr ""

#: array.d:5474
msgid "~: invalid bit-vector length ~"
msgstr ""

#: hashtabl.d:1148
msgid "Hash table size ~ too large"
msgstr ""

#: hashtabl.d:1194
msgid "internal error occured while resizing ~"
msgstr ""

#: hashtabl.d:1305
msgid "~: illegal :TEST argument ~"
msgstr ""

#: hashtabl.d:1322
msgid "~: :SIZE argument should be a fixnum >=0, not ~"
msgstr ""

#: hashtabl.d:1345
msgid "~: :REHASH-SIZE argument should be a float > 1, not ~"
msgstr ""

#: hashtabl.d:1390
msgid "~: :REHASH-THRESHOLD argument should be a float between 0 and 1, not ~"
msgstr ""

#: hashtabl.d:1465
msgid "~: internal error while building ~"
msgstr ""

#: hashtabl.d:1509
msgid "~: argument ~ is not a hash-table"
msgstr ""

#: list.d:642
msgid "~: ~ is not a nonnegative fixnum and therefore not a valid index"
msgstr ""

#: list.d:738
msgid "~: ~ is not a nonnegative integer and therefore not a valid argument"
msgstr ""

#: list.d:865
msgid "~: ~ is not a nonnegative fixnum and therefore not a valid list length"
msgstr ""

#: list.d:1174
msgid "~: ~ is not a pair"
msgstr ""

#: list.d:1921
msgid "~: lists ~ and ~ are not of same length"
msgstr ""

#: list.d:2140
msgid "~: index ~ too large for ~"
msgstr ""

#: list.d:2202
msgid "~: start index ~ too large for ~"
msgstr ""

#: list.d:2247
msgid "~: end index ~ too large for ~"
msgstr ""

#: package.d:386
msgid "symbol ~ cannot be deleted from symbol table"
msgstr ""

#: package.d:808
msgid "~ inconsistent: symbol ~ is a shadowing symbol but not present"
msgstr ""

#: package.d:1259
msgid "UNEXPORT in ~ is illegal"
msgstr ""

#: package.d:1278
msgid "UNEXPORT works only on accessible symbols, not on ~ in ~"
msgstr ""

#: package.d:1924
msgid "The value of *PACKAGE* was not a package. Old value ~. New value ~."
msgstr ""

#: package.d:1946
msgid "Package ~ has been deleted."
msgstr ""

#: package.d:1957
msgid "There is no package with name ~"
msgstr ""

#: package.d:1967
msgid "~: argument should be a package or a package name, not ~"
msgstr ""

#: package.d:1979
msgid "~: argument should be a string, not ~"
msgstr ""

#: package.d:2002
msgid "~: argument ~ should be a string or a symbol"
msgstr ""

#: package.d:2112
msgid "~: there is already a package named ~"
msgstr ""

#: package.d:2302
msgid "~: argument should be a symbol or a list of symbols, not ~"
msgstr ""

#: package.d:2537
msgid "Cannot change the case sensitiveness of ~."
msgstr ""

#: record.d:35
msgid "~: ~ is not a valid index into ~"
msgstr ""

#: record.d:47
msgid "~: ~ is not a record"
msgstr ""

#: record.d:113
msgid "~: length ~ is illegal, should be of type (INTEGER (0) (65536))"
msgstr ""

#: record.d:151
msgid "~: ~ is not a structure of type ~"
msgstr ""

#: record.d:203
msgid "~: Slot ~ of ~ has no value"
msgstr ""

#: record.d:313
msgid "~: ~ is not a closure"
msgstr ""

#: record.d:327
msgid "~: This is not a compiled closure: ~"
msgstr ""

#: record.d:401
msgid "~ is not a valid code-vector byte"
msgstr ""

#: record.d:418
msgid "~: invalid code-vector ~"
msgstr ""

#: record.d:428
msgid "~: function ~ is too big: ~"
msgstr ""

#: record.d:469
msgid "~: This is not a prototype of a generic function: ~"
msgstr ""

#: record.d:619
msgid "~: ~ is not a Macro"
msgstr ""

#: record.d:726
msgid "~: ~ is not a weak pointer"
msgstr ""

#: record.d:794
msgid "~: ~ is not a class"
msgstr ""

#: record.d:827
msgid "ALLOCATE-INSTANCE: keyword argument list ~ has an odd length"
msgstr ""

#: record.d:1035
msgid ""
"~: illegal keyword/value pair ~, ~ in argument list.\n"
"The allowed keywords are ~"
msgstr ""

#: record.d:1071
msgid "SHARED-INITIALIZE: keyword argument list ~ has an odd length"
msgstr ""

#: record.d:1198
msgid "REINITIALIZE-INSTANCE: keyword argument list ~ has an odd length"
msgstr ""

#: record.d:1305
msgid "INITIALIZE-INSTANCE: keyword argument list ~ has an odd length"
msgstr ""

#: record.d:1443
msgid "MAKE-INSTANCE: keyword argument list ~ has an odd length"
msgstr ""

#: record.d:1509
msgid "~ method for ~ returned ~"
msgstr ""

#: sequence.d:219
msgid "There are no sequences of type ~"
msgstr ""

#: sequence.d:285
msgid "~ is not a sequence"
msgstr ""

#: sequence.d:302
msgid "sequence type forces length ~, but result has length ~"
msgstr ""

#: sequence.d:318
msgid "~: ~ should be an integer >=0, not ~"
msgstr ""

#: sequence.d:550
msgid "~: the index should be a fixnum >=0, not ~"
msgstr ""

#: sequence.d:567
msgid "~ ~: the index should be a fixnum >=0, not ~"
msgstr ""

#: sequence.d:706
msgid "~: ~ is not a sequence"
msgstr ""

#: sequence.d:930
msgid "~: size should be an integer >=0, not ~"
msgstr ""

#: sequence.d:938
msgid "~: :update must not be specified without :initial-element"
msgstr ""

#: sequence.d:1978
msgid "~: Must not specify both arguments to :TEST and :TEST-NOT"
msgstr ""

#: sequence.d:2107
msgid "~: sequence ~ is too long"
msgstr ""

#: sequence.d:2569
msgid "too long sequence ~"
msgstr ""

#: charstrg.d:1760
msgid "~: the radix must be an integer between 2 and 36, not ~"
msgstr ""

#: charstrg.d:2134
msgid "~: the code argument should be an integer, not ~"
msgstr ""

#: charstrg.d:2156
msgid "~: cannot coerce ~ to a character"
msgstr ""

#: charstrg.d:2197
msgid "~: the weight argument should be an integer, not ~"
msgstr ""

#: charstrg.d:2239
msgid "~: argument should be an integer, not ~"
msgstr ""

#: charstrg.d:2266
msgid "~: index should be an integer, not ~"
msgstr ""

#: charstrg.d:2271
msgid "~: ~-index should be an integer, not ~"
msgstr ""

#: charstrg.d:2288
msgid "~: index should be NIL or an integer, not ~"
msgstr ""

#: charstrg.d:2293
msgid "~: ~-index should be NIL or an integer, not ~"
msgstr ""

#: charstrg.d:2310
msgid "~: index should not be negative: ~"
msgstr ""

#: charstrg.d:2315
msgid "~: ~-index should not be negative: ~"
msgstr ""

#: charstrg.d:2339
msgid "~: index ~ should not be greater than the length of the string"
msgstr ""

#: charstrg.d:2344
msgid "~: ~-index ~ should not be greater than the length of the string"
msgstr ""

#: charstrg.d:2368
msgid "~: index ~ should be less than the length of the string"
msgstr ""

#: charstrg.d:2373
msgid "~: ~-index ~ should be less than the length of the string"
msgstr ""

#: charstrg.d:2478
msgid "~: argument should be a character, not ~"
msgstr ""

#: charstrg.d:2604
msgid "~: argument ~ should be a string, a symbol or a character"
msgstr ""

#: charstrg.d:2704
msgid "~: :start1-index ~ must not be greater than :end1-index ~"
msgstr ""

#: charstrg.d:2728
msgid "~: :start2-index ~ must not be greater than :end2-index ~"
msgstr ""

#: charstrg.d:3306
msgid "~: the string length ~ should be nonnegative fixnum"
msgstr ""

#: charstrg.d:3338
msgid "~: :initial-element ~ should be of type character"
msgstr ""

#: debug.d:718
msgid "~: bad frame climbing mode ~"
msgstr ""

#: debug.d:738
msgid "~: ~ is not a stack pointer"
msgstr ""

#: debug.d:930
msgid "~: ~ is not a pointer to an EVAL/APPLY frame"
msgstr ""

#: debug.d:1203
msgid "~: environment is not an alist"
msgstr ""

#: debug.d:1292
msgid "~: unknown frame type"
msgstr ""

#: error.d:49
msgid "Unprintable error message"
msgstr ""

#: error.d:669
msgid "~: User break"
msgstr ""

#: error.d:730
msgid "~: ~ is not a list"
msgstr ""

#: error.d:746
msgid "~: A true list must not end with ~"
msgstr ""

#: error.d:764
msgid "~: ~ is not a symbol"
msgstr ""

#: error.d:795
msgid "~: ~ is not a simple-vector"
msgstr ""

#: error.d:811
msgid "~: ~ is not a vector"
msgstr ""

#: error.d:827
msgid "~: argument ~ should be a nonnegative fixnum"
msgstr ""

#: error.d:843
msgid "~: argument ~ is not a character"
msgstr ""

#: error.d:858
msgid "~: argument ~ is not a string"
msgstr ""

#: error.d:873
msgid "~: argument ~ is not a simple string"
msgstr ""

#: error.d:887
msgid "Attempt to modify a read-only string: ~"
msgstr ""

#: error.d:903
msgid "~: argument ~ is neither a string nor an integer"
msgstr ""

#: error.d:919
msgid "~: argument ~ should be a stream"
msgstr ""

#: error.d:937
msgid "~: argument ~ should be a stream of type ~"
msgstr ""

#: error.d:969
msgid ""
"~: argument ~ is not a function.\n"
"To get a function in the current environment, write (FUNCTION ...).\n"
"To get a function in the global environment, write (COERCE '... 'FUNCTION)."
msgstr ""

#: error.d:1119
msgid "~: ~ is not an `unsigned int' number"
msgstr ""

#: error.d:1139
msgid "~: ~ is not an `int' number"
msgstr ""

#: error.d:1159
msgid "~: ~ is not a `unsigned long' number"
msgstr ""

#: error.d:1179
msgid "~: ~ is not a `long' number"
msgstr ""

#: error.d:1195
msgid "~: ~ is not a single-float"
msgstr ""

#: error.d:1211
msgid "~: ~ is not a double-float"
msgstr ""

#: erramiga.d:11
msgid "Amiga OS error "
msgstr ""

#: erramiga.d:40
msgid "not enough memory available"
msgstr ""

#: erramiga.d:43
msgid "process table full"
msgstr ""

#: erramiga.d:53
msgid "bad template"
msgstr ""

#: erramiga.d:55
msgid "bad number"
msgstr ""

#: erramiga.d:57
msgid "required argument missing"
msgstr ""

#: erramiga.d:59
msgid "value after keyword missing"
msgstr ""

#: erramiga.d:61
msgid "wrong number of arguments"
msgstr ""

#: erramiga.d:63
msgid "unmatched quotes"
msgstr ""

#: erramiga.d:65
msgid "argument line invalid or too long"
msgstr ""

#: erramiga.d:67
msgid "file is not executable"
msgstr ""

#: erramiga.d:69
msgid "invalid resident library"
msgstr ""

#: erramiga.d:78
msgid "object is in use"
msgstr ""

#: erramiga.d:80
msgid "object already exists"
msgstr ""

#: erramiga.d:82
msgid "directory not found"
msgstr ""

#: erramiga.d:84
msgid "object not found"
msgstr ""

#: erramiga.d:86
msgid "invalid window description"
msgstr ""

#: erramiga.d:88
msgid "object too large"
msgstr ""

#: erramiga.d:91
msgid "packet request type unknown"
msgstr ""

#: erramiga.d:93
msgid "object name invalid"
msgstr ""

#: erramiga.d:95
msgid "invalid object lock"
msgstr ""

#: erramiga.d:97
msgid "object is not of required type"
msgstr ""

#: erramiga.d:99
msgid "disk not validated"
msgstr ""

#: erramiga.d:101
msgid "disk is write-protected"
msgstr ""

#: erramiga.d:103
msgid "rename across devices attempted"
msgstr ""

#: erramiga.d:105
msgid "directory not empty"
msgstr ""

#: erramiga.d:107
msgid "too many levels"
msgstr ""

#: erramiga.d:109
msgid "device (or volume) is not mounted"
msgstr ""

#: erramiga.d:111
msgid "seek failure"
msgstr ""

#: erramiga.d:113
msgid "comment is too long"
msgstr ""

#: erramiga.d:115
msgid "disk is full"
msgstr ""

#: erramiga.d:117
msgid "object is protected from deletion"
msgstr ""

#: erramiga.d:119
msgid "file is write protected"
msgstr ""

#: erramiga.d:121
msgid "file is read protected"
msgstr ""

#: erramiga.d:123
msgid "not a valid DOS disk"
msgstr ""

#: erramiga.d:125
msgid "no disk in drive"
msgstr ""

#: erramiga.d:132
msgid "no more entries in directory"
msgstr ""

#: erramiga.d:134
msgid "object is soft link"
msgstr ""

#: erramiga.d:136
msgid "object is linked"
msgstr ""

#: erramiga.d:138
msgid "bad loadfile hunk"
msgstr ""

#: erramiga.d:140
msgid "function not implemented"
msgstr ""

#: erramiga.d:145
msgid "record not locked"
msgstr ""

#: erramiga.d:147
msgid "record lock collision"
msgstr ""

#: erramiga.d:149
msgid "record lock timeout"
msgstr ""

#: erramiga.d:151
msgid "record unlock error"
msgstr ""

#: erramiga.d:158
msgid "buffer overflow"
msgstr ""

#: erramiga.d:160
msgid "break"
msgstr ""

#: erramiga.d:162
msgid "file not executable"
msgstr ""

#: erramiga.d:170
msgid "Ok, No error"
msgstr ""

#: errunix.d:57
msgid "Operation not permitted"
msgstr ""

#: errunix.d:63
msgid "No such file or directory"
msgstr ""

#: errunix.d:69
msgid "No such process"
msgstr ""

#: errunix.d:75
msgid "Interrupted system call"
msgstr ""

#: errunix.d:81
msgid "I/O error"
msgstr ""

#: errunix.d:87
msgid "No such device or address"
msgstr ""

#: errunix.d:93
msgid "Arg list too long"
msgstr ""

#: errunix.d:99
msgid "Exec format error"
msgstr ""

#: errunix.d:105
msgid "Bad file number"
msgstr ""

#: errunix.d:111
msgid "No child processes"
msgstr ""

#: errunix.d:117
msgid "No more processes"
msgstr ""

#: errunix.d:123
msgid "Not enough memory"
msgstr ""

#: errunix.d:129
msgid "Permission denied"
msgstr ""

#: errunix.d:135
msgid "Bad address"
msgstr ""

#: errunix.d:141
msgid "Block device required"
msgstr ""

#: errunix.d:147
msgid "Device busy"
msgstr ""

#: errunix.d:153
msgid "File exists"
msgstr ""

#: errunix.d:159
msgid "Cross-device link"
msgstr ""

#: errunix.d:165
msgid "No such device"
msgstr ""

#: errunix.d:171
msgid "Not a directory"
msgstr ""

#: errunix.d:177
msgid "Is a directory"
msgstr ""

#: errunix.d:183
msgid "Invalid argument"
msgstr ""

#: errunix.d:189
msgid "File table overflow"
msgstr ""

#: errunix.d:195
msgid "Too many open files"
msgstr ""

#: errunix.d:201
msgid "Inappropriate ioctl for device"
msgstr ""

#: errunix.d:207
msgid "Text file busy"
msgstr ""

#: errunix.d:213
msgid "File too large"
msgstr ""

#: errunix.d:219
msgid "No space left on device"
msgstr ""

#: errunix.d:225
msgid "Illegal seek"
msgstr ""

#: errunix.d:231
msgid "Read-only file system"
msgstr ""

#: errunix.d:237
msgid "Too many links"
msgstr ""

#: errunix.d:243
msgid "Broken pipe, child process terminated or socket closed"
msgstr ""

#: errunix.d:253
msgid "Argument out of domain"
msgstr ""

#: errunix.d:259
msgid "Result too large"
msgstr ""

#: errunix.d:266
msgid "Invalid multibyte or wide character"
msgstr ""

#: errunix.d:273
msgid "Operation would block"
msgstr ""

#: errunix.d:279
msgid "Operation now in progress"
msgstr ""

#: errunix.d:285
msgid "Operation already in progress"
msgstr ""

#: errunix.d:292
msgid "Too many levels of symbolic links"
msgstr ""

#: errunix.d:298
msgid "File name too long"
msgstr ""

#: errunix.d:304
msgid "Directory not empty"
msgstr ""

#: errunix.d:311
msgid "Stale NFS file handle"
msgstr ""

#: errunix.d:317
msgid "Too many levels of remote in path"
msgstr ""

#: errunix.d:324
msgid "Socket operation on non-socket"
msgstr ""

#: errunix.d:330
msgid "Destination address required"
msgstr ""

#: errunix.d:336
msgid "Message too long"
msgstr ""

#: errunix.d:342
msgid "Protocol wrong type for socket"
msgstr ""

#: errunix.d:348
msgid "Option not supported by protocol"
msgstr ""

#: errunix.d:354
msgid "Protocol not supported"
msgstr ""

#: errunix.d:360
msgid "Socket type not supported"
msgstr ""

#: errunix.d:366
msgid "Operation not supported on socket"
msgstr ""

#: errunix.d:372
msgid "Protocol family not supported"
msgstr ""

#: errunix.d:378
msgid "Address family not supported by protocol family"
msgstr ""

#: errunix.d:384
msgid "Address already in use"
msgstr ""

#: errunix.d:390
msgid "Can't assign requested address"
msgstr ""

#: errunix.d:396
msgid "Network is down"
msgstr ""

#: errunix.d:402
msgid "Network is unreachable"
msgstr ""

#: errunix.d:408
msgid "Network dropped connection on reset"
msgstr ""

#: errunix.d:414
msgid "Software caused connection abort"
msgstr ""

#: errunix.d:420
msgid "Connection reset by peer"
msgstr ""

#: errunix.d:426
msgid "No buffer space available"
msgstr ""

#: errunix.d:432
msgid "Socket is already connected"
msgstr ""

#: errunix.d:438
msgid "Socket is not connected"
msgstr ""

#: errunix.d:444
msgid "Can't send after socket shutdown"
msgstr ""

#: errunix.d:450
msgid "Too many references: can't splice"
msgstr ""

#: errunix.d:456
msgid "Connection timed out"
msgstr ""

#: errunix.d:462
msgid "Connection refused"
msgstr ""

#: errunix.d:467
msgid "Remote peer released connection"
msgstr ""

#: errunix.d:472
msgid "Host is down"
msgstr ""

#: errunix.d:478
msgid "Host is unreachable"
msgstr ""

#: errunix.d:483
msgid "Networking error"
msgstr ""

#: errunix.d:489
msgid "Too many processes"
msgstr ""

#: errunix.d:495
msgid "Too many users"
msgstr ""

#: errunix.d:501
msgid "Disk quota exceeded"
msgstr ""

#: errunix.d:508
msgid "Not a stream device"
msgstr ""

#: errunix.d:514
msgid "Timer expired"
msgstr ""

#: errunix.d:520
msgid "Out of stream resources"
msgstr ""

#: errunix.d:526
msgid "No message of desired type"
msgstr ""

#: errunix.d:532
msgid "Not a data message"
msgstr ""

#: errunix.d:539
msgid "Identifier removed"
msgstr ""

#: errunix.d:546
msgid "Resource deadlock would occur"
msgstr ""

#: errunix.d:552
msgid "No record locks available"
msgstr ""

#: errunix.d:559
msgid "Machine is not on the network"
msgstr ""

#: errunix.d:577
msgid "Link has been severed"
msgstr ""

#: errunix.d:583
msgid "Advertise error"
msgstr ""

#: errunix.d:589
msgid "Srmount error"
msgstr ""

#: errunix.d:595
msgid "Communication error on send"
msgstr ""

#: errunix.d:601
msgid "Protocol error"
msgstr ""

#: errunix.d:607
msgid "Multihop attempted"
msgstr ""

#: errunix.d:619
msgid "Remote address changed"
msgstr ""

#: errunix.d:626
msgid "Function not implemented"
msgstr ""

#: errunix.d:633
msgid "Not supported under MS-DOS"
msgstr ""

#: errunix.d:664
msgid "UNIX error "
msgstr ""

#: errunix.d:666
msgid "UNIX library error "
msgstr ""

#: errwin32.d:3880
msgid "Win32 error "
msgstr ""

#: errwin32.d:3929
msgid "Winsock error "
msgstr ""

#: misc.d:108
msgid "This file was produced by another lisp version, must be recompiled."
msgstr ""

#: misc.d:325
msgid "~: type of attribute ~ is unsupported"
msgstr ""

#: predtype.d:1947
msgid "~: type ~ does not correspond to a class"
msgstr ""

#: predtype.d:1990
msgid "~: ~ does not name a class"
msgstr ""

#: predtype.d:2301
msgid "~: bad type specification ~"
msgstr ""

#: predtype.d:2309
msgid "~: ~ cannot be coerced to type ~"
msgstr ""

#: symbol.d:48
msgid "~: the property list of ~ has an odd length"
msgstr ""

#: symbol.d:104
msgid "SETF SYMBOL-FUNCTION: ~ is not a function"
msgstr ""

#: symbol.d:129
msgid "~: ~ is not a system function"
msgstr ""

#: symbol.d:430
msgid "~: invalid argument ~"
msgstr ""

#: symbol.d:444
msgid "The value of *GENSYM-COUNTER* was not a nonnegative integer. Old value ~. New value ~."
msgstr ""

#: lisparit.d:359
msgid "argument to ~ should be a number: ~"
msgstr ""

#: lisparit.d:375
msgid "argument to ~ should be a real number: ~"
msgstr ""

#: lisparit.d:391
msgid "argument to ~ should be a floating point number: ~"
msgstr ""

#: lisparit.d:407
msgid "argument to ~ should be a rational number: ~"
msgstr ""

#: lisparit.d:423
msgid "argument to ~ should be an integer: ~"
msgstr ""

#: lisparit.d:439
msgid "~: argument should be a positive fixnum, not ~"
msgstr ""

#: lisparit.d:1846
msgid "~: argument should be a random-state, not ~"
msgstr ""

#: lisparit.d:1861
msgid "~: the value of ~ should be a random-state, not ~"
msgstr ""

#: lisparit.d:1885
msgid "~: argument should be positive and an integer or float, not ~"
msgstr ""

#: lisparit.d:1970
msgid "~ : argument should be a fixnum >=0, not ~"
msgstr ""

#: aridecl.d:338
msgid "division by zero"
msgstr ""

#: aridecl.d:348
msgid "floating point overflow"
msgstr ""

#: aridecl.d:358
msgid "floating point underflow"
msgstr ""

#: intelem.d:1443
msgid "bignum overflow"
msgstr ""

#: intlog.d:469
msgid "~: ~ is not a valid boolean operation"
msgstr ""

#: intlog.d:725
msgid "~: too large shift amount ~"
msgstr ""

#: intbyte.d:16
msgid "The arguments to BYTE must be fixnums >=0: ~, ~"
msgstr ""

#: intbyte.d:40
msgid "~ is not a BYTE specifier"
msgstr ""

#: intmal.d:8
msgid "overflow during multiplication of large numbers"
msgstr ""

#: intdiv.d:373
msgid "quotient ~ / ~ is not an integer"
msgstr ""

#: intsqrt.d:426
msgid "~ applied to negative number ~"
msgstr ""

#: lfloat.d:8
msgid "long float too long"
msgstr ""

#: flo_konv.d:465
msgid "floating point NaN occurred"
msgstr ""

#: rexx.d:34
msgid "Communication with ARexx isn't possible."
msgstr ""

#: rexx.d:116
msgid "~ must be a string for commands or a vector of strings for a function"
msgstr ""

#: rexx.d:125
msgid "~: an ARexx function must have 0 to ~ arguments: ~"
msgstr ""

#: rexx.d:139
msgid "~: must be a string for ARexx: ~"
msgstr ""

#: rexx.d:161
msgid "Only NIL, T and strings are accepted for ~ : ~"
msgstr ""

#: rexx.d:474
msgid "~: Not a Fixnum: ~"
msgstr ""

#: rexx.d:484
msgid "~: Not an incoming Rexx message: ~"
msgstr ""

#: affi.d:85
msgid "~: Unsupported call mechanism: ~"
msgstr ""

#: affi.d:96
msgid "~: Bad function prototype: ~"
msgstr ""

#: affi.d:107
msgid "~: Wrong number of arguments for prototype ~"
msgstr ""

#: affi.d:121
msgid "~: Bad argument for prototype ~: ~"
msgstr ""

#: affi.d:132
msgid "~: Bad argument: ~"
msgstr ""

#: affi.d:153
msgid "~: ~ is not a valid address"
msgstr ""

#: foreign.d:27
msgid "~ comes from a previous Lisp session and is invalid"
msgstr ""

#: foreign.d:100
msgid "A foreign variable ~ already exists"
msgstr ""

#: foreign.d:140
msgid "A foreign function ~ already exists"
msgstr ""

#: foreign.d:182
msgid "illegal foreign data type ~"
msgstr ""

#: foreign.d:196
msgid "~ cannot be converted to the foreign type ~"
msgstr ""

#: foreign.d:209
msgid "64 bit integers are not supported on this platform and with this C compiler: ~"
msgstr ""

#: foreign.d:564
msgid "No more room for foreign language interface"
msgstr ""

#: foreign.d:573
msgid ":MALLOC-FREE is not available under AMIGAOS."
msgstr ""

#: foreign.d:2113
msgid "~: argument is not a foreign variable: ~"
msgstr ""

#: foreign.d:2123
msgid "~: foreign variable with unknown type, missing DEF-C-VAR: ~"
msgstr ""

#: foreign.d:2137
msgid "A foreign variable ~ does not exist"
msgstr ""

#: foreign.d:2149
msgid "~: foreign variable ~ does not have the required size or alignment"
msgstr ""

#: foreign.d:2163
msgid "~: type specifications for foreign variable ~ conflict: ~ and ~"
msgstr ""

#: foreign.d:2212
msgid "~: foreign variable ~ may not be modified"
msgstr ""

#: foreign.d:2272
msgid "~: foreign variable ~ of type ~ is not an array"
msgstr ""

#: foreign.d:2358
msgid "~: foreign variable ~ of type ~ is not a pointer"
msgstr ""

#: foreign.d:2462
msgid "~: foreign variable ~ of type ~ is not a struct or union"
msgstr ""

#: foreign.d:2471
msgid "~: foreign variable ~ of type ~ has no component with name ~"
msgstr ""

#: foreign.d:2557
msgid "~: argument is not a foreign function: ~"
msgstr ""

#: foreign.d:2568
msgid "~: foreign function with unknown calling convention, missing DEF-CALL-OUT: ~"
msgstr ""

#: foreign.d:2594
msgid "~: A foreign function ~ does not exist"
msgstr ""

#: foreign.d:2601
msgid "~: calling conventions for foreign function ~ conflict"
msgstr ""

#: foreign.d:2884
msgid "~: Too few arguments (~ instead of at least ~) to ~"
msgstr ""

#: foreign.d:2896
msgid "~: :OUT argument is not a pointer: ~"
msgstr ""

#: foreign.d:2941
msgid "~: Too many arguments (~ instead of ~) to ~"
msgstr ""

#: foreign.d:3510
msgid "~: Cannot open library ~"
msgstr ""

#: foreign.d:3608
msgid "~: ~ is not a library"
msgstr ""

#: amigaaux.d:212
msgid "This version of CLISP runs only in low address memory.\n"
msgstr ""

#: init.lisp:347
msgid "~S is a special form and may not be redefined."
msgstr ""

#: init.lisp:354
msgid "Redefining the COMMON LISP ~A ~S"
msgstr ""

#: init.lisp:371
msgid "DEFUN/DEFMACRO: redefining ~S; it was traced!"
msgstr ""

#: init.lisp:391
msgid "~S is impossible in compiled code"
msgstr ""

#: init.lisp:478
msgid "~S is an invalid function environment"
msgstr ""

#: init.lisp:525
msgid "~S is an invalid variable environment"
msgstr ""

#: init.lisp:592
msgid "~S: ~S is illegal since ~S is a local macro"
msgstr ""

#: init.lisp:596
msgid "~S: invalid function environment ~S"
msgstr ""

#: init.lisp:602
msgid "~S: ~S is invalid since ~S is not a symbol"
msgstr ""

#: init.lisp:776
msgid "code after MACROLET contains a dotted list, ending with ~S"
msgstr ""

#: init.lisp:792
msgid "illegal syntax in MACROLET: ~S"
msgstr ""

#: init.lisp:813
msgid "code after SYMBOL-MACROLET contains a dotted list, ending with ~S"
msgstr ""

#: init.lisp:844
msgid "illegal syntax in SYMBOL-MACROLET: ~S"
msgstr ""

#: init.lisp:883
msgid "bad function environment occurred in ~S: ~S"
msgstr ""

#: init.lisp:892
msgid "~S: invalid form ~S"
msgstr ""

#: init.lisp:903
msgid "code contains a dotted list, ending with ~S"
msgstr ""

#: init.lisp:946
msgid "~S: ~S should be a lambda expression"
msgstr ""

#: init.lisp:987
msgid "lambda list must not end with the atom ~S"
msgstr ""

#: init.lisp:1149
msgid "FLET/LABELS: code contains a dotted list, ending with ~S"
msgstr ""

#: init.lisp:1158
msgid "illegal syntax in FLET/LABELS: ~S"
msgstr ""

#: init.lisp:1179
msgid "FUNCTION-MACRO-LET: code contains a dotted list, ending with ~S"
msgstr ""

#: init.lisp:1193
msgid "illegal syntax in FUNCTION-MACRO-LET: ~S"
msgstr ""

#: init.lisp:1350
msgid "Loading file "
msgstr ""

#: init.lisp:1352
msgid " ..."
msgstr ""

#: init.lisp:1378
msgid "Loading of file "
msgstr ""

#: init.lisp:1380
msgid " is finished."
msgstr ""

#: init.lisp:1387
msgid "A file with name ~A does not exist"
msgstr ""

#: init.lisp:1401
msgid "~S: missing function name and/or parameter list"
msgstr ""

#: init.lisp:1409
msgid "~S: ~S is not a symbol."
msgstr ""

#: init.lisp:1414
msgid "~S: special operator ~S cannot be redefined."
msgstr ""

#: init.lisp:1610
msgid "~S: cannot define a function from that: ~S"
msgstr ""

#: init.lisp:1620
msgid "~S: function ~S is missing a lambda list"
msgstr ""

#: backquote.lisp:39
msgid "~S: comma is illegal outside of backquote"
msgstr ""

#: backquote.lisp:44
msgid "~S: more commas out than backquotes in, is illegal"
msgstr ""

#: backquote.lisp:205
msgid "The syntax ,@form is valid only in lists"
msgstr ""

#: backquote.lisp:210
msgid "The syntax ,.form is valid only in lists"
msgstr ""

#: defmacro.lisp:44
msgid "Both will be ignored."
msgstr ""

#: defmacro.lisp:45
msgid "Invalid keyword-value-pair: ~S ~S"
msgstr ""

#: defmacro.lisp:54
msgid "The macro ~S may not be called with ~S arguments: ~S"
msgstr ""

#: defmacro.lisp:126
msgid "The lambda list of macro ~S contains a dot after &AUX."
msgstr ""

#: defmacro.lisp:132
msgid "in macro ~S: ~S may not be used as &AUX variable."
msgstr ""

#: defmacro.lisp:151
msgid "The lambda list of macro ~S contains a dot after &KEY."
msgstr ""

#: defmacro.lisp:161
msgid "The lambda list of macro ~S contains a badly placed ~S."
msgstr ""

#: defmacro.lisp:179
msgid "The lambda list of macro ~S contains the invalid element ~S"
msgstr ""

#: defmacro.lisp:209
msgid "~0*It will be ignored."
msgstr ""

#: defmacro.lisp:210
msgid "The lambda list of macro ~S contains an invalid keyword specification ~S"
msgstr ""

#: defmacro.lisp:281
msgid "The lambda list of macro ~S is missing a variable after &REST/&BODY."
msgstr ""

#: defmacro.lisp:292
msgid "The lambda list of macro ~S contains an illegal variable after &REST/&BODY: ~S"
msgstr ""

#: defmacro.lisp:302
msgid "The lambda list of macro ~S contains a misplaced dot."
msgstr ""

#: defmacro.lisp:307
msgid "They will be ignored."
msgstr ""

#: defmacro.lisp:308
msgid "The lambda list of macro ~S contains superfluous elements: ~S"
msgstr ""

#: defmacro.lisp:361
msgid "The lambda list of macro ~S contains an illegal &REST variable: ~S"
msgstr ""

#: defmacro.lisp:375
msgid "The lambda list of macro ~S contains an invalid &WHOLE: ~S"
msgstr ""

#: defmacro.lisp:381
msgid "The lambda list of macro ~S contains a superfluous ~S."
msgstr ""

#: defmacro.lisp:397
msgid "The lambda list of macro ~S contains ~S before &KEY."
msgstr ""

#: defmacro.lisp:402
msgid "The lambda list of macro ~S contains ~S which is illegal here."
msgstr ""

#: defmacro.lisp:421
msgid "The lambda list of macro ~S contains an invalid element ~S"
msgstr ""

#: defmacro.lisp:435
msgid "The lambda list of macro ~S contains an invalid supplied-variable ~S"
msgstr ""

#: defmacro.lisp:497
msgid "In the lambda list of macro ~S, &ENVIRONMENT must be followed by a non-NIL symbol: ~S"
msgstr ""

#: defmacro.lisp:519
msgid "Cannot define a macro from that: ~S"
msgstr ""

#: defmacro.lisp:524
msgid "The name of a macro must be a symbol, not ~S"
msgstr ""

#: defmacro.lisp:529
msgid "Macro ~S is missing a lambda list."
msgstr ""

#: macros1.lisp:62
msgid "~S: non-symbol ~S can't be a defined constant"
msgstr ""

#: macros1.lisp:95
msgid "~S redefines the constant ~S. Its old value was ~S."
msgstr ""

#: macros1.lisp:150
msgid "Invalid syntax in ~S form: ~S."
msgstr ""

#: macros1.lisp:307
msgid "~S: missing key list"
msgstr ""

#: macros1.lisp:314
msgid "~S: the ~S clause must be the last one"
msgstr ""

#: macros1.lisp:405
msgid "COND code contains a dotted list, ending with ~S"
msgstr ""

#: macros2.lisp:40
msgid "Language ~S is not defined"
msgstr ""

#: macros2.lisp:50
msgid "Language ~S inherits from ~S"
msgstr ""

#: macros2.lisp:100
msgid "~S: Language ~S is not defined"
msgstr ""

#: macros2.lisp:123
msgid "~S ~S: no value for default language ~S"
msgstr ""

#: macros2.lisp:138
msgid "Invalid clause in ~S: ~S"
msgstr ""

#: macros2.lisp:157
msgid "~A~%The value is: ~S"
msgstr ""

#: macros2.lisp:161
msgid "The value of ~S should be ~:[of type ~S~;~:*~A~]."
msgstr ""

#: macros2.lisp:165
msgid "You may input a new value."
msgstr ""

#: macros2.lisp:168
msgid "~%New ~S: "
msgstr ""

#: macros2.lisp:189
msgid "Retry"
msgstr ""

#: macros2.lisp:192
msgid "You may input new values."
msgstr ""

#: macros2.lisp:196
msgid "~S must evaluate to a non-NIL value."
msgstr ""

#: macros2.lisp:232
msgid "The value of ~S must be of one of the types ~{~S~^, ~}"
msgstr ""

#: macros2.lisp:237
msgid "The value of ~S must be one of ~{~S~^, ~}"
msgstr ""

#: macros2.lisp:338
msgid "type name should be a symbol, not ~S"
msgstr ""

#: macros2.lisp:343
msgid "~S is a built-in type and may not be redefined."
msgstr ""

#: macros2.lisp:376
msgid "The deftype expander for ~S may not be called with ~S arguments."
msgstr ""

#: macros2.lisp:384
msgid "~S: the name of a symbol macro must be a symbol, not ~S"
msgstr ""

#: macros2.lisp:399
msgid "~S: the symbol ~S names a global variable"
msgstr ""

#: defs1.lisp:98
msgid "missing symbol types (~S/~S/~S) in ~S"
msgstr ""

#: defs1.lisp:105
msgid "~S: flag must be one of the symbols ~S, ~S, ~S, not ~S"
msgstr ""

#: defs1.lisp:418
msgid "~S: ~S does not name a logical host"
msgstr ""

#: defs1.lisp:456
msgid "No translations for logical host ~S found"
msgstr ""

#: defs1.lisp:542
msgid "~S: argument ~S should be a nonnegative number"
msgstr ""

#: defs1.lisp:704
msgid "incorrect date: ~S.~S.~S, ~Sh~Sm~Ss, time zone ~S"
msgstr ""

#: defs1.lisp:773
msgid "special operator"
msgstr ""

#: defs1.lisp:776
msgid "function"
msgstr ""

#: defs1.lisp:778
msgid "macro"
msgstr ""

#: places.lisp:24
msgid "The function (~S ~S) is hidden by a SETF expander."
msgstr ""

#: places.lisp:85
msgid "The argument ~S to ~S should be a keyword."
msgstr ""

#: places.lisp:140
msgid "Argument ~S is not a SETF place."
msgstr ""

#: places.lisp:153
msgid "SETF place ~S produces more than one store variable."
msgstr ""

#: places.lisp:221
msgid "The name of the access function must be a symbol, not ~S"
msgstr ""

#: places.lisp:254
msgid "The SETF expander for ~S may not be called with ~S arguments."
msgstr ""

#: places.lisp:291
msgid "Too many arguments to DEFSETF: ~S"
msgstr ""

#: places.lisp:295
msgid "The doc string to DEFSETF must be a string: ~S"
msgstr ""

#: places.lisp:305
msgid "Missing store variable in DEFSETF."
msgstr ""

#: places.lisp:346
msgid "Illegal syntax in DEFSETF for ~S"
msgstr ""

#: places.lisp:359
msgid "(SETF (NTH ...) ...) : index ~S is too large for ~S"
msgstr ""

#: places.lisp:459
msgid "PSETF called with an odd number of arguments: ~S"
msgstr ""

#: places.lisp:505
msgid "REMF: property list with an odd length"
msgstr ""

#: places.lisp:555
msgid "In the definition of ~S: &REST variable ~S should be a symbol."
msgstr ""

#: places.lisp:561
msgid "Only one variable is allowed after &REST, not ~S"
msgstr ""

#: places.lisp:566
msgid "Illegal in a DEFINE-MODIFY-MACRO lambda list: ~S"
msgstr ""

#: places.lisp:574
msgid "lambda list may only contain symbols and lists, not ~S"
msgstr ""

#: places.lisp:691
msgid "Illegal SETF place: ~S"
msgstr ""

#: places.lisp:710
msgid "SHIFTF called with too few arguments: ~S"
msgstr ""

#: places.lisp:750
msgid "(SETF (GETF ...) ...) : property list with an odd length"
msgstr ""

#: places.lisp:785
msgid "first argument ~S is illegal, not a symbol"
msgstr ""

#: places.lisp:896
msgid "SETF APPLY is only defined for functions of the form #'symbol."
msgstr ""

#: places.lisp:902
msgid "APPLY on ~S is not a SETF place."
msgstr ""

#: places.lisp:957
msgid "SETF FUNCALL is only defined for functions of the form #'symbol."
msgstr ""

#: places.lisp:1004
msgid "SETF place ~S expects different numbers of values in the true and branches (~D vs. ~D values)."
msgstr ""

#: floatprint.lisp:341
msgid "argument is not a float: ~S"
msgstr ""

#: type.lisp:30
msgid "~S: invalid type specification ~S"
msgstr ""

#: type.lisp:447
msgid "~S: argument to MOD must be an integer: ~S"
msgstr ""

#: type.lisp:455
msgid "~S: argument to SIGNED-BYTE must be an integer or * : ~S"
msgstr ""

#: type.lisp:465
msgid "~S: argument to UNSIGNED-BYTE must be an integer or * : ~S"
msgstr ""

#: type.lisp:639
msgid "Invalid type specifier ~S"
msgstr ""

#: defstruct.lisp:425
msgid "~S: invalid syntax for name and options: ~S"
msgstr ""

#: defstruct.lisp:449
msgid "~S ~S: argument list should be a list: ~S"
msgstr ""

#: defstruct.lisp:472
msgid "~S ~S: At most one :INCLUDE argument may be specified: ~S"
msgstr ""

#: defstruct.lisp:480
msgid ""
"~S: Use of ~S implicitly applies FUNCTION.~@\n"
"                                     Therefore using ~S instead of ~S."
msgstr ""

#: defstruct.lisp:525
msgid "~S ~S: There is no :PREDICATE on unnamed structures."
msgstr ""

#: defstruct.lisp:551
msgid "~S ~S: invalid :TYPE option ~S"
msgstr ""

#: defstruct.lisp:557
msgid "~S ~S: The :INITIAL-OFFSET must be a nonnegative integer, not ~S"
msgstr ""

#: defstruct.lisp:563
msgid "~S ~S: :INITIAL-OFFSET must not be specified without :TYPE : ~S"
msgstr ""

#: defstruct.lisp:581
msgid "~S ~S: included structure ~S has not been defined."
msgstr ""

#: defstruct.lisp:593
msgid "~S ~S: included structure ~S must be of the same type ~S."
msgstr ""

#: defstruct.lisp:618
msgid "~S ~S: included structure ~S has no component with name ~S."
msgstr ""

#: defstruct.lisp:647
msgid "~S ~S: The READ-ONLY slot ~S of the included structure ~S must remain READ-ONLY in ~S."
msgstr ""

#: defstruct.lisp:657
msgid "~S ~S: The type ~S of slot ~S should be a subtype of the type defined for the included strucure ~S, namely ~S."
msgstr ""

#: defstruct.lisp:695
msgid "~S ~S: structure of type ~S can't hold the name."
msgstr ""

#: defstruct.lisp:747
msgid "~S ~S: There may be only one slot with the name ~S."
msgstr ""

#: format.lisp:70
msgid "The control string terminates within a directive."
msgstr ""

#: format.lisp:137
msgid "~A must introduce a number."
msgstr ""

#: format.lisp:147
msgid "The control string terminates in the middle of a parameter."
msgstr ""

#: format.lisp:227
msgid "Non-existent directive"
msgstr ""

#: format.lisp:235
msgid "Closing '/' is missing"
msgstr ""

#: format.lisp:248
msgid "There is no package with name ~S"
msgstr ""

#: format.lisp:263
msgid "The closing directive '~A' does not have a corresponding opening one."
msgstr ""

#: format.lisp:268
msgid "The closing directive '~A' does not match the corresponding opening one. It should read '~A'."
msgstr ""

#: format.lisp:287
msgid "The ~~newline directive cannot take both modifiers."
msgstr ""

#: format.lisp:308
msgid "An opening directive is never closed; expecting '~A'."
msgstr ""

#: format.lisp:333
msgid "~%Current point in control string:"
msgstr ""

#: format.lisp:383
msgid "The destination string ~S should have a fill pointer."
msgstr ""

#: format.lisp:390
msgid "The destination argument ~S is invalid (not NIL or T or a stream or a string)."
msgstr ""

#: format.lisp:419
msgid "~S: The control-string must be a string, not ~S"
msgstr ""

#: format.lisp:430
msgid "There are not enough arguments left for this directive."
msgstr ""

#: format.lisp:528
msgid "The ~~:@R directive requires an integer in the range 1 - 4999, not ~S"
msgstr ""

#: format.lisp:547
msgid "The ~~@R directive requires an integer in the range 1 - 3999, not ~S"
msgstr ""

#: format.lisp:611
msgid "The argument for the ~~R directive is too large."
msgstr ""

#: format.lisp:1331
msgid "The ~~R and ~~:R directives require an integer argument, not ~S"
msgstr ""

#: format.lisp:1353
msgid "The ~~C directive requires a character argument, not ~S"
msgstr ""

#: format.lisp:1579
msgid "The control string argument for the ~~? directive is invalid: ~S"
msgstr ""

#: format.lisp:1584
msgid "The argument list argument for the ~~? directive is invalid: ~S"
msgstr ""

#: format.lisp:1646
msgid "The ~~[ parameter must be an integer, not ~S"
msgstr ""

#: format.lisp:1665
msgid "The ~~[ directive cannot take both modifiers."
msgstr ""

#: format.lisp:1691
msgid "The ~~{ directive requires a list argument, not ~S"
msgstr ""

#: format.lisp:2179
msgid "Too many arguments for this directive"
msgstr ""

#: format.lisp:2718
msgid "The control-string must be a string, not ~S"
msgstr ""

#: trace.lisp:95
msgid "~S: undefined function ~S"
msgstr ""

#: trace.lisp:101
msgid "~S: cannot trace special operator ~S"
msgstr ""

#: trace.lisp:112
msgid "~&;; Tracing ~:[function~;macro~] ~S."
msgstr ""

#: trace.lisp:266
msgid "~S: ~S was traced and has been redefined!"
msgstr ""

#: compiler.lisp:226
msgid "~1{~5@*~D/~4@*~D/~3@*~D ~2@*~2,'0D.~1@*~2,'0D.~0@*~2,'0D~:}"
msgstr ""

#: compiler.lisp:387
msgid "Bad length of closure vector: ~S"
msgstr ""

#: compiler.lisp:1783
msgid "Compiler bug!! Occurred in ~A~@[ at ~A~]."
msgstr ""

#: compiler.lisp:2488
msgid "Bad declaration syntax: ~S~%Will be ignored."
msgstr ""

#: compiler.lisp:2508
msgid "Non-symbol ~S may not be declared SPECIAL."
msgstr ""

#: compiler.lisp:2515
msgid "Non-symbol ~S may not be declared IGNORE."
msgstr ""

#: compiler.lisp:2522
msgid "Non-symbol ~S may not be declared IGNORABLE."
msgstr ""

#: compiler.lisp:2529
msgid "Non-symbol ~S may not be declared READ-ONLY."
msgstr ""

#: compiler.lisp:2534
msgid "Unknown declaration ~S.~%The whole declaration will be ignored."
msgstr ""

#: compiler.lisp:2924
msgid " in line ~D"
msgstr ""

#: compiler.lisp:2925
msgid " in lines ~D..~D"
msgstr ""

#: compiler.lisp:2937
msgid "~%WARNING~@[ in function ~S~]~A :~%"
msgstr ""

#: compiler.lisp:2969
msgid "~%ERROR~@[ in function ~S~]~A :~%~?"
msgstr ""

#: compiler.lisp:3110
msgid "Code contains dotted list ~S"
msgstr ""

#: compiler.lisp:3114
msgid "Form too short, too few arguments: ~S"
msgstr ""

#: compiler.lisp:3119
msgid "Form too long, too many arguments: ~S"
msgstr ""

#: compiler.lisp:3301
msgid "Not the name of a function: ~S"
msgstr ""

#: compiler.lisp:3475
msgid ""
"The constant ~S may not be assigned to.~@\n"
"                                                  The assignment will be ignored."
msgstr ""

#: compiler.lisp:3614
msgid "argument list to function ~S is dotted: ~S"
msgstr ""

#: compiler.lisp:3620
msgid ""
"~S called with ~S~:[~; or more~] arguments, but it requires ~\n"
"                        ~:[~:[from ~S to ~S~;~S~]~;at least ~*~S~] arguments."
msgstr ""

#: compiler.lisp:3633
msgid "keyword arguments to function ~S should occur pairwise: ~S"
msgstr ""

#: compiler.lisp:3644
msgid ""
"keyword ~S is not allowed for function ~S.~\n"
"                              ~%The only allowed keyword~:[s are ~{~S~#[~; and ~S~:;, ~]~}~; is ~{~S~}~]."
msgstr ""

#: compiler.lisp:3656
msgid "argument ~S to function ~S is not a symbol"
msgstr ""

#: compiler.lisp:4325
msgid ""
"~S called with ~S arguments, but it requires ~\n"
"                                   ~:[~:[from ~S to ~S~;~S~]~;at least ~*~S~] arguments."
msgstr ""

#: compiler.lisp:4505
msgid "Illegal syntax in LET/LET*: ~S"
msgstr ""

#: compiler.lisp:4542
msgid "Lambda list marker ~S not allowed here."
msgstr ""

#: compiler.lisp:4548
msgid "Missing &REST parameter in lambda list ~S"
msgstr ""

#: compiler.lisp:4554
msgid "Lambda list element ~S is superfluous."
msgstr ""

#: compiler.lisp:4729
msgid "Lambda lists with dots are only allowed in macros, not here: ~S"
msgstr ""

#: compiler.lisp:4745
msgid "Illegal lambda list element ~S"
msgstr ""

#: compiler.lisp:4841
msgid "Binding variable ~S can cause side effects despite of IGNORE declaration~%since it is declared SPECIAL."
msgstr ""

#: compiler.lisp:4845
msgid "variable ~S is used despite of IGNORE declaration."
msgstr ""

#: compiler.lisp:4856
msgid "variable ~S is not used.~%Misspelled or missing IGNORE declaration?"
msgstr ""

#: compiler.lisp:4862
msgid "The variable ~S is assigned to, despite of READ-ONLY declaration."
msgstr ""

#: compiler.lisp:5806
msgid "Misplaced declaration: ~S"
msgstr ""

#: compiler.lisp:6018
msgid "Odd number of arguments to SETQ: ~S"
msgstr ""

#: compiler.lisp:6067
msgid "Odd number of arguments to PSETQ: ~S"
msgstr ""

#: compiler.lisp:6328
msgid "Only symbols may be used as variables, not ~S"
msgstr ""

#: compiler.lisp:6433
msgid "Illegal syntax in COMPILER-LET: ~S"
msgstr ""

#: compiler.lisp:6441
msgid "Block name must be a symbol, not ~S"
msgstr ""

#: compiler.lisp:6490
msgid "RETURN-FROM block ~S is impossible from here."
msgstr ""

#: compiler.lisp:6556
msgid "Only numbers and symbols are valid tags, not ~S"
msgstr ""

#: compiler.lisp:6634
msgid "Tag must be a symbol or a number, not ~S"
msgstr ""

#: compiler.lisp:6639
msgid "GO to tag ~S is impossible from here."
msgstr ""

#: compiler.lisp:6730
msgid "~S is not a function. It is a locally defined macro."
msgstr ""

#: compiler.lisp:6749
msgid "Only symbols and lambda expressions are function names, not ~S"
msgstr ""

#: compiler.lisp:6804
msgid "Illegal function definition syntax in ~S: ~S"
msgstr ""

#: compiler.lisp:7377
msgid "Illegal syntax in SYMBOL-MACROLET: ~S"
msgstr ""

#: compiler.lisp:7418
msgid "EVAL-WHEN situation must be EVAL or LOAD or COMPILE, but not ~S"
msgstr ""

#: compiler.lisp:7461
msgid "CASE clause without objects: ~S"
msgstr ""

#: compiler.lisp:7471
msgid "~S: the ~S clause must be the last one: ~S"
msgstr ""

#: compiler.lisp:7481
msgid "Duplicate ~S label ~S : ~S"
msgstr ""

#: compiler.lisp:7743
msgid "Too many arguments to ~S"
msgstr ""

#: compiler.lisp:7758
msgid "Too few arguments to ~S"
msgstr ""

#: compiler.lisp:8649
msgid "The ~S destination is invalid (not NIL or T or a stream or a string with fill-pointer): ~S"
msgstr ""

#: compiler.lisp:12137
msgid "Name of function to be compiled must be a symbol, not ~S"
msgstr ""

#: compiler.lisp:12148
msgid "~S: redefining ~S; it was traced!"
msgstr ""

#: compiler.lisp:12198
msgid "Not a lambda expression nor a function: ~S"
msgstr ""

#: compiler.lisp:12384
msgid "~%There were errors in the following functions:~%~{~<~%~:; ~S~>~^~}"
msgstr ""

#: compiler.lisp:12389
msgid "~%The following functions were used but not defined:~%~{~<~%~:; ~S~>~^~}"
msgstr ""

#: compiler.lisp:12396
msgid "~%The following special variables were not defined:~%~{~<~%~:; ~S~>~^~}"
msgstr ""

#: compiler.lisp:12399
msgid "~%The following special variables were defined too late:~%~{~<~%~:; ~S~>~^~}"
msgstr ""

#: compiler.lisp:12402
msgid "~%The following functions were used but are deprecated:~%~{~<~%~:; ~S~>~^~}"
msgstr ""

#: compiler.lisp:12529
msgid "~&Listing of compilation of file ~A~%on ~@? by ~A, version ~A"
msgstr ""

#: compiler.lisp:12561
msgid "~%Compiling file ~A ..."
msgstr ""

#: compiler.lisp:12611
msgid "~&~%Compilation of file ~A is finished."
msgstr ""

#: compiler.lisp:12613
msgid "~%~D error~:P, ~D warning~:P"
msgstr ""

#: compiler.lisp:12663
msgid "~%~%Disassembly of function ~S"
msgstr ""

#: compiler.lisp:12674
msgid "~%~S required arguments"
msgstr ""

#: compiler.lisp:12677
msgid "~%~S optional arguments"
msgstr ""

#: compiler.lisp:12680
msgid "~%~:[No rest parameter~;Rest parameter~]"
msgstr ""

#: compiler.lisp:12685
msgid "~%~S keyword parameter~:P: ~{~S~^, ~}."
msgstr ""

#: compiler.lisp:12689
msgid "~%Other keywords are allowed."
msgstr ""

#: compiler.lisp:12691
msgid "~%No keyword parameters"
msgstr ""

#: compiler.lisp:12708
msgid "Disassembly of function "
msgstr ""

#: compiler.lisp:12726
msgid " required arguments"
msgstr ""

#: compiler.lisp:12731
msgid " optional arguments"
msgstr ""

#: compiler.lisp:12736
msgid "Rest parameter"
msgstr ""

#: compiler.lisp:12739
msgid "No rest parameter"
msgstr ""

#: compiler.lisp:12746
msgid " keyword parameter~P: "
msgstr ""

#: compiler.lisp:12756
msgid "Other keywords are allowed."
msgstr ""

#: compiler.lisp:12761
msgid "No keyword parameters"
msgstr ""

#: compiler.lisp:12842
msgid "Cannot disassemble ~S"
msgstr ""

#: defs2.lisp:63
msgid "~S: ~S is not a function"
msgstr ""

#: defs2.lisp:77
msgid "~S: package name ~S should be a string or a symbol"
msgstr ""

#: defs2.lisp:84
msgid "~S ~A: symbol name ~S should be a string or a symbol"
msgstr ""

#: defs2.lisp:104
msgid "~S ~A: the symbol ~A must not be specified more than once"
msgstr ""

#: defs2.lisp:182
msgid "~S ~A: unknown option ~S"
msgstr ""

#: defs2.lisp:186
msgid "~S ~A: invalid syntax in ~S option: ~S"
msgstr ""

#: defs2.lisp:190
msgid "~S ~A: not a ~S option: ~S"
msgstr ""

#: defs2.lisp:246
msgid "This symbol will be created."
msgstr ""

#: defs2.lisp:247
msgid "~S ~A: There is no symbol ~A::~A ."
msgstr ""

#: defs2.lisp:321
msgid "The object to be destructured should be a list with ~:[at least ~*~S~;~:[from ~S to ~S~;~S~]~] elements, not ~4@*~S."
msgstr ""

#: defs2.lisp:390
msgid "~S: macro name should be a symbol, not ~S"
msgstr ""

#: defs2.lisp:425
msgid "~S: input stream ~S ends within read macro beginning to ~S"
msgstr ""

#: defs2.lisp:431
msgid "~S from ~S: character read should be a character: ~S"
msgstr ""

#: defs2.lisp:452
msgid "~S from ~S: After ~S is ~S an undefined dispatch macro character"
msgstr ""

#: loop.lisp:47
msgid "~S: syntax error after ~A in ~S"
msgstr ""

#: loop.lisp:254
msgid "~S: missing variable."
msgstr ""

#: loop.lisp:264
msgid "~S: After ~S, ~S is interpreted as a type specification"
msgstr ""

#: loop.lisp:520
msgid "~S: ~A clauses should occur before the loop's main body"
msgstr ""

#: loop.lisp:660
msgid "~S: After ~S a plural loop keyword is required, not ~A"
msgstr ""

#: loop.lisp:665
msgid "~S: After ~S a singular loop keyword is required, not ~A"
msgstr ""

#: loop.lisp:807
msgid "~S: questionable iteration direction after ~A"
msgstr ""

#: loop.lisp:816
msgid "~S: specifying ~A requires FROM or DOWNFROM"
msgstr ""

#: loop.lisp:874
msgid "~S: illegal syntax near ~S in ~S"
msgstr ""

#: loop.lisp:879
msgid "~S: ambiguous result of loop ~S"
msgstr ""

#: loop.lisp:1012
msgid "~S is possible only from within ~S"
msgstr ""

#: loop.lisp:1015
msgid "Use of ~S in FINALLY clauses is deprecated because it can lead to infinite loops."
msgstr ""

#: loop.lisp:1018
msgid "~S is not possible here"
msgstr ""

#: clos.lisp:174
msgid "~S: ~S does not name a class"
msgstr ""

#: clos.lisp:194
msgid "~S: ~S is not a class"
msgstr ""

#: clos.lisp:201
msgid "~S: cannot redefine built-in class ~S"
msgstr ""

#: clos.lisp:206
msgid "~S: Redefining the COMMON LISP class ~S"
msgstr ""

#: clos.lisp:361
msgid "instance ~S of class ~S has no slots (wrong metaclass)"
msgstr ""

#: clos.lisp:390
msgid "~S: invalid slot and variable specification ~S"
msgstr ""

#: clos.lisp:402
msgid "~S: slot name ~S should be a symbol"
msgstr ""

#: clos.lisp:433
msgid "~S: invalid slot and accessor specification ~S"
msgstr ""

#: clos.lisp:443
msgid "~S: accessor name ~S should be a symbol"
msgstr ""

#: clos.lisp:534
msgid "~S: class name ~S should be a symbol"
msgstr ""

#: clos.lisp:541
msgid "~S ~S: expecting list of superclasses instead of ~S"
msgstr ""

#: clos.lisp:547
msgid "~S ~S: superclass name ~S should be a symbol"
msgstr ""

#: clos.lisp:559
msgid "~S ~S: expecting list of slot specifications instead of ~S"
msgstr ""

#: clos.lisp:569
msgid "~S ~S: slot name ~S should be a symbol"
msgstr ""

#: clos.lisp:574
msgid "~S ~S: There may be only one direct slot with the name ~S."
msgstr ""

#: clos.lisp:589
msgid "~S ~S: slot options for slot ~S don't come in pairs"
msgstr ""

#: clos.lisp:600
msgid "~S ~S, slot option for slot ~S: ~S is not a function name"
msgstr ""

#: clos.lisp:626
msgid "~S ~S, slot option for slot ~S must have the value ~S or ~S, not ~S"
msgstr ""

#: clos.lisp:662
msgid "~S ~S, slot option for slot ~S: ~S is not a string"
msgstr ""

#: clos.lisp:669
msgid "~S ~S, slot option for slot ~S: ~S is not a valid slot option"
msgstr ""

#: clos.lisp:720
msgid "~S ~S, option ~S may only be given once"
msgstr ""

#: clos.lisp:740
msgid "~S ~S: option ~S should be written ~S"
msgstr ""

#: clos.lisp:745
msgid "~S ~S, option ~S: arguments don't come in pairs"
msgstr ""

#: clos.lisp:761
msgid "~S ~S, option ~S: ~S may only be given once"
msgstr ""

#: clos.lisp:781
msgid "~S ~S, option ~S: ~S is not a string"
msgstr ""

#: clos.lisp:790
msgid "~S ~S: invalid option ~S"
msgstr ""

#: clos.lisp:897
msgid "~S: Class ~S is being redefined, instances are obsolete"
msgstr ""

#: clos.lisp:984
msgid "~S ~S: superclass ~S should belong to class STANDARD-CLASS"
msgstr ""

#: clos.lisp:1154
msgid "~S ~S: inconsistent precedence graph, cycle ~S"
msgstr ""

#: clos.lisp:1193
msgid "(class-precedence-list ~S) and (class-precedence-list ~S) are inconsistent"
msgstr ""

#: clos.lisp:1350
msgid "~S: superclass ~S should belong to class BUILT-IN-CLASS"
msgstr ""

#: clos.lisp:1392
msgid "~S: metaclass STRUCTURE-CLASS forbids more than one direct superclass"
msgstr ""

#: clos.lisp:1398
msgid "~S: superclass ~S should belong to class STRUCTURE-CLASS"
msgstr ""

#: clos.lisp:1438
msgid "~S: metaclass STRUCTURE-CLASS does not support shared slots"
msgstr ""

#: clos.lisp:1711
msgid "~S ~S: missing lambda list"
msgstr ""

#: clos.lisp:1723
msgid "STANDARD method combination doesn't allow the method qualifiers to be ~S"
msgstr ""

#: clos.lisp:2168
msgid "Too few arguments to ~S: ~S"
msgstr ""

#: clos.lisp:2297
msgid "The generic function ~S is being modified, but has already been called."
msgstr ""

#: clos.lisp:2856
msgid "~S in ~S: the new arguments ~S have a different effective method than the old arguments ~S"
msgstr ""

#: clos.lisp:2881
msgid "~S has ~S, but ~S has ~S required parameters"
msgstr ""

#: clos.lisp:2886
msgid "~S has ~S, but ~S has ~S optional parameters"
msgstr ""

#: clos.lisp:2908
msgid "~S doesn't accept the keywords ~S of ~S"
msgstr ""

#: clos.lisp:2938
msgid "Replacing method ~S in ~S"
msgstr ""

#: clos.lisp:2956
msgid "Removing method ~S in ~S"
msgstr ""

#: clos.lisp:2984
msgid "~S has no method with qualifiers ~:S and specializers ~S"
msgstr ""

#: clos.lisp:3075
msgid "~S ~S: Only ~S declarations are permitted: ~S"
msgstr ""

#: clos.lisp:3084
msgid "~S ~S: ~S may only be specified once."
msgstr ""

#: clos.lisp:3092
msgid "~S ~S: A string must be specified after ~S : ~S"
msgstr ""

#: clos.lisp:3097
msgid "~S ~S: Only one ~S string is allowed"
msgstr ""

#: clos.lisp:3105
msgid "~S ~S: The only valid method combination is ~S : ~S"
msgstr ""

#: clos.lisp:3113
msgid "~S ~S: The only valid generic function class name is ~S : ~S"
msgstr ""

#: clos.lisp:3121
msgid "~S ~S: The only valid method class name is ~S : ~S"
msgstr ""

#: clos.lisp:3140
msgid "~S ~S: ~S is not one of the required parameters: ~S"
msgstr ""

#: clos.lisp:3152
msgid "~S ~S: some variable occurs twice in ~S"
msgstr ""

#: clos.lisp:3157
msgid "~S ~S: ~S is missing some required parameter"
msgstr ""

#: clos.lisp:3186
msgid "~S ~S: No initializations are allowed in a generic function lambda-list: ~S"
msgstr ""

#: clos.lisp:3192
msgid "~S ~S: variable name ~S should be a symbol"
msgstr ""

#: clos.lisp:3197
msgid "~S ~S: duplicate variable name ~S"
msgstr ""

#: clos.lisp:3248
msgid "~S ~S: invalid lambda list portion: ~S"
msgstr ""

#: clos.lisp:3301
msgid "Removing all methods of ~S"
msgstr ""

#: clos.lisp:3309
msgid "Modifying the parameter profile of ~S"
msgstr ""

#: clos.lisp:3365
msgid "~S: ~S is not a generic function specification"
msgstr ""

#: clos.lisp:3428
msgid "~S: The name of a class must be a symbol, not ~S"
msgstr ""

#: clos.lisp:3433
msgid "~S: The name of the built-in class ~S cannot be modified"
msgstr ""

#: clos.lisp:3512
msgid "~S: When calling ~S with arguments ~S, there is no next method after ~S, and ~S was called."
msgstr ""

#: clos.lisp:3563
msgid "~S: The class ~S has no slot named ~S"
msgstr ""

#: clos.lisp:3573
msgid "~S: The slot ~S of ~S has no value"
msgstr ""

#: clos.lisp:4082
msgid "~S method for ~S returned ~S"
msgstr ""

#: condition.lisp:80
msgid "~S: the name of a condition must be a symbol, not ~S"
msgstr ""

#: condition.lisp:85
msgid "~S: the parent-type list must be a list of symbols, not ~S"
msgstr ""

#: condition.lisp:90
msgid "~S: the slot description list must be a list, not ~S"
msgstr ""

#: condition.lisp:145
msgid "~S: type ~S is not a subtype of ~S"
msgstr ""

#: condition.lisp:161
msgid "~S ~S: superfluous arguments ~S"
msgstr ""

#: condition.lisp:178
msgid "~S: the condition argument must be a string, a symbol or a condition, not ~S"
msgstr ""

#: condition.lisp:579
msgid "~S: illegal syntax of clause ~S"
msgstr ""

#: condition.lisp:586
msgid "~S: only one ~S clause is allowed: ~S"
msgstr ""

#: condition.lisp:594
msgid "~S: too many variables ~S in clause ~S"
msgstr ""

#: condition.lisp:807
msgid "~S: ~S is not a valid restart name here. Use ~S instead."
msgstr ""

#: condition.lisp:828
msgid "~S: invalid restart name ~S"
msgstr ""

#: condition.lisp:835
msgid "~S: No restart named ~S is visible."
msgstr ""

#: condition.lisp:984
msgid "~S: missing lambda list in restart specification ~S"
msgstr ""

#: condition.lisp:1007
msgid "~S: restart cannot be invoked interactively because it is missing a ~S option: ~S"
msgstr ""

#: condition.lisp:1206
msgid "~%New ~S [value ~D of ~D]: "
msgstr ""

#: condition.lisp:1521
msgid "~S: This is more serious than a warning: ~A"
msgstr ""

#: xcharin.lisp:36
msgid "~: argument ~S is not a character"
msgstr ""

#: xcharin.lisp:57
msgid "~S: the font argument should be an integer, not ~S"
msgstr ""

#: xcharin.lisp:66
msgid "~S: the bits argument should be an integer, not ~S"
msgstr ""

#: xcharin.lisp:88
msgid "~S: the only bit names are ~S, ~S, ~S, ~S, not ~S"
msgstr ""

#: screen.lisp:227
msgid "Got bad response from ~S: ~S"
msgstr ""

#: amigasock.lisp:30
msgid "~S: ~S is not a SOCKET-SERVER"
msgstr ""

#: runprog.lisp:162
msgid "~S: File ~S already exists"
msgstr ""

#: query.lisp:12
msgid " (y/n) "
msgstr ""

#: query.lisp:23
msgid "Please answer with y or n : "
msgstr ""

#: query.lisp:33
msgid " (yes/no) "
msgstr ""

#: query.lisp:43
msgid "Please answer with yes or no : "
msgstr ""

#: reploop.lisp:60
msgid "[*package* invalid]"
msgstr ""

#: reploop.lisp:193
msgid "Values: "
msgstr ""

#: reploop.lisp:210
msgid ""
"\n"
"Help (abbreviated :h) = this list\n"
"Use the usual editing capabilities.\n"
"(quit) or (exit) leaves CLISP."
msgstr ""

#: reploop.lisp:220
msgid ""
"\n"
"Commands may be abbreviated as shown in the second column.\n"
"COMMAND        ABBR             DESCRIPTION\n"
"Help           :h (or ?)        this command list\n"
"Error          :e               Print the recent Error Message\n"
"Abort          :a               abort to the next recent input loop\n"
"Unwind         :uw              abort to the next recent input loop\n"
"Mode-1         :m1              inspect all the stack elements\n"
"Mode-2         :m2              inspect all the frames\n"
"Mode-3         :m3              inspect only lexical frames\n"
"Mode-4         :m4              inspect only EVAL and APPLY frames (default)\n"
"Mode-5         :m5              inspect only APPLY frames\n"
"Where          :w               inspect this frame\n"
"Up             :u               go up one frame, inspect it\n"
"Top            :t               go to top frame, inspect it\n"
"Down           :d               go down one frame, inspect it\n"
"Bottom         :b               go to bottom (most recent) frame, inspect it\n"
"Backtrace-1    :bt1             list all stack elements\n"
"Backtrace-2    :bt2             list all frames\n"
"Backtrace-3    :bt3             list all lexical frames\n"
"Backtrace-4    :bt4             list all EVAL and APPLY frames\n"
"Backtrace-5    :bt5             list all APPLY frames\n"
"Backtrace      :bt              list stack in current mode\n"
"Backtrace-l    :bl              list stack in current mode.\n"
"                                Limit of frames to print will be prompted for.\n"
"Frame-limit    :fl              set the frame-limit. This many frames will\n"
"                                be printed in a backtrace at most.\n"
"Break+         :br+             set breakpoint in EVAL frame\n"
"Break-         :br-             disable breakpoint in EVAL frame\n"
"Redo           :rd              re-evaluate form in EVAL frame\n"
"Return         :rt              leave EVAL frame, prescribing the return values"
msgstr ""

#: reploop.lisp:310
msgid ""
"\n"
"Continue       :c       continue evaluation"
msgstr ""

#: reploop.lisp:317
msgid ""
"\n"
"Continue       :c       continue evaluation\n"
"Step           :s       step into form: evaluate this form in single step mode\n"
"Next           :n       step over form: evaluate this form at once\n"
"Over           :o       step over this level: evaluate at once up to the next return\n"
"Continue       :c      switch off single step mode, continue evaluation\n"
"-- Step-until :su, Next-until :nu, Over-until :ou, Continue-until :cu --\n"
"           same as above, specify a condition when to stop"
msgstr ""

#: reploop.lisp:398
msgid "Unprintable error message."
msgstr ""

#: reploop.lisp:409
msgid "You can continue (by typing 'continue')."
msgstr ""

#: reploop.lisp:425
msgid "The following restarts are available, too:"
msgstr ""

#: reploop.lisp:426
msgid "The following restarts are available:"
msgstr ""

#: reploop.lisp:527
msgid "no values"
msgstr ""

#: reploop.lisp:528
msgid "value: "
msgstr ""

#: reploop.lisp:531
msgid " values: "
msgstr ""

#: reploop.lisp:597
msgid "condition when to stop: "
msgstr ""

#: dribble.lisp:19
msgid "Already dribbling to ~S"
msgstr ""

#: dribble.lisp:105
msgid "Currently not dribbling."
msgstr ""

#: describe.lisp:44
msgid "constant"
msgstr ""

#: describe.lisp:46
msgid "symbol-macro"
msgstr ""

#: describe.lisp:47
msgid "variable"
msgstr ""

#: describe.lisp:54
msgid "type"
msgstr ""

#: describe.lisp:60
msgid "class"
msgstr ""

#: describe.lisp:146
msgid "~%Slots:"
msgstr ""

#: describe.lisp:153
msgid "unbound"
msgstr ""

#: describe.lisp:156
msgid "~%No slots."
msgstr ""

#: describe.lisp:163
msgid "a foreign pointer"
msgstr ""

#: describe.lisp:166
msgid "a foreign address"
msgstr ""

#: describe.lisp:169
msgid "a foreign variable of foreign type ~S."
msgstr ""

#: describe.lisp:173
msgid "a foreign function taking foreign types ~:S and returning foreign type ~S."
msgstr ""

#: describe.lisp:177
msgid "a byte specifier, denoting the ~S bits starting at bit position ~S of an integer."
msgstr ""

#: describe.lisp:180
msgid "a special form handler."
msgstr ""

#: describe.lisp:182
msgid "a load-time evaluation promise."
msgstr ""

#: describe.lisp:184
msgid "a symbol macro handler."
msgstr ""

#: describe.lisp:186
msgid "a macro expander."
msgstr ""

#: describe.lisp:188
msgid "a function with alternative macro expander."
msgstr ""

#: describe.lisp:190
msgid "an encoding."
msgstr ""

#: describe.lisp:195
msgid "a GC-invisible pointer to ~S."
msgstr ""

#: describe.lisp:198
msgid "a GC-invisible pointer to a now defunct object."
msgstr ""

#: describe.lisp:200
msgid "a label used for resolving #~D# references during READ."
msgstr ""

#: describe.lisp:204
msgid "a pointer into the stack. It points to:"
msgstr ""

#: describe.lisp:207
msgid "a special-purpose object."
msgstr ""

#: describe.lisp:209
msgid "a machine address."
msgstr ""

#: describe.lisp:211
msgid "an instance of the CLOS class ~S."
msgstr ""

#: describe.lisp:215
msgid "a structure of type ~S."
msgstr ""

#: describe.lisp:219
msgid "~%As such, it is also a structure of type ~{~S~^, ~}."
msgstr ""

#: describe.lisp:227
msgid "a dotted list of length ~S."
msgstr ""

#: describe.lisp:229
msgid "a cons."
msgstr ""

#: describe.lisp:232
msgid "a list of length ~S."
msgstr ""

#: describe.lisp:234
msgid "a cyclic list."
msgstr ""

#: describe.lisp:236
msgid "the empty list, "
msgstr ""

#: describe.lisp:239
msgid "the symbol ~S, "
msgstr ""

#: describe.lisp:243
msgid "lies in ~S"
msgstr ""

#: describe.lisp:246
msgid "is uninterned"
msgstr ""

#: describe.lisp:260
msgid ", is accessible in the package~:[~;s~] ~{~A~^, ~}"
msgstr ""

#: describe.lisp:265
msgid ", is a keyword"
msgstr ""

#: describe.lisp:268
msgid ", a constant"
msgstr ""

#: describe.lisp:270
msgid ", a variable declared SPECIAL"
msgstr ""

#: describe.lisp:271
msgid ", a variable"
msgstr ""

#: describe.lisp:273
msgid " (macro: ~s)"
msgstr ""

#: describe.lisp:276
msgid ", value: ~s"
msgstr ""

#: describe.lisp:279
msgid ", names "
msgstr ""

#: describe.lisp:281
msgid "a special operator"
msgstr ""

#: describe.lisp:283
msgid " with macro definition"
msgstr ""

#: describe.lisp:285
msgid "a~:[~; deprecated~] function"
msgstr ""

#: describe.lisp:288
msgid "a macro"
msgstr ""

#: describe.lisp:293
msgid ", names a type"
msgstr ""

#: describe.lisp:297
msgid ", names a class"
msgstr ""

#: describe.lisp:303
msgid ", has the propert~@P ~{~S~^, ~}"
msgstr ""

#: describe.lisp:310
msgid "~%Documentation as a ~a:~%~a"
msgstr ""

#: describe.lisp:316
msgid "an integer, uses ~S bit~:p, is represented as a ~(~A~)."
msgstr ""

#: describe.lisp:319
msgid "a rational, not integral number."
msgstr ""

#: describe.lisp:321
msgid "a float with ~S bits of mantissa (~(~A~))."
msgstr ""

#: describe.lisp:324
msgid "a complex number "
msgstr ""

#: describe.lisp:329
msgid "at the origin"
msgstr ""

#: describe.lisp:330
msgid "on the ~:[posi~;nega~]tive real axis"
msgstr ""

#: describe.lisp:333
msgid "on the ~:[posi~;nega~]tive imaginary axis"
msgstr ""

#: describe.lisp:335
msgid "in the ~:[~:[first~;fourth~]~;~:[second~;third~]~] quadrant"
msgstr ""

#: describe.lisp:337
msgid " of the Gaussian number plane."
msgstr ""

#: describe.lisp:339
msgid "a character"
msgstr ""

#: describe.lisp:344
msgid "~%Unicode name: ~A"
msgstr ""

#: describe.lisp:345
msgid "~%It is not defined by the Unicode standard."
msgstr ""

#: describe.lisp:346
msgid "~%It is a ~:[non-~;~]printable character."
msgstr ""

#: describe.lisp:349
msgid "~%Its use is non-portable."
msgstr ""

#: describe.lisp:351
msgid "a~:[~:[ closed ~;n output-~]~;~:[n input-~;n input/output-~]~]stream."
msgstr ""

#: describe.lisp:357
msgid "the package named ~A"
msgstr ""

#: describe.lisp:361
msgid ". It has the nicknames ~{~A~^, ~}"
msgstr ""

#: describe.lisp:366
msgid "~%It "
msgstr ""

#: describe.lisp:368
msgid "imports the external symbols of the package~:[~;s~] ~{~A~^, ~} and "
msgstr ""

#: describe.lisp:373
msgid "exports ~:[no symbols~;the symbols~:*~{~<~%~:; ~S~>~^~}~%~]"
msgstr ""

#: describe.lisp:375
msgid "exports ~[no symbols~:;~:*~:d symbols~]"
msgstr ""

#: describe.lisp:378
msgid " to the package~:[~;s~] ~{~A~^, ~}"
msgstr ""

#: describe.lisp:381
msgid ", but no package uses these exports"
msgstr ""

#: describe.lisp:383
msgid "a deleted package."
msgstr ""

#: describe.lisp:385
msgid "a hash table with ~S entr~:@P."
msgstr ""

#: describe.lisp:388
msgid "~:[a~;the Common Lisp~] readtable."
msgstr ""

#: describe.lisp:391
msgid "a ~:[~;portable ~]pathname~:[.~;~:*, with the following components:~{~A~}~]"
msgstr ""

#: describe.lisp:406
msgid "a random-state."
msgstr ""

#: describe.lisp:410
msgid "a~:[~; simple~] ~A dimensional array"
msgstr ""

#: describe.lisp:413
msgid " (vector)"
msgstr ""

#: describe.lisp:415
msgid " of ~(~A~)s"
msgstr ""

#: describe.lisp:418
msgid ", adjustable"
msgstr ""

#: describe.lisp:420
msgid ", of size ~{~S~^ x ~}"
msgstr ""

#: describe.lisp:423
msgid " and current length (fill-pointer) ~S"
msgstr ""

#: describe.lisp:430
msgid "a foreign function."
msgstr ""

#: describe.lisp:436
msgid "a built-in system function."
msgstr ""

#: describe.lisp:444
msgid "a~:[n interpret~; compil~]ed function."
msgstr ""

#: describe.lisp:460
msgid "~%argument list: ~:S"
msgstr ""

#: describe.lisp:463
msgid "~%documentation: ~A"
msgstr ""

#: describe.lisp:468
msgid "~&~%~A [see above]"
msgstr ""

#: describe.lisp:471
msgid "~&~%~A is "
msgstr ""

#: describe.lisp:535
msgid "~S: ~S is not a function."
msgstr ""

#: describe.lisp:564
msgid "~%Argument list: "
msgstr ""

#: room.lisp:17
msgid "~S: argument must be ~S, ~S or ~S, not ~S"
msgstr ""

#: room.lisp:59
msgid "~%Bytes permanently allocated:   ~9D~%Bytes currently in use:        ~9D~%Bytes available until next GC: ~9D~%"
msgstr ""

#: edit.lisp:30
msgid "No external editor installed."
msgstr ""

#: edit.lisp:102
msgid "~S cannot be edited."
msgstr ""

#: edit.lisp:121
msgid "~S: source code for ~S not available."
msgstr ""

#: macros3.lisp:13
msgid ""
"The form ~S yielded ~:[no values~;~:*~{~S~^ ; ~}~] ,~@\n"
"                       that's not of type ~S."
msgstr ""

#: macros3.lisp:64
msgid "LETF* code contains a dotted list, ending with ~S"
msgstr ""

#: macros3.lisp:83
msgid "illegal syntax in LETF* binding: ~S"
msgstr ""

#: macros3.lisp:227
msgid "LETF code contains a dotted list, ending with ~S"
msgstr ""

#: macros3.lisp:246
msgid "illegal syntax in LETF binding: ~S"
msgstr ""

#: foreign1.lisp:86
msgid "Cannot map string ~S to C since it contains a character ~S"
msgstr ""

#: foreign1.lisp:128
msgid "Incomplete FFI type ~S is not allowed here."
msgstr ""

#: foreign1.lisp:134
msgid "FFI type should be a symbol, not ~S"
msgstr ""

#: foreign1.lisp:138
msgid "Invalid FFI type: ~S"
msgstr ""

#: foreign1.lisp:329
msgid "Invalid option in ~S: ~S"
msgstr ""

#: foreign1.lisp:333
msgid "Only one ~S option is allowed: ~S"
msgstr ""

#: foreign1.lisp:350
msgid "Invalid parameter specification in ~S: ~S"
msgstr ""

#: foreign1.lisp:411
msgid "The name must be a string, not ~S"
msgstr ""

#: foreign1.lisp:416
msgid "The name ~S is not a valid C identifier"
msgstr ""

#: foreign1.lisp:671
msgid "illegal foreign data type ~S"
msgstr ""

#: foreign1.lisp:801
msgid "~S: ~S option missing in ~S"
msgstr ""

#: foreign1.lisp:996
msgid "~S: :OUT argument is not a pointer: ~S"
msgstr ""

#: foreign1.lisp:1060
msgid "~S is only allowed after ~S: ~S"
msgstr ""

#: affi1.lisp:41
msgid "Basename ~S not a keyword or libraryname ~S not a string"
msgstr ""

#: affi1.lisp:48
msgid "Library redefinition: old ~S, new ~S"
msgstr ""

#: affi1.lisp:58
msgid "Unknown library: ~S"
msgstr ""

#: affi1.lisp:85
msgid "Library ~S is not open"
msgstr ""

#: affi1.lisp:147
msgid "Unknown function of library ~S: ~S"
msgstr ""

#: affi1.lisp:173
msgid "Offset must be a fixnum: ~S"
msgstr ""

#: affi1.lisp:184
msgid "~&;; redefining foreign library function ~S~%;;  from ~S to ~S~%"
msgstr ""

#: affi1.lisp:203
msgid "Unknown register: ~S"
msgstr ""

#: affi1.lisp:215
msgid "Invalid parameter specification ~S in function ~S"
msgstr ""

#: affi1.lisp:227
msgid "Unknown library function: ~S"
msgstr ""

#: affi1.lisp:244
msgid "Bad number of arguments for ~S: ~S"
msgstr ""

#: rexx1.lisp:146
msgid "No waiting for ~S possible."
msgstr ""

#: defs3.lisp:231
msgid "~S: argument ~S should be a string or a symbol"
msgstr ""
EOF

: ${DIFF=diff}
${DIFF} msguniq-2.ok msguniq-2.out
result=$?

exit $result