Welcome to mirror list, hosted at ThFree Co, Russian Federation.

es.po « mcs « po - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39efc13f29959d2df6191d4cfc14002ddaf3b8f6 (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
# Mono C# compiler translation file.
# Copyright (C) 2008 Novell, Inc.
# Miguel de Icaza <miguel@gnome.org>, 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: mono 2.1\n"
"Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n"
"POT-Creation-Date: 2008-09-14 18:26-0400\n"
"PO-Revision-Date: 2008-09-14 18:28-0400\n"
"Last-Translator: Miguel de Icaza <miguel@novell.com>\n"
"Language-Team: es <mono-list@lists.ximian.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../mcs/mcs/anonymous.cs:850
#, csharp-format
msgid "Cannot convert `{0}' to an expression tree of non-delegate type `{1}'"
msgstr ""
"No es posible convertir `{0}' a un árbol de expresiónáéíóú de tipo `{1}; ya "
"que no es un tipo de delegado"

#: ../mcs/mcs/anonymous.cs:856
#, csharp-format
msgid "Cannot convert `{0}' to non-delegate type `{1}'"
msgstr "No es posible convertir `{0}' a un un tipo que no es un delegado `{1}'"

#: ../mcs/mcs/anonymous.cs:868
#, csharp-format
msgid ""
"Cannot convert `{0}' to delegate type `{1}' since there is a parameter "
"mismatch"
msgstr ""

#: ../mcs/mcs/anonymous.cs:880 ../mcs/mcs/delegate.cs:568
#, csharp-format
msgid "Delegate `{0}' does not take `{1}' arguments"
msgstr "El delegado `{0} no toma {1} argumentos"

#: ../mcs/mcs/anonymous.cs:895
#, csharp-format
msgid "Parameter `{0}' should not be declared with the `{1}' keyword"
msgstr ""
"El parámetro `{0}' no debe ser ser declarado con la palabra reservada `{1}'"

#: ../mcs/mcs/anonymous.cs:898
#, csharp-format
msgid "Parameter `{0}' must be declared with the `{1}' keyword"
msgstr ""
"El parámetro `{0}' debe de ser declarado con la palabra reservada `{1}'"

#: ../mcs/mcs/anonymous.cs:919
#, csharp-format
msgid "Parameter `{0}' is declared as type `{1}' but should be `{2}'"
msgstr "El parámetro `{0}' está declarado con `{1}' pero debería de ser `{2}'"

#: ../mcs/mcs/anonymous.cs:1043
msgid "An anonymous method cannot be converted to an expression tree"
msgstr ""
"Los métodos anónimos no pueden ser convertidos a árboles de expresiones"

#: ../mcs/mcs/anonymous.cs:1060
#, csharp-format
msgid ""
"Cannot convert anonymous method block without a parameter list to delegate "
"type `{0}' because it has one or more `out' parameters."
msgstr ""

#: ../mcs/mcs/anonymous.cs:1085
msgid ""
"Anonymous methods and lambda expressions cannot be used in the current "
"context"
msgstr ""
"Los métodos anónimos y las expresiones lambdas no pueden ser usados en este "
"contexto"

#: ../mcs/mcs/anonymous.cs:1122
#, csharp-format
msgid ""
"Local variable or parameter `{0}' cannot have their address taken and be "
"used inside an anonymous method or lambda expression"
msgstr ""
"No se le puede tomar la dirección a la variable local o el parámetro `{0}' y "
"ser al mismo tiempo usada dentro de un método anónimo o una expresión lambda."

#: ../mcs/mcs/anonymous.cs:1353
msgid "An expression tree cannot contain an anonymous method expression"
msgstr ""
"Un árbol de expresiones no puede contener una expresión que sea una método "
"anónimo"

#: ../mcs/mcs/anonymous.cs:1647
#, csharp-format
msgid ""
"`{0}': An anonymous type cannot have multiple properties with the same name"
msgstr ""
"`{0}' An tipo anónimo no puede tener multiples propiedades con el mismo "
"nombre"

#: ../mcs/mcs/assign.cs:325
msgid "An expression tree cannot contain an assignment operator"
msgstr "Un árbol de expresiones no puede contener un operador de asignación"

#: ../mcs/mcs/attribute.cs:165
#, csharp-format
msgid ""
"`{0}' is not a valid named attribute argument. Named attribute arguments "
"must be fields which are not readonly, static, const or read-write "
"properties which are public and not static"
msgstr ""

#: ../mcs/mcs/attribute.cs:173
#, csharp-format
msgid ""
"`{0}' is not a valid named attribute argument because it is not a valid "
"attribute parameter type"
msgstr ""

#: ../mcs/mcs/attribute.cs:180
msgid ""
"An attribute argument must be a constant expression, typeof expression or "
"array creation expression"
msgstr ""

#: ../mcs/mcs/attribute.cs:187
msgid "Can not use a type parameter in an attribute"
msgstr "No es posible usar un tipo parametrizado en un atributo"

#: ../mcs/mcs/attribute.cs:192
msgid "The Guid attribute must be specified with the ComImport attribute"
msgstr ""
"El atributo Guid debe de ser especificado junto con el atributo ComImport"

#: ../mcs/mcs/attribute.cs:197
#, csharp-format
msgid "Do not use `{0}' directly. Use parameter modifier `this' instead"
msgstr ""
"No use `{0}' directamente.   Use el modificador de parámetro `this' en su "
"lugar"

#: ../mcs/mcs/attribute.cs:206
#, csharp-format
msgid "Error during emitting `{0}' attribute. The reason is `{1}'"
msgstr "Error al emitir el atributo `{0}'.   La razón es `{1}'"

#: ../mcs/mcs/attribute.cs:245
#, csharp-format
msgid "`{0}': is not an attribute class"
msgstr "`{0}' no es una clase atributo"

#: ../mcs/mcs/attribute.cs:263
#, csharp-format
msgid ""
"`{0}' is ambiguous between `{0}' and `{0}Attribute'. Use either `@{0}' or `"
"{0}Attribute'"
msgstr ""
"`{0}' produce una amiguedad entre `{0}' y `{0}Attribute'.   Use `@{0}' o `{0}"
"Attribute'"

#: ../mcs/mcs/attribute.cs:365
#, csharp-format
msgid "Cannot apply attribute class `{0}' because it is abstract"
msgstr "No es posible aplicar el atributo `{0}' ya que es abstracto"

#: ../mcs/mcs/attribute.cs:497
msgid "Invalid value for argument to `System.AttributeUsage' attribute"
msgstr "Valor inválido pasado a `System.AttributeUsage'"

#: ../mcs/mcs/attribute.cs:505
#, csharp-format
msgid "The argument to the `{0}' attribute must be a valid identifier"
msgstr ""
"El argumento pasado al atributo `{0}' debe de ser un identificador válido"

#: ../mcs/mcs/attribute.cs:535
#, csharp-format
msgid "'{0}' duplicate named attribute argument"
msgstr ""

#: ../mcs/mcs/attribute.cs:877
#, csharp-format
msgid ""
"`{0}' is not a valid attribute location for this declaration. Valid "
"attribute locations for this declaration are `{1}'"
msgstr ""

#: ../mcs/mcs/attribute.cs:1206
#, csharp-format
msgid ""
"The attribute `{0}' is not valid on this declaration type. It is valid on `"
"{1}' declarations only"
msgstr ""

#: ../mcs/mcs/attribute.cs:1500
#, csharp-format
msgid "The attribute `{0}' cannot be applied multiple times"
msgstr ""

#: ../mcs/mcs/attribute.cs:1668
msgid ""
"Added modules must be marked with the CLSCompliant attribute to match the "
"assembly"
msgstr ""

#: ../mcs/mcs/attribute.cs:1809
#, csharp-format
msgid "`{0}' is obsolete: `{1}'"
msgstr ""

#: ../mcs/mcs/cs-tokenizer.cs:1276 ../mcs/mcs/cs-tokenizer.cs:1346
msgid "Invalid number"
msgstr "Número inválido"

#: ../mcs/mcs/cs-tokenizer.cs:1532
#, csharp-format
msgid "Unrecognized escape sequence `\\{0}'"
msgstr "Secuencia de escape no reconocida: `\\\\{0}'"

#: ../mcs/mcs/cs-tokenizer.cs:1551
msgid "Unrecognized escape sequence"
msgstr "Secuencia de escape no reconocida"

#: ../mcs/mcs/cs-tokenizer.cs:1811
msgid "Missing identifer to pre-processor directive"
msgstr "La directiva del pre-procesador requiere un identificador"

#: ../mcs/mcs/cs-tokenizer.cs:1821 ../mcs/mcs/cs-tokenizer.cs:1825
#, csharp-format
msgid "Identifier expected: {0}"
msgstr "Esperaba un identificador: {0}."

#: ../mcs/mcs/cs-tokenizer.cs:2201
msgid "Numeric constant too long"
msgstr "La constante numérica es demasiado grande"

#: ../mcs/mcs/cs-tokenizer.cs:2206
msgid "Invalid preprocessor directive"
msgstr "Directiva inválida para el pre-procesador."

#: ../mcs/mcs/cs-tokenizer.cs:2213
#, csharp-format
msgid "Unexpected processor directive ({0})"
msgstr "Directiva inválida para el pre-procesador ({0})."

#: ../mcs/mcs/cs-tokenizer.cs:2218
#, csharp-format
msgid "Expected `{0}'"
msgstr "Esperaba `{0}'"

#: ../mcs/mcs/cs-tokenizer.cs:2224
msgid ""
"Cannot define or undefine preprocessor symbols after first token in file"
msgstr ""
"No es posible definir nuevos símbolos para el preprocesador o elimiar las "
"definiciones existentes después del primer tóken del archivo"

#: ../mcs/mcs/cs-tokenizer.cs:2230
msgid ""
"Preprocessor directives must appear as the first non-whitespace character on "
"a line"
msgstr ""
"Las directivas del pre-procesador deben aparecer como el primer carácter en "
"la línea (que no sea un espacio en blanco)"

#: ../mcs/mcs/cs-tokenizer.cs:2235
msgid "Single-line comment or end-of-line expected"
msgstr "Esperaba un comentario de una sola línea o el final de archivo"

#: ../mcs/mcs/cs-tokenizer.cs:2280 ../mcs/mcs/cs-tokenizer.cs:3003
msgid "Expected `#endif' directive"
msgstr "Esperaba la directiva `#endif'"

#: ../mcs/mcs/cs-tokenizer.cs:2313 ../mcs/mcs/cs-tokenizer.cs:2334
#: ../mcs/mcs/cs-tokenizer.cs:2365 ../mcs/mcs/cs-tokenizer.cs:3001
msgid "#endregion directive expected"
msgstr "Esperaba la directiva `#endregion'"

#: ../mcs/mcs/cs-tokenizer.cs:2420
#, csharp-format
msgid "#error: '{0}'"
msgstr "#error: '{0}'"

#: ../mcs/mcs/cs-tokenizer.cs:2440
msgid "The line number specified for #line directive is missing or invalid"
msgstr ""
"Falta el número de linea especificado en la directiva #line o el número es "
"inválido"

#: ../mcs/mcs/cs-tokenizer.cs:2444
msgid "Wrong preprocessor directive"
msgstr "La directiva del pre-procesador es errónea"

#: ../mcs/mcs/cs-tokenizer.cs:2474 ../mcs/mcs/cs-tokenizer.cs:2834
msgid "Newline in constant"
msgstr "Hay un carácter nueva-linea en la constante"

#: ../mcs/mcs/cs-tokenizer.cs:2490
msgid "Unterminated string literal"
msgstr "La literal de texto no tiene fin"

#: ../mcs/mcs/cs-tokenizer.cs:2536
msgid ""
"The `partial' modifier can be used only immediately before `class', "
"`struct', `interface', or `void' keyword"
msgstr ""
"El modificador `partial' solamente puede ser utilizado antes de `class', "
"`struct', `interface' o la palabra clave `void'"

#: ../mcs/mcs/cs-tokenizer.cs:2565
msgid "Identifier too long (limit is 512 chars)"
msgstr "El identificador es demasiado grande (el límite son 512 caracteres)"

#: ../mcs/mcs/cs-tokenizer.cs:2621
#, csharp-format
msgid ""
"`{0}': Any identifier with double underscores cannot be used when ISO "
"language version mode is specified"
msgstr ""
"`{0}': Ningún identificador con dos subrayados contíguos puede ser usado "
"cuando la versión del lenguage seleccionada es ISO"

#: ../mcs/mcs/cs-tokenizer.cs:2736
msgid "End-of-file found, '*/' expected"
msgstr "El archivo se terminó, y esperaba encontrar un `*/'"

#: ../mcs/mcs/cs-tokenizer.cs:2873
msgid "Keyword, identifier, or string expected after verbatim specifier: @"
msgstr ""
"Esperaba una palabra clave, un identificador o una cadena después del "
"especificador '@' (al pie de la letra)"

#: ../mcs/mcs/cfold.cs:66
msgid "The operation overflows at compile time in checked mode"
msgstr ""
"La operación produjo un sobreflujo durante la compilación en el modo "
"verificado (-checked)"

#: ../mcs/mcs/cfold.cs:693 ../mcs/mcs/cfold.cs:773
msgid "Division by constant zero"
msgstr "División por cero (con una constante)"

#: ../mcs/mcs/class.cs:156
#, csharp-format
msgid ""
"The operator `{0}' requires a matching operator `{1}' to also be defined"
msgstr ""
"El operador `{0}' require que el operador correspondiente `{1}' también sea "
"definido"

#: ../mcs/mcs/class.cs:351
#, csharp-format
msgid ""
"Partial declarations of `{0}' must be all classes, all structs or all "
"interfaces"
msgstr ""
"Las declaraciones parciales de `{0}' deben o todas ser classes, o todas "
"estructuras o todas interfaces"

#: ../mcs/mcs/class.cs:360
#, csharp-format
msgid "Partial declarations of `{0}' have conflicting accessibility modifiers"
msgstr ""
"Las varias declaraciones parciales de `{0} tienen modificadores de "
"accesibilidad en conflicto"

#: ../mcs/mcs/class.cs:416
#, csharp-format
msgid ""
"`{0}': explicit interface declaration can only be declared in a class or "
"struct"
msgstr ""
"`{0}': las declaraciones explícitas de interfaces solamente pueden ser "
"declaradas en una clase o estructura"

#: ../mcs/mcs/class.cs:447
msgid "Class, struct, or interface method must have a return type"
msgstr "El método debe tener un tipo de retorno"

#: ../mcs/mcs/class.cs:459 ../mcs/mcs/decl.cs:2820
#, csharp-format
msgid ""
"A member `{0}' is already defined. Rename this member or use different "
"parameter types"
msgstr ""
"El miembro `{0} ya ha sido definido.   Renombre este miembro o use tipos de "
"parámetro distintos"

#: ../mcs/mcs/class.cs:576
msgid ""
"Cannot specify the `DefaultMember' attribute on type containing an indexer"
msgstr ""
"No puede especificar el atributo `DefaultMember' en un tipo que contiene un "
"indexador"

#: ../mcs/mcs/class.cs:870
#, csharp-format
msgid "`{0}' is already listed in interface list"
msgstr "`{0}' ya está listado en la lista de interfaces"

#: ../mcs/mcs/class.cs:878
#, csharp-format
msgid ""
"Inconsistent accessibility: base interface `{0}' is less accessible than "
"interface `{1}'"
msgstr ""
"Accesibilidad inconsistente: la interface base `{0}' es menos accessible que "
"la interface `{1}'"

#: ../mcs/mcs/class.cs:884
#, csharp-format
msgid "Type `{0}' in interface list is not an interface"
msgstr "El tipo `{0} en la lista de interfaces no es una interface"

#: ../mcs/mcs/class.cs:886
#, csharp-format
msgid "`{0}': Classes cannot have multiple base classes (`{1}' and `{2}')"
msgstr ""
"`{0}': las clases no pueden tener múltiples clases base (`{1}' y `{2}')"

#: ../mcs/mcs/class.cs:889
#, csharp-format
msgid "`{0}': Base class `{1}' must be specified as first"
msgstr "`{0}': la clase base `{1}' tiene que ser especificada primero"

#: ../mcs/mcs/class.cs:916
#, csharp-format
msgid "Partial declarations of `{0}' must not specify different base classes"
msgstr ""
"Las declaraciones parciales de `{0}' no deben de especificar clases bases "
"distintas"

#: ../mcs/mcs/class.cs:957
#, csharp-format
msgid ""
"`{0}' cannot implement both `{1}' and `{2}' because they may unify for some "
"type parameter substitutions"
msgstr ""
"`{0}' no es posible implementar tanto `{1}' como `{2}' por que se pueden "
"unificar en algunos casos"

#: ../mcs/mcs/class.cs:1179
#, csharp-format
msgid ""
"Partial declarations of `{0}' must have the same type parameter names in the "
"same order"
msgstr ""
"Las declaraciones parciales de `{0} deben de tener los mismos nombres de "
"parámetros en el mismo órden."

#: ../mcs/mcs/class.cs:1199
#, csharp-format
msgid ""
"Partial declarations of `{0}' have inconsistent constraints for type "
"parameter `{1}'"
msgstr ""
"Las declaraciones parciales de `{0}' tienen limitaciones inconsistentes para "
"el tipo parametrizado `{1}'"

#: ../mcs/mcs/class.cs:1289
#, csharp-format
msgid ""
"Inherited interface `{0}' causes a cycle in the interface hierarchy of `{1}'"
msgstr ""
"La interface heredada `{0}' produce un ciclo en la jerarquía de la interface "
"`{1}'"

#: ../mcs/mcs/class.cs:1294
#, csharp-format
msgid "Circular base class dependency involving `{0}' and `{1}'"
msgstr "Dependencia circular en la clase base involucrando `{0}' y `{1}'"

#: ../mcs/mcs/class.cs:1327 ../mcs/mcs/decl.cs:1037
msgid "Keyword `new' is not allowed on namespace elements"
msgstr ""
"La palabra reservada `new' no está permitida en los elementos de un espacio "
"de nombres"

#: ../mcs/mcs/class.cs:1482
msgid ""
"Two indexers have different names; the IndexerName attribute must be used "
"with the same name on every indexer within a type"
msgstr ""
"Hay dos indexadores con nombres distintos;   El atributo IndexerName debe "
"ser usado con el mismo nombre en todos los indexadores dentro de un tipo"

#: ../mcs/mcs/class.cs:2322
#, csharp-format
msgid "A static member `{0}' cannot be marked as override, virtual or abstract"
msgstr ""
"El miembro estático `{0}' no puede ser marcado con override, virtual o "
"abstract"

#: ../mcs/mcs/class.cs:2336
#, csharp-format
msgid "A member `{0}' marked as override cannot be marked as new or virtual"
msgstr ""
"El miembro `{0}' está usa `override' y no puede usar `new' o `virtual' "

#: ../mcs/mcs/class.cs:2348
#, csharp-format
msgid "`{0}' cannot be both extern and abstract"
msgstr "`{0}' no puede ser tanto externo como abstracto"

#: ../mcs/mcs/class.cs:2353
#, csharp-format
msgid "`{0}' cannot be both abstract and sealed"
msgstr "`{0}'' no puede ser tanto sellado como abstracto"

#: ../mcs/mcs/class.cs:2358
#, csharp-format
msgid "The abstract method `{0}' cannot be marked virtual"
msgstr "El método abstracto `{0} no puede ser marcado como virtual"

#: ../mcs/mcs/class.cs:2364
#, csharp-format
msgid "`{0}' is abstract but it is declared in the non-abstract class `{1}'"
msgstr ""
"`{0}' es abstracto pero ha sido declarado dentro de una clase que no es "
"abstracta (`{1}')"

#: ../mcs/mcs/class.cs:2372
#, csharp-format
msgid "`{0}': virtual or abstract members cannot be private"
msgstr "`{0}': los miembros virtuales o abstractos no pueden ser privados"

#: ../mcs/mcs/class.cs:2379
#, csharp-format
msgid "`{0}' cannot be sealed because it is not an override"
msgstr "`{0}' no puede sellarse por que no es una sobrecarga"

#: ../mcs/mcs/class.cs:2465
#, csharp-format
msgid "`{0}': containing type does not implement interface `{1}'"
msgstr "`{0}': el tipo contenedor no implementa la interface `{1}'"

#: ../mcs/mcs/class.cs:2599
#, csharp-format
msgid "Type parameter `{0}' has same name as containing type, or method"
msgstr ""
"El tipo parametrizado `{0}' tiene el mimo nombre que el tipo contenedor, o "
"el método"

#: ../mcs/mcs/class.cs:2605
#, csharp-format
msgid "`{0}': member names cannot be the same as their enclosing type"
msgstr ""
"`{0}': los nombres de los miembros no pueden ser el mismo que el del tipo "
"contenedor"

#: ../mcs/mcs/class.cs:2741
msgid ""
"The class System.Object cannot have a base class or implement an interface."
msgstr ""
"La clase Syste.Object no puede tener una clase base o implementar una "
"interface."

#: ../mcs/mcs/class.cs:2750
#, csharp-format
msgid "Attribute `{0}' is only valid on classes derived from System.Attribute"
msgstr ""
"El atributo `{0}' solamente es válido en las clases derivadas de System."
"Attribute"

#: ../mcs/mcs/class.cs:2755
msgid ""
"Attribute `System.Diagnostics.ConditionalAttribute' is only valid on methods "
"or attribute classes"
msgstr ""
"El atributo `System.Diagnostics.ConditionalAttribute' solamente es válido en "
"métodos o en clases derivadas de System.Attribute"

#: ../mcs/mcs/class.cs:2794
#, csharp-format
msgid "`{0}': Static classes cannot contain user-defined operators"
msgstr ""
"`{0}': las clases estáticas no pueden contener operadores definidos por el "
"usuario"

#: ../mcs/mcs/class.cs:2799
#, csharp-format
msgid "`{0}': Static classes cannot contain destructor"
msgstr "`{0}': las clases estáticas no pueden contener un destructor"

#: ../mcs/mcs/class.cs:2809
#, csharp-format
msgid "`{0}': cannot declare indexers in a static class"
msgstr "`{0}': no es posible declarar indexadores en una clase estática"

#: ../mcs/mcs/class.cs:2817
#, csharp-format
msgid "`{0}': Static classes cannot have instance constructors"
msgstr ""
"`{0}': las clases estáticas no pueden tener constructores de instancias"

#: ../mcs/mcs/class.cs:2823
#, csharp-format
msgid "`{0}': Extension methods must be declared static"
msgstr "`{0}' Los métodos de extensión deben de ser estáticos"

#: ../mcs/mcs/class.cs:2827
#, csharp-format
msgid "`{0}': cannot declare instance members in a static class"
msgstr ""
"`{0}'L no es posible declarar miembros de instancia en una clase estática"

#: ../mcs/mcs/class.cs:2836
#, csharp-format
msgid "`{0}': an abstract class cannot be sealed or static"
msgstr "`{0}': una clase abstracta no puede estar sellada o ser estática"

#: ../mcs/mcs/class.cs:2841
#, csharp-format
msgid "`{0}': a class cannot be both static and sealed"
msgstr "`{0}': una clase no puede estar sellada y ser estática al mismo tiempo"

#: ../mcs/mcs/class.cs:2879
#, csharp-format
msgid "Cannot derive from `{0}' because it is a type parameter"
msgstr "No se puede derivar de `{0}' ya que es un tipo parametrizado"

#: ../mcs/mcs/class.cs:2886
#, csharp-format
msgid ""
"A generic type cannot derive from `{0}' because it is an attribute class"
msgstr "Los tipos genericos no pueden derivad de `{0} ya que es un atributo"

#: ../mcs/mcs/class.cs:2893
#, csharp-format
msgid "`{0}': Cannot derive from static class `{1}'"
msgstr "`{0}': no es posible derivar de una clase estática (`{1}')"

#: ../mcs/mcs/class.cs:2896
#, csharp-format
msgid "`{0}': cannot derive from sealed class `{1}'"
msgstr "`{0}': no es posible derivad de una clase sellada (`{1}')"

#: ../mcs/mcs/class.cs:2903
#, csharp-format
msgid "`{0}' cannot derive from special class `{1}'"
msgstr "`{0}' no es posible derivad de la clase especial `{1}'"

#: ../mcs/mcs/class.cs:2910
#, csharp-format
msgid ""
"Inconsistent accessibility: base class `{0}' is less accessible than class `"
"{1}'"
msgstr ""
"Accesibilidad inconsistente: la clase base `{0}' es menos accessible que la "
"clase `{1}'"

#: ../mcs/mcs/class.cs:2917
#, csharp-format
msgid ""
"Static class `{0}' cannot derive from type `{1}'. Static classes must derive "
"from object"
msgstr ""
"La clase estática `{0}' no puede derivarse del tipo `{1}'.   Las clases "
"estáticas deben derivar de `System.Object'"

#: ../mcs/mcs/class.cs:2925
#, csharp-format
msgid "Static class `{0}' cannot implement interfaces"
msgstr "Las clases estáticas no pueden implementar interfaces (`{0}')"

#: ../mcs/mcs/class.cs:3071
#, csharp-format
msgid "`{0}': Structs cannot have instance field initializers"
msgstr ""
"`{0}': las estructuras no pueden tener inicializadores de campos en "
"instancias"

#: ../mcs/mcs/class.cs:3392
#, csharp-format
msgid "`{0}': cannot override because `{1}' is not an event"
msgstr "`{0}': no es posible sobreescribir ya que `{1}' no es un evento"

#: ../mcs/mcs/class.cs:3394
#, csharp-format
msgid "`{0}': cannot override because `{1}' is not a property"
msgstr "`{0}': no es posible sobreescribir `{1}' ya que no es una propiedad"

#: ../mcs/mcs/class.cs:3396
#, csharp-format
msgid "`{0}': cannot override because `{1}' is not a method"
msgstr "`{0}': no es posible sobreescribir `{1}' ya que no es un método"

#: ../mcs/mcs/class.cs:3398
#, csharp-format
msgid "`{0}' is marked as an override but no suitable {1} found to override"
msgstr ""
"`{0}' está marcado como una sobreescritura pero no es posible encontrar {1} "
"para usar override"

#: ../mcs/mcs/class.cs:3437
#, csharp-format
msgid ""
"`{0}': cannot override inherited member `{1}' because it is not marked "
"virtual, abstract or override"
msgstr ""
"`{0}': no es posible sobreescribir el miembro heredado `{1}' ya que este no "
"está marcado con `virtual', `abstract' u `override'"

#: ../mcs/mcs/class.cs:3446
#, csharp-format
msgid "`{0}': cannot override inherited member `{1}' because it is sealed"
msgstr ""
"`{0}': no es posible sobreescribir el miembro heredado `{1}' ya que este "
"está sellado"

#: ../mcs/mcs/class.cs:3464
#, csharp-format
msgid "`{0}': type must be `{1}' to match overridden member `{2}'"
msgstr ""
"`{0}': el tipo debe de ser `{1}' para que corresponda con el miembro "
"sobreescrito `{2}'"

#: ../mcs/mcs/class.cs:3468
#, csharp-format
msgid "`{0}': return type must be `{1}' to match overridden member `{2}'"
msgstr ""
"`{0}': El tipo de regreso debe de ser `{1}' para qu ecorresponda con el "
"miembro sobreescrito `{2}'"

#: ../mcs/mcs/class.cs:3490
#, csharp-format
msgid "`{0}' hides inherited abstract member `{1}'"
msgstr "`{0}' esconde el miembro abstracto heredado `{1}'"

#: ../mcs/mcs/class.cs:3550
#, csharp-format
msgid ""
"Inconsistent accessibility: parameter type `{0}' is less accessible than "
"indexer `{1}'"
msgstr ""
"Accesibilidad inconsistente: la interface base `{0}' es menos accessible que "
"el indexador `{1}'"

#: ../mcs/mcs/class.cs:3554
#, csharp-format
msgid ""
"Inconsistent accessibility: parameter type `{0}' is less accessible than "
"operator `{1}'"
msgstr ""
"Accesibilidad inconsistente: el tipo del parámetro `{0}' es menos accessible "
"que el operador `{1}'"

#: ../mcs/mcs/class.cs:3558
#, csharp-format
msgid ""
"Inconsistent accessibility: parameter type `{0}' is less accessible than "
"method `{1}'"
msgstr ""

#: ../mcs/mcs/class.cs:3578
#, csharp-format
msgid "`{0}' in explicit interface declaration is not an interface"
msgstr ""

#: ../mcs/mcs/class.cs:3617
#, csharp-format
msgid "A partial method `{0}' cannot explicitly implement an interface"
msgstr ""

#: ../mcs/mcs/class.cs:3625
#, csharp-format
msgid "'{0}' in explicit interface declaration is not an interface"
msgstr ""

#: ../mcs/mcs/class.cs:3644
#, csharp-format
msgid ""
"`{0}' is marked as an external but has no DllImport attribute. Consider "
"adding a DllImport attribute to specify the external implementation"
msgstr ""

#: ../mcs/mcs/class.cs:3661
#, csharp-format
msgid ""
"`{0}': cannot change access modifiers when overriding `{1}' inherited member "
"`{2}'"
msgstr ""

#: ../mcs/mcs/class.cs:3754
msgid ""
"The DllImport attribute must be specified on a method marked `static' and "
"`extern'"
msgstr ""

#: ../mcs/mcs/class.cs:3817
#, csharp-format
msgid "`{0}': A partial method parameters cannot use `out' modifier"
msgstr ""

#: ../mcs/mcs/class.cs:3891
#, csharp-format
msgid ""
"Conditional not valid on `{0}' because it is a constructor, destructor, "
"operator or explicit interface implementation"
msgstr ""

#: ../mcs/mcs/class.cs:3948
msgid "Do not override object.Finalize. Instead, provide a destructor"
msgstr ""

#: ../mcs/mcs/class.cs:4120
#, csharp-format
msgid "Program `{0}' has more than one entry point defined: `{1}'"
msgstr ""

#: ../mcs/mcs/class.cs:4151
#, csharp-format
msgid "Conditional not valid on `{0}' because its return type is not void"
msgstr ""

#: ../mcs/mcs/class.cs:4156
#, csharp-format
msgid "Conditional not valid on `{0}' because it is an override method"
msgstr ""

#: ../mcs/mcs/class.cs:4161
msgid "Conditional not valid on interface members"
msgstr ""

#: ../mcs/mcs/class.cs:4167
#, csharp-format
msgid "Conditional member `{0}' cannot implement interface member `{1}'"
msgstr ""

#: ../mcs/mcs/class.cs:4174
#, csharp-format
msgid "Conditional method `{0}' cannot have an out parameter"
msgstr ""

#: ../mcs/mcs/class.cs:4242
#, csharp-format
msgid "`{0}': Extension methods cannot be defined in a nested class"
msgstr ""

#: ../mcs/mcs/class.cs:4247
#, csharp-format
msgid ""
"`{0}': Extension methods cannot be declared without a reference to System."
"Core.dll assembly. Add the assembly reference or remove `this' modifer from "
"the first parameter"
msgstr ""

#: ../mcs/mcs/class.cs:4261
#, csharp-format
msgid "`{0}': Extension methods must be defined in a non-generic static class"
msgstr ""

#: ../mcs/mcs/class.cs:4317
#, csharp-format
msgid ""
"A partial method `{0}' implementation is missing a partial method declaration"
msgstr ""

#: ../mcs/mcs/class.cs:4351
#, csharp-format
msgid "Method or delegate cannot return type `{0}'"
msgstr ""

#: ../mcs/mcs/class.cs:4436
#, csharp-format
msgid "`{0}': Struct constructors cannot call base constructors"
msgstr ""

#: ../mcs/mcs/class.cs:4469
#, csharp-format
msgid "Constructor `{0}' cannot call itself"
msgstr ""

#: ../mcs/mcs/class.cs:4594
#, csharp-format
msgid "`{0}': The static constructor must be parameterless"
msgstr ""

#: ../mcs/mcs/class.cs:4614
msgid "Structs cannot contain explicit parameterless constructors"
msgstr ""

#: ../mcs/mcs/class.cs:4666
#, csharp-format
msgid ""
"`{0}': A class with the ComImport attribute cannot have a user-defined "
"constructor"
msgstr ""

#: ../mcs/mcs/class.cs:4958
#, csharp-format
msgid "`{0}' is an accessor not found in interface member `{1}{2}'"
msgstr ""

#: ../mcs/mcs/class.cs:4964
#, csharp-format
msgid ""
"`{0}.{1}' in explicit interface declaration is not a member of interface"
msgstr ""

#: ../mcs/mcs/class.cs:4971
#, csharp-format
msgid ""
"`{0}' explicit method implementation cannot implement `{1}' because it is an "
"accessor"
msgstr ""

#: ../mcs/mcs/class.cs:4981
#, csharp-format
msgid "Method `{0}' cannot implement interface accessor `{1}.{2}'"
msgstr ""

#: ../mcs/mcs/class.cs:4988
#, csharp-format
msgid ""
"Accessor `{0}' cannot implement interface member `{1}' for type `{2}'. Use "
"an explicit interface implementation"
msgstr ""

#: ../mcs/mcs/class.cs:4995
#, csharp-format
msgid ""
"Accessor `{0}' must be declared public to implement interface member `{1}'"
msgstr ""

#: ../mcs/mcs/class.cs:5019
#, csharp-format
msgid ""
"`{0}': the explicit interface implementation cannot introduce the params "
"modifier"
msgstr ""

#: ../mcs/mcs/class.cs:5315
#, csharp-format
msgid "New virtual member `{0}' is declared in a sealed class `{1}'"
msgstr ""

#: ../mcs/mcs/class.cs:5325
msgid "Inconsistent accessibility: property type `"
msgstr ""

#: ../mcs/mcs/class.cs:5330
msgid "Inconsistent accessibility: indexer return type `"
msgstr ""

#: ../mcs/mcs/class.cs:5336 ../mcs/mcs/class.cs:5341
#: ../mcs/mcs/delegate.cs:220
msgid "Inconsistent accessibility: return type `"
msgstr ""

#: ../mcs/mcs/class.cs:5346
msgid "Inconsistent accessibility: field type `"
msgstr ""

#: ../mcs/mcs/class.cs:5359
#, csharp-format
msgid "Field or property cannot be of type `{0}'"
msgstr ""

#: ../mcs/mcs/class.cs:5387
msgid ""
"The modifier 'abstract' is not valid on fields. Try using a property instead"
msgstr ""

#: ../mcs/mcs/class.cs:5402
msgid ""
"The FieldOffset attribute can only be placed on members of types marked with "
"the StructLayout(LayoutKind.Explicit)"
msgstr ""

#: ../mcs/mcs/class.cs:5407
msgid "The FieldOffset attribute is not allowed on static or const fields"
msgstr ""

#: ../mcs/mcs/class.cs:5414
msgid ""
"Do not use 'System.Runtime.CompilerServices.FixedBuffer' attribute. Use the "
"'fixed' field modifier instead"
msgstr ""

#: ../mcs/mcs/class.cs:5508
#, csharp-format
msgid ""
"`{0}': Instance field types marked with StructLayout(LayoutKind.Explicit) "
"must have a FieldOffset attribute"
msgstr ""

#: ../mcs/mcs/class.cs:5517
#, csharp-format
msgid "`{0}': cannot declare variables of static types"
msgstr ""

#: ../mcs/mcs/class.cs:5635
#, csharp-format
msgid ""
"`{0}': Fixed size buffers type must be one of the following: bool, byte, "
"short, int, long, char, sbyte, ushort, uint, ulong, float or double"
msgstr ""

#: ../mcs/mcs/class.cs:5657
#, csharp-format
msgid "`{0}': Fixed size buffer fields may only be members of structs"
msgstr ""

#: ../mcs/mcs/class.cs:5673
#, csharp-format
msgid "`{0}': Fixed size buffers must have a length greater than zero"
msgstr ""

#: ../mcs/mcs/class.cs:5680
#, csharp-format
msgid ""
"Fixed size buffer `{0}' of length `{1}' and type `{2}' exceeded 2^31 limit"
msgstr ""

#: ../mcs/mcs/class.cs:5873
#, csharp-format
msgid "Struct member `{0}' of type `{1}' causes a cycle in the struct layout"
msgstr ""

#: ../mcs/mcs/class.cs:5885
#, csharp-format
msgid "`{0}': A volatile field cannot be of the type `{1}'"
msgstr ""

#: ../mcs/mcs/class.cs:5890
#, csharp-format
msgid "`{0}': A field cannot be both volatile and readonly"
msgstr ""

#: ../mcs/mcs/class.cs:6079
#, csharp-format
msgid ""
"Attribute `{0}' is not valid on property or event accessors. It is valid on `"
"{1}' declarations only"
msgstr ""

#: ../mcs/mcs/class.cs:6179 ../mcs/mcs/decl.cs:2809
#, csharp-format
msgid "A member `{0}' is already reserved"
msgstr ""

#: ../mcs/mcs/class.cs:6382
#, csharp-format
msgid "Explicit interface implementation `{0}' is missing accessor `{1}'"
msgstr ""

#: ../mcs/mcs/class.cs:6399
#, csharp-format
msgid ""
"`{0}': accessibility modifiers may not be used on accessors in an interface"
msgstr ""

#: ../mcs/mcs/class.cs:6403
#, csharp-format
msgid "`{0}': abstract properties cannot have private accessors"
msgstr ""

#: ../mcs/mcs/class.cs:6465
#, csharp-format
msgid ""
"The accessibility modifier of the `{0}' accessor must be more restrictive "
"than the modifier of the property or indexer `{1}'"
msgstr ""

#: ../mcs/mcs/class.cs:6530
#, csharp-format
msgid ""
"`{0}': Cannot specify accessibility modifiers for both accessors of the "
"property or indexer"
msgstr ""

#: ../mcs/mcs/class.cs:6539
#, csharp-format
msgid ""
"`{0}': accessibility modifiers on accessors may only be used if the property "
"or indexer has both a get and a set accessor"
msgstr ""

#: ../mcs/mcs/class.cs:6601
#, csharp-format
msgid ""
"`{0}.get': cannot override because `{1}' does not have an overridable get "
"accessor"
msgstr ""

#: ../mcs/mcs/class.cs:6616
#, csharp-format
msgid ""
"`{0}.set': cannot override because `{1}' does not have an overridable set "
"accessor"
msgstr ""

#: ../mcs/mcs/class.cs:6813
#, csharp-format
msgid ""
"Automatically implemented property `{0}' cannot be used inside a type with "
"an explicit StructLayout attribute"
msgstr ""

#: ../mcs/mcs/class.cs:7181
#, csharp-format
msgid "`{0}': abstract event cannot have an initializer"
msgstr ""

#: ../mcs/mcs/class.cs:7367
#, csharp-format
msgid "`{0}': event must be of a delegate type"
msgstr ""

#: ../mcs/mcs/class.cs:7574
msgid ""
"The `IndexerName' attribute is valid only on an indexer that is not an "
"explicit interface member declaration"
msgstr ""

#: ../mcs/mcs/class.cs:7581
msgid "Cannot set the `IndexerName' attribute on an indexer marked override"
msgstr ""

#: ../mcs/mcs/class.cs:7783
#, csharp-format
msgid "User-defined operator `{0}' must be declared static and public"
msgstr ""

#: ../mcs/mcs/class.cs:7797
msgid "User-defined operators cannot return void"
msgstr ""

#: ../mcs/mcs/class.cs:7819
msgid ""
"User-defined operator cannot take an object of the enclosing type and "
"convert to an object of the enclosing type"
msgstr ""

#: ../mcs/mcs/class.cs:7830
msgid "User-defined conversion must convert to or from the enclosing type"
msgstr ""

#: ../mcs/mcs/class.cs:7839
#, csharp-format
msgid ""
"User-defined conversion `{0}' cannot convert to or from an interface type"
msgstr ""

#: ../mcs/mcs/class.cs:7846
#, csharp-format
msgid "User-defined conversion `{0}' cannot convert to or from a base class"
msgstr ""

#: ../mcs/mcs/class.cs:7852
#, csharp-format
msgid "User-defined conversion `{0}' cannot convert to or from a derived class"
msgstr ""

#: ../mcs/mcs/class.cs:7860
msgid ""
"Overloaded shift operator must have the type of the first operand be the "
"containing type, and the type of the second operand must be int"
msgstr ""

#: ../mcs/mcs/class.cs:7869
msgid ""
"The return type for ++ or -- operator must be the containing type or derived "
"from the containing type"
msgstr ""

#: ../mcs/mcs/class.cs:7874
msgid "The parameter type for ++ or -- operator must be the containing type"
msgstr ""

#: ../mcs/mcs/class.cs:7881
msgid "The parameter type of a unary operator must be the containing type"
msgstr ""

#: ../mcs/mcs/class.cs:7889
msgid "The return type of operator True or False must be bool"
msgstr ""

#: ../mcs/mcs/class.cs:7902
msgid "One of the parameters of a binary operator must be the containing type"
msgstr ""

#: ../mcs/mcs/codegen.cs:93
msgid ""
"Could not find the symbol writer assembly (Mono.CompilerServices."
"SymbolWriter.dll). This is normally an installation problem. Please make "
"sure to compile and install the mcs/class/Mono.CompilerServices.SymbolWriter "
"directory."
msgstr ""

#: ../mcs/mcs/codegen.cs:134
msgid "Assembly generation failed -- Referenced assembly '"
msgstr ""

#: ../mcs/mcs/codegen.cs:152
msgid "Could not access the key inside the container `"
msgstr ""

#: ../mcs/mcs/codegen.cs:160
msgid "Could not use the specified key to strongname the assembly."
msgstr ""

#: ../mcs/mcs/codegen.cs:199
msgid "Couldn't delay-sign the assembly with the '"
msgstr ""

#: ../mcs/mcs/codegen.cs:204 ../mcs/mcs/codegen.cs:208
msgid "Could not write to file `"
msgstr ""

#: ../mcs/mcs/codegen.cs:822
#, csharp-format
msgid "`{0}': not all code paths return a value"
msgstr ""

#: ../mcs/mcs/codegen.cs:825
#, csharp-format
msgid "Not all code paths return a value in anonymous method of type `{0}'"
msgstr ""

#: ../mcs/mcs/codegen.cs:1224 ../mcs/mcs/codegen.cs:1238
#, csharp-format
msgid ""
"Option `{0}' overrides attribute `{1}' given in a source file or added module"
msgstr ""

#: ../mcs/mcs/codegen.cs:1302
msgid ""
"Could not sign the assembly. ECMA key can only be used to delay-sign "
"assemblies"
msgstr ""

#: ../mcs/mcs/codegen.cs:1322
msgid "Error during assembly signing. "
msgstr ""

#: ../mcs/mcs/codegen.cs:1347
msgid "Friend assembly reference `"
msgstr ""

#: ../mcs/mcs/codegen.cs:1419
msgid "Invalid type specified as an argument for TypeForwardedTo attribute"
msgstr ""

#: ../mcs/mcs/codegen.cs:1427
#, csharp-format
msgid "A duplicate type forward of type `{0}'"
msgstr ""

#: ../mcs/mcs/codegen.cs:1436
#, csharp-format
msgid "Cannot forward type `{0}' because it is defined in this assembly"
msgstr ""

#: ../mcs/mcs/codegen.cs:1442
#, csharp-format
msgid "Cannot forward type `{0}' because it is a nested type"
msgstr ""

#: ../mcs/mcs/codegen.cs:1448
#, csharp-format
msgid "Cannot forward generic type `{0}'"
msgstr ""

#: ../mcs/mcs/codegen.cs:1653
msgid ""
"Value specified for the argument to 'System.Runtime.InteropServices."
"DefaultCharSetAttribute' is not valid"
msgstr ""

#: ../mcs/mcs/const.cs:177
#, csharp-format
msgid "The expression being assigned to `{0}' must be constant"
msgstr ""

#: ../mcs/mcs/const.cs:182
#, csharp-format
msgid ""
"The evaluation of the constant value for `{0}' involves a circular definition"
msgstr ""

#: ../mcs/mcs/const.cs:188
#, csharp-format
msgid ""
"`{0}': the constant of reference type other than string can only be "
"initialized with null"
msgstr ""

#: ../mcs/mcs/const.cs:194
#, csharp-format
msgid "The type `{0}' cannot be declared const"
msgstr ""

#: ../mcs/mcs/constant.cs:84 ../mcs/mcs/constant.cs:285
#, csharp-format
msgid "Constant value `{0}' cannot be converted to a `{1}'"
msgstr ""

#: ../mcs/mcs/constant.cs:192
#, csharp-format
msgid ""
"Constant value `{0}' cannot be converted to a `{1}' (use `unchecked' syntax "
"to override)"
msgstr ""

#: ../mcs/mcs/decl.cs:363
#, csharp-format
msgid "`{0}' cannot declare a body because it is marked extern"
msgstr ""

#: ../mcs/mcs/decl.cs:369
#, csharp-format
msgid "`{0}' cannot declare a body because it is marked abstract"
msgstr ""

#: ../mcs/mcs/decl.cs:377
#, csharp-format
msgid ""
"`{0}' must have a body because it is not marked abstract or extern. The "
"property can be automatically implemented when you define both accessors"
msgstr ""

#: ../mcs/mcs/decl.cs:380
#, csharp-format
msgid ""
"`{0}' must have a body because it is not marked abstract, extern, or partial"
msgstr ""

#: ../mcs/mcs/decl.cs:396
#, csharp-format
msgid "`{0}': Structs cannot contain protected members"
msgstr ""

#: ../mcs/mcs/decl.cs:402
#, csharp-format
msgid "`{0}': Static classes cannot contain protected members"
msgstr ""

#: ../mcs/mcs/decl.cs:958
#, csharp-format
msgid "The namespace `{0}' already contains a definition for `{1}'"
msgstr ""

#: ../mcs/mcs/decl.cs:962
#, csharp-format
msgid "Duplicate type parameter `{0}'"
msgstr ""

#: ../mcs/mcs/decl.cs:965
#, csharp-format
msgid "The type `{0}' already contains a definition for `{1}'"
msgstr ""

#: ../mcs/mcs/decl.cs:1046
#, csharp-format
msgid ""
"Missing partial modifier on declaration of type `{0}'. Another partial "
"declaration of this type exists"
msgstr ""

#: ../mcs/mcs/decl.cs:1269
msgid "The RequiredAttribute attribute is not permitted on C# types"
msgstr ""

#: ../mcs/mcs/decl.cs:1324
msgid "Constraints are not allowed on non-generic declarations"
msgstr ""

#: ../mcs/mcs/decl.cs:1368
#, csharp-format
msgid "`{0}': A constraint references nonexistent type parameter `{1}'"
msgstr ""

#: ../mcs/mcs/decl.cs:2742
msgid ""
"A partial method declaration and partial method implementation cannot differ "
"on use of `params' modifier"
msgstr ""

#: ../mcs/mcs/decl.cs:2745
msgid ""
"A partial method declaration and partial method implementation must be both "
"an extension method or neither"
msgstr ""

#: ../mcs/mcs/decl.cs:2749
#, csharp-format
msgid ""
"An overloaded method `{0}' cannot differ on use of parameter modifiers only"
msgstr ""

#: ../mcs/mcs/decl.cs:2777
msgid ""
"A partial method declaration and partial method implementation must be both "
"`static' or neither"
msgstr ""

#: ../mcs/mcs/decl.cs:2782
msgid ""
"A partial method declaration and partial method implementation must be both "
"`unsafe' or neither"
msgstr ""

#: ../mcs/mcs/decl.cs:2788
#, csharp-format
msgid "A partial method `{0}' declaration is already defined"
msgstr ""

#: ../mcs/mcs/decl.cs:2792
#, csharp-format
msgid "A partial method `{0}' implementation is already defined"
msgstr ""

#: ../mcs/mcs/decl.cs:2800
#, csharp-format
msgid "Duplicate user-defined conversion in type `{0}'"
msgstr ""

#: ../mcs/mcs/delegate.cs:204
#, csharp-format
msgid ""
"Inconsistent accessibility: parameter type `{0}' is less accessible than "
"delegate `{1}'"
msgstr ""
"Accesibilidad inconsistente: la interface base `{0}' es menos accessible que "
"el delegado `{1}'"

#: ../mcs/mcs/delegate.cs:403
msgid "Internal error: could not find delegate constructor!"
msgstr ""

#: ../mcs/mcs/delegate.cs:445 ../mcs/mcs/delegate.cs:553
msgid "Internal error: could not find Invoke method!"
msgstr ""

#: ../mcs/mcs/delegate.cs:737
#, csharp-format
msgid ""
"Extension method `{0}' of value type `{1}' cannot be used to create delegates"
msgstr ""

#: ../mcs/mcs/delegate.cs:752
#, csharp-format
msgid "Cannot create delegate from partial method declaration `{0}'"
msgstr ""

#: ../mcs/mcs/delegate.cs:755
#, csharp-format
msgid ""
"Cannot create delegate with `{0}' because it has a Conditional attribute"
msgstr ""

#: ../mcs/mcs/delegate.cs:761
#, csharp-format
msgid ""
"Cannot create delegate from method `{0}' because it is a member of System."
"Nullable<T> type"
msgstr ""

#: ../mcs/mcs/delegate.cs:816
#, csharp-format
msgid ""
"A method or delegate `{0} {1}' parameters and return type must be same as "
"delegate `{2} {3}' parameters and return type"
msgstr ""

#: ../mcs/mcs/delegate.cs:822
#, csharp-format
msgid ""
"A method or delegate `{0}' parameters do not match delegate `{1}' parameters"
msgstr ""

#: ../mcs/mcs/delegate.cs:827
#, csharp-format
msgid ""
"A method or delegate `{0} {1}' return type does not match delegate `{2} {3}' "
"return type"
msgstr ""

#: ../mcs/mcs/delegate.cs:947
msgid "Method name expected"
msgstr ""

#: ../mcs/mcs/doc.cs:1007
#, csharp-format
msgid "Error generating XML documentation file `{0}' (`{1}')"
msgstr ""

#: ../mcs/mcs/driver.cs:152 ../mcs/mcs/driver.cs:707 ../mcs/mcs/driver.cs:710
msgid "Source file `"
msgstr ""

#: ../mcs/mcs/driver.cs:179
#, csharp-format
msgid "Source file `{0}' could not be found"
msgstr ""

#: ../mcs/mcs/driver.cs:187
#, csharp-format
msgid "Source file `{0}' is a binary file and not a text file"
msgstr ""

#: ../mcs/mcs/driver.cs:205
#, csharp-format
msgid "Compilation aborted in file `{0}', {1}"
msgstr ""

#: ../mcs/mcs/driver.cs:272
msgid ""
"Invalid target type for -target. Valid options are `exe', `winexe', "
"`library' or `module'"
msgstr ""

#: ../mcs/mcs/driver.cs:320
#, csharp-format
msgid "cannot find metadata file `{0}'"
msgstr ""

#: ../mcs/mcs/driver.cs:327
#, csharp-format
msgid "file `{0}' has invalid `{1}' metadata"
msgstr ""

#: ../mcs/mcs/driver.cs:347
#, csharp-format
msgid ""
"Referenced file `{0}' is not an assembly. Consider using `-addmodule' option "
"instead"
msgstr ""

#: ../mcs/mcs/driver.cs:603
msgid "Response file `"
msgstr ""

#: ../mcs/mcs/driver.cs:612
msgid "Unable to open response file: "
msgstr ""

#: ../mcs/mcs/driver.cs:662 ../mcs/mcs/driver.cs:672
msgid "No files to compile were specified"
msgstr ""

#: ../mcs/mcs/driver.cs:813
msgid "Warning level must be in the range 0-4"
msgstr ""

#: ../mcs/mcs/driver.cs:847
msgid "Compatibility: Use -main:CLASS instead of --main CLASS or -m CLASS"
msgstr ""

#: ../mcs/mcs/driver.cs:856
msgid "Compatibility: Use -unsafe instead of --unsafe"
msgstr ""

#: ../mcs/mcs/driver.cs:867
msgid "Compatibility: Use -d:SYMBOL instead of --define SYMBOL"
msgstr ""

#: ../mcs/mcs/driver.cs:881
msgid "Compatibility: Use -out:FILE instead of --output FILE or -o FILE"
msgstr ""

#: ../mcs/mcs/driver.cs:890
msgid "Compatibility: Use -checked instead of --checked"
msgstr ""

#: ../mcs/mcs/driver.cs:900
msgid "Compatibility: Use -linkres:VALUE instead of --linkres VALUE"
msgstr ""

#: ../mcs/mcs/driver.cs:903
msgid "Missing argument to --linkres"
msgstr ""

#: ../mcs/mcs/driver.cs:914
msgid "Compatibility: Use -res:VALUE instead of --res VALUE"
msgstr ""

#: ../mcs/mcs/driver.cs:917
msgid "Missing argument to --resource"
msgstr ""

#: ../mcs/mcs/driver.cs:927
msgid "Compatibility: Use -target:KIND instead of --target KIND"
msgstr ""

#: ../mcs/mcs/driver.cs:959
msgid "Compatibility: Use -r:LIBRARY instead of -r library"
msgstr ""

#: ../mcs/mcs/driver.cs:978
msgid "Compatibility: Use -lib:ARG instead of --L arg"
msgstr ""

#: ../mcs/mcs/driver.cs:987
msgid "Compatibility: Use -nostdlib instead of --nostdlib"
msgstr ""

#: ../mcs/mcs/driver.cs:996
msgid "Compatibility: Use -warnaserror: option instead of --werror"
msgstr ""

#: ../mcs/mcs/driver.cs:1001
msgid "Compatibility: Use -nowarn instead of --nowarn"
msgstr ""

#: ../mcs/mcs/driver.cs:1018
msgid "Compatibility: Use -warn:LEVEL instead of --wlevel LEVEL"
msgstr ""

#: ../mcs/mcs/driver.cs:1022
msgid "--wlevel requires a value from 0 to 4"
msgstr ""

#: ../mcs/mcs/driver.cs:1031
msgid "--mcs-debug requires an argument"
msgstr ""

#: ../mcs/mcs/driver.cs:1038
msgid "Invalid argument to --mcs-debug"
msgstr ""

#: ../mcs/mcs/driver.cs:1048
msgid "Compatibility: Use -recurse:PATTERN option instead --recurse PATTERN"
msgstr ""

#: ../mcs/mcs/driver.cs:1050
msgid "--recurse requires an argument"
msgstr ""

#: ../mcs/mcs/driver.cs:1062
msgid "Compatibility: Use -debug option instead of -g or --debug"
msgstr ""

#: ../mcs/mcs/driver.cs:1067
msgid "Compatibility: Use -noconfig option instead of --noconfig"
msgstr ""

#: ../mcs/mcs/driver.cs:1087
msgid "Couldn't run pkg-config: "
msgstr ""

#: ../mcs/mcs/driver.cs:1095
msgid "Specified package did not return any information"
msgstr ""

#: ../mcs/mcs/driver.cs:1102
msgid "Error running pkg-config. Check the above output."
msgstr ""

#: ../mcs/mcs/driver.cs:1198
#, csharp-format
msgid "Invalid conditional define symbol `{0}'"
msgstr ""

#: ../mcs/mcs/driver.cs:1252
#, csharp-format
msgid ""
"Invalid resource visibility option `{0}'. Use either `public' or `private' "
"instead"
msgstr ""

#: ../mcs/mcs/driver.cs:1258
#, csharp-format
msgid "Wrong number of arguments for option `{0}'"
msgstr ""

#: ../mcs/mcs/driver.cs:1266
msgid "-recurse requires an argument"
msgstr ""

#: ../mcs/mcs/driver.cs:1275
msgid "-reference requires an argument"
msgstr ""

#: ../mcs/mcs/driver.cs:1297 ../mcs/mcs/driver.cs:1309
#: ../mcs/mcs/driver.cs:1318 ../mcs/mcs/driver.cs:1327
#: ../mcs/mcs/driver.cs:1436 ../mcs/mcs/driver.cs:1456
#: ../mcs/mcs/driver.cs:1463
msgid " requires an argument"
msgstr ""

#: ../mcs/mcs/driver.cs:1337
msgid "/lib requires an argument"
msgstr ""

#: ../mcs/mcs/driver.cs:1399
msgid "/nowarn requires an argument"
msgstr ""

#: ../mcs/mcs/driver.cs:1493
#, csharp-format
msgid ""
"Invalid option `{0}' for /langversion. It must be either `ISO-1', `ISO-2' or "
"`Default'"
msgstr ""

#: ../mcs/mcs/driver.cs:1509
#, csharp-format
msgid "Code page `{0}' is invalid or not installed"
msgstr ""

#: ../mcs/mcs/driver.cs:1521
#, csharp-format
msgid "Unrecognized command-line option: `{0}'"
msgstr ""

#: ../mcs/mcs/driver.cs:1551
msgid "Invalid reference alias '"
msgstr ""

#: ../mcs/mcs/driver.cs:1556
msgid "Invalid extern alias for /reference. Alias '"
msgstr ""

#: ../mcs/mcs/driver.cs:1622
msgid ""
"If no source files are specified you must specify the output file with -out:"
msgstr ""

#: ../mcs/mcs/driver.cs:1746
#, csharp-format
msgid "Could not find `{0}' specified for Main method"
msgstr ""

#: ../mcs/mcs/driver.cs:1751
#, csharp-format
msgid "`{0}' specified for Main method must be a valid class or struct"
msgstr ""

#: ../mcs/mcs/driver.cs:1755
#, csharp-format
msgid "`{0}' does not have a suitable static Main method"
msgstr ""

#: ../mcs/mcs/driver.cs:1760
#, csharp-format
msgid ""
"Program `{0}' does not contain a static `Main' method suitable for an entry "
"point"
msgstr ""

#: ../mcs/mcs/driver.cs:1767
msgid "Cannot specify -main if building a module or library"
msgstr ""

#: ../mcs/mcs/driver.cs:1772
msgid "Cannot link resource file when building a module"
msgstr ""

#: ../mcs/mcs/driver.cs:1921
#, csharp-format
msgid "The resource identifier `{0}' has already been used in this assembly"
msgstr ""

#: ../mcs/mcs/driver.cs:1935
#, csharp-format
msgid "Error reading resource file `{0}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:321
#, csharp-format
msgid "`{0}' is inaccessible due to its protection level"
msgstr ""

#: ../mcs/mcs/ecore.cs:326
#, csharp-format
msgid ""
"Cannot access protected member `{0}' via a qualifier of type `{1}'. The "
"qualifier must be of type `{2}' or derived from it"
msgstr ""

#: ../mcs/mcs/ecore.cs:336
msgid ""
"Only assignment, call, increment, decrement, and new object expressions can "
"be used as a statement"
msgstr ""

#: ../mcs/mcs/ecore.cs:347
#, csharp-format
msgid "Cannot assign to `{0}' because it is a `{1}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:353
msgid "Keyword `void' cannot be used in this context"
msgstr ""

#: ../mcs/mcs/ecore.cs:383 ../mcs/mcs/statement.cs:1098
#, csharp-format
msgid "Cannot convert type `{0}' to `{1}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:393
#, csharp-format
msgid ""
"Cannot implicitly convert type `{0}' to `{1}'. An explicit conversion exists "
"(are you missing a cast?)"
msgstr ""

#: ../mcs/mcs/ecore.cs:399
#, csharp-format
msgid "Cannot implicitly convert type `{0}' to `{1}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:406
#, csharp-format
msgid "A local variable `{0}' cannot be used before it is declared"
msgstr ""

#: ../mcs/mcs/ecore.cs:417
#, csharp-format
msgid "`{0}' does not contain a definition for `{1}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:423
msgid ""
"The left-hand side of an assignment must be a variable, a property or an "
"indexer"
msgstr ""

#: ../mcs/mcs/ecore.cs:556
msgid "A ref or out argument must be an assignable variable"
msgstr ""

#: ../mcs/mcs/ecore.cs:710 ../mcs/mcs/ecore.cs:726
#, csharp-format
msgid "Ambiguity between `{0}' and `{1}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:827 ../mcs/mcs/ecore.cs:2749
#, csharp-format
msgid ""
"Cannot access a nonstatic member of outer type `{0}' via nested type `{1}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:868
#, csharp-format
msgid "The name `{0}' does not exist in the current context"
msgstr ""

#: ../mcs/mcs/ecore.cs:883 ../mcs/mcs/generic.cs:1395
#, csharp-format
msgid "Using the generic type `{0}' requires {1} type arguments"
msgstr ""

#: ../mcs/mcs/ecore.cs:912
msgid "An expression tree cannot contain an unsafe pointer operation"
msgstr ""

#: ../mcs/mcs/ecore.cs:1026
#, csharp-format
msgid "`{0}' is a `{1}' but a `{2}' was expected"
msgstr ""

#: ../mcs/mcs/ecore.cs:1060
#, csharp-format
msgid "Expression denotes a `{0}', where a `{1}' was expected"
msgstr ""

#: ../mcs/mcs/ecore.cs:1065
msgid "Pointers and fixed size buffers may only be used in an unsafe context"
msgstr ""

#: ../mcs/mcs/ecore.cs:1171
#, csharp-format
msgid "Cannot call an abstract base member `{0}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:1178
#, csharp-format
msgid ""
"Members of value type `{0}' cannot be assigned using a property `{1}' object "
"initializer"
msgstr ""

#: ../mcs/mcs/ecore.cs:1181
#, csharp-format
msgid ""
"Cannot modify a value type return value of `{0}'. Consider storing the value "
"in a temporary variable"
msgstr ""

#: ../mcs/mcs/ecore.cs:1854
msgid "Cannot modify the result of an unboxing conversion"
msgstr ""

#: ../mcs/mcs/ecore.cs:2373
#, csharp-format
msgid ""
"A field initializer cannot reference the nonstatic field, method, or "
"property `{0}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:2377
#, csharp-format
msgid ""
"`{0}': An object reference is required for the nonstatic field, method or "
"property"
msgstr ""

#: ../mcs/mcs/ecore.cs:2584 ../mcs/mcs/ecore.cs:2604
#, csharp-format
msgid "The variable `{0}' cannot be used with type arguments"
msgstr ""

#: ../mcs/mcs/ecore.cs:3132
#, csharp-format
msgid ""
"Static member `{0}' cannot be accessed with an instance reference, qualify "
"it with a type name instead"
msgstr ""

#: ../mcs/mcs/ecore.cs:3138
msgid "An expression tree may not contain a base access"
msgstr ""

#: ../mcs/mcs/ecore.cs:3216
#, csharp-format
msgid "The property `{0}' cannot be used with type arguments"
msgstr ""

#: ../mcs/mcs/ecore.cs:3674
msgid "An expression tree cannot contain an expression with method group"
msgstr ""

#: ../mcs/mcs/ecore.cs:3684
msgid ""
"Partial methods with only a defining declaration or removed conditional "
"methods cannot be used in an expression tree"
msgstr ""

#: ../mcs/mcs/ecore.cs:3702
msgid "Method `"
msgstr ""

#: ../mcs/mcs/ecore.cs:3729
#, csharp-format
msgid ""
"The best overloaded collection initalizer method `{0}' cannot have 'ref', or "
"`out' modifier"
msgstr ""

#: ../mcs/mcs/ecore.cs:3733
#, csharp-format
msgid ""
"The best overloaded collection initalizer method `{0}' has some invalid "
"arguments"
msgstr ""

#: ../mcs/mcs/ecore.cs:3739
#, csharp-format
msgid ""
"Type `{0}' does not contain a member `{1}' and the best extension method "
"overload `{2}' has some invalid arguments"
msgstr ""

#: ../mcs/mcs/ecore.cs:3743
#, csharp-format
msgid "The best overloaded method match for `{0}' has some invalid arguments"
msgstr ""

#: ../mcs/mcs/ecore.cs:3747
#, csharp-format
msgid "Delegate `{0}' has some invalid arguments"
msgstr ""

#: ../mcs/mcs/ecore.cs:3756
#, csharp-format
msgid ""
"Argument `#{0}' does not require `{1}' modifier. Consider removing `{1}' "
"modifier"
msgstr ""

#: ../mcs/mcs/ecore.cs:3759
#, csharp-format
msgid "Argument `#{0}' is missing `{1}' modifier"
msgstr ""

#: ../mcs/mcs/ecore.cs:3773
#, csharp-format
msgid "Extension method instance type `{0}' cannot be converted to `{1}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:3776
#, csharp-format
msgid "Argument `#{0}' cannot convert `{1}' expression to type `{2}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:3783
#, csharp-format
msgid ""
"Cannot convert method group `{0}' to non-delegate type `{1}'. Consider using "
"parentheses to invoke the method"
msgstr ""

#: ../mcs/mcs/ecore.cs:4069
msgid "Invoke cannot be called directly on a delegate"
msgstr ""

#: ../mcs/mcs/ecore.cs:4201
#, csharp-format
msgid ""
"The type arguments for method `{0}' cannot be inferred from the usage. Try "
"specifying the type arguments explicitly"
msgstr ""

#: ../mcs/mcs/ecore.cs:4210
#, csharp-format
msgid "Using the generic method `{0}' requires `{1}' type argument(s)"
msgstr ""

#: ../mcs/mcs/ecore.cs:4239
#, csharp-format
msgid ""
"The type `{0}' does not contain a constructor that takes `{1}' arguments"
msgstr ""

#: ../mcs/mcs/ecore.cs:4242
#, csharp-format
msgid "No overload for method `{0}' takes `{1}' arguments"
msgstr ""

#: ../mcs/mcs/ecore.cs:4347
#, csharp-format
msgid ""
"The call is ambiguous between the following methods or properties: `{0}' and "
"`{1}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:4775
msgid ""
"You cannot use fixed size buffers contained in unfixed expressions. Try "
"using the fixed statement"
msgstr ""

#: ../mcs/mcs/ecore.cs:4780
#, csharp-format
msgid "`{0}': Fixed size buffers can only be accessed through locals or fields"
msgstr ""

#: ../mcs/mcs/ecore.cs:5044
#, csharp-format
msgid ""
"A local variable `{0}' cannot be used before it is declared. Consider "
"renaming the local variable when it hides the field `{1}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:5326
#, csharp-format
msgid ""
"Property `{0}' is not supported by the C# language. Try to call the accessor "
"method `{1}' directly"
msgstr ""

#: ../mcs/mcs/ecore.cs:5372
#, csharp-format
msgid ""
"The property or indexer `{0}' cannot be used in this context because it "
"lacks the `get' accessor"
msgstr ""

#: ../mcs/mcs/ecore.cs:5384
#, csharp-format
msgid ""
"The property or indexer `{0}' cannot be used in this context because the get "
"accessor is inaccessible"
msgstr ""

#: ../mcs/mcs/ecore.cs:5419
#, csharp-format
msgid "A range variable `{0}' may not be passes as `ref' or `out' parameter"
msgstr ""

#: ../mcs/mcs/ecore.cs:5422
#, csharp-format
msgid ""
"A property or indexer `{0}' may not be passed as `ref' or `out' parameter"
msgstr ""

#: ../mcs/mcs/ecore.cs:5443
#, csharp-format
msgid ""
"A range variable `{0}' cannot be assigned to. Consider using `let' clause to "
"store the value"
msgstr ""

#: ../mcs/mcs/ecore.cs:5446
#, csharp-format
msgid "Property or indexer `{0}' cannot be assigned to (it is read only)"
msgstr ""

#: ../mcs/mcs/ecore.cs:5462
#, csharp-format
msgid ""
"The property or indexer `{0}' cannot be used in this context because the set "
"accessor is inaccessible"
msgstr ""

#: ../mcs/mcs/ecore.cs:5610
#, csharp-format
msgid ""
"The event `{0}' can only appear on the left hand side of `+=' or `-=' "
"operator"
msgstr ""

#: ../mcs/mcs/ecore.cs:5733
#, csharp-format
msgid ""
"The event `{0}' can only appear on the left hand side of += or -= when used "
"outside of the type `{1}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:5860
#, csharp-format
msgid ""
"An implicitly typed local variable declaration cannot be initialized with `"
"{0}'"
msgstr ""

#: ../mcs/mcs/ecore.cs:5871
msgid ""
"The contextual keyword `var' may only appear within a local variable "
"declaration"
msgstr ""

#: ../mcs/mcs/ecore.cs:5885
msgid ""
"An implicitly typed local variable declaration cannot include multiple "
"declarators"
msgstr ""

#: ../mcs/mcs/ecore.cs:5892
msgid ""
"An implicitly typed local variable declarator must include an initializer"
msgstr ""

#: ../mcs/mcs/enum.cs:112
#, csharp-format
msgid "The enumerator value `{0}' is too large to fit in its type `{1}'"
msgstr ""

#: ../mcs/mcs/enum.cs:148
#, csharp-format
msgid "An item in an enumeration cannot have an identifier `{0}'"
msgstr ""

#: ../mcs/mcs/enum.cs:158
msgid "Type byte, sbyte, short, ushort, int, uint, long or ulong expected"
msgstr ""

#: ../mcs/mcs/eval.cs:393
msgid "Detection Parsing Error"
msgstr ""

#: ../mcs/mcs/expression.cs:554
#, csharp-format
msgid "The `{0}' operator cannot be applied to operand of type `{1}'"
msgstr ""

#: ../mcs/mcs/expression.cs:721
#, csharp-format
msgid "Operator `{0}' is ambiguous on an operand of type `{1}'"
msgstr ""

#: ../mcs/mcs/expression.cs:980
msgid ""
"The operand of an increment or decrement operator must be a variable, "
"property or indexer"
msgstr ""

#: ../mcs/mcs/expression.cs:1153
#, csharp-format
msgid "The `{0}' operator cannot be applied to an operand of a static type"
msgstr ""

#: ../mcs/mcs/expression.cs:1158
#, csharp-format
msgid "The `{0}' operator cannot be applied to an operand of pointer type"
msgstr ""

#: ../mcs/mcs/expression.cs:1164
#, csharp-format
msgid ""
"The `{0}' operator cannot be applied to a lambda expression or anonymous "
"method"
msgstr ""

#: ../mcs/mcs/expression.cs:1402
#, csharp-format
msgid ""
"The `as' operator cannot be used with a non-reference type parameter `{0}'"
msgstr ""

#: ../mcs/mcs/expression.cs:1406
#, csharp-format
msgid "The `as' operator cannot be used with a non-nullable value type `{0}'"
msgstr ""

#: ../mcs/mcs/expression.cs:1438
#, csharp-format
msgid "Cannot convert type `{0}' to `{1}' via a built-in conversion"
msgstr ""

#: ../mcs/mcs/expression.cs:1505
#, csharp-format
msgid "Cannot convert to static type `{0}'"
msgstr ""

#: ../mcs/mcs/expression.cs:1575
msgid ""
"The `default value' operator cannot be applied to an operand of a static type"
msgstr ""

#: ../mcs/mcs/expression.cs:1993
#, csharp-format
msgid "Operator `{0}' cannot be applied to operands of type `{1}' and `{2}'"
msgstr ""

#: ../mcs/mcs/expression.cs:2502
msgid "To cast a negative value, you must enclose the value in parentheses"
msgstr ""

#: ../mcs/mcs/expression.cs:3000
#, csharp-format
msgid "Operator `{0}' is ambiguous on operands of type `{1}' and `{2}'"
msgstr ""

#: ../mcs/mcs/expression.cs:3692
#, csharp-format
msgid ""
"A user-defined operator `{0}' must have parameters and return values of the "
"same type in order to be applicable as a short circuit operator"
msgstr ""

#: ../mcs/mcs/expression.cs:3702
#, csharp-format
msgid ""
"The type `{0}' must have operator `true' and operator `false' defined when `"
"{1}' is used as a short circuit operator"
msgstr ""

#: ../mcs/mcs/expression.cs:3949
#, csharp-format
msgid ""
"Type of conditional expression cannot be determined because there is no "
"implicit conversion between `{0}' and `{1}'"
msgstr ""

#: ../mcs/mcs/expression.cs:4410
#, csharp-format
msgid "Use of unassigned out parameter `{0}'"
msgstr ""

#: ../mcs/mcs/expression.cs:4438
#, csharp-format
msgid ""
"Parameter `{0}' cannot be used inside `{1}' when using `ref' or `out' "
"modifier"
msgstr ""

#: ../mcs/mcs/expression.cs:4764
#, csharp-format
msgid "The member `{0}' cannot be used as method or delegate"
msgstr ""

#: ../mcs/mcs/expression.cs:4822
msgid ""
"Do not directly call your base class Finalize method. It is called "
"automatically from your destructor"
msgstr ""

#: ../mcs/mcs/expression.cs:4824
msgid ""
"Destructors and object.Finalize cannot be called directly. Consider calling "
"IDisposable.Dispose if available"
msgstr ""

#: ../mcs/mcs/expression.cs:4848
#, csharp-format
msgid "`{0}': cannot explicitly call operator or accessor"
msgstr ""

#: ../mcs/mcs/expression.cs:5425
#, csharp-format
msgid "Unsafe type `{0}' cannot be used in an object creation expression"
msgstr ""

#: ../mcs/mcs/expression.cs:5477
#, csharp-format
msgid "Cannot create an instance of the static class `{0}'"
msgstr ""

#: ../mcs/mcs/expression.cs:5489
#, csharp-format
msgid "Cannot create an instance of the abstract class or interface `{0}'"
msgstr ""

#: ../mcs/mcs/expression.cs:5802
msgid "Cannot create an array with a negative size"
msgstr ""

#: ../mcs/mcs/expression.cs:5819 ../mcs/mcs/statement.cs:2997
msgid "A constant value is expected"
msgstr ""

#: ../mcs/mcs/expression.cs:5906
msgid "An expression tree cannot contain a multidimensional array initializer"
msgstr ""

#: ../mcs/mcs/expression.cs:6000
msgid ""
"Can only use array initializer expressions to assign to array types. Try "
"using a new expression instead"
msgstr ""

#: ../mcs/mcs/expression.cs:6005
msgid ""
"An implicitly typed local variable declarator cannot use an array initializer"
msgstr ""

#: ../mcs/mcs/expression.cs:6080
msgid "New invocation: Can not find a constructor for this argument list"
msgstr ""

#: ../mcs/mcs/expression.cs:6523
msgid ""
"The type of an implicitly typed array cannot be inferred from the "
"initializer. Try specifying array type explicitly"
msgstr ""

#: ../mcs/mcs/expression.cs:6701
msgid ""
"Anonymous methods inside structs cannot access instance members of `this'. "
"Consider copying `this' to a local variable outside the anonymous method and "
"using the local instead"
msgstr ""

#: ../mcs/mcs/expression.cs:6775
msgid "Cannot take the address of `this' because it is read-only"
msgstr ""

#: ../mcs/mcs/expression.cs:6777
msgid "Cannot pass `this' as a ref or out argument because it is read-only"
msgstr ""

#: ../mcs/mcs/expression.cs:6779
msgid "Cannot assign to `this' because it is read-only"
msgstr ""

#: ../mcs/mcs/expression.cs:6891
msgid "An expression tree cannot contain a method with variable arguments"
msgstr ""

#: ../mcs/mcs/expression.cs:7001
#, csharp-format
msgid "`{0}': an attribute argument cannot use type parameters"
msgstr ""

#: ../mcs/mcs/expression.cs:7239
#, csharp-format
msgid ""
"`{0}' does not have a predefined size, therefore sizeof can only be used in "
"an unsafe context (consider using System.Runtime.InteropServices.Marshal."
"SizeOf)"
msgstr ""

#: ../mcs/mcs/expression.cs:7294
#, csharp-format
msgid "Alias `{0}' not found"
msgstr ""

#: ../mcs/mcs/expression.cs:7305
#, csharp-format
msgid ""
"Alias `{0}' cannot be used with '::' since it denotes a type. Consider "
"replacing '::' with '.'"
msgstr ""

#: ../mcs/mcs/expression.cs:7321
#, csharp-format
msgid ""
"A namespace alias qualifier `{0}' did not resolve to a namespace or a type"
msgstr ""

#: ../mcs/mcs/expression.cs:7462
#, csharp-format
msgid "`{0}': cannot reference a type through an expression; try `{1}' instead"
msgstr ""

#: ../mcs/mcs/expression.cs:7628
#, csharp-format
msgid "The nested type `{0}' does not exist in the type `{1}'"
msgstr ""

#: ../mcs/mcs/expression.cs:7640
#, csharp-format
msgid ""
"Type `{0}' does not contain a definition for `{1}' and no extension method `"
"{1}' of type `{0}' could be found (are you missing a using directive or an "
"assembly reference?)"
msgstr ""

#: ../mcs/mcs/expression.cs:7858
msgid "Cannot apply indexing with [] to an expression of type `System.Array'"
msgstr ""

#: ../mcs/mcs/expression.cs:7964
#, csharp-format
msgid "Wrong number of indexes `{0}' inside [], expected `{1}'"
msgstr ""

#: ../mcs/mcs/expression.cs:8450
#, csharp-format
msgid ""
"A property or indexer `{0}' may not be passed as an out or ref parameter"
msgstr ""

#: ../mcs/mcs/expression.cs:8475
#, csharp-format
msgid "Cannot apply indexing with [] to an expression of type `{0}'"
msgstr ""

#: ../mcs/mcs/expression.cs:8505
#, csharp-format
msgid "The read only property or indexer `{0}' cannot be assigned to"
msgstr ""

#: ../mcs/mcs/expression.cs:8513
#, csharp-format
msgid ""
"The property or indexer `{0}' cannot be used in this context because it "
"lacks a `{1}' accessor"
msgstr ""

#: ../mcs/mcs/expression.cs:8535
#, csharp-format
msgid ""
"The property or indexer `{0}' cannot be used in this context because a `{1}' "
"accessor is inaccessible"
msgstr ""

#: ../mcs/mcs/expression.cs:8997
#, csharp-format
msgid "Array elements cannot be of type `{0}'"
msgstr ""

#: ../mcs/mcs/expression.cs:9003
#, csharp-format
msgid "Array elements cannot be of static type `{0}'"
msgstr ""

#: ../mcs/mcs/expression.cs:9164
msgid "Cannot use a negative size with stackalloc"
msgstr ""

#: ../mcs/mcs/expression.cs:9291
#, csharp-format
msgid ""
"Member `{0}' cannot be initialized. An object initializer may only be used "
"for fields, or properties"
msgstr ""

#: ../mcs/mcs/expression.cs:9294
#, csharp-format
msgid ""
" Static field or property `{0}' cannot be assigned in an object initializer"
msgstr ""

#: ../mcs/mcs/expression.cs:9452
#, csharp-format
msgid ""
"A field or property `{0}' cannot be initialized with a collection object "
"initializer because type `{1}' does not implement `{2}' interface"
msgstr ""

#: ../mcs/mcs/expression.cs:9462
#, csharp-format
msgid "Inconsistent `{0}' member declaration"
msgstr ""

#: ../mcs/mcs/expression.cs:9470
#, csharp-format
msgid ""
"An object initializer includes more than one member `{0}' initialization"
msgstr ""

#: ../mcs/mcs/expression.cs:9824
#, csharp-format
msgid "An anonymous type property `{0}' cannot be initialized with `{1}'"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:310
msgid "Control cannot fall through from one case label to another"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:529
#, csharp-format
msgid ""
"The label `{0}:' could not be found within the scope of the goto statement"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:657
msgid ""
"A throw statement with no arguments is not allowed outside of a catch clause"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:668 ../mcs/mcs/flowanalysis.cs:674
msgid "No enclosing loop out of which to break or continue"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:702
msgid "Control cannot leave the body of an anonymous method"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:743
msgid "Cannot yield a value in the body of a try block with a catch clause"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:745
msgid "Cannot yield a value in the body of a catch clause"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:897
msgid ""
"A throw statement with no arguments is not allowed inside of a finally "
"clause nested inside of the innermost catch clause"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:909 ../mcs/mcs/iterators.cs:112
msgid "Cannot yield in the body of a finally clause"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:920 ../mcs/mcs/flowanalysis.cs:936
#: ../mcs/mcs/flowanalysis.cs:972 ../mcs/mcs/statement.cs:778
msgid "Control cannot leave the body of a finally clause"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:1140
#, csharp-format
msgid ""
"An automatically implemented property `{0}' must be fully assigned before "
"control leaves the constructor. Consider calling default contructor"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:1144
#, csharp-format
msgid ""
"Field `{0}' must be fully assigned before control leaves the constructor"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:1438
msgid "Use of unassigned local variable `"
msgstr ""

#: ../mcs/mcs/flowanalysis.cs:1508
msgid "Use of possibly unassigned field `"
msgstr ""

#: ../mcs/mcs/generic.cs:191
msgid "The new() constraint must be the last constraint specified"
msgstr ""

#: ../mcs/mcs/generic.cs:204
msgid "The `new()' constraint cannot be used with the `struct' constraint"
msgstr ""

#: ../mcs/mcs/generic.cs:210
msgid ""
"The `class' or `struct' constraint must be the first constraint specified"
msgstr ""

#: ../mcs/mcs/generic.cs:249
#, csharp-format
msgid ""
"Inconsistent accessibility: constraint type `{0}' is less accessible than `"
"{1}'"
msgstr ""

#: ../mcs/mcs/generic.cs:261
#, csharp-format
msgid ""
"The class type constraint `{0}' must be listed before any other constraints. "
"Consider moving type constraint to the beginning of the constraint list"
msgstr ""

#: ../mcs/mcs/generic.cs:265
#, csharp-format
msgid ""
"`{0}': cannot specify both a constraint class and the `class' or `struct' "
"constraint"
msgstr ""

#: ../mcs/mcs/generic.cs:282 ../mcs/mcs/generic.cs:297
#, csharp-format
msgid "Duplicate constraint `{0}' for type parameter `{1}'."
msgstr ""

#: ../mcs/mcs/generic.cs:316
#, csharp-format
msgid ""
"`{0}' is not a valid constraint. Static classes cannot be used as constraints"
msgstr ""

#: ../mcs/mcs/generic.cs:321
#, csharp-format
msgid ""
"`{0}' is not a valid constraint. A constraint must be an interface, a non-"
"sealed class or a type parameter"
msgstr ""

#: ../mcs/mcs/generic.cs:334
#, csharp-format
msgid "A constraint cannot be special class `{0}'"
msgstr ""

#: ../mcs/mcs/generic.cs:361
#, csharp-format
msgid ""
"Type parameter `{0}' has the `struct' constraint, so it cannot be used as a "
"constraint for `{1}'"
msgstr ""

#: ../mcs/mcs/generic.cs:381
#, csharp-format
msgid "Type parameter `{0}' inherits conflicting constraints `{1}' and `{2}'"
msgstr ""

#: ../mcs/mcs/generic.cs:395
#, csharp-format
msgid "Circular constraint dependency involving `{0}' and `{1}'"
msgstr ""

#: ../mcs/mcs/generic.cs:699
#, csharp-format
msgid ""
"`{0}': Cannot specify constraints for overrides or explicit interface "
"implementation methods"
msgstr ""

#: ../mcs/mcs/generic.cs:730
#, csharp-format
msgid ""
"The constraints for type parameter `{0}' of method `{1}' must match the "
"constraints for type parameter `{2}' of interface method `{3}'. Consider "
"using an explicit interface implementation instead"
msgstr ""

#: ../mcs/mcs/generic.cs:1136
msgid "Type parameter declaration must be an identifier not a type"
msgstr ""

#: ../mcs/mcs/generic.cs:1228
#, csharp-format
msgid "`{0}': static classes cannot be used as generic arguments"
msgstr ""

#: ../mcs/mcs/generic.cs:1235
#, csharp-format
msgid "The type `{0}' may not be used as a type argument"
msgstr ""

#: ../mcs/mcs/generic.cs:1365
#, csharp-format
msgid "Cannot find type `{0}'<...>"
msgstr ""

#: ../mcs/mcs/generic.cs:1372
#, csharp-format
msgid "The non-generic type `{0}' cannot be used with type arguments."
msgstr ""

#: ../mcs/mcs/generic.cs:1528
#, csharp-format
msgid ""
"The type `{0}' must be a reference type in order to use it as type parameter "
"`{1}' in the generic type or method `{2}'."
msgstr ""

#: ../mcs/mcs/generic.cs:1537
#, csharp-format
msgid ""
"The type `{0}' must be a non-nullable value type in order to use it as type "
"parameter `{1}' in the generic type or method `{2}'."
msgstr ""

#: ../mcs/mcs/generic.cs:1580
#, csharp-format
msgid ""
"The type `{0}' must have a public parameterless constructor in order to use "
"it as parameter `{1}' in the generic type or method `{2}'"
msgstr ""

#: ../mcs/mcs/generic.cs:1625
#, csharp-format
msgid ""
"The type `{0}' cannot be used as type parameter `{1}' in the generic type or "
"method `{2}'. The nullable type `{0}' never satisfies interface constraint "
"of type `{3}'"
msgstr ""

#: ../mcs/mcs/generic.cs:1631
#, csharp-format
msgid ""
"The type `{0}' must be convertible to `{1}' in order to use it as parameter `"
"{2}' in the generic type or method `{3}'"
msgstr ""

#: ../mcs/mcs/generic.cs:1824
#, csharp-format
msgid "The type parameter name `{0}' is the same as `{1}'"
msgstr ""

#: ../mcs/mcs/iterators.cs:42 ../mcs/mcs/iterators.cs:939
msgid "Unsafe code may not appear in iterators"
msgstr ""

#: ../mcs/mcs/iterators.cs:52
msgid "The yield statement cannot be used inside anonymous method blocks"
msgstr ""

#: ../mcs/mcs/iterators.cs:907
#, csharp-format
msgid ""
"The body of `{0}' cannot be an iterator block because `{1}' is not an "
"iterator interface type"
msgstr ""

#: ../mcs/mcs/iterators.cs:920
msgid "Iterators cannot have ref or out parameters"
msgstr ""

#: ../mcs/mcs/iterators.cs:926
msgid "__arglist is not allowed in parameter list of iterators"
msgstr ""

#: ../mcs/mcs/iterators.cs:932
msgid "Iterators cannot have unsafe parameters or yield types"
msgstr ""

#: ../mcs/mcs/linq.cs:79
#, csharp-format
msgid ""
"An implementation of `{0}' query expression pattern could not be found. Are "
"you missing `System.Linq' using directive or `System.Core.dll' assembly "
"reference?"
msgstr ""

#: ../mcs/mcs/linq.cs:117
#, csharp-format
msgid ""
"An implementation of `{0}' query expression pattern for source type `{1}' "
"could not be found"
msgstr ""

#: ../mcs/mcs/linq.cs:126
#, csharp-format
msgid ""
"Type inference failed to infer type argument for `{0}' clause. Try "
"specifying the type argument explicitly"
msgstr ""

#: ../mcs/mcs/linq.cs:525
#, csharp-format
msgid "A range variable `{0}' cannot be initialized with `{1}'"
msgstr ""

#: ../mcs/mcs/linq.cs:825
#, csharp-format
msgid "A range variable `{0}' conflicts with a previous declaration of `{0}'"
msgstr ""

#: ../mcs/mcs/linq.cs:831
#, csharp-format
msgid "A range variable `{0}' has already been declared in this scope"
msgstr ""

#: ../mcs/mcs/linq.cs:837
#, csharp-format
msgid "A range variable `{0}' conflicts with a method type parameter"
msgstr ""

#: ../mcs/mcs/literal.cs:76
#, csharp-format
msgid ""
"Cannot convert null to the type parameter `{0}' because it could be a value "
"type. Consider using `default ({0})' instead"
msgstr ""

#: ../mcs/mcs/literal.cs:79
#, csharp-format
msgid "Cannot convert null to `{0}' because it is a value type"
msgstr ""

#: ../mcs/mcs/literal.cs:323
#, csharp-format
msgid ""
"Literal of type double cannot be implicitly converted to type `{0}'. Add "
"suffix `{1}' to create a literal of this type"
msgstr ""

#: ../mcs/mcs/location.cs:224
#, csharp-format
msgid "Source file `{0}' specified multiple times"
msgstr ""

#: ../mcs/mcs/location.cs:226
#, csharp-format
msgid "Source filenames `{0}' and `{1}' both refer to the same file: {2}"
msgstr ""

#: ../mcs/mcs/modifiers.cs:241
msgid "More than one protection modifier specified"
msgstr ""

#: ../mcs/mcs/modifiers.cs:258
msgid "The modifier `"
msgstr ""

#: ../mcs/mcs/namespace.cs:226
#, csharp-format
msgid ""
"The type or namespace name `{0}' could not be found in the global namespace "
"(are you missing an assembly reference?)"
msgstr ""

#: ../mcs/mcs/namespace.cs:246
#, csharp-format
msgid "The imported type `{0}' is defined multiple times"
msgstr ""

#: ../mcs/mcs/namespace.cs:364
#, csharp-format
msgid ""
"The type or namespace name `{0}' does not exist in the namespace `{1}'. Are "
"you missing an assembly reference?"
msgstr ""

#: ../mcs/mcs/namespace.cs:371
#, csharp-format
msgid "Using the generic type `{0}' requires `{1}' type argument(s)"
msgstr ""

#: ../mcs/mcs/namespace.cs:389
#, csharp-format
msgid "The non-generic {0} `{1}' cannot be used with the type arguments"
msgstr ""

#: ../mcs/mcs/namespace.cs:621
#, csharp-format
msgid ""
"`{0}' is a type not a namespace. A using namespace directive can only be "
"applied to namespaces"
msgstr ""

#: ../mcs/mcs/namespace.cs:648
#, csharp-format
msgid "The extern alias `{0}' was not specified in -reference option"
msgstr ""

#: ../mcs/mcs/namespace.cs:857 ../mcs/mcs/namespace.cs:879
msgid ""
"A using clause must precede all other namespace elements except extern alias "
"declarations"
msgstr ""

#: ../mcs/mcs/namespace.cs:903
msgid "An extern alias declaration must precede all other elements"
msgstr ""

#: ../mcs/mcs/namespace.cs:921
#, csharp-format
msgid "The using alias `{0}' appeared previously in this namespace"
msgstr ""

#: ../mcs/mcs/namespace.cs:994
#, csharp-format
msgid "`{0}' is an ambiguous reference between `{1}' and `{2}'"
msgstr ""

#: ../mcs/mcs/namespace.cs:1033
#, csharp-format
msgid "Namespace `{0}' contains a definition with same name as alias `{1}'"
msgstr ""

#: ../mcs/mcs/namespace.cs:1126
msgid "You cannot redefine the global extern alias"
msgstr ""

#: ../mcs/mcs/namespace.cs:1131
#, csharp-format
msgid ""
"The type or namespace name `{0}' could not be found. Are you missing a using "
"directive or an assembly reference?"
msgstr ""

#: ../mcs/mcs/nullable.cs:980
msgid ""
"An expression tree cannot contain a coalescing operator with null left side"
msgstr ""

#: ../mcs/mcs/parameter.cs:176
msgid "The params parameter must be a single dimensional array"
msgstr ""

#: ../mcs/mcs/parameter.cs:277
msgid "Invalid parameter type `void'"
msgstr ""

#: ../mcs/mcs/parameter.cs:288
msgid "An out parameter cannot have the `In' attribute"
msgstr ""

#: ../mcs/mcs/parameter.cs:293
msgid ""
"Do not use `System.ParamArrayAttribute'. Use the `params' keyword instead"
msgstr ""

#: ../mcs/mcs/parameter.cs:300
msgid ""
"Cannot specify only `Out' attribute on a ref parameter. Use both `In' and "
"`Out' attributes or neither"
msgstr ""

#: ../mcs/mcs/parameter.cs:318
#, csharp-format
msgid "Argument of type `{0}' is not applicable for the DefaultValue attribute"
msgstr ""

#: ../mcs/mcs/parameter.cs:321
#, csharp-format
msgid ""
"The DefaultValue attribute is not applicable on parameters of type `{0}'"
msgstr ""

#: ../mcs/mcs/parameter.cs:333
msgid "The type of the default value should match the type of the parameter"
msgstr ""

#: ../mcs/mcs/parameter.cs:373
#, csharp-format
msgid "Method or delegate parameter cannot be of type `{0}'"
msgstr ""

#: ../mcs/mcs/parameter.cs:386
#, csharp-format
msgid "`{0}': static types cannot be used as parameters"
msgstr ""

#: ../mcs/mcs/parameter.cs:392
#, csharp-format
msgid "The type of extension method cannot be `{0}'"
msgstr ""

#: ../mcs/mcs/parameter.cs:497
msgid "An expression tree parameter cannot use `ref' or `out' modifier"
msgstr ""

#: ../mcs/mcs/parameter.cs:884
#, csharp-format
msgid "The parameter name `{0}' is a duplicate"
msgstr ""

#: ../mcs/mcs/parameter.cs:936
#, csharp-format
msgid "The parameter name `{0}' conflicts with a compiler generated name"
msgstr ""

#: ../mcs/mcs/pending.cs:598
#, csharp-format
msgid ""
"`{0}' does not implement interface member `{1}' and the best implementing "
"candidate `{2}' is static"
msgstr ""

#: ../mcs/mcs/pending.cs:602
#, csharp-format
msgid ""
"`{0}' does not implement interface member `{1}' and the best implementing "
"candidate `{2}' in not public"
msgstr ""

#: ../mcs/mcs/pending.cs:606
#, csharp-format
msgid ""
"`{0}' does not implement interface member `{1}' and the best implementing "
"candidate `{2}' return type `{3}' does not match interface member return "
"type `{4}'"
msgstr ""

#: ../mcs/mcs/pending.cs:611
#, csharp-format
msgid "`{0}' does not implement interface member `{1}'"
msgstr ""

#: ../mcs/mcs/pending.cs:615
#, csharp-format
msgid "`{0}' does not implement inherited abstract member `{1}'"
msgstr ""

#: ../mcs/mcs/report.cs:574
#, csharp-format
msgid ""
"Feature `{0}' is not available in Mono mcs1 compiler. Consider using the "
"`gmcs' compiler instead"
msgstr ""

#: ../mcs/mcs/report.cs:582
#, csharp-format
msgid ""
"Feature `{0}' cannot be used because it is not part of the C# {1} language "
"specification"
msgstr ""

#: ../mcs/mcs/report.cs:639
#, csharp-format
msgid ""
"Your .NET Runtime does not support `{0}'. Please use the latest Mono runtime "
"instead."
msgstr ""

#: ../mcs/mcs/rootcontext.cs:438
msgid "Unsafe code requires the `unsafe' command line option to be specified"
msgstr ""

#: ../mcs/mcs/statement.cs:105
msgid ""
"A lambda expression with statement body cannot be converted to an expresion "
"tree"
msgstr ""

#: ../mcs/mcs/statement.cs:818
msgid ""
"Cannot return a value from iterators. Use the yield return statement to "
"return a value, or yield break to end the iteration"
msgstr ""

#: ../mcs/mcs/statement.cs:825
#, csharp-format
msgid ""
"`{0}': A return keyword must not be followed by any expression when method "
"returns void"
msgstr ""

#: ../mcs/mcs/statement.cs:849
#, csharp-format
msgid ""
"Cannot convert `{0}' to delegate type `{1}' because some of the return types "
"in the block are not implicitly convertible to the delegate return type"
msgstr ""

#: ../mcs/mcs/statement.cs:1041 ../mcs/mcs/statement.cs:1073
msgid "A goto case is only valid inside a switch statement"
msgstr ""

#: ../mcs/mcs/statement.cs:1661
#, csharp-format
msgid ""
"The label `{0}' shadows another label by the same name in a contained scope"
msgstr ""

#: ../mcs/mcs/statement.cs:1686
#, csharp-format
msgid "The label `{0}' is a duplicate"
msgstr ""

#: ../mcs/mcs/statement.cs:1781
#, csharp-format
msgid "`{0}' conflicts with a declaration in a child block"
msgstr ""

#: ../mcs/mcs/statement.cs:1882
#, csharp-format
msgid ""
"A local variable named `{0}' cannot be declared in this scope because it "
"would give a different meaning to `{0}', which is already used in a `{1}' "
"scope to denote something else"
msgstr ""

#: ../mcs/mcs/statement.cs:1891
#, csharp-format
msgid "A local variable named `{0}' is already defined in this scope"
msgstr ""

#: ../mcs/mcs/statement.cs:2046
msgid "An implicitly typed local variable cannot be a constant"
msgstr ""

#: ../mcs/mcs/statement.cs:2897
#, csharp-format
msgid ""
"The out parameter `{0}' must be assigned to before control leaves the "
"current method"
msgstr ""

#: ../mcs/mcs/statement.cs:3030
#, csharp-format
msgid "The label `case {0}:' already occurs in this switch statement"
msgstr ""

#: ../mcs/mcs/statement.cs:3576
msgid "A value of an integral type or string expected for switch"
msgstr ""

#: ../mcs/mcs/statement.cs:4035
#, csharp-format
msgid "`{0}' is not a reference type as required by the lock statement"
msgstr ""

#: ../mcs/mcs/statement.cs:4352
msgid "A fixed statement cannot use an implicitly typed local variable"
msgstr ""

#: ../mcs/mcs/statement.cs:4362
msgid "The type of locals declared in a fixed statement must be a pointer type"
msgstr ""

#: ../mcs/mcs/statement.cs:4386
msgid ""
"The right hand side of a fixed statement assignment may not be a cast "
"expression"
msgstr ""

#: ../mcs/mcs/statement.cs:4463
msgid ""
"You cannot use the fixed statement to take the address of an already fixed "
"expression"
msgstr ""

#: ../mcs/mcs/statement.cs:4713
msgid "Try statement already has an empty catch block"
msgstr ""

#: ../mcs/mcs/statement.cs:4751
#, csharp-format
msgid ""
"A previous catch clause already catches all exceptions of this or a super "
"type `{0}'"
msgstr ""

#: ../mcs/mcs/statement.cs:4926 ../mcs/mcs/statement.cs:5041
msgid "Internal error: No Dispose method which takes 0 parameters."
msgstr ""

#: ../mcs/mcs/statement.cs:4998
#, csharp-format
msgid ""
"`{0}': type used in a using statement must be implicitly convertible to "
"`System.IDisposable'"
msgstr ""

#: ../mcs/mcs/statement.cs:5121
msgid "Use of null is not valid in this context"
msgstr ""

#: ../mcs/mcs/statement.cs:5126
#, csharp-format
msgid "Foreach statement cannot operate on a `{0}'"
msgstr "El mandato `foreach' no puede operar en un `{0}'"

#: ../mcs/mcs/statement.cs:5439
#, csharp-format
msgid ""
"foreach statement requires that the return type `{0}' of `{1}' must have a "
"suitable public MoveNext method and public Current property"
msgstr ""

#: ../mcs/mcs/statement.cs:5524
#, csharp-format
msgid ""
"foreach statement cannot operate on variables of type `{0}' because it does "
"not contain a definition for `GetEnumerator' or is not accessible"
msgstr ""

#: ../mcs/mcs/statement.cs:5576
#, csharp-format
msgid ""
"foreach statement cannot operate on variables of type `{0}' because it "
"contains multiple implementation of `{1}'. Try casting to a specific "
"implementation"
msgstr ""

#: ../mcs/mcs/typemanager.cs:869
#, csharp-format
msgid "The predefined type `{0}.{1}' is not defined or imported"
msgstr ""

#: ../mcs/mcs/typemanager.cs:893
#, csharp-format
msgid "The predefined type `{0}.{1}' is not declared correctly"
msgstr ""

#: ../mcs/mcs/typemanager.cs:943
#, csharp-format
msgid ""
"The compiler required member `{0}.{1}{2}' could not be found or is "
"inaccessible"
msgstr ""

#: ../mcs/mcs/typemanager.cs:1130
#, csharp-format
msgid ""
"The compilation may fail due to missing `{0}.SetCorlibTypeBuilders({1})' "
"method"
msgstr ""

#: ../mcs/mcs/typemanager.cs:1696
msgid "Friend access was granted to `"
msgstr ""

#: ../mcs/mcs/typemanager.cs:1953
#, csharp-format
msgid ""
"Struct member `{0}.{1}' of type `{2}' causes a cycle in the struct layout"
msgstr ""

#: ../mcs/mcs/typemanager.cs:2300
#, csharp-format
msgid ""
"Cannot take the address of, get the size of, or declare a pointer to a "
"managed type `{0}'"
msgstr ""