~bwy/+junk/gnash-temp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
# Finnish translation of GNU Gnash.
# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnash package.
# Timo Jyrinki <timo.jyrinki@iki.fi>, 2008-2009.
#
msgid ""
msgstr ""
"Project-Id-Version: Gnash\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-02-19 13:01+0200\n"
"PO-Revision-Date: 2009-02-19 12:59+0200\n"
"Last-Translator: Timo Jyrinki <timo.jyrinki@iki.fi>\n"
"Language-Team: Finnish <laatu@lokalisointi.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: libbase/GnashImageJpeg.cpp:113
msgid "JPEG: Empty jpeg source stream."
msgstr ""

#: libbase/GnashImageJpeg.cpp:265 libbase/GnashImageJpeg.cpp:292
#: libbase/GnashImageJpeg.cpp:311 libbase/GnashImageJpeg.cpp:368
msgid "Internal jpeg error: "
msgstr ""

#: libbase/GnashImageJpeg.cpp:277
msgid "Lack of data during JPEG header parsing"
msgstr ""

#: libbase/GnashImageJpeg.cpp:284 libbase/GnashImageJpeg.cpp:331
#, c-format
msgid "unexpected: jpeg_read_header returned %d [%s:%d]"
msgstr ""

#: libbase/GnashImageJpeg.cpp:324
msgid "lack of data during JPEG header parsing"
msgstr ""

#: libbase/GnashImageJpeg.cpp:340
msgid "Internal jpeg error during header parsing: "
msgstr ""

#: libbase/GnashImageJpeg.cpp:349
msgid "Internal jpeg error during decompression: "
msgstr ""

#: libbase/GnashImageJpeg.cpp:521
msgid "jpeg::rw_dest_IOChannel couldn't write data."
msgstr ""

#: libbase/GnashImageJpeg.cpp:546
msgid "jpeg::rw_dest_IOChannel::term_destination couldn't write data."
msgstr ""

#: libbase/curl_adapter.cpp:47
msgid ""
"libcurl is not available, but Gnash has attempted to use the curl adapter"
msgstr ""

#: libbase/curl_adapter.cpp:691
#, c-format
msgid "Timeout (%u milliseconds) while loading from url %s"
msgstr "Aikakatkaisu (%u millisekuntia) ladattaessa url:stä %s"

#: libbase/curl_adapter.cpp:809
msgid "Allowing connections to SSL sites with invalid certificates"
msgstr "Sallitaan SSL-yhteydet sivustoille joilla epäkelpo varmenne"

#: libbase/rc.cpp:341
msgid "RcInitFile: couldn't open file: "
msgstr ""

#: libbase/rc.cpp:383
#, c-format
msgid "Warning: missing value for variable \"%s\" in rcfile %s, line %d"
msgstr ""

#: libbase/rc.cpp:531
#, c-format
msgid "Warning: unrecognized directive \"%s\" in rcfile %s line %d"
msgstr ""

#: libbase/rc.cpp:546
#, c-format
msgid "Warning: empty include specification in rcfile %s, line %d"
msgstr ""

#: libbase/rc.cpp:553
#, c-format
msgid ""
"Warning: include specification must be an absolute pathin rcfile %s, line %d"
msgstr ""

#: libbase/rc.cpp:564
#, c-format
msgid "Warning: unrecognized action \"%s\" in rcfile %s, line %d"
msgstr ""

#: libbase/rc.cpp:641
#, c-format
msgid "Couldn't open file %s for writing"
msgstr ""

#: libbase/rc.cpp:650
msgid "# Generated by Gnash. Manual changes to this file may be overridden."
msgstr ""

#: libbase/noseek_fd_adapter.cpp:221
#, c-format
msgid "Error reading %d bytes from input stream"
msgstr ""

#: libbase/GnashImageGif.cpp:116
msgid "GIF: Error retrieving record type"
msgstr ""

#: libbase/GnashImageGif.cpp:126
msgid "GIF: Error retrieving image description"
msgstr ""

#: libbase/GnashImageGif.cpp:155
msgid "GIF: invalid image data (bounds outside GIF screen)"
msgstr ""

#: libbase/GnashImageGif.cpp:161
#, c-format
msgid "Found interlaced GIF (%d x %d)"
msgstr ""

#: libbase/GnashImageGif.cpp:177 libbase/GnashImageGif.cpp:191
msgid "GIF: failed reading pixel data"
msgstr ""

#: libbase/GnashImageGif.cpp:185
#, c-format
msgid "Found non-interlaced GIF (%d x %d)"
msgstr ""

#: libbase/sharedlib.cpp:76
#, c-format
msgid "Couldn't initialize ltdl: %s"
msgstr ""

#: libbase/sharedlib.cpp:141
#, c-format
msgid "Opened dynamic library \"%s\""
msgstr ""

#: libbase/sharedlib.cpp:159 libbase/sharedlib.cpp:184
#, c-format
msgid "Couldn't find symbol: %s"
msgstr ""

#: libbase/sharedlib.cpp:162 libbase/sharedlib.cpp:187
#, c-format
msgid "Found symbol %s @ %p"
msgstr ""

#: libbase/extension.cpp:126
#, c-format
msgid "Loading module: %s"
msgstr "Ladataan moduulia: %s"

#: libbase/extension.cpp:139 libbase/extension.cpp:170
#, c-format
msgid "Initializing module: \"%s\""
msgstr "Alustetaan moduulia: \"%s\""

#: libbase/extension.cpp:158
msgid "Couldn't get class_init symbol"
msgstr ""

#: libbase/extension.cpp:187
#, c-format
msgid "Couldn't get class_init symbol: \"%s\""
msgstr ""

#: libbase/extension.cpp:211
#, c-format
msgid "Scanning directory \"%s\" for plugins"
msgstr "Tarkistetaan liitännäisiä hakemistosta \"%s\""

#: libbase/extension.cpp:215
#, c-format
msgid "Can't open directory %s"
msgstr "Hakemistoa %s ei voi avata"

#: libbase/extension.cpp:245
#, c-format
msgid "Gnash Plugin name: %s"
msgstr "Gnash-liitännäisen nimi: %s"

#: libbase/GnashImagePng.cpp:40
msgid "PNG error: "
msgstr ""

#: libbase/GnashImagePng.cpp:47
#, c-format
msgid "PNG warning: %s"
msgstr ""

#: libbase/GC.cpp:70
#, c-format
msgid "GC %p deleted, deleting all managed resources - collector run %d times"
msgstr ""

#: libbase/GC.cpp:87
#, c-format
msgid "GC %p: SWEEP SCAN"
msgstr ""

#: libbase/GC.cpp:97
#, c-format
msgid "GC %p: cleanUnreachable deleting object %p (%s)"
msgstr ""

#: libbase/GC.cpp:112
#, c-format
msgid "GC %p: cleanUnreachable deleted %d resources marked as unreachable"
msgstr ""

#: libbase/GC.cpp:127
#, c-format
msgid ""
"Garbage collection skipped since number of collectables added since last run "
"is too low (%d)"
msgstr ""

#: libbase/GC.cpp:138
#, c-format
msgid "GC %p Starting collector: %d collectables"
msgstr ""

#: libbase/ClockTime.cpp:271
msgid "Cannot get requested timezone information"
msgstr ""

#: backend/render_handler_ogl.cpp:719 backend/render_handler_agg.cpp:614
#: backend/render_handler_cairo.cpp:458
msgid "Can't render videos with alpha"
msgstr ""

#: backend/render_handler_ogl.cpp:1303
msgid "Unidirectionally scaled strokes in OGL renderer"
msgstr ""

#: backend/render_handler_agg.cpp:712
#, c-format
msgid "Initialized AGG buffer <%p>, %d bytes, %dx%d, rowsize is %d bytes"
msgstr ""

#: backend/render_handler_agg.cpp:774
msgid "Warning: rendering ended while drawing a mask"
msgstr ""

#: backend/render_handler_agg.cpp:778
msgid "Warning: rendering ended while masks were still active"
msgstr ""

#: backend/render_handler_agg.cpp:930
msgid ""
"Warning: select_clipbounds encountered a character definition with null "
"bounds"
msgstr ""

#: backend/render_handler_agg.cpp:1019
msgid "Warning: AGG renderer skipping a whole character"
msgstr ""

#: backend/render_handler_agg.cpp:1686
msgid ""
"Unidirectionally scaled strokes in AGG renderer (we'll scale by the scalable "
"one)"
msgstr ""

#: backend/render_handler_agg.cpp:2044
#, c-format
msgid "Framebuffer pixel format is %s (little-endian host)"
msgstr ""

#: backend/render_handler_agg.cpp:2046
#, c-format
msgid "Framebuffer pixel format is %s (big-endian host)"
msgstr ""

#: backend/render_handler_cairo.cpp:840
msgid "Scaled strokes in Cairo renderer"
msgstr ""

#: libamf/amf.cpp:919
msgid "AMF body input data is NULL"
msgstr ""

#: libamf/sol.cpp:244
#, c-format
msgid ""
"%s: SOL file header is: \n"
"%s"
msgstr ""

#: libmedia/gst/VideoDecoderGst.cpp:97
msgid "Video codec is zero.  Streaming video expected later."
msgstr "Videokoodekki on ”nolla”. Videovirtaa odotetaan myöhemmäksi."

#: libmedia/gst/VideoDecoderGst.cpp:100
#, c-format
msgid "No support for video codec %d."
msgstr "Ei tukea videokoodekille %d."

#: libmedia/gst/VideoDecoderGst.cpp:121 libmedia/gst/VideoDecoderGst.cpp:145
msgid "VideoDecoderGst: internal error (caps creation failed)"
msgstr ""

#: libmedia/gst/VideoDecoderGst.cpp:129
#, c-format
msgid "Couldn't find a plugin for video type %s!"
msgstr "Liitännäistä ei löydy videotyypille %s."

#: libmedia/gst/VideoDecoderGst.cpp:133
msgid " Please make sure you have gstreamer-ffmpeg installed."
msgstr " Varmista, että gstreamer-ffmpeg on asennettu."

#: libmedia/gst/VideoDecoderGst.cpp:152
msgid "VideoDecoderGst: initialisation failed."
msgstr ""

#: libmedia/gst/VideoDecoderGst.cpp:180
msgid "VideoDecoderGst: buffer push failed."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:56
msgid "MediaParserGst couldn't create a bin"
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:61
msgid "MediaParserGst couldn't create a typefind element."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:73 libmedia/gst/MediaParserGst.cpp:95
#: libmedia/gst/MediaParserGst.cpp:312 libmedia/gst/MediaParserGst.cpp:367
#: libmedia/gst/MediaParserGst.cpp:470
msgid "MediaParserGst could not change element state"
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:86
#, c-format
msgid "Needed %d dead iterations to detect audio type."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:90
msgid "MediaParserGst failed to detect any stream types."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:146
msgid "Stream EOF, emitting!"
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:180 libmedia/gst/MediaParserGst.cpp:191
msgid "MediaParserGst failed to read the stream, but did not reach EOF!"
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:202
msgid "MediaParserGst failed to push more data into the demuxer! Seeking back."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:275
#, c-format
msgid "MediaParserGst/typefound: Detected media type %s"
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:287 libmedia/gst/MediaParserGst.cpp:294
msgid "MediaParserGst Failed to create fakesink."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:300
msgid "MediaParserGst: couldn't get the fakesink src element."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:308
msgid "MediaParserGst: couln't link fakesink"
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:332
msgid "MediaParserGst: couldn't get the typefind src element."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:349
msgid "MediaParserGst: couldn't create the demuxer"
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:354 libmedia/gst/MediaParserGst.cpp:360
msgid "MediaParserGst: failed adding demuxer to bin."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:385
msgid "MediaParserGst: Failed to find a parser."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:393
msgid ""
"MediaParserGst: Failed to find a parser. We'll continue, but either audio or "
"video will not work!"
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:402
msgid "MediaParserGst: couldn't add parser."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:414
msgid "MediaParserGst: couldn't link parser."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:420
msgid "MediaParserGst: couldn't get structure name."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:430 libmedia/gst/MediaParserGst.cpp:450
msgid "MediaParserGst: couldn't link \"fake\" sink."
msgstr ""

#: libmedia/gst/MediaParserGst.cpp:464
#, c-format
msgid "AudioDecoderGst can't handle streams of type %s."
msgstr ""

#: libmedia/gst/MediaHandlerGst.cpp:74
msgid "Wrong arguments given to GST VideoDecoder"
msgstr ""

#: libmedia/gst/MediaHandlerGst.cpp:123
#, c-format
msgid "MediaHandlerGst::createAudioDecoder: %s -- %s"
msgstr ""

#: libmedia/gst/AudioDecoderGst.cpp:95
msgid "Creating AAC decoder without extra data. This will probably fail!"
msgstr ""

#: libmedia/gst/AudioDecoderGst.cpp:105
#, c-format
msgid "AudioDecoderGst: cannot handle codec %d (%s)"
msgstr "AudioDecoderGst: ei voi käsitellä koodekkia %d (%s)"

#: libmedia/gst/AudioDecoderGst.cpp:115
#, c-format
msgid "AudioDecoderGst: cannot handle codec %d (no ExtraInfoGst attached)"
msgstr ""
"AudioDecoderGst: ei voi käsitellä koodekkia %d (ExtraInfoGst ei liitetty)"

#: libmedia/gst/AudioDecoderGst.cpp:143
msgid ""
"The best available resampler is 'audioresample'. Please install gstreamer-"
"ffmpeg 0.10.4 or newer, or you may experience long delays in audio playback!"
msgstr ""

#: libmedia/gst/AudioDecoderGst.cpp:162 libmedia/gst/AudioDecoderGst.cpp:175
msgid "AudioDecoderGst: internal error (caps creation failed)"
msgstr ""

#: libmedia/gst/AudioDecoderGst.cpp:169
msgid "AudioDecoderGst: couldn't find a plugin for audio type ..."
msgstr "AudioDecoderGst: äänityypille ei löydy liitännäistä ..."

#: libmedia/gst/AudioDecoderGst.cpp:183
msgid "AudioDecoderGst: initialisation failed."
msgstr ""

#: libmedia/gst/AudioDecoderGst.cpp:208
msgid "Pushed data, but there's nothing to pull (yet)"
msgstr ""

#: libmedia/gst/AudioDecoderGst.cpp:244 libmedia/gst/AudioDecoderGst.cpp:272
msgid "AudioDecoderGst: buffer push failed."
msgstr ""

#: libmedia/gst/GstUtil.cpp:75
msgid "Unable to retrieve a valid audio sink from ~/.gnashrc"
msgstr ""

#: libmedia/gst/GstUtil.cpp:81
msgid "Unable to retrieve a valid audio sink from autoaudiosink"
msgstr ""

#: libmedia/gst/GstUtil.cpp:86
#, c-format
msgid ""
"Unable to retrieve a valid audio sink from gconfaudiosink\n"
"%s"
msgstr ""

#: libmedia/gst/GstUtil.cpp:87
msgid "Sink search exhausted: you won't be able to hear sound!"
msgstr ""

#: libmedia/gst/GstUtil.cpp:93
#, c-format
msgid "Got a non-NULL audio sink; its wrapper name is: %s"
msgstr ""

#: libmedia/gst/GstUtil.cpp:115
msgid ""
"Missing plugin, but plugin installing not supported. Will try anyway, but "
"expect failure."
msgstr ""
"Liitännäinen puuttuu, mutta liitännäisen asentaminen ei ole tuettu. "
"Yritetään joka tapauksessa, mutta epäonnistuminen on odotettavissa."

#: libmedia/gst/GstUtil.cpp:121
msgid "Missing plugin, but failed to convert it to gst missing plugin detail."
msgstr ""
"Liitännäinen puuttuu, mutta sen muuntaminen tiedoksi puuttuvasta tietystä "
"gst-liitännäiestä epäonnistui."

#: libmedia/gst/GstUtil.cpp:134
msgid ""
"gst_update_registry failed. You'll need to restart Gnash to use the new "
"plugins."
msgstr ""
"gst_update_registry epäonnistui. Käynnistä Gnash uudelleen käyttääksesi "
"uusia liitännäisiä."

#: libmedia/gst/GstUtil.cpp:141
msgid "Missing plugin, but plugin installation not available."
msgstr ""
"Liitännäinen puuttuu, mutta liitännäisen asennuksen tuki ei ole saatavilla."

#: libmedia/MediaHandler.cpp:51
msgid "MediaHandler::isFLV: Could not read 3 bytes from input stream"
msgstr ""

#: libmedia/MediaHandler.cpp:67
msgid ""
"MediaHandler::createMediaParser: only FLV input is supported by this "
"MediaHandler"
msgstr ""

#: libmedia/MediaHandler.cpp:73
#, c-format
msgid "Exception while reading from stream: %s"
msgstr "Poikkeus luettaessa virtaa: %s"

#: libmedia/MediaHandler.cpp:116
#, c-format
msgid ""
"MediaHandler::createFlashAudioDecoder: no available FLASH decoders for codec "
"%d (%s)"
msgstr ""

#: libmedia/ffmpeg/MediaHandlerFfmpeg.cpp:88
#, c-format
msgid "MediaHandlerFfmpeg::createAudioDecoder: %s -- %s"
msgstr ""

#: libmedia/ffmpeg/MediaParserFfmpeg.cpp:72
msgid "MediaParserFfmpeg could not read probe data from input"
msgstr ""

#: libmedia/ffmpeg/MediaParserFfmpeg.cpp:96
#, c-format
msgid "%s: seeking failed"
msgstr ""

#: libmedia/ffmpeg/MediaParserFfmpeg.cpp:247
#, c-format
msgid ""
"MediaParserFfmpeg::parseNextFrame: Problems parsing next frame "
"(av_read_frame returned %d). We'll consider the stream fully parsed."
msgstr ""

#: libmedia/ffmpeg/MediaParserFfmpeg.cpp:358
#, c-format
msgid "  Title:'%s'"
msgstr ""

#: libmedia/ffmpeg/MediaParserFfmpeg.cpp:359
#, c-format
msgid "  Author:'%s'"
msgstr ""

#: libmedia/ffmpeg/MediaParserFfmpeg.cpp:360
#, c-format
msgid "  Copyright:'%s'"
msgstr ""

#: libmedia/ffmpeg/MediaParserFfmpeg.cpp:361
#, c-format
msgid "  Comment:'%s'"
msgstr ""

#: libmedia/ffmpeg/MediaParserFfmpeg.cpp:362
#, c-format
msgid "  Album:'%s'"
msgstr ""

#: libmedia/ffmpeg/MediaParserFfmpeg.cpp:388
#, c-format
msgid "  Using stream %d for audio: codec id %d"
msgstr ""

#: libmedia/ffmpeg/MediaParserFfmpeg.cpp:399
#, c-format
msgid "  Using stream %d for video: codec id %d"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:52
#, c-format
msgid "AudioDecoderFfmpeg: initialized FFMPEG codec %d (%s)"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:55
#, c-format
msgid ""
"AudioDecoderFfmpeg: initialized FFMPEG codec %d (%s) for FLASH codec %d (%s)"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:70
#, c-format
msgid "AudioDecoderFfmpeg: initialized FFMPEG codec %s (%d)"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:109
#, c-format
msgid "Unsupported audio codec %d"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:118
#, c-format
msgid "libavcodec could not find a decoder for codec %d (%s)"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:128
msgid "AudioDecoderFfmpeg can't initialize MP3 parser"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:135
#: libmedia/ffmpeg/VideoDecoderFfmpeg.cpp:170
msgid "libavcodec couldn't allocate context"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:143
#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:333
#, c-format
msgid ""
"AudioDecoderFfmpeg: avcodec_open failed to initialize FFMPEG codec %s (%d)"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:217
#, c-format
msgid "AudioDecoderFfmpeg: unsupported FLASH audio codec %d (%s)"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:226
#, c-format
msgid "AudioDecoderFfmpeg: unknown codec type %d (should never happen)"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:236
#, c-format
msgid ""
"AudioDecoderFfmpeg: libavcodec could not find a decoder for codec %d (%s)"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:242
#, c-format
msgid ""
"AudioDecoderFfmpeg: libavcodec could not find a decoder for ffmpeg codec id %"
"s"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:260
#, c-format
msgid ""
"AudioDecoderFfmpeg: could not initialize a parser for flash codec id %d (%s)"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:265
#, c-format
msgid ""
"AudioDecoderFfmpeg: could not initialize a parser for ffmpeg codec id %s"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:278
msgid "AudioDecoderFfmpeg: libavcodec couldn't allocate context"
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:387
#, c-format
msgid ""
"av_parser_parse returned %d. Upgrading ffmpeg/libavcodec might fix this "
"issue."
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:554
#, c-format
msgid ""
"avcodec_decode_audio returned %d. Upgrading ffmpeg/libavcodec might fix this "
"issue."
msgstr ""

#: libmedia/ffmpeg/AudioDecoderFfmpeg.cpp:563
#, c-format
msgid ""
"outputSize:%d after decoding %d bytes of input audio data. Upgrading ffmpeg/"
"libavcodec might fix this issue."
msgstr ""

#: libmedia/ffmpeg/VideoDecoderFfmpeg.cpp:126
#, c-format
msgid "Cannot find suitable decoder for flash codec %d"
msgstr ""

#: libmedia/ffmpeg/VideoDecoderFfmpeg.cpp:165
msgid "libavcodec can't decode this video format"
msgstr ""

#: libmedia/ffmpeg/VideoDecoderFfmpeg.cpp:180
#, c-format
msgid "libavcodecfailed to initialize FFMPEG codec %s (%d)"
msgstr ""

#: libmedia/ffmpeg/VideoDecoderFfmpeg.cpp:188
#, c-format
msgid "VideoDecoder: initialized FFMPEG codec %s (%d)"
msgstr ""

#: libmedia/ffmpeg/VideoDecoderFfmpeg.cpp:316
msgid "Out of memory while allocating avcodec frame"
msgstr ""

#: libmedia/ffmpeg/VideoDecoderFfmpeg.cpp:389
#, c-format
msgid "Unsupported video codec %d"
msgstr ""

#: libmedia/AudioDecoderSimple.cpp:162
msgid "corrupted ADPCM header"
msgstr ""

#: libmedia/AudioDecoderSimple.cpp:293 libmedia/AudioDecoderSimple.cpp:306
#, c-format
msgid "AudioDecoderSimple: initialized FLASH codec %s (%d)"
msgstr ""

#: libmedia/AudioDecoderSimple.cpp:332 libmedia/AudioDecoderSimple.cpp:364
#, c-format
msgid "AudioDecoderSimple: unsupported flash codec %d (%s)"
msgstr ""

#: libmedia/AudioDecoderSimple.cpp:344
#, c-format
msgid "AudioDecoderSimple: unable to intepret custom audio codec id %s"
msgstr ""

#: libmedia/AudioDecoderSimple.cpp:441
msgid "Host endianness not detected in AudioDecoderSimple"
msgstr ""

#: libmedia/AudioDecoderSimple.cpp:470 libmedia/AudioDecoderNellymoser.cpp:898
msgid "Error in sound sample conversion"
msgstr ""

#: libmedia/AudioDecoderNellymoser.cpp:770
#: libmedia/AudioDecoderNellymoser.cpp:784
#, c-format
msgid "AudioDecoderNellymoser: initialized FLASH codec %s (%d)"
msgstr ""

#: libmedia/AudioDecoderNellymoser.cpp:808
#: libmedia/AudioDecoderNellymoser.cpp:835
#, c-format
msgid "AudioDecoderNellymoser: attempt to use with flash codec %d (%s)"
msgstr ""

#: libmedia/AudioDecoderNellymoser.cpp:819
#, c-format
msgid "AudioDecoderNellymoser: unable to intepret custom audio codec id %s"
msgstr ""

#: libmedia/FLVParser.cpp:205
#, c-format
msgid ""
"Unexpected audio tag found at offset %d FLV stream advertising no audio in "
"header. We'll warn only once for each FLV, expecting any further audio tag."
msgstr ""

#: libmedia/FLVParser.cpp:252
#, c-format
msgid ""
"Unexpected video tag found at offset %d of FLV stream advertising no video "
"in header. We'll warn only once per FLV, expecting any further video tag."
msgstr ""

#: libmedia/FLVParser.cpp:272
#, c-format
msgid "AVC packet type: %d"
msgstr ""

#: libmedia/FLVParser.cpp:443
#, c-format
msgid "First byte of FLV_META_TAG is %d, expected 0x02 (STRING AMF0 type)"
msgstr ""

#: libmedia/FLVParser.cpp:466
msgid "Corrupt FLV: Meta tag unterminated!"
msgstr ""

#: libmedia/FLVParser.cpp:474
#, c-format
msgid "FLVParser::parseNextTag: unknown FLV tag type %d"
msgstr ""

#: libmedia/FLVParser.cpp:483
msgid ""
"Corrupt FLV: previous tag size record (%1%) unexpected (actual size: %2%)"
msgstr ""

#: libmedia/AudioDecoderSpeex.cpp:40
msgid "AudioDecoderSpeex: state initialization failed."
msgstr ""

#: libmedia/AudioDecoderSpeex.cpp:53
msgid "AudioDecoderSpeex: initialization failed."
msgstr ""

#: libmedia/AudioDecoderSpeex.cpp:108
msgid "Corrupt Speex stream!"
msgstr ""

#: libmedia/AudioDecoderSpeex.cpp:131
msgid "Failed to resample Speex frame."
msgstr ""

#: libcore/as_object.cpp:344 libcore/MovieClip.cpp:400
#: libcore/MovieClip.cpp:454
#, c-format
msgid "Caught exception: %s"
msgstr ""

#: libcore/as_object.cpp:570
#, c-format
msgid "Attempt to set read-only property '%s'"
msgstr ""

#: libcore/as_object.cpp:616
#, c-format
msgid "%s: Exception %s. Will create a new member"
msgstr ""

#: libcore/as_object.cpp:630
#, c-format
msgid "Unknown failure in setting property '%s' on object '%p'"
msgstr ""

#: libcore/as_object.cpp:685
msgid ""
"Attempt to set a slot for either a slot or a property which already exists."
msgstr ""

#: libcore/as_object.cpp:693
#, c-format
msgid "Attempt to initialize read-only property ``%s'' on object ``%p'' twice"
msgstr ""

#: libcore/as_object.cpp:890
msgid "Circular inheritance chain detected during isPrototypeOf call"
msgstr ""

#: libcore/as_object.cpp:899
#, c-format
msgid "%d members of object %p follow"
msgstr ""

#: libcore/as_object.cpp:956
#, c-format
msgid ""
"Can't set propflags on object property %s (either not found or protected)"
msgstr ""

#: libcore/as_object.cpp:991
#, c-format
msgid ""
"Invalid call to AsSetPropFlags: invalid second argument %s (expected string, "
"null or an array)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:108
#, c-format
msgid "Unsupported action handler invoked, code at pc is %#x"
msgstr ""

#: libcore/vm/ASHandlers.cpp:165
msgid ""
"FIXME: VM not initialized at SWFHandlers construction time, can't set action "
"handlers based on SWF version"
msgstr ""

#: libcore/vm/ASHandlers.cpp:447
#, c-format
msgid "Malformed action code: %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:459
#, c-format
msgid "%s: CHECKME: was broken"
msgstr ""

#: libcore/vm/ASHandlers.cpp:477
msgid "ActionNextFrame: as_environment target is null or not a sprite"
msgstr ""

#: libcore/vm/ASHandlers.cpp:493
msgid "ActionPrevFrame: as_environment target is null or not a sprite"
msgstr ""

#: libcore/vm/ASHandlers.cpp:509
msgid "ActionPlay: as_environment target is null or not a sprite"
msgstr ""

#: libcore/vm/ASHandlers.cpp:525
msgid "ActionStop: as_environment target is null or not a sprite"
msgstr ""

#: libcore/vm/ASHandlers.cpp:577
msgid "ActionGotoFrame: as_environment target is null or not a sprite"
msgstr ""

#: libcore/vm/ASHandlers.cpp:610
#, c-format
msgid "GetUrl: target=%s url=%s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:632
#, c-format
msgid "ActionWaitForFrame (0x%X) tag length == %d (expected 3)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:647 libcore/vm/ASHandlers.cpp:708
#: libcore/vm/ASHandlers.cpp:1969
#, c-format
msgid "%s: environment target is null or not a MovieClip"
msgstr ""

#: libcore/vm/ASHandlers.cpp:656
#, c-format
msgid "ActionWaitForFrame(%d): target (%s) has only %d frames"
msgstr ""

#: libcore/vm/ASHandlers.cpp:911
msgid "Undefined or null string passed to ActionSubString, returning undefined"
msgstr ""

#: libcore/vm/ASHandlers.cpp:931 libcore/vm/ASHandlers.cpp:1846
msgid "Negative size passed to ActionSubString, taking as whole length"
msgstr ""

#: libcore/vm/ASHandlers.cpp:950
msgid "Start is less then 1 in ActionSubString, setting to 1."
msgstr ""

#: libcore/vm/ASHandlers.cpp:961
msgid ""
"Start goes beyond input string in ActionSubString, returning the empty "
"string."
msgstr ""

#: libcore/vm/ASHandlers.cpp:975
msgid ""
"start + size goes beyond input string in ActionSubString, adjusting size"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1029
#, c-format
msgid ""
"Can't assign a sprite/character to a variable in SWF%d. We'll return "
"undefined instead of %s."
msgstr ""

#: libcore/vm/ASHandlers.cpp:1038
#, c-format
msgid "-- get var: %s=%s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1058
#, c-format
msgid ""
"ActionSetVariable: %s=%s: variable name evaluates to invalid (empty) string"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1067
#, c-format
msgid "-- set var: %s = %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1127
msgid ""
"ActionGetProperty(<empty>) called, but current target is not a character"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1146
#, c-format
msgid "invalid property query, property number %d"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1161
#, c-format
msgid "Could not find GetProperty target (%s)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1189
#, c-format
msgid "invalid set_property, property number %d"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1200
#, c-format
msgid "ActionSetProperty: can't find target %s for setting property %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1223
#, c-format
msgid "duplicateMovieClip: invalid depth %d passed; not duplicating"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1238
#, c-format
msgid "Path given to duplicateMovieClip(%s) doesn't point to a character"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1249
#, c-format
msgid "Path given to duplicateMovieClip(%s) is not a sprite"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1272
#, c-format
msgid "Path given to removeMovieClip(%s) doesn't point to a character"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1282
#, c-format
msgid "Path given to removeMovieClip(%s) is not a sprite"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1330
#, c-format
msgid "startDrag: unknown target '%s'"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1352
msgid "Y values in ActionStartDrag swapped, fixing"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1360
msgid "X values in ActionStartDrag swapped, fixing"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1389
msgid "ActionStopDragMovie: as_environment target is null or not a sprite"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1435
#, c-format
msgid "-- %s cast_to %s (invalid args?)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1457
msgid "ActionCastOp TESTING"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1479
#, c-format
msgid "Stack value on IMPLEMENTSOP is not an object: %s."
msgstr ""

#: libcore/vm/ASHandlers.cpp:1489
msgid "Target object for IMPLEMENTSOP has no prototype."
msgstr ""

#: libcore/vm/ASHandlers.cpp:1497
#, c-format
msgid "IMPLEMENTSOP target object's prototype is not an object (%s)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1506
#, c-format
msgid "Invalid interfaces count (%d) on IMPLEMENTSOP"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1519
#, c-format
msgid "class found on stack on IMPLEMENTSOP is not an object: %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1526
msgid "Interface object for IMPLEMENTSOP has no prototype."
msgstr ""

#: libcore/vm/ASHandlers.cpp:1534
#, c-format
msgid "Prototype of interface object for IMPLEMENTSOP is not an object (%s)."
msgstr ""

#: libcore/vm/ASHandlers.cpp:1828
msgid ""
"Undefined or null string passed to ActionMBSubString, returning undefined"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1855
msgid "Base is less then 1 in ActionMbSubString, setting to 1."
msgstr ""

#: libcore/vm/ASHandlers.cpp:1864
msgid ""
"base goes beyond input string in ActionMbSubString, returning the empty "
"string."
msgstr ""

#: libcore/vm/ASHandlers.cpp:1877
#, c-format
msgid ""
"base+size goes beyond input string in ActionMbSubString, adjusting size "
"based on length:%d and start:%d"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1934
msgid "Not properly implemented for SWF5"
msgstr ""

#: libcore/vm/ASHandlers.cpp:1978
#, c-format
msgid ""
"Frame spec found on stack at ActionWaitForFrame doesn't evaluate to a valid "
"frame: %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2054
#, c-format
msgid ""
"Unknown push type %d. Execution will continue but it is likely to fail due "
"to lost sync."
msgstr ""

#: libcore/vm/ASHandlers.cpp:2101
#, c-format
msgid "Invalid register %d in ActionPush"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2143 libcore/vm/ASHandlers.cpp:2162
#, c-format
msgid "dict_lookup %d is out of bounds"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2174
#, c-format
msgid "\t%d) type=%s (%d), value=%s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2179
#, c-format
msgid "\t%d) type=%s, value=%s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2228
msgid "Bogus empty GetUrl url in SWF file, skipping"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2241
msgid ""
"Bogus GetUrl2 send vars method  in SWF file (both GET and POST requested). "
"Using GET"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2290
#, c-format
msgid ""
"get url: target=%s, url=%s, method=%x (sendVars:%X, loadTarget:%d, "
"loadVariable:%d)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2300
msgid "getURL2 loadVariable"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2304
#, c-format
msgid "getURL: target %s not found"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2311
#, c-format
msgid "getURL: target %s is not a sprite"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2332
msgid "CommonGetUrl: current target is undefined"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2341
msgid "getURL2 target load"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2348 libcore/vm/ASHandlers.cpp:2391
#, c-format
msgid "Testing _level loading (level %u)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2355
#, c-format
msgid "Unknown loadMovie target: %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2370
#, c-format
msgid "get url: target %s is not a sprite"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2377
msgid "TESTME: target of a loadMovie changed its target path"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2424
#, c-format
msgid "Couldn't find movie \"%s\" to set target to! Setting target to NULL..."
msgstr ""

#: libcore/vm/ASHandlers.cpp:2452
msgid "Undefined GetUrl2 url on stack, skipping"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2488
#, c-format
msgid "branch to offset %d  --  this section only runs to %d"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2525
#, c-format
msgid ""
"Couldn't find target_sprite \"%s\" in ActionCallFrame! target frame actions "
"will not be called..."
msgstr ""

#: libcore/vm/ASHandlers.cpp:2583
#, c-format
msgid ""
"Frame spec found on stack at ActionGotoExpression doesn't evaluate to a "
"valid frame: %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2596
#, c-format
msgid ""
"Couldn't find target sprite \"%s\" in ActionGotoExpression. Will not go to "
"target frame..."
msgstr ""

#: libcore/vm/ASHandlers.cpp:2666
#, c-format
msgid "delete %s.%s: no object found to delete"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2708
msgid "delete2 called with a path that does not resolve to an object"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2730
#, c-format
msgid "-- set local var: %s = %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2755
#, c-format
msgid "ActionCallFunction: %s is not an object"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2760
#, c-format
msgid "ActionCallFunction: function name %s evaluated to non-function value %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2768
msgid "Object doesn't have a constructor"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2787
#, c-format
msgid ""
"Attempt to call a function with %u arguments while only %u are available on "
"the stack."
msgstr ""

#: libcore/vm/ASHandlers.cpp:2863
#, c-format
msgid "---new object: %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2874
#, c-format
msgid "ActionNew: '%s' is not a constructor"
msgstr ""

#: libcore/vm/ASHandlers.cpp:2915
msgid "The 'var whatever' syntax in timeline context is a no-op."
msgstr ""

#: libcore/vm/ASHandlers.cpp:3003
#, c-format
msgid "Argument to TargetPath(%s) doesn't cast to a MovieClip"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3039
#, c-format
msgid ""
"Top of stack doesn't evaluate to an object (%s) at ActionEnumerate execution"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3061 libcore/vm/ASHandlers.cpp:3068
#, c-format
msgid "%s.to_primitive() threw an error during ActionNewAdd"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3073
#, c-format
msgid "ActionNewAdd(%s, %s) [primitive conversion done]"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3113 libcore/vm/ASHandlers.cpp:3127
#, c-format
msgid "%s.to_primitive() threw an error during ActionNewLessThan"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3185 libcore/vm/ASHandlers.cpp:3193
#, c-format
msgid "to_primitive(%s) threw an ActionTypeError %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3254
#, c-format
msgid "getMember called against a value that does not cast to an as_object: %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3264
#, c-format
msgid " ActionGetMember: target: %s (object %p)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3279
#, c-format
msgid "-- get_member %s.%s=%s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3303
#, c-format
msgid ""
"ActionSetMember: %s.%s=%s: member name evaluates to invalid (empty) string"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3314
#, c-format
msgid "-- set_member %s.%s=%s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3326
#, c-format
msgid "-- set_member %s.%s=%s on invalid object!"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3367
#, c-format
msgid ""
"Attempt to call a method with %u arguments while only %u are available on "
"the stack."
msgstr ""

#: libcore/vm/ASHandlers.cpp:3376
#, c-format
msgid " method name: %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3377
#, c-format
msgid " method object/func: %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3378
#, c-format
msgid " method nargs: %d"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3391
#, c-format
msgid "ActionCallMethod invoked with non-object object/func (%s)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3416
#, c-format
msgid ""
"Function object given to ActionCallMethod is not a function (%s), will try "
"to use its 'constructor' member (but should instead invoke it's [[Call]] "
"method"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3427
msgid "ActionCallMethod: object has no constructor"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3436
msgid "ActionCallMethod: object constructor is not a function"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3450
#, c-format
msgid "ActionCallMethod: Can't find method %s of object %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3471
msgid "FIXME: debugger doesn't deal with anonymous function calls"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3513
#, c-format
msgid ""
"Attempt to call a constructor with %u arguments while only %u are available "
"on the stack."
msgstr ""

#: libcore/vm/ASHandlers.cpp:3525
msgid "On ActionNewMethod: no object found on stack on ActionMethod"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3543
#, c-format
msgid "ActionNewMethod: can't find method %s of object %s"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3557
msgid "ActionNewMethod: method name is undefined, and object is not a function"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3589
#, c-format
msgid "-- %s instanceof %s (invalid args?)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3621
#, c-format
msgid "Top of stack not an object %s at ActionEnum2  execution"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3766
#, c-format
msgid "ActionExtends: Super is not an as_function (%s)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3771
#, c-format
msgid "ActionExtends: Sub is not an as_function (%s)"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3849
#, c-format
msgid ""
"function2 code len (%u) overflows DOACTION tag boundaries (DOACTION tag len=%"
"d, function2 code offset=%d). Forcing code len to eat the whole buffer "
"(would this work?)."
msgstr ""

#: libcore/vm/ASHandlers.cpp:3872
#, c-format
msgid "DefineFunction2: named function '%s' starts at PC %d"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3884
#, c-format
msgid "DefineFunction2: anonymous function starts at PC %d"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3951
#, c-format
msgid ""
"ActionTry: reserved:%x doFinally:%d doCatch:%d trySize:%u catchSize:%u "
"finallySize:%u catchName:%s catchRegister:%u"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3983
msgid "ActionWith tag length != 2; skipping"
msgstr ""

#: libcore/vm/ASHandlers.cpp:3993
msgid "Empty with() block..."
msgstr ""

#: libcore/vm/ASHandlers.cpp:4005
#, c-format
msgid "with(%s) : first argument doesn't cast to an object!"
msgstr ""

#: libcore/vm/ASHandlers.cpp:4133
#, c-format
msgid "Invalid register %d in ActionSetRegister"
msgstr ""

#: libcore/vm/ASHandlers.cpp:4139
#, c-format
msgid "-------------- global register[%d] = '%s'"
msgstr ""

#: libcore/vm/ASHandlers.cpp:4146
#, c-format
msgid "-------------- local register[%d] = '%s'"
msgstr ""

#: libcore/vm/ASHandlers.cpp:4157
#, c-format
msgid "at SWFHandlers::action_name(%d) call time, _handlers size is %d"
msgstr ""

#: libcore/vm/action.cpp:69
#, c-format
msgid ""
"Attempt to call a value which is neither a C nor an ActionScript function (%"
"s)"
msgstr ""

#: libcore/vm/ActionExec.cpp:172
#, c-format
msgid ""
"at ActionExec operator() start, pc=%d, stop_pc=%d, code.size=%d, func=%d, "
"codeVersion=%d"
msgstr ""

#: libcore/vm/ActionExec.cpp:265
#, c-format
msgid ""
"Length %u (%d) of action tag id %u at pc %d overflows actions buffer size %d"
msgstr ""

#: libcore/vm/ActionExec.cpp:328
#, c-format
msgid "After execution: PC %d, next PC %d, stack follows"
msgstr ""

#: libcore/vm/ActionExec.cpp:356
#, c-format
msgid ""
"Loop iterations count exceeded limit of %d. Last branch was from pc %d to %d"
msgstr ""

#: libcore/vm/ActionExec.cpp:614
msgid ""
"Stack smashed (ActionScript compiler bug, or obfuscated SWF). Taking no "
"action to fix (as expected)."
msgstr ""

#: libcore/vm/ActionExec.cpp:619
#, c-format
msgid "%d elements left on the stack after block execution.  "
msgstr ""

#: libcore/vm/ActionExec.cpp:644
#, c-format
msgid ""
"End of DoAction block hit while skipping %d action tags (pc:%d, stop_pc:%d) "
"(WaitForFrame, probably)"
msgstr ""

#: libcore/vm/ActionExec.cpp:681
#, c-format
msgid ""
"'With' stack depth (%d) exceeds the allowed limit for current SWF target "
"version (%d for version %d). Don't expect this movie to work with all "
"players."
msgstr ""

#: libcore/vm/ActionExec.cpp:764
#, c-format
msgid ""
"Stack underrun: %d elements required, %d/%d available. Fixing by inserting %"
"d undefined values on the missing slots."
msgstr ""

#: libcore/vm/ActionExec.cpp:814
#, c-format
msgid "Jump outside DoAction tag requested (offset %d before tag start)"
msgstr ""

#: libcore/as_function.cpp:216
msgid "Function.apply() called with no args"
msgstr ""

#: libcore/as_function.cpp:235
#, c-format
msgid ""
"Function.apply() got %d args, expected at most 2 -- discarding the ones in "
"excess"
msgstr ""

#: libcore/as_function.cpp:247
#, c-format
msgid ""
"Second arg of Function.apply is %s (expected array) - considering as call "
"with no args"
msgstr ""

#: libcore/as_function.cpp:261
#, c-format
msgid ""
"Second arg of Function.apply is of type %s, with value %s (expected array) - "
"considering as call with no args"
msgstr ""

#: libcore/as_function.cpp:301
msgid "Function.call() with no args"
msgstr ""

#: libcore/as_function.cpp:320
#, c-format
msgid ""
"First argument to Function.call(%s) doesn't cast to object. Gnash will keep "
"the current 'this' pointer as it is, but this is known to not be the correct "
"way to handle such a malformed call."
msgstr ""

#: libcore/as_function.cpp:378
msgid "it's a built-in class"
msgstr ""

#: libcore/as_function.cpp:435
#, c-format
msgid "constructor prototype is %s"
msgstr ""

#: libcore/fill_style.cpp:186
msgid "num gradients 0"
msgstr ""

#: libcore/fill_style.cpp:196
#, c-format
msgid "Unexpected num gradients (%d), expected 1 to 8"
msgstr ""

#: libcore/fill_style.cpp:267
#, c-format
msgid ""
"Bitmap fill specifies '%d' as associated bitmap character id, but that "
"character is not found in the Characters Dictionary. It seems common to find "
"such  malformed SWF, so we'll only warn once about this."
msgstr ""

#: libcore/fill_style.cpp:327
#, c-format
msgid "Unknown fill style %d"
msgstr ""

#: libcore/fill_style.cpp:368
#, c-format
msgid ""
"First gradient in a fill_style have position==%d (expected 0). This seems to "
"be common, so will warn only once."
msgstr ""

#: libcore/fill_style.cpp:403
#, c-format
msgid "two gradients in a fill_style have the same position/ratio: %d"
msgstr ""

#: libcore/SWFStream.cpp:282 libcore/parser/action_buffer.cpp:524
msgid "Native floating point format not recognised"
msgstr ""

#: libcore/SWFStream.cpp:299 libcore/SWFStream.cpp:319
#: libcore/SWFStream.cpp:362 libcore/SWFStream.cpp:393
#: libcore/parser/SWFMovieDefinition.cpp:168
msgid "Unexpected end of stream while reading"
msgstr ""

#: libcore/SWFStream.cpp:508
msgid "Unexpected end of stream"
msgstr ""

#: libcore/SWFStream.cpp:577
#, c-format
msgid ""
"Tag %d starting at offset %d is advertised to end at offset %d, which is "
"after end of previously opened tag starting at offset %d and ending at "
"offset %d. Making it end where container tag ends."
msgstr ""

#: libcore/SWFStream.cpp:616
msgid "Could not seek to reported end of tag"
msgstr ""

#: libcore/FreetypeGlyphsProvider.cpp:209
#, c-format
msgid "Can't init FreeType! Error = %d"
msgstr ""

#: libcore/FreetypeGlyphsProvider.cpp:221
#, c-format
msgid "Can't close FreeType! Error = %d"
msgstr ""

#: libcore/FreetypeGlyphsProvider.cpp:359
#, c-format
msgid "Can't find font file for font '%s'"
msgstr ""

#: libcore/FreetypeGlyphsProvider.cpp:372
#, c-format
msgid "Font file '%s' has bad format"
msgstr ""

#: libcore/FreetypeGlyphsProvider.cpp:381
#, c-format
msgid "Some error opening font '%s'"
msgstr ""

#: libcore/debugger.cpp:143
msgid "Debugger enabled >> "
msgstr ""

#: libcore/debugger.cpp:358 libcore/debugger.cpp:399
msgid "No format flag"
msgstr ""

#: libcore/debugger.cpp:468
#, c-format
msgid "Setting watchpoint for variable: \"%s\""
msgstr ""

#: libcore/debugger.cpp:515
#, c-format
msgid "Matched for variable \"%s\": \"%s\""
msgstr ""

#: libcore/debugger.cpp:530 libcore/debugger.cpp:549 libcore/debugger.cpp:562
#: libcore/debugger.cpp:625
#, c-format
msgid "WARNING: environment not set in %s"
msgstr ""

#: libcore/debugger.cpp:566
#, c-format
msgid "Stack Dump of: %p"
msgstr ""

#: libcore/debugger.cpp:595
#, c-format
msgid "Stack Dump of 0x%p: empty"
msgstr ""

#: libcore/debugger.cpp:630
msgid "Global Registers Dump:"
msgstr ""

#: libcore/URLAccessManager.cpp:105
#, c-format
msgid "Load from host %s granted (whitelisted)"
msgstr ""

#: libcore/URLAccessManager.cpp:111
#, c-format
msgid "Load from host %s forbidden (not in non-empty whitelist)"
msgstr ""

#: libcore/URLAccessManager.cpp:123
#, c-format
msgid "Load from host %s forbidden (blacklisted)"
msgstr ""

#: libcore/URLAccessManager.cpp:128
#, c-format
msgid "Load from host %s granted (default)"
msgstr ""

#: libcore/URLAccessManager.cpp:165
#, c-format
msgid "Load of file %s forbidden (starting url %s is not a local resource)"
msgstr ""

#: libcore/URLAccessManager.cpp:183
#, c-format
msgid "Load of file %s granted (under local sandbox %s)"
msgstr ""

#: libcore/URLAccessManager.cpp:191
#, c-format
msgid "Load of file %s forbidden (not under local sandboxes)"
msgstr ""

#: libcore/URLAccessManager.cpp:231
#, c-format
msgid "gethostname failed: %s"
msgstr ""

#: libcore/URLAccessManager.cpp:253
#, c-format
msgid "Load from host %s forbidden (not in the local domain)"
msgstr ""

#: libcore/URLAccessManager.cpp:259
#, c-format
msgid "Load from host %s forbidden (not on the local host)"
msgstr ""

#: libcore/URLAccessManager.cpp:287
#, c-format
msgid "Checking security of URL '%s'"
msgstr ""

#: libcore/URLAccessManager.cpp:299
msgid "Network connection without hostname requested"
msgstr ""

#: libcore/movie_root.cpp:212
#, c-format
msgid "ActionLimits hit during setRootMovie: %s. Disable scripts?"
msgstr ""

#: libcore/movie_root.cpp:332 libcore/movie_root.cpp:343
#, c-format
msgid ""
"%s.swapDepth(%d): movie has a depth (%d) below static depth zone (%d), won't "
"swap its depth"
msgstr ""

#: libcore/movie_root.cpp:410
msgid "Original root movie can't be removed"
msgstr ""

#: libcore/movie_root.cpp:430 libcore/MovieClip.cpp:2400
#, c-format
msgid "can't create movie_definition for %s"
msgstr ""

#: libcore/movie_root.cpp:439 libcore/MovieClip.cpp:2409
#, c-format
msgid "can't create extern movie_instance for %s"
msgstr ""

#: libcore/movie_root.cpp:677
#, c-format
msgid "ActionLimits hit notifying key listeners: %s."
msgstr ""

#: libcore/movie_root.cpp:894
#, c-format
msgid "ActionLimits hit during mouse event processing: %s. Disable scripts ?"
msgstr ""

#: libcore/movie_root.cpp:1074
#, c-format
msgid "Action limit hit during advance: %s"
msgstr ""

#: libcore/movie_root.cpp:1079
#, c-format
msgid "Buffer overread during advance: %s"
msgstr ""

#: libcore/movie_root.cpp:1331
#, c-format
msgid "ActionLimits hit notifying mouse events: %s."
msgstr ""

#: libcore/movie_root.cpp:2224
#, c-format
msgid "Launching URL: %s"
msgstr ""

#: libcore/movie_root.cpp:2262
#, c-format
msgid "Attempt to write geturl requests fd %d"
msgstr ""

#: libcore/movie_root.cpp:2267
#, c-format
msgid "Could not write to user-provided host requests fd %d: %s"
msgstr ""

#: libcore/movie_root.cpp:2272
#, c-format
msgid ""
"Could only write %d bytes over %d required to user-provided host requests fd "
"%d"
msgstr ""

#: libcore/movie_root.cpp:2279
#, c-format
msgid "Sent request '%s' to host fd %d"
msgstr ""

#: libcore/movie_root.cpp:2324
#, c-format
msgid "processLoadMovieRequest: Testing _level loading (level %u)"
msgstr ""

#: libcore/movie_root.cpp:2396
#, c-format
msgid "Setting script limits: max recursion %d, timeout %d seconds"
msgstr ""

#: libcore/movie_root.cpp:2470
msgid "Live characters"
msgstr ""

#: libcore/Video.cpp:88
msgid "No Media handler registered, won't be able to decode embedded video"
msgstr ""

#: libcore/Video.cpp:96
msgid "No Video info in video definition"
msgstr ""

#: libcore/Video.cpp:433
msgid "attachVideo needs 1 arg"
msgstr ""

#: libcore/Video.cpp:447
#, c-format
msgid "attachVideo(%s) first arg is not a NetStream instance"
msgstr ""

#: libcore/character.cpp:165
msgid ""
"ActionScript code trying to reference a nonexistent parent with '..'  (a "
"nonexistent parent probably only occurs in the root MovieClip). Returning "
"NULL. "
msgstr ""

#: libcore/character.cpp:376
#, c-format
msgid "Attempt to set %s._x to %s, refused"
msgstr ""

#: libcore/character.cpp:388
#, c-format
msgid "Attempt to set %s._x to %s (evaluating to number %g) refused"
msgstr ""

#: libcore/character.cpp:427
#, c-format
msgid "Attempt to set %s._y to %s, refused"
msgstr ""

#: libcore/character.cpp:439
#, c-format
msgid "Attempt to set %s._y to %s (evaluating to number %g) refused"
msgstr ""

#: libcore/character.cpp:477
#, c-format
msgid "Attempt to set %s._xscale to %s, refused"
msgstr ""

#: libcore/character.cpp:489
#, c-format
msgid "Attempt to set %s._xscale to %s (evaluating to number %g) refused"
msgstr ""

#: libcore/character.cpp:524
#, c-format
msgid "Attempt to set %s._yscale to %s, refused"
msgstr ""

#: libcore/character.cpp:536
#, c-format
msgid "Attempt to set %s._yscale to %s (evaluating to number %g) refused"
msgstr ""

#: libcore/character.cpp:603
#, c-format
msgid "Attempt to set %s._alpha to %s, refused"
msgstr ""

#: libcore/character.cpp:618
#, c-format
msgid "Attempt to set %s._alpha to %s (evaluating to number %g) refused"
msgstr ""

#: libcore/character.cpp:652
msgid "blendMode"
msgstr ""

#: libcore/character.cpp:738
#, c-format
msgid "Attempt to set %s._visible to %s, refused"
msgstr ""

#: libcore/character.cpp:754
#, c-format
msgid "Attempt to set %s._visible to %s (evaluating to number %g) refused"
msgstr ""

#: libcore/character.cpp:790
#, c-format
msgid "Setting _width=%g of character %s (%s)"
msgstr ""

#: libcore/character.cpp:858
#, c-format
msgid "Setting _height=%g of character %s (%s)"
msgstr ""

#: libcore/character.cpp:912
#, c-format
msgid "Attempt to set %s._rotation to %s, refused"
msgstr ""

#: libcore/character.cpp:925
#, c-format
msgid "Attempt to set %s._rotation to %s (evaluating to number %g) refused"
msgstr ""

#: libcore/character.cpp:1460
msgid "yes"
msgstr ""

#: libcore/character.cpp:1461
msgid "no"
msgstr ""

#: libcore/character.cpp:1467
msgid "Depth"
msgstr "Syvyys"

#: libcore/character.cpp:1474
msgid "Ratio"
msgstr ""

#: libcore/character.cpp:1484
msgid "Clipping depth"
msgstr ""

#: libcore/character.cpp:1489
msgid "Dimensions"
msgstr ""

#: libcore/character.cpp:1491
msgid "Dynamic"
msgstr ""

#: libcore/character.cpp:1492
msgid "Mask"
msgstr ""

#: libcore/character.cpp:1493
msgid "Destroyed"
msgstr ""

#: libcore/character.cpp:1494
msgid "Unloaded"
msgstr ""

#: libcore/character.cpp:1498
msgid "Blend mode"
msgstr ""

#: libcore/character.cpp:1501
msgid "Invalidated"
msgstr ""

#: libcore/character.cpp:1502
msgid "Child invalidated"
msgstr ""

#: libcore/Font.cpp:117
msgid ""
"Attempt to set font display or copyright name again. This should mean there "
"is more than one DefineFontName tag referring to the same Font. Don't know "
"what to do in this case, so ignoring."
msgstr ""

#: libcore/Font.cpp:155
msgid ""
"Attempt to add an embedded glyph CodeTable to a font that already has one. "
"This should mean there are several DefineFontInfo tags, or a DefineFontInfo "
"tag refers to a font created by DefineFone2 or DefineFont3. Don't know what "
"should happen in this case, so ignoring."
msgstr ""

#: libcore/DisplayList.cpp:366
#, c-format
msgid "move_character() -- can't find object at depth %d"
msgstr ""

#: libcore/DisplayList.cpp:728
#, c-format
msgid "Item %d at depth %d (char id %d, name %s, type %s)"
msgstr ""

#: libcore/PropertyList.cpp:190
#, c-format
msgid ""
"Property %s (key %d) in namespace %s (key %d) is read-only %s, not setting "
"it to %s"
msgstr ""

#: libcore/StreamProvider.cpp:135
msgid "POST data discarded while getting a stream from file: uri"
msgstr ""

#: libcore/swf/tag_loaders.cpp:209
msgid "anchor-labeled frame not supported"
msgstr ""

#: libcore/swf/tag_loaders.cpp:214
#, c-format
msgid "frame_label_loader end position %d, read up to %d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:233
msgid "  jpeg_tables_loader"
msgstr ""

#: libcore/swf/tag_loaders.cpp:245
#, c-format
msgid "No bytes to read in JPEGTABLES tag at offset %d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:294
#, c-format
msgid "DEFINEBITS: Duplicate id (%d) for bitmap character - discarding it"
msgstr ""

#: libcore/swf/tag_loaders.cpp:305
#, c-format
msgid ""
"DEFINEBITS: No jpeg loader registered in movie definition - discarding "
"bitmap character %d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:345
#, c-format
msgid "  define_bits_jpeg2_loader: charid = %d pos = %ld"
msgstr ""

#: libcore/swf/tag_loaders.cpp:353
#, c-format
msgid "DEFINEBITSJPEG2: Duplicate id (%d) for bitmap character - discarding it"
msgstr ""

#: libcore/swf/tag_loaders.cpp:399
#, c-format
msgid "inflate_wrapper() inflateInit() returned %d (%s)"
msgstr ""

#: libcore/swf/tag_loaders.cpp:421
msgid "inflate_wrapper(): no end of zstream found within swf tag boundaries"
msgstr ""

#: libcore/swf/tag_loaders.cpp:446
#, c-format
msgid "inflate_wrapper() inflate() returned %d (%s)"
msgstr ""

#: libcore/swf/tag_loaders.cpp:456
#, c-format
msgid "inflate_wrapper() inflateEnd() return %d (%s)"
msgstr ""

#: libcore/swf/tag_loaders.cpp:476
#, c-format
msgid "  define_bits_jpeg3_loader: charid = %d pos = %lx"
msgstr ""

#: libcore/swf/tag_loaders.cpp:485
msgid "gnash is not linked to zlib -- can't load jpeg3 image data"
msgstr ""

#: libcore/swf/tag_loaders.cpp:542
#, c-format
msgid "  defbitslossless2: tag = %d, id = %d, fmt = %d, w = %d, h = %d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:549
#, c-format
msgid "Bitmap character %d has a height or width of 0"
msgstr ""

#: libcore/swf/tag_loaders.cpp:560
#, c-format
msgid ""
"DEFINEBITSLOSSLESS: Duplicate id (%d) for bitmap character - discarding it"
msgstr ""

#: libcore/swf/tag_loaders.cpp:567
msgid "gnash is not linked to zlib -- can't load zipped image data"
msgstr ""

#: libcore/swf/tag_loaders.cpp:612
msgid "Unknown bitmap format. Ignoring"
msgstr ""

#: libcore/swf/tag_loaders.cpp:719
#, c-format
msgid "  FIXME: tagtype = %d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:734
#, c-format
msgid "  shape_loader: id = %d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:754
#, c-format
msgid "  shape_morph_loader: id = %d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:774
#, c-format
msgid "  sprite:  char id = %d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:785
msgid "Nested DEFINESPRITE tags. Will add to top-level characters dictionary."
msgstr ""

#: libcore/swf/tag_loaders.cpp:795
#, c-format
msgid "Sprite %d advertise no frames"
msgstr ""

#: libcore/swf/tag_loaders.cpp:819
#, c-format
msgid "  export: count = %d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:830
msgid "EXPORT tag inside DEFINESPRITE. Will export in top-level symbol table."
msgstr ""

#: libcore/swf/tag_loaders.cpp:845
#, c-format
msgid "  export: id = %d, name = %s"
msgstr ""

#: libcore/swf/tag_loaders.cpp:858
#, c-format
msgid "don't know how to export resource '%s' with id %d (can't find that id)"
msgstr ""

#: libcore/swf/tag_loaders.cpp:898
#, c-format
msgid "  import: version = %u, source_url = %s (%s), count = %d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:910
#, c-format
msgid "Exception: %s"
msgstr ""

#: libcore/swf/tag_loaders.cpp:916
#, c-format
msgid "can't import movie from url %s"
msgstr ""

#: libcore/swf/tag_loaders.cpp:925
msgid "Movie attempts to import symbols from itself."
msgstr ""

#: libcore/swf/tag_loaders.cpp:940
#, c-format
msgid "  import: id = %d, name = %s"
msgstr ""

#: libcore/swf/tag_loaders.cpp:988
#, c-format
msgid "DEFINESOUNDLOADER: sound sample rate %d (expected 0 to %u"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1026
#, c-format
msgid "define sound: ch=%d, format=%s, rate=%d, 16=%d, stereo=%d, ct=%d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1055
msgid "Tag boundary reported past end of SWFStream!"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1078
#, c-format
msgid ""
"There is no sound handler currently active, so character with id %d will NOT "
"be added to the dictionary"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1130
#, c-format
msgid "SOUNDSTREAMHEAD: stream sample rate %d (expected 0 to %u)"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1142
#, c-format
msgid ""
"Different stream/playback sound rate (%d/%d). This seems common in SWF "
"files, so we'll warn only once."
msgstr ""

#: libcore/swf/tag_loaders.cpp:1151
#, c-format
msgid ""
"Different stream/playback sample size (%d/%d). This seems common in SWF "
"files, so we'll warn only once."
msgstr ""

#: libcore/swf/tag_loaders.cpp:1160
#, c-format
msgid ""
"Different stream/playback channels (%s/%s). This seems common in SWF files, "
"so we'll warn only once."
msgstr ""

#: libcore/swf/tag_loaders.cpp:1178
msgid ""
"No samples advertised for sound stream, pretty common so will warn only once"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1209
#, c-format
msgid ""
"sound stream head: format=%s, rate=%d, 16=%d, stereo=%d, ct=%d, latency=%d"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1250
#, c-format
msgid "  file attributes: has_metadata=%s use_network=%s"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1251 libcore/swf/tag_loaders.cpp:1252
msgid "true"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1251 libcore/swf/tag_loaders.cpp:1252
msgid "false"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1257
msgid ""
"FileAttributes tag in the SWF requests that network access is not granted to "
"this movie (or application?) when loaded from the filesystem. Anyway Gnash "
"won't care; use white/black listing in your .gnashrc instead"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1283
#, c-format
msgid ""
"  RDF metadata (information only): [[\n"
"%s\n"
"]]"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1298
#, c-format
msgid "Descriptive metadata from movie %s: %s"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1359
#, c-format
msgid "  reflex = \"%c%c%c\""
msgstr ""

#: libcore/swf/tag_loaders.cpp:1362
#, c-format
msgid "REFLEX tag parsed (\"%c%c%c\") but unused"
msgstr ""

#: libcore/swf/tag_loaders.cpp:1389 libcore/swf/tag_loaders.cpp:1399
#, c-format
msgid "%s tag parsed but not yet used"
msgstr ""

#: libcore/swf/VideoFrameTag.cpp:45
#, c-format
msgid "VideoFrame tag refers to unknown video stream id %d"
msgstr ""

#: libcore/swf/VideoFrameTag.cpp:55
#, c-format
msgid "VideoFrame tag refers to a non-video character %d (%s)"
msgstr ""

#: libcore/swf/VideoFrameTag.cpp:78
msgid ""
"Could not read enough bytes when parsing VideoFrame tag. Perhaps we reached "
"the end of the stream!"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:58
msgid "Premature end of button action input: can't read conditions"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:68
#, c-format
msgid "   button actions for conditions 0x%x"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:127
msgid "   premature end of button record input stream, can't read flags"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:153
msgid "   premature end of button record input stream, can't read character id"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:168
#, c-format
msgid ""
"   button record for states [%s] refer to character with id %d, which is not "
"found in the chars dictionary"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:176
#, c-format
msgid "   button record for states [%s] contain character %d (%s)"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:185
msgid ""
"   premature end of button record input stream, can't read button layer "
"(depth?)"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:230
#, c-format
msgid "  DefineButton loader: chararacter id = %d"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:247
#, c-format
msgid "  DefineButton2 loader: chararacter id = %d"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:321
msgid "Premature end of DEFINEBUTTON tag, won't read actions"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:352
#, c-format
msgid "Next Button2 actionOffset (%u) points past the end of tag (%lu)"
msgstr ""

#: libcore/swf/DefineButtonTag.cpp:397
#, c-format
msgid ""
"Next action offset (%u) in Button2ActionConditions points past the end of tag"
msgstr ""

#: libcore/swf/DefineFontAlignZonesTag.cpp:51
#, c-format
msgid "DefineFontAlignZones tag references an undefined font %d"
msgstr ""

#: libcore/swf/DefineFontAlignZonesTag.cpp:67
#, c-format
msgid "  DefineFontAlignZones: font=%d, flags=%d"
msgstr ""

#: libcore/swf/DefineFontAlignZonesTag.cpp:71
msgid "DefineFontAlignZoneTag"
msgstr ""

#: libcore/swf/DefineButtonSoundTag.cpp:50
#, c-format
msgid "DEFINEBUTTONSOUND refers to an unknown character def %d"
msgstr ""

#: libcore/swf/DefineButtonSoundTag.cpp:61
#, c-format
msgid ""
"DEFINEBUTTONSOUND refers to character id %d, a %s (expected a button "
"character)"
msgstr ""

#: libcore/swf/DefineButtonSoundTag.cpp:71
msgid "Attempt to redefine button sound ignored"
msgstr ""

#: libcore/swf/DefineButtonSoundTag.cpp:97
#, c-format
msgid "sound tag not found, sound_id=%d, button state #=%i"
msgstr ""

#: libcore/swf/SoundInfoRecord.cpp:47
msgid "SoundInfo record with in point"
msgstr ""

#: libcore/swf/SoundInfoRecord.cpp:52
msgid "SoundInfo record with out point"
msgstr ""

#: libcore/swf/DefineFontTag.cpp:55
#, c-format
msgid "reading code table at offset %lu"
msgstr ""

#: libcore/swf/DefineFontTag.cpp:129
msgid "reading DefineFont"
msgstr ""

#: libcore/swf/DefineFontTag.cpp:173
msgid "Glyphs offset table corrupted in DefineFont tag"
msgstr ""

#: libcore/swf/DefineFontTag.cpp:190
msgid "reading DefineFont2 or DefineFont3"
msgstr ""

#: libcore/swf/DefineFontTag.cpp:244 libcore/swf/DefineFontTag.cpp:260
#, c-format
msgid "Glyph %d at offset %u"
msgstr ""

#: libcore/swf/DefineFontTag.cpp:282
msgid "Glyphs offset table corrupted in DefineFont2/3 tag"
msgstr ""

#: libcore/swf/DefineFontTag.cpp:297
msgid "Bad offset in DefineFont2"
msgstr ""

#: libcore/swf/DefineFontTag.cpp:366
msgid "Repeated kerning pair found - ignoring"
msgstr ""

#: libcore/swf/DefineFontTag.cpp:387
#, c-format
msgid "DefineFontInfo tag loader: can't find font with id %d"
msgstr ""

#: libcore/swf/DefineFontTag.cpp:396
msgid "DefineFontInfo2 partially implemented"
msgstr ""

#: libcore/swf/DefineTextTag.cpp:30 libcore/swf/DefineTextTag.cpp:47
#, c-format
msgid "Text character, id = %d"
msgstr ""

#: libcore/swf/DefineTextTag.cpp:66
#, c-format
msgid "begin text records for DefineTextTag %p"
msgstr ""

#: libcore/swf/RemoveObjectTag.cpp:69
#, c-format
msgid "  remove_object_2(%d)"
msgstr ""

#: libcore/swf/CSMTextSettingsTag.cpp:70
#, c-format
msgid ""
"  CSMTextSettings: TextID=%d, FlashType=%d, GridFit=%d, Thickness=%d, "
"Sharpness=%d"
msgstr ""

#: libcore/swf/CSMTextSettingsTag.cpp:78
msgid "CSMTextSettings"
msgstr ""

#: libcore/swf/StartSoundTag.cpp:52
#, c-format
msgid "start_sound_loader: sound_id %d is not defined"
msgstr ""

#: libcore/swf/StartSoundTag.cpp:66
#, c-format
msgid "StartSound: id=%d"
msgstr ""

#: libcore/swf/StartSoundTag.cpp:117
msgid "STARTSOUND2 tag not parsed and not used"
msgstr ""

#: libcore/swf/DefineButtonCxformTag.cpp:47
#, c-format
msgid "DefineButtonCxform refers to an unknown character %d"
msgstr ""

#: libcore/swf/DefineButtonCxformTag.cpp:58
#, c-format
msgid ""
"DefineButtonCxform refers to character ID %d (%s). Expected a button "
"definition"
msgstr ""

#: libcore/swf/StreamSoundBlockTag.cpp:81
msgid "Found SOUNDSTREAMBLOCK tag w/out preceding SOUNDSTREAMHEAD"
msgstr ""

#: libcore/swf/StreamSoundBlockTag.cpp:97
msgid "MP3 soundblock seek samples"
msgstr ""

#: libcore/swf/StreamSoundBlockTag.cpp:116
msgid "Tag boundary reported past end of stream!"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:63
#, c-format
msgid "  PLACEOBJECT: depth=%d(%d) char=%d"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:67 libcore/swf/PlaceObject2Tag.cpp:314
#, c-format
msgid "  cxform: %s"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:84
#, c-format
msgid "Reserved field in PlaceObject actions == %u (expected 0)"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:104
#, c-format
msgid "  actions: flags = 0x%X"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:144
#, c-format
msgid ""
"swf_event::read(), even_length = %u, but only %lu bytes left to the end of "
"current tag. Breaking for safety."
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:207
#, c-format
msgid ""
"swf_event::read() -- unknown / unhandled event type received, flags = 0x%x"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:241
msgid "Unexpected end of tag while parsing PlaceObject tag events"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:305
#, c-format
msgid "  PLACEOBJECT2: depth = %d (%d)"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:307 libcore/swf/PlaceObject2Tag.cpp:420
#, c-format
msgid "  char id = %d"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:310 libcore/swf/PlaceObject2Tag.cpp:421
#, c-format
msgid "  SWFMatrix: %s"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:316 libcore/swf/PlaceObject2Tag.cpp:423
#, c-format
msgid "  ratio: %d"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:317 libcore/swf/PlaceObject2Tag.cpp:424
#, c-format
msgid "  name = %s"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:318 libcore/swf/PlaceObject2Tag.cpp:426
#, c-format
msgid "  clip_depth = %d (%d)"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:319 libcore/swf/PlaceObject2Tag.cpp:429
#, c-format
msgid " m_place_type: %d"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:418
#, c-format
msgid "  PLACEOBJECT3: depth = %d (%d)"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:422
#, c-format
msgid "  cxform: %d"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:425
#, c-format
msgid "  class name = %s"
msgstr ""

#: libcore/swf/PlaceObject2Tag.cpp:428
msgid "   bitmapCaching enabled"
msgstr ""

#: libcore/swf/TextRecord.cpp:49
msgid "end text records"
msgstr ""

#: libcore/swf/TextRecord.cpp:75
#, c-format
msgid "  has_font: font id = %d (%p)"
msgstr ""

#: libcore/swf/TextRecord.cpp:87
msgid "  hasColor"
msgstr ""

#: libcore/swf/TextRecord.cpp:96
#, c-format
msgid "  xOffset = %g"
msgstr ""

#: libcore/swf/TextRecord.cpp:105
#, c-format
msgid "  yOffset = %g"
msgstr ""

#: libcore/swf/TextRecord.cpp:114
#, c-format
msgid "  textHeight = %g"
msgstr ""

#: libcore/swf/TextRecord.cpp:123
#, c-format
msgid "  GlyphEntries: count = %d"
msgstr ""

#: libcore/swf/TextRecord.cpp:135
#, c-format
msgid "   glyph%d: index=%d, advance=%g"
msgstr ""

#: libcore/swf/TextRecord.cpp:208
msgid "invalid glyph (-1)"
msgstr ""

#: libcore/swf/TextRecord.cpp:239
msgid "render shape glyph using filled outline (render::draw_glyph)"
msgstr ""

#: libcore/MovieClip.cpp:506
#, c-format
msgid "call_frame('%s') -- invalid frame"
msgstr ""

#: libcore/MovieClip.cpp:594
msgid "Can't clone root of the movie"
msgstr ""

#: libcore/MovieClip.cpp:600
#, c-format
msgid "%s parent is not a movieclip, can't clone"
msgstr ""

#: libcore/MovieClip.cpp:656
#, c-format
msgid "Event %s invoked for movieclip %s"
msgstr ""

#: libcore/MovieClip.cpp:663
#, c-format
msgid "Sprite %s ignored ENTER_FRAME event (is unloaded)"
msgstr ""

#: libcore/MovieClip.cpp:671
#, c-format
msgid "Sprite %s ignored button-like event %s as not 'enabled'"
msgstr ""

#: libcore/MovieClip.cpp:744
#, c-format
msgid ""
"Sprite %s (depth %d) won't check for user-defined LOAD event (is not "
"dynamic, has a parent, no registered class and no clip events defined)"
msgstr ""

#: libcore/MovieClip.cpp:850
#, c-format
msgid "it's a Text Variable, associated with %d TextFields"
msgstr ""

#: libcore/MovieClip.cpp:862
msgid "it's NOT a Text Variable"
msgstr ""

#: libcore/MovieClip.cpp:893
#, c-format
msgid "advance_movieclip: no frames loaded for movieclip/movie %s"
msgstr ""

#: libcore/MovieClip.cpp:906
#, c-format
msgid "Advance_movieclip for movieclip '%s' - frame %u/%u "
msgstr ""

#: libcore/MovieClip.cpp:919
msgid "MovieClip::advance_movieclip we're in PLAY mode"
msgstr ""

#: libcore/MovieClip.cpp:925
msgid "on_event_load called, incrementing"
msgstr ""

#: libcore/MovieClip.cpp:929
#, c-format
msgid "after increment we are at frame %u/%u"
msgstr ""

#: libcore/MovieClip.cpp:939
#, c-format
msgid "Jumping back to frame 0 of movieclip %s"
msgstr ""

#: libcore/MovieClip.cpp:947
#, c-format
msgid "Executing frame%d (0-based) tags of movieclip %s"
msgstr ""

#: libcore/MovieClip.cpp:959
msgid "MovieClip::advance_movieclip we're in STOP mode"
msgstr ""

#: libcore/MovieClip.cpp:973
#, c-format
msgid "Advance movieclip '%s' at frame %u/%u"
msgstr ""

#: libcore/MovieClip.cpp:993
#, c-format
msgid "Queuing init actions in frame %d of movieclip %s"
msgstr ""

#: libcore/MovieClip.cpp:1005
#, c-format
msgid "Init actions for character %d already executed"
msgstr ""

#: libcore/MovieClip.cpp:1063
#, c-format
msgid "Executing %d tags in frame %d/%d of movieclip %s"
msgstr ""

#: libcore/MovieClip.cpp:1099
#, c-format
msgid "movieclip %s ::goto_frame(%d) - current frame is %d"
msgstr ""

#: libcore/MovieClip.cpp:1114
#, c-format
msgid ""
"Target frame of a gotoFrame(%d) was never loaded,although frame count in "
"header (%d) said we should have found it"
msgstr ""

#: libcore/MovieClip.cpp:1148
#, c-format
msgid ""
"GotoFrame(%d) targets a yet to be loaded frame (%d) loaded). We'll wait for "
"it but a more correct form is explicitly using WaitForFrame instead"
msgstr ""

#: libcore/MovieClip.cpp:1158
#, c-format
msgid ""
"Target frame of a gotoFrame(%d) was never loaded, although frame count in "
"header (%d) said we should have found it"
msgstr ""

#: libcore/MovieClip.cpp:1224
#, c-format
msgid "MovieClip::goto_labeled_frame('%s') unknown label"
msgstr ""

#: libcore/MovieClip.cpp:1307
#, c-format
msgid "MovieClip::add_display_object(): unknown cid = %d"
msgstr ""

#: libcore/MovieClip.cpp:1371
#, c-format
msgid "movieclip::replace_display_object(): unknown cid = %d"
msgstr ""

#: libcore/MovieClip.cpp:1424
#, c-format
msgid ""
"MovieClip::replace_display_object: could not find any character at depth %d"
msgstr ""

#: libcore/MovieClip.cpp:1543
#, c-format
msgid ""
"CHECKME: nested mask in MouseEntityFinder. This mask is %s at depth %d outer "
"mask masked up to depth %d."
msgstr ""

#: libcore/MovieClip.cpp:1558 libcore/MovieClip.cpp:1888
#, c-format
msgid ""
"Character %s at depth %d is a mask not hitting the query point %g,%g and "
"masking up to depth %d"
msgstr ""

#: libcore/MovieClip.cpp:1568 libcore/MovieClip.cpp:1898
#, c-format
msgid "Character %s at depth %d is a mask hitting the query point %g,%g"
msgstr ""

#: libcore/MovieClip.cpp:1606
#, c-format
msgid "MouseEntityFinder found character %s (depth %d) hitting point %g,%g"
msgstr ""

#: libcore/MovieClip.cpp:1736
#, c-format
msgid ""
"%s is a dynamic mask and can't handle mouse events, no point will hit it"
msgstr ""

#: libcore/MovieClip.cpp:1745
#, c-format
msgid "%s is dynamically masked by %s, which doesn't hit point %g,%g"
msgstr ""

#: libcore/MovieClip.cpp:1870
#, c-format
msgid ""
"CHECKME: nested mask in DropTargetFinder. This mask is %s at depth %d outer "
"mask masked up to depth %d."
msgstr ""

#: libcore/MovieClip.cpp:1883
msgid "FIXME: invisible mask in MouseEntityFinder."
msgstr ""

#: libcore/MovieClip.cpp:2025
#, c-format
msgid "%s doesn't even check for a char"
msgstr ""

#: libcore/MovieClip.cpp:2170
#, c-format
msgid "Sprite '%s' placed on stage"
msgstr ""

#: libcore/MovieClip.cpp:2195 libcore/MovieClip.cpp:2216
#, c-format
msgid "Executing tags of frame0 in movieclip %s"
msgstr ""

#: libcore/MovieClip.cpp:2202 libcore/MovieClip.cpp:2211
#, c-format
msgid "Queuing ONLOAD event for movieclip %s"
msgstr ""

#: libcore/MovieClip.cpp:2235
#, c-format
msgid "Queuing INITIALIZE and CONSTRUCT events for movieclip %s"
msgstr ""

#: libcore/MovieClip.cpp:2269
#, c-format
msgid "constructAsScriptObject called for movieclip %s"
msgstr ""

#: libcore/MovieClip.cpp:2294
#, c-format
msgid "Attached movieclips %s registered class is %p"
msgstr ""

#: libcore/MovieClip.cpp:2358
#, c-format
msgid "Unloading movieclip '%s'"
msgstr "Poistetaan videota muistista: '%s'"

#: libcore/MovieClip.cpp:2390
#, c-format
msgid "Posting data '%s' to url '%s'"
msgstr ""

#: libcore/MovieClip.cpp:2503
#, c-format
msgid "Could not load variables from %s"
msgstr ""

#: libcore/MovieClip.cpp:2526
#, c-format
msgid "Setting variable '%s' to value '%s'"
msgstr ""

#: libcore/MovieClip.cpp:2576
#, c-format
msgid ""
"removeMovieClip(%s): movieclip depth (%d) out of the 'dynamic' zone "
"[0..1048575], won't remove"
msgstr ""

#: libcore/MovieClip.cpp:2830
#, c-format
msgid "Stream sound id from %d to %d, stopping old"
msgstr ""

#: libcore/MovieClip.cpp:2889
msgid "Children"
msgstr ""

#: libcore/MovieClip.cpp:3100
msgid "MovieClip.cacheAsBitmap()"
msgstr ""

#: libcore/MovieClip.cpp:3111
msgid "MovieClip.filters()"
msgstr ""

#: libcore/MovieClip.cpp:3122
msgid "MovieClip.forceSmoothing()"
msgstr ""

#: libcore/MovieClip.cpp:3133
msgid "MovieClip.opaqueBackground()"
msgstr ""

#: libcore/MovieClip.cpp:3144
msgid "MovieClip.scale9Grid()"
msgstr ""

#: libcore/MovieClip.cpp:3155
msgid "MovieClip.scrollRect()"
msgstr ""

#: libcore/MovieClip.cpp:3166
msgid "MovieClip.tabIndex()"
msgstr ""

#: libcore/MovieClip.cpp:3182
#, c-format
msgid ""
"attachMovie called with wrong number of arguments expected 3 to 4, got (%d) "
"- returning undefined"
msgstr ""

#: libcore/MovieClip.cpp:3197
#, c-format
msgid "attachMovie: '%s': no such exported resource - returning undefined"
msgstr ""

#: libcore/MovieClip.cpp:3209
#, c-format
msgid ""
"attachMovie: exported resource '%s' is not a character definition (%s) -- "
"returning undefined"
msgstr ""

#: libcore/MovieClip.cpp:3231
#, c-format
msgid "MovieClip.attachMovie: invalid depth %d passed; not attaching"
msgstr ""

#: libcore/MovieClip.cpp:3259
#, c-format
msgid ""
"Fourth argument of attachMovie doesn't cast to an object (%s), we'll act as "
"if it wasn't given"
msgstr ""

#: libcore/MovieClip.cpp:3269
#, c-format
msgid "Could not attach character at depth %d"
msgstr ""

#: libcore/MovieClip.cpp:3287 libcore/asobj/flash/geom/Rectangle_as.cpp:180
#: libcore/asobj/flash/geom/Point_as.cpp:424
#: libcore/asobj/flash/geom/Point_as.cpp:504
#: libcore/asobj/flash/geom/Point_as.cpp:591
#: libcore/asobj/flash/geom/Point_as.cpp:599
msgid "missing arguments"
msgstr ""

#: libcore/MovieClip.cpp:3344
#, c-format
msgid "createEmptyMovieClip needs 2 args, but %d given, returning undefined"
msgstr ""

#: libcore/MovieClip.cpp:3354
#, c-format
msgid "createEmptyMovieClip takes 2 args, but %d given, discarding the excess"
msgstr ""

#: libcore/MovieClip.cpp:3397
#, c-format
msgid "%s.swapDepths() needs one arg"
msgstr ""

#: libcore/MovieClip.cpp:3409
#, c-format
msgid "%s.swapDepths(%s): won't swap a clip below depth %d (%d)"
msgstr ""

#: libcore/MovieClip.cpp:3432
#, c-format
msgid "%s.swapDepths(%s): invalid call, swapping to self?"
msgstr ""

#: libcore/MovieClip.cpp:3443
#, c-format
msgid ""
"%s.swapDepths(%s): invalid call, the two characters don't have the same "
"parent"
msgstr ""

#: libcore/MovieClip.cpp:3460
#, c-format
msgid ""
"%s.swapDepths(%s): ignored, source and target characters have the same depth "
"%d"
msgstr ""

#: libcore/MovieClip.cpp:3476
#, c-format
msgid ""
"%s.swapDepths(%s): first argument invalid (neither a movieclip nor a number)"
msgstr ""

#: libcore/MovieClip.cpp:3493
#, c-format
msgid "%s.swapDepths(%s): ignored, character already at depth %d"
msgstr ""

#: libcore/MovieClip.cpp:3534
msgid "MovieClip.duplicateMovieClip() needs 2 or 3 args"
msgstr ""

#: libcore/MovieClip.cpp:3550
#, c-format
msgid "MovieClip.duplicateMovieClip: invalid depth %d passed; not duplicating"
msgstr ""

#: libcore/MovieClip.cpp:3584
msgid "movieclip_goto_and_play needs one arg"
msgstr ""

#: libcore/MovieClip.cpp:3594
#, c-format
msgid "movieclip_goto_and_play('%s') -- invalid frame"
msgstr ""

#: libcore/MovieClip.cpp:3614
msgid "movieclip_goto_and_stop needs one arg"
msgstr ""

#: libcore/MovieClip.cpp:3624
#, c-format
msgid "movieclip_goto_and_stop('%s') -- invalid frame"
msgstr ""

#: libcore/MovieClip.cpp:3705
#, c-format
msgid ""
"MovieClip.loadMovie() expected 1 or 2 args, got %d - returning undefined"
msgstr ""

#: libcore/MovieClip.cpp:3717
#, c-format
msgid ""
"First argument of MovieClip.loadMovie(%s) evaluates to an empty string - "
"returning undefined"
msgstr ""

#: libcore/MovieClip.cpp:3766
#, c-format
msgid ""
"MovieClip.loadVariables() expected 1 or 2 args, got %d - returning undefined"
msgstr ""

#: libcore/MovieClip.cpp:3778
#, c-format
msgid ""
"First argument passed to MovieClip.loadVariables(%s) evaluates to an empty "
"string - returning undefined"
msgstr ""

#: libcore/MovieClip.cpp:3822
#, c-format
msgid "Can't find hitTest target %s"
msgstr ""

#: libcore/MovieClip.cpp:3862
#, c-format
msgid "hitTest() called with %u args"
msgstr ""

#: libcore/MovieClip.cpp:3882
#, c-format
msgid "createTextField called with %d args, expected 6 - returning undefined"
msgstr ""

#: libcore/MovieClip.cpp:3900
#, c-format
msgid "createTextField: negative width (%d) - reverting sign"
msgstr ""

#: libcore/MovieClip.cpp:3910
#, c-format
msgid "createTextField: negative height (%d) - reverting sign"
msgstr ""

#: libcore/MovieClip.cpp:3981
msgid "No arguments passed to MovieClip.getURL()"
msgstr ""

#: libcore/MovieClip.cpp:3990
#, c-format
msgid "MovieClip.getURL(%s): extra arguments dropped"
msgstr ""

#: libcore/MovieClip.cpp:4048
#, c-format
msgid "meth(%s): first argument doesn't cast to object"
msgstr ""

#: libcore/MovieClip.cpp:4089
#, c-format
msgid "MovieClip.getBounds(%s): invalid call, first arg must be a character"
msgstr ""

#: libcore/MovieClip.cpp:4138
msgid "MovieClip.globalToLocal() takes one arg"
msgstr ""

#: libcore/MovieClip.cpp:4147
#, c-format
msgid "MovieClip.globalToLocal(%s): first argument doesn't cast to an object"
msgstr ""

#: libcore/MovieClip.cpp:4161
#, c-format
msgid ""
"MovieClip.globalToLocal(%s): object parameter doesn't have an 'x' member"
msgstr ""

#: libcore/MovieClip.cpp:4172
#, c-format
msgid ""
"MovieClip.globalToLocal(%s): object parameter doesn't have an 'y' member"
msgstr ""

#: libcore/MovieClip.cpp:4201
msgid "MovieClip.localToGlobal() takes one arg"
msgstr ""

#: libcore/MovieClip.cpp:4210
#, c-format
msgid "MovieClip.localToGlobal(%s): first argument doesn't cast to an object"
msgstr ""

#: libcore/MovieClip.cpp:4224
#, c-format
msgid ""
"MovieClip.localToGlobal(%s): object parameter doesn't have an 'x' member"
msgstr ""

#: libcore/MovieClip.cpp:4235
#, c-format
msgid ""
"MovieClip.localToGlobal(%s): object parameter doesn't have an 'y' member"
msgstr ""

#: libcore/MovieClip.cpp:4265
#, c-format
msgid "%s.setMask() : needs an argument"
msgstr ""

#: libcore/MovieClip.cpp:4284
#, c-format
msgid "%s.setMask(%s) : first argument is not a character"
msgstr ""

#: libcore/MovieClip.cpp:4309
#, c-format
msgid "MovieClip.endFill(%s): args will be discarded"
msgstr ""

#: libcore/MovieClip.cpp:4329
msgid "MovieClip.lineTo() needs at least two arguments"
msgstr ""

#: libcore/MovieClip.cpp:4338
#, c-format
msgid "MovieClip.lineTo(%s): args after the first two will be discarded"
msgstr ""

#: libcore/MovieClip.cpp:4350
#, c-format
msgid "%s.lineTo(%s) : non-finite first argument (%s), converted to zero"
msgstr ""

#: libcore/MovieClip.cpp:4361
#, c-format
msgid "%s.lineTo(%s) : non-finite second argument (%s), converted to zero"
msgstr ""

#: libcore/MovieClip.cpp:4384
msgid "MovieClip.moveTo() takes two args"
msgstr ""

#: libcore/MovieClip.cpp:4393
#, c-format
msgid "MovieClip.moveTo(%s): args after the first two will be discarded"
msgstr ""

#: libcore/MovieClip.cpp:4405
#, c-format
msgid "%s.moveTo(%s) : non-finite first argument (%s), converted to zero"
msgstr ""

#: libcore/MovieClip.cpp:4416
#, c-format
msgid "%s.moveTo(%s) : non-finite second argument (%s), converted to zero"
msgstr ""

#: libcore/MovieClip.cpp:4424
#, c-format
msgid "%s.moveTo(%g,%g);"
msgstr ""

#: libcore/MovieClip.cpp:4469
#, c-format
msgid "MovieClip.lineStyle(%s): args after the first three will be discarded"
msgstr ""

#: libcore/MovieClip.cpp:4481
#, c-format
msgid "MovieClip.lineStyle(%s): args after the first eight will be discarded"
msgstr ""

#: libcore/MovieClip.cpp:4497
#, c-format
msgid ""
"MovieClip.lineStyle(%s): invalid joinStylevalue '%s' (valid values: %s|%s|%s)"
msgstr ""

#: libcore/MovieClip.cpp:4514
#, c-format
msgid ""
"MovieClip.lineStyle(%s): invalid capStyle value '%s' (valid values: none|"
"round|square)"
msgstr ""

#: libcore/MovieClip.cpp:4543
#, c-format
msgid ""
"MovieClip.lineStyle(%s): invalid noScale value '%s' (valid values: %s|%s|%s|%"
"s)"
msgstr ""

#: libcore/MovieClip.cpp:4594
msgid "MovieClip.curveTo() takes four args"
msgstr ""

#: libcore/MovieClip.cpp:4603
#, c-format
msgid "MovieClip.curveTo(%s): args after the first four will be discarded"
msgstr ""

#: libcore/MovieClip.cpp:4617
#, c-format
msgid "%s.curveTo(%s) : non-finite first argument (%s), converted to zero"
msgstr ""

#: libcore/MovieClip.cpp:4628
#, c-format
msgid "%s.curveTo(%s) : non-finite second argument (%s), converted to zero"
msgstr ""

#: libcore/MovieClip.cpp:4639
#, c-format
msgid "%s.curveTo(%s) : non-finite third argument (%s), converted to zero"
msgstr ""

#: libcore/MovieClip.cpp:4650
#, c-format
msgid "%s.curveTo(%s) : non-finite fourth argument (%s), converted to zero"
msgstr ""

#: libcore/MovieClip.cpp:4658
#, c-format
msgid "%s.curveTo(%g,%g,%g,%g);"
msgstr ""

#: libcore/MovieClip.cpp:4677
#, c-format
msgid "MovieClip.clear(%s): args will be discarded"
msgstr ""

#: libcore/MovieClip.cpp:4683
#, c-format
msgid "%s.clear();"
msgstr ""

#: libcore/MovieClip.cpp:4717
#, c-format
msgid "MovieClip.beginFill(%s): args after the first will be discarded"
msgstr ""

#: libcore/MovieClip.cpp:4728
#, c-format
msgid "%s.beginFill(%d,%d,%d);"
msgstr ""

#: libcore/MovieClip.cpp:4745
#, c-format
msgid "%s.beginGradientFill(%s): invalid call: 5 arguments needed"
msgstr ""

#: libcore/MovieClip.cpp:4756
#, c-format
msgid ""
"MovieClip.beginGradientFill(%s): args after the first five will be discarded"
msgstr ""

#: libcore/MovieClip.cpp:4770
#, c-format
msgid "%s.beginGradientFill(%s): first arg must be 'radial' or 'linear'"
msgstr ""

#: libcore/MovieClip.cpp:4788
#, c-format
msgid ""
"%s.beginGradientFill(%s): one or more of the  args from 2nd to 5th don't "
"cast to objects"
msgstr ""

#: libcore/MovieClip.cpp:4930
#, c-format
msgid ""
"%s.beginGradientFill(%s): colors, alphas and ratios args don't have same "
"length"
msgstr ""

#: libcore/MovieClip.cpp:4941
#, c-format
msgid ""
"%s.beginGradientFill(%s) : too many array elements for colors and ratios (%"
"d), will trim to 8"
msgstr ""

#: libcore/MovieClip.cpp:5038
#, c-format
msgid "min/max bbox values in MovieClip.startDrag(%s) swapped, fixing"
msgstr ""

#: libcore/MovieClip.cpp:5043
#, c-format
msgid "non-finite bbox values in MovieClip.startDrag(%s), took as zero"
msgstr ""

#: libcore/parser/abc_block.cpp:54 libcore/parser/abc_block.cpp:116
msgid "ABC: Finalizing trait yielded bad type for slot.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:168
msgid "ABC: Bad name for trait.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:173
msgid "ABC: Trait name must be fully qualified.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:210 libcore/parser/abc_block.cpp:233
msgid "Bad method id in trait.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:222
msgid "Bad Class id in trait.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:241
msgid "ABC: Unknown type of trait.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:336
#, c-format
msgid "Abc Version: %d.%d\n"
msgstr ""

#: libcore/parser/abc_block.cpp:428
msgid "ABC: Out of bounds string given for namespace.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:472
msgid "ABC: Out of bounds namespace for namespace set.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:543
#, c-format
msgid "Action Block: Unknown multiname type (%d).\n"
msgstr ""

#: libcore/parser/abc_block.cpp:570 libcore/parser/abc_block.cpp:580
#: libcore/parser/abc_block.cpp:590 libcore/parser/abc_block.cpp:600
msgid "Action Block: Bad index in optional argument.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:610
msgid "ABC: Bad index in optional argument, namespaces.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:632
#, c-format
msgid "ABC: Bad default value type (%X), but continuing.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:659
msgid "ABC: Out of bounds return type for method info.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:666
msgid "ABC: Unknown return type.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:678
msgid "ABC: Out of bounds parameter type in method.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:684
msgid "ABC: Unknown parameter type.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:758
msgid "ABC: Out of bounds instance name.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:764
msgid "ABC: QName required for instance.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:769
msgid "ABC: No namespace to use for storing class.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:780
msgid "Duplicate class registration.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:790
msgid "ABC: Out of bounds super type.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:802
#, c-format
msgid "ABC: Super type not found (%s), faking.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:813
msgid "ABC: Can't extend a class which is final.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:819
msgid "ABC: Can't extend an interface type.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:825
msgid "ABC: Class cannot be its own supertype.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:848
msgid "ABC: Out of bounds namespace for protected.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:867
msgid "ABC: Out of bounds name for interface.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:874
msgid "ABC: Can't implement a non-interface type.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:886
msgid "ABC: Out of bounds method for initializer.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:923
msgid "ABC: Out of bound static constructor for class.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:962
msgid "ABC: Out of bounds method for script.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:998
msgid "ABC: Out of bounds for method body.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:1003
msgid "ABC: Only one body per method.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:1024
#, c-format
msgid "ABC: Not enough method body. Wanted %d but got %d.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:1047
msgid "ABC: Out of bound type for exception.\n"
msgstr ""

#: libcore/parser/abc_block.cpp:1059
#, c-format
msgid "ABC: Unknown type of object to catch. (%s)\n"
msgstr ""

#: libcore/parser/abc_block.cpp:1078
msgid "ABC: Out of bound name for caught exception.\n"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:316
#, c-format
msgid "Add sound sample %d assigning id %d"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:346
msgid ""
"gnash::SWFMovieDefinition::read() -- file does not start with a SWF header"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:353
#, c-format
msgid "version: %d, file_length: %d"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:358
#, c-format
msgid "SWF%d is not fully supported, trying anyway but don't expect it to work"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:364
msgid ""
"SWFMovieDefinition::read(): unable to read zipped SWF data; gnash was "
"compiled without zlib support"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:369
msgid "file is compressed"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:421
#, c-format
msgid "frame size = %s, frame rate = %f, frames = %d"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:449
msgid "Could not start loading thread"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:523
#, c-format
msgid "Could not find char %d, dump is: %s"
msgstr "Merkkiä %d ei löydy, vedos on: %s"

#: libcore/parser/SWFMovieDefinition.cpp:575
msgid ""
"Hit stream-end tag, but not at the advertised SWF end; stopping for safety."
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:601
#, c-format
msgid ""
"last expected SHOWFRAME in SWF stream '%s' isn't followed by an END (%d)."
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:618
#, c-format
msgid "*** no tag loader for type %d (movie)"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:638
#, c-format
msgid "Parsing exception: %s"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:655
#, c-format
msgid "%d control tags are NOT followed by a SHOWFRAME tag"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:663
#, c-format
msgid ""
"%d frames advertised in header, but only %d SHOWFRAME tags found in stream. "
"Pretending we loaded all advertised frames"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:691
#, c-format
msgid ""
"number of SHOWFRAME tags in SWF stream '%s' (%d) exceeds the advertised "
"number in header (%d)."
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:700
#, c-format
msgid "Loaded frame %u/%u"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:809
#, c-format
msgid "looking for exported resource: frame load advancement (from %d to %d)"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:923
#, c-format
msgid "import error: could not find resource '%s' in movie '%s'"
msgstr ""

#: libcore/parser/SWFMovieDefinition.cpp:941
#, c-format
msgid ""
"importResources error: unsupported import of '%s' from movie '%s' has "
"unknown type"
msgstr ""

#: libcore/parser/shape_character_def.cpp:61
#, c-format
msgid "  read_fill_styles: count = %u"
msgstr ""

#: libcore/parser/shape_character_def.cpp:84
#, c-format
msgid "  read_line_styles: count = %d"
msgstr ""

#: libcore/parser/shape_character_def.cpp:92
#, c-format
msgid "  read_line_styles: count2 = %d"
msgstr ""

#: libcore/parser/shape_character_def.cpp:137
#, c-format
msgid "  bound rect: %s"
msgstr ""

#: libcore/parser/shape_character_def.cpp:171
#, c-format
msgid "  shape_character_def read: nfillbits = %d, nlinebits = %d"
msgstr ""

#: libcore/parser/shape_character_def.cpp:257
#, c-format
msgid "  shape_character read: moveto %d %d"
msgstr ""

#: libcore/parser/shape_character_def.cpp:283
#, c-format
msgid ""
"Invalid fill style %d in fillStyle0Change record for font tag (0 or 1 "
"valid). Set to 0."
msgstr ""

#: libcore/parser/shape_character_def.cpp:296
#, c-format
msgid ""
"Invalid fill style %d in fillStyle0Change record - %d defined. Set to 0."
msgstr ""

#: libcore/parser/shape_character_def.cpp:307
#, c-format
msgid "  shape_character read: fill0 (left) = %d"
msgstr ""

#: libcore/parser/shape_character_def.cpp:334
#, c-format
msgid ""
"Invalid fill style %d in fillStyle1Change record for font tag (0 or 1 "
"valid). Set to 0."
msgstr ""

#: libcore/parser/shape_character_def.cpp:347
#, c-format
msgid ""
"Invalid fill style %d in fillStyle1Change record - %d defined. Set to 0."
msgstr ""

#: libcore/parser/shape_character_def.cpp:357
#, c-format
msgid "  shape_character read: fill1 (right) = %d"
msgstr ""

#: libcore/parser/shape_character_def.cpp:383
#, c-format
msgid ""
"Invalid line style %d in lineStyleChange record for font tag (0 or 1 valid). "
"Set to 0."
msgstr ""

#: libcore/parser/shape_character_def.cpp:396
#, c-format
msgid "Invalid fill style %d in lineStyleChange record - %d defined. Set to 0."
msgstr ""

#: libcore/parser/shape_character_def.cpp:406
#, c-format
msgid "  shape_character_read: line = %d"
msgstr ""

#: libcore/parser/shape_character_def.cpp:422
msgid "  shape_character read: more fill styles"
msgstr ""

#: libcore/parser/shape_character_def.cpp:466
#, c-format
msgid "  shape_character read: curved edge   = %d %d - %d %d - %d %d"
msgstr ""

#: libcore/parser/shape_character_def.cpp:508
#, c-format
msgid "  shape_character_read: straight edge = %d %d - %d %d"
msgstr ""

#: libcore/parser/action_buffer.cpp:64
#, c-format
msgid "Empty action buffer starting at offset %lu"
msgstr ""

#: libcore/parser/action_buffer.cpp:101
#, c-format
msgid "Action buffer starting at offset %lu doesn't end with an END tag"
msgstr ""

#: libcore/parser/action_buffer.cpp:122
msgid "Constant pool size mismatch. This is probably a very malformed SWF"
msgstr ""

#: libcore/parser/action_buffer.cpp:148
msgid "action buffer dict length exceeded"
msgstr ""

#: libcore/parser/action_buffer.cpp:600
msgid "Native double floating point format not recognised"
msgstr ""

#: libcore/parser/BitmapMovieDefinition.cpp:62
#, c-format
msgid "Creating a shape_definition wrapping a %g x %g bitmap"
msgstr ""

#: libcore/parser/morph2_character_def.cpp:296
#, c-format
msgid "Different number of edges in start (%u) and end (%u) shapes of a morph"
msgstr ""

#: libcore/parser/filter_factory.cpp:99
#, c-format
msgid "Invalid filter type %d."
msgstr ""

#: libcore/parser/filter_factory.cpp:109
#, c-format
msgid "Filter %d could not read."
msgstr ""

#: libcore/parser/sprite_definition.cpp:46
#, c-format
msgid "Instantiating sprite_def %p"
msgstr ""

#: libcore/parser/sprite_definition.cpp:78
#, c-format
msgid "  frames = %d"
msgstr "  kehyksiä = %d"

#: libcore/parser/sprite_definition.cpp:96
msgid ""
"Hit end tag, before the advertised DEFINESPRITE end; stopping for safety."
msgstr ""

#: libcore/parser/sprite_definition.cpp:110
#, c-format
msgid "  show_frame %d/%d (sprite)"
msgstr ""

#: libcore/parser/sprite_definition.cpp:124
msgid ""
"last SHOWFRAME of a DEFINESPRITE tag isn't followed by an END. Stopping for "
"safety."
msgstr ""

#: libcore/parser/sprite_definition.cpp:144
#, c-format
msgid "*** no tag loader for type %d (sprite)"
msgstr ""

#: libcore/parser/sprite_definition.cpp:154
#, c-format
msgid ""
"%d frames advertised in header, but only %d SHOWFRAME tags found in define "
"sprite."
msgstr ""

#: libcore/parser/sprite_definition.cpp:163
msgid "  -- sprite END --"
msgstr ""

#: libcore/parser/sprite_definition.cpp:223
#, c-format
msgid "Registered class %p for sprite_def %p"
msgstr ""

#: libcore/parser/sprite_definition.cpp:225
msgid " Exported interface: "
msgstr ""

#: libcore/TextField.cpp:262
#, c-format
msgid ""
"CHECKME: removeTextField(%s): TextField depth (%d) out of the 'dynamic' zone "
"[0..1048575], won't remove"
msgstr ""

#: libcore/TextField.cpp:640
#, c-format
msgid "Attempt to set TextField._width to %g"
msgstr ""

#: libcore/TextField.cpp:648
#, c-format
msgid "Attempt to set TextField._width to a negative number: %g, toggling sign"
msgstr ""

#: libcore/TextField.cpp:702
#, c-format
msgid "Attempt to set TextField._height to %g"
msgstr ""

#: libcore/TextField.cpp:710
#, c-format
msgid ""
"Attempt to set TextField._height to a negative number: %g, toggling sign"
msgstr ""

#: libcore/TextField.cpp:845
#, c-format
msgid ""
"TextField text doesn't fit in its boundaries: width %g, margin %g - nothing "
"to align"
msgstr ""

#: libcore/TextField.cpp:903
#, c-format
msgid ""
"TextField: missing glyph for space char (needed for TAB). Make sure "
"character shapes for font %s are being exported into your SWF file."
msgstr ""

#: libcore/TextField.cpp:962
msgid "No font for TextField!"
msgstr ""

#: libcore/TextField.cpp:1103
msgid ""
"HTML in a text field is unsupported, gnash will just ignore the tags and "
"print their content"
msgstr ""

#: libcore/TextField.cpp:1141
#, c-format
msgid ""
"TextField: missing embedded glyph for char %d. Make sure character shapes "
"for font %s are being exported into your SWF file"
msgstr ""

#: libcore/TextField.cpp:1149
#, c-format
msgid ""
"TextField: missing device glyph for char %d. Maybe you don't have font '%s' "
"installed in your system."
msgstr ""

#: libcore/TextField.cpp:1332
#, c-format
msgid "VariableName: %s"
msgstr ""

#: libcore/TextField.cpp:1342
#, c-format
msgid ""
"Current environment has no target, can't bind VariableName (%s) associated "
"to text field. Gnash will try to register again on next access."
msgstr ""

#: libcore/TextField.cpp:1358
#, c-format
msgid "Variable text Path: %s, Var: %s"
msgstr ""

#: libcore/TextField.cpp:1370
#, c-format
msgid ""
"VariableName associated to text field refers to an unknown target (%s). It "
"is possible that the character will be instantiated later in the SWF stream. "
"Gnash will try to register again on next access."
msgstr ""

#: libcore/TextField.cpp:1391
msgid "registerTextVariable() called"
msgstr ""

#: libcore/TextField.cpp:1397
msgid "registerTextVariable() no-op call (already registered)"
msgstr ""

#: libcore/TextField.cpp:1405
msgid "string is empty, consider as registered"
msgstr ""

#: libcore/TextField.cpp:1415
#, c-format
msgid ""
"VariableName associated to text field (%s) refer to an unknown target. It is "
"possible that the character will be instantiated later in the SWF stream. "
"Gnash will try to register again on next access."
msgstr ""

#: libcore/TextField.cpp:1434
#, c-format
msgid "target object (%s @ %p) does have a member named %s"
msgstr ""

#: libcore/TextField.cpp:1445
#, c-format
msgid ""
"target sprite (%s @ %p) does NOT have a member named %s (no problem, we'll "
"add it with value %s)"
msgstr ""

#: libcore/TextField.cpp:1455
#, c-format
msgid ""
"target sprite (%s @ %p) does NOT have a member named %s, and we don't have "
"text defined"
msgstr ""

#: libcore/TextField.cpp:2190
#, c-format
msgid "Attempt to set length property of TextField %s"
msgstr ""

#: libcore/TextField.cpp:2216 libcore/TextField.cpp:2242
#, c-format
msgid "Attempt to set read-only %s property of TextField %s"
msgstr ""

#: libcore/TextField.cpp:2303
#, c-format
msgid "Invalid value given to TextField.type: %s"
msgstr ""

#: libcore/TextField.cpp:2421
msgid "missing arg"
msgstr ""

#: libcore/TextField.cpp:2438
msgid "first argument is not an object"
msgstr ""

#: libcore/TextField.cpp:2449
msgid "first argument is not a TextFormat"
msgstr ""

#: libcore/asobj/XML_as.cpp:89 libcore/asobj/XML_as.cpp:104
#, c-format
msgid "Creating XML data at %p"
msgstr ""

#: libcore/asobj/XML_as.cpp:542
msgid "XML data is empty"
msgstr ""

#: libcore/asobj/XML_as.cpp:594
#, c-format
msgid "%s: FIXME: onLoad Default event handler"
msgstr ""

#: libcore/asobj/XML_as.cpp:715
#, c-format
msgid "Cloned the XML object at %p"
msgstr ""

#: libcore/asobj/XML_as.cpp:725
#, c-format
msgid "First arg given to XML constructor (%s) evaluates to the empty string"
msgstr ""

#: libcore/asobj/XML_as.cpp:776
msgid "no text for element creation"
msgstr ""

#: libcore/asobj/XML_as.cpp:802
msgid "no text for text node creation"
msgstr ""

#: libcore/asobj/flash/external/ExternalInterface_as.cpp:337
#: libcore/asobj/flash/geom/Transform_as.cpp:454
#: libcore/asobj/flash/text/TextRenderer_as.cpp:123
#: libcore/asobj/flash/net/FileReference_as.cpp:233
#: libcore/asobj/flash/net/FileReferenceList_as.cpp:145
#: libcore/asobj/flash/filters/DisplacementMapFilter_as.cpp:210
msgid "arguments discarded"
msgstr ""

#: libcore/asobj/flash/geom/Rectangle_as.cpp:193
msgid "invalid arguments"
msgstr ""

#: libcore/asobj/flash/geom/Rectangle_as.cpp:212
msgid "invalid rectangle"
msgstr ""

#: libcore/asobj/flash/geom/Rectangle_as.cpp:446
#: libcore/asobj/flash/geom/Rectangle_as.cpp:535
#: libcore/asobj/flash/geom/Rectangle_as.cpp:598
#: libcore/asobj/flash/geom/Point_as.cpp:411
#, c-format
msgid "Attempt to set read-only property %s"
msgstr ""

#: libcore/asobj/flash/geom/Rectangle_as.cpp:637
msgid "arguments after the first four discarded"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:118
#: libcore/asobj/flash/geom/Point_as.cpp:194
#: libcore/asobj/flash/geom/Point_as.cpp:240
#: libcore/asobj/flash/geom/Point_as.cpp:323
#, c-format
msgid "%s: missing arguments"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:127
#: libcore/asobj/flash/geom/Point_as.cpp:250
#: libcore/asobj/flash/geom/Point_as.cpp:332
msgid "arguments after first discarded"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:136
#: libcore/asobj/flash/geom/Point_as.cpp:341
#: libcore/asobj/flash/geom/Point_as.cpp:523
msgid "first argument doesn't cast to object"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:146
msgid "first argument cast to object doesn't contain an 'x' member"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:154
msgid "first argument cast to object doesn't contain an 'y' member"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:204
#: libcore/asobj/flash/geom/Point_as.cpp:442
msgid "First arg must be an object"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:214
#: libcore/asobj/flash/geom/Point_as.cpp:452
msgid "First arg must be an instance of"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:351
msgid "first argument casted to object doesn't contain an 'x' member"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:359
msgid "first argument casted to object doesn't contain an 'y' member"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:433
msgid "arguments after first two discarded"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:513
msgid "arguments after first three discarded"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:538
msgid "second argument doesn't cast to object"
msgstr ""

#: libcore/asobj/flash/geom/Point_as.cpp:643
msgid "arguments after the first two discarded"
msgstr ""

#: libcore/asobj/Array_as.cpp:304
#, c-format
msgid "Unhandled sort flags: %d (0x%X)"
msgstr ""

#: libcore/asobj/Array_as.cpp:623
msgid "tried to pop element from back of empty array, returning undef"
msgstr ""

#: libcore/asobj/Array_as.cpp:643
msgid "tried to shift element from front of empty array, returning undef"
msgstr ""

#: libcore/asobj/Array_as.cpp:740
#, c-format
msgid "Array.slice(%u, %u) called"
msgstr ""

#: libcore/asobj/Array_as.cpp:898
#, c-format
msgid "Array(%s).splice(%s) called"
msgstr ""

#: libcore/asobj/Array_as.cpp:904
msgid "Array.splice() needs at least 1 argument, call ignored"
msgstr ""

#: libcore/asobj/Array_as.cpp:920
#, c-format
msgid "Array.splice: start:%d became %u"
msgstr ""

#: libcore/asobj/Array_as.cpp:933
#, c-format
msgid "Array.splice(%d,%d): negative length given, call ignored"
msgstr ""

#: libcore/asobj/Array_as.cpp:1013
msgid "Sort called with invalid arguments."
msgstr ""

#: libcore/asobj/Array_as.cpp:1165
msgid "SortOn called with invalid arguments."
msgstr ""

#: libcore/asobj/Array_as.cpp:1180
#, c-format
msgid "calling array push, pushing %d values onto back of array"
msgstr ""

#: libcore/asobj/Array_as.cpp:1196
#, c-format
msgid "calling array unshift, pushing %d values onto front of array"
msgstr ""

#: libcore/asobj/Array_as.cpp:1215
#, c-format
msgid "calling array pop, result:%s, new array size:%d"
msgstr ""

#: libcore/asobj/Array_as.cpp:1231
#, c-format
msgid "calling array shift, result:%s, new array size:%d"
msgstr ""

#: libcore/asobj/Array_as.cpp:1248
#, c-format
msgid "called array reverse, result:%s, new array size:%d"
msgstr ""

#: libcore/asobj/Array_as.cpp:1285
#, c-format
msgid "array_to_string called, nargs = %d, this_ptr = %p"
msgstr ""

#: libcore/asobj/Array_as.cpp:1288
#, c-format
msgid "to_string result is: %s"
msgstr ""

#: libcore/asobj/Array_as.cpp:1341
msgid ""
"More than 2 arguments to Array.slice, and I don't know what to do with "
"them.  Ignoring them"
msgstr ""

#: libcore/asobj/Array_as.cpp:1419
#, c-format
msgid "array_new called, nargs = %d"
msgstr ""

#: libcore/asobj/Array_as.cpp:1446
#, c-format
msgid "array_new setting object %p in result"
msgstr ""

#: libcore/asobj/NetConnection_as.cpp:664
#, c-format
msgid "NetConnection.call(): encoded args: %s"
msgstr ""

#: libcore/asobj/NetConnection_as.cpp:760
#, c-format
msgid "Gnash is not allowed to open this url: %s"
msgstr ""

#: libcore/asobj/NetConnection_as.cpp:764
#, c-format
msgid "Connection to movie: %s"
msgstr ""

#: libcore/asobj/NetConnection_as.cpp:880
#, c-format
msgid "Gnash is not allowed to NetConnection.connect to %s"
msgstr ""

#: libcore/asobj/NetConnection_as.cpp:1099
msgid "NetConnection.call(): needs at least one argument"
msgstr ""

#: libcore/asobj/NetConnection_as.cpp:1231
msgid "NetConnection.connect(): needs at least one argument"
msgstr ""

#: libcore/asobj/Stage_as.cpp:179
msgid "Stage.width is a read-only property!"
msgstr ""

#: libcore/asobj/Stage_as.cpp:197
msgid "Stage.height is a read-only property!"
msgstr ""

#: libcore/asobj/AsBroadcaster.cpp:209
msgid "AsBroadcaster.initialize() requires one argument, none given"
msgstr ""

#: libcore/asobj/AsBroadcaster.cpp:220
#, c-format
msgid "AsBroadcaster.initialize(%s): first arg is not an object"
msgstr ""

#: libcore/asobj/AsBroadcaster.cpp:230
#, c-format
msgid ""
"AsBroadcaster.initialize(%s): first arg is an object but doesn't cast to one "
"(dangling character ref?)"
msgstr ""

#: libcore/asobj/AsBroadcaster.cpp:259 libcore/asobj/AsBroadcaster.cpp:317
#: libcore/asobj/AsBroadcaster.cpp:398
#, c-format
msgid "%p.addListener(%s): this object has no _listeners member"
msgstr ""

#: libcore/asobj/AsBroadcaster.cpp:270 libcore/asobj/AsBroadcaster.cpp:327
#: libcore/asobj/AsBroadcaster.cpp:409
#, c-format
msgid "%p.addListener(%s): this object's _listener isn't an object: %s"
msgstr ""

#: libcore/asobj/AsBroadcaster.cpp:285
#, c-format
msgid ""
"%p.addListener(%s): this object's _listener isn't an array: %s -- will call "
"'push' on it anyway"
msgstr ""

#: libcore/asobj/AsBroadcaster.cpp:345 libcore/asobj/AsBroadcaster.cpp:422
#, c-format
msgid "%p.addListener(%s): this object's _listener isn't an array: %s"
msgstr ""

#: libcore/asobj/LocalConnection_as.cpp:251
msgid "LocalConnection.connect() expects exactly 1 argument"
msgstr ""

#: libcore/asobj/LocalConnection_as.cpp:259
msgid "LocalConnection.connect(): first argument must be a string"
msgstr ""

#: libcore/asobj/LocalConnection_as.cpp:301
#: libcore/asobj/LocalConnection_as.cpp:312
#: libcore/asobj/LocalConnection_as.cpp:324
#, c-format
msgid "LocalConnection.send(%s): requires at least 2 arguments"
msgstr ""

#: libcore/asobj/LocalConnection_as.cpp:337
#, c-format
msgid "LocalConnection.send unimplemented %s"
msgstr ""

#: libcore/asobj/NetStream_as.cpp:447
msgid "No NetConnection associated with this NetStream, won't play"
msgstr ""

#: libcore/asobj/NetStream_as.cpp:458
msgid "NetConnection is not connected. Won't play."
msgstr ""

#: libcore/asobj/NetStream_as.cpp:477
#, c-format
msgid "Connecting to movie: %s"
msgstr "Yhdistetään elokuvaan: %s"

#: libcore/asobj/NetStream_as.cpp:560
#, c-format
msgid "Gnash could not get stream '%s' from NetConnection"
msgstr ""

#: libcore/asobj/NetStream_as.cpp:571
msgid "No Media handler registered, can't parse NetStream input"
msgstr ""

#: libcore/asobj/NetStream_as.cpp:580
msgid "Unable to create parser for NetStream input"
msgstr ""

#: libcore/asobj/NetStream_as.cpp:742
msgid "Error decoding encoded video frame in NetStream input"
msgstr ""

#: libcore/asobj/NetStream_as.cpp:1641
#, c-format
msgid ""
"First argument to NetStream constructor doesn't cast to a NetConnection (%s)"
msgstr ""

#: libcore/asobj/NetStream_as.cpp:1689
msgid "NetStream_as play needs args"
msgstr ""

#: libcore/asobj/NetStream_as.cpp:1697
#, c-format
msgid "NetStream.play(%s): stream is not connected"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:179
#, c-format
msgid "Can't load from %s (security?)"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:186 libcore/asobj/LoadableObject.cpp:213
#, c-format
msgid "Loading from url: '%s'"
msgstr "Ladataan URLista: '%s'"

#: libcore/asobj/LoadableObject.cpp:206
#, c-format
msgid "Can't load variables from %s (security?)"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:351
msgid "XML.addRequestHeader: XML._customHeaders is not an object"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:372
msgid "XML.addRequestHeader requires at least one argument"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:388
msgid "XML.addRequestHeader: single argument is not an array"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:419
#, c-format
msgid "XML.addRequestHeader(%s): arguments after thesecond will be discarded"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:434
#, c-format
msgid "XML.addRequestHeader(%s): both arguments must be a string"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:488
msgid "sendAndLoad() requires at least two arguments"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:497
msgid "sendAndLoad(): invalid empty url"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:505
msgid "sendAndLoad(): invalid target (must be an XML or LoadVars object)"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:532
msgid "load() requires at least one argument"
msgstr ""

#: libcore/asobj/LoadableObject.cpp:541
msgid "load(): invalid empty url"
msgstr ""

#: libcore/asobj/Sound_as.cpp:218
#, c-format
msgid "Gnash could not open this url: %s"
msgstr ""

#: libcore/asobj/Sound_as.cpp:228
#, c-format
msgid "Unable to create parser for Sound at %s"
msgstr ""

#: libcore/asobj/Sound_as.cpp:346
msgid "Sound.start() has no effect on a streaming Sound"
msgstr ""

#: libcore/asobj/Sound_as.cpp:609
msgid "-- start sound"
msgstr ""

#: libcore/asobj/Sound_as.cpp:634
msgid "-- stop sound "
msgstr ""

#: libcore/asobj/Sound_as.cpp:652 libcore/asobj/Sound_as.cpp:717
#, c-format
msgid "import error: resource '%s' is not exported"
msgstr ""

#: libcore/asobj/Sound_as.cpp:666 libcore/asobj/Sound_as.cpp:732
msgid "sound sample is NULL (doesn't cast to sound_sample)"
msgstr ""

#: libcore/asobj/Sound_as.cpp:679
msgid "-- attach sound"
msgstr ""

#: libcore/asobj/Sound_as.cpp:684
msgid "attach sound needs one argument"
msgstr ""

#: libcore/asobj/Sound_as.cpp:694
msgid "attachSound needs a non-empty string"
msgstr ""

#: libcore/asobj/Sound_as.cpp:829
msgid "Sound.loadSound() needs at least 1 argument"
msgstr ""

#: libcore/asobj/Sound_as.cpp:845
#, c-format
msgid "Sound.loadSound(%s): arguments after first 2 discarded"
msgstr ""

#: libcore/asobj/Sound_as.cpp:876
msgid "set volume of sound needs one argument"
msgstr ""

#: libcore/asobj/Sound_as.cpp:1095
#, c-format
msgid "Could not create audio decoder: %s"
msgstr ""

#: libcore/asobj/SharedObject_as.cpp:329
#, c-format
msgid "SharedObject %s not flushed (compiled as read-only mode)"
msgstr ""

#: libcore/asobj/SharedObject_as.cpp:538
#, c-format
msgid ""
"SharedObject path %s is outside the SWF domain %s. Cannot access this object."
msgstr ""

#: libcore/asobj/SharedObject_as.cpp:551
#, c-format
msgid ""
"SharedObject path %s is not part of the SWF path %s. Cannot access this "
"object."
msgstr ""

#: libcore/asobj/SharedObject_as.cpp:781
#, c-format
msgid "Arguments to SharedObject.flush(%s) will be ignored"
msgstr ""

#: libcore/asobj/SharedObject_as.cpp:815
msgid "missing object name"
msgstr ""

#: libcore/asobj/XMLNode_as.cpp:87
#, c-format
msgid "\tCreating XMLNode data at %p"
msgstr ""

#: libcore/asobj/XMLNode_as.cpp:116
#, c-format
msgid "\tDeleting XMLNode data %s with as_value %s at %p"
msgstr ""

#: libcore/asobj/XMLNode_as.cpp:145
#, c-format
msgid "XMLNode_as %p has no children"
msgstr ""

#: libcore/asobj/XMLNode_as.cpp:182
msgid ""
"XMLNode.insertBefore(): positional parameter is not a child of this node"
msgstr ""

#: libcore/asobj/XMLNode_as.cpp:376
#, c-format
msgid ""
"Stringifying node %p with name %s, as_value %s, %u attributes and %u children"
msgstr ""

#: libcore/asobj/XMLNode_as.cpp:576
msgid "XMLNode::appendChild() needs at least one argument"
msgstr ""

#: libcore/asobj/XMLNode_as.cpp:586
msgid "First argument to XMLNode::appendChild() is not an XMLNode"
msgstr ""

#: libcore/asobj/XMLNode_as.cpp:620
#, c-format
msgid "XMLNode.insertBefore(%s) needs at least two arguments"
msgstr ""

#: libcore/asobj/XMLNode_as.cpp:632
#, c-format
msgid "First argument to XMLNode.insertBefore(%s) is not an XMLNode"
msgstr ""

#: libcore/asobj/XMLNode_as.cpp:644
#, c-format
msgid "Second argument to XMLNode.insertBefore(%s) is not an XMLNode"
msgstr ""

#: libcore/asobj/Key_as.cpp:183
msgid "Key.isDown needs one argument (the key code)"
msgstr ""

#: libcore/asobj/Global.cpp:83
#, c-format
msgid "%s needs one argument"
msgstr ""

#: libcore/asobj/Global.cpp:89
#, c-format
msgid "%s has more than one argument"
msgstr ""

#: libcore/asobj/Global.cpp:230
msgid "Extensions enabled, scanning plugin dir for load"
msgstr ""

#: libcore/asobj/Global.cpp:235
msgid "Extensions disabled"
msgstr ""

#: libcore/asobj/Global.cpp:354
#, c-format
msgid "%s needs at least one argument"
msgstr ""

#: libcore/asobj/Global.cpp:361
#, c-format
msgid "%s has more than two arguments"
msgstr ""

#: libcore/asobj/Global.cpp:466
#, c-format
msgid "%s needs at least three arguments"
msgstr ""

#: libcore/asobj/Global.cpp:472
#, c-format
msgid "%s has more than four arguments"
msgstr ""

#: libcore/asobj/Global.cpp:480
#, c-format
msgid "Invalid call to ASSetPropFlags: first argument is not an object: %s"
msgstr ""

#: libcore/asobj/Global.cpp:531
#, c-format
msgid "ASNative(%s): needs at least two arguments"
msgstr ""

#: libcore/asobj/Global.cpp:543
#, c-format
msgid "ASNative(%s): first arg must be >= 0"
msgstr ""

#: libcore/asobj/Global.cpp:550
#, c-format
msgid "ASNative(%s): second arg must be >= 0"
msgstr ""

#: libcore/asobj/Global.cpp:561
#, c-format
msgid "No ASnative(%d, %d) registered with the VM"
msgstr ""

#: libcore/asobj/String_as.cpp:576
msgid "string.slice() called with end < start"
msgstr ""

#: libcore/asobj/String_as.cpp:698
msgid "string.charCodeAt needs one argument"
msgstr ""

#: libcore/asobj/String_as.cpp:707
msgid "string.charCodeAt has more than one argument"
msgstr ""

#: libcore/asobj/String_as.cpp:785
msgid ""
"Your locale probably can't convert non-ascii characters to upper case. Using "
"a UTF8 locale may fix this."
msgstr ""

#: libcore/asobj/String_as.cpp:823
msgid ""
"Your locale probably can't convert non-ascii characters to lower case. Using "
"a UTF8 locale may fix this"
msgstr ""

#: libcore/asobj/String_as.cpp:922
msgid "%1%(%2%) needs %3% argument(s)"
msgstr ""

#: libcore/asobj/String_as.cpp:933
msgid "%1%(%2%) has more than %3% argument(s)"
msgstr ""

#: libcore/asobj/TextFormat_as.cpp:169
#, c-format
msgid "Too many args (%d) passed to TextFormat"
msgstr ""

#: libcore/asobj/Date_as.cpp:466
msgid "Date constructor called with more than 7 arguments"
msgstr ""

#: libcore/asobj/Date_as.cpp:726
msgid "Date.setTime needs one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:746
msgid "Date.setTime was called with more than one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:838
msgid "Date.setFullYear needs one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:854
#, c-format
msgid "Date.set%sFullYear was called with more than three arguments"
msgstr ""

#: libcore/asobj/Date_as.cpp:890
msgid "Date.setYear needs one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:913
msgid "Date.setYear was called with more than three arguments"
msgstr ""

#: libcore/asobj/Date_as.cpp:944
#, c-format
msgid "Date.set%sMonth needs one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:977
#, c-format
msgid "Date.set%sMonth was called with more than three arguments"
msgstr ""

#: libcore/asobj/Date_as.cpp:999
#, c-format
msgid "Date.set%sDate needs one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:1013
#, c-format
msgid "Date.set%sDate was called with more than one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:1040
#, c-format
msgid "Date.set%sHours needs one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:1059
#, c-format
msgid "Date.set%sHours was called with more than four arguments"
msgstr ""

#: libcore/asobj/Date_as.cpp:1085
#, c-format
msgid "Date.set%sMinutes needs one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:1103 libcore/asobj/Date_as.cpp:1146
#, c-format
msgid "Date.set%sMinutes was called with more than three arguments"
msgstr ""

#: libcore/asobj/Date_as.cpp:1126
#, c-format
msgid "Date.set%sSeconds needs one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:1164
#, c-format
msgid "Date.set%sMilliseconds needs one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:1181
msgid "Date.setMilliseconds was called with more than one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:1243
msgid "Date.UTC needs one argument"
msgstr ""

#: libcore/asobj/Date_as.cpp:1267
msgid "Date.UTC was called with more than 7 arguments"
msgstr ""

#: libcore/asobj/Object.cpp:161
msgid "Too many args to Object constructor"
msgstr ""

#: libcore/asobj/Object.cpp:185
#, c-format
msgid ""
"Invalid call to Object.addProperty(%s) - expected 3 arguments (<name>, "
"<getter>, <setter>)"
msgstr ""

#: libcore/asobj/Object.cpp:202
msgid "Invalid call to Object.addProperty() - empty property name"
msgstr ""

#: libcore/asobj/Object.cpp:212
msgid "Invalid call to Object.addProperty() - getter is not an AS function"
msgstr ""

#: libcore/asobj/Object.cpp:226
#, c-format
msgid ""
"Invalid call to Object.addProperty() - setter is not null and not an AS "
"function (%s)"
msgstr ""

#: libcore/asobj/Object.cpp:252
#, c-format
msgid ""
"Invalid call to Object.registerClass(%s) - expected 2 arguments (<symbol>, "
"<constructor>)"
msgstr ""

#: libcore/asobj/Object.cpp:271
#, c-format
msgid ""
"Invalid call to Object.registerClass(%s) - first argument (symbol id) "
"evaluates to empty string"
msgstr ""

#: libcore/asobj/Object.cpp:283
#, c-format
msgid ""
"Invalid call to Object.registerClass(%s) - second argument (class) is not a "
"function)"
msgstr ""

#: libcore/asobj/Object.cpp:312
#, c-format
msgid "Object.registerClass(%s, %s): can't find exported symbol"
msgstr ""

#: libcore/asobj/Object.cpp:330
#, c-format
msgid ""
"Object.registerClass(%s, %s): exported symbol is not a MovieClip symbol "
"(sprite_definition), but a %s"
msgstr ""

#: libcore/asobj/Object.cpp:354
msgid "Object.hasOwnProperty() requires one arg"
msgstr ""

#: libcore/asobj/Object.cpp:363
#, c-format
msgid "Invalid call to Object.hasOwnProperty('%s')"
msgstr ""

#: libcore/asobj/Object.cpp:380
msgid "Object.isPropertyEnumerable() requires one arg"
msgstr ""

#: libcore/asobj/Object.cpp:389
#, c-format
msgid "Invalid call to Object.isPropertyEnumerable('%s')"
msgstr ""

#: libcore/asobj/Object.cpp:411
msgid "Object.isPrototypeOf() requires one arg"
msgstr ""

#: libcore/asobj/Object.cpp:420
#, c-format
msgid "First arg to Object.isPrototypeOf(%s) is not an object"
msgstr ""

#: libcore/asobj/Object.cpp:439
#, c-format
msgid "Object.watch(%s): missing arguments"
msgstr ""

#: libcore/asobj/Object.cpp:451
#, c-format
msgid "Object.watch(%s): second argument is not a function"
msgstr ""

#: libcore/asobj/Object.cpp:477
#, c-format
msgid "Object.unwatch(%s): missing argument"
msgstr ""

#: libcore/asobj/Color_as.cpp:214
#, c-format
msgid ""
"Color.getTransform(%s) : no or unloaded sprite associated with the Color "
"object"
msgstr ""

#: libcore/asobj/Color_as.cpp:246
msgid "Color.setRGB() : missing argument"
msgstr ""

#: libcore/asobj/Color_as.cpp:298
msgid "Color.setTransform() : missing argument"
msgstr ""

#: libcore/asobj/Color_as.cpp:308
#, c-format
msgid "Color.setTransform(%s) : first argument doesn't cast to an object"
msgstr ""

#: libcore/asobj/Color_as.cpp:319
#, c-format
msgid ""
"Color.setTransform(%s) : no or unloaded sprite associated with the Color "
"object"
msgstr ""

#: libcore/asobj/Color_as.cpp:384
#, c-format
msgid ""
"new Color(%s) : first argument evaluates to character %s which is a %s (not "
"a sprite)"
msgstr ""

#: libcore/asobj/Color_as.cpp:394
#, c-format
msgid "new Color(%s) : first argument doesn't evaluate or point to a character"
msgstr ""

#: libcore/asobj/MovieClipLoader.cpp:185
#, c-format
msgid " resolved url: %s"
msgstr ""

#: libcore/asobj/MovieClipLoader.cpp:263
#, c-format
msgid "MovieClipLoader.loadClip(%s): missing arguments"
msgstr ""

#: libcore/asobj/MovieClipLoader.cpp:278
#, c-format
msgid "Could not find target %s (evaluated from %s)"
msgstr ""

#: libcore/asobj/MovieClipLoader.cpp:288
#, c-format
msgid "Target %s is not a sprite instance (%s)"
msgstr ""

#: libcore/asobj/MovieClipLoader.cpp:295
#, c-format
msgid "load clip: %s, target is: %p\n"
msgstr ""

#: libcore/asobj/MovieClipLoader.cpp:310
#, c-format
msgid "%s: %s"
msgstr ""

#: libcore/asobj/MovieClipLoader.cpp:335
msgid "MovieClipLoader.getProgress(): missing argument"
msgstr ""

#: libcore/asobj/MovieClipLoader.cpp:345
#, c-format
msgid "MovieClipLoader.getProgress(%s): first argument is not an object"
msgstr ""

#: libcore/asobj/MovieClipLoader.cpp:355
#, c-format
msgid "MovieClipLoader.getProgress(%s): first argument is not an sprite"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:149
msgid ""
"XMLSocket: fd <= 0, returning false (timer not unregistered while socket "
"disconnected?"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:172
#, c-format
msgid "The socket for fd #%d was interupted by a system call"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:177
#, c-format
msgid "XMLSocket: The socket for fd #%d was never available"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:237
msgid "XMLSocket.send(): socket not initialized"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:245
#, c-format
msgid "XMLSocket.send(): sent %d bytes, data was %s"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:259
#, c-format
msgid "XMLSocket.connect(%s) called"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:267
msgid "XMLSocket.connect() called while already connected, ignored"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:279
msgid "XMLSocket.connect(): connection failed"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:292
msgid "XMLSocket.connect(): trying to call onConnect"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:297
msgid "Setting up timer for calling XMLSocket.onData()"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:310
msgid "Timer set"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:357
#, c-format
msgid "new XMLSocket(%s) called - created object at %p"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:373
#, c-format
msgid "%s: not connected"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:393
msgid "Builtin XMLSocket.onData() needs an argument"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:402
#, c-format
msgid ""
"Builtin XMLSocket.onData() called with an argument that resolves to the "
"empty string: %s"
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:488
#, c-format
msgid "Got %d messages: "
msgstr ""

#: libcore/asobj/XMLSocket_as.cpp:493
#, c-format
msgid " Message %d: %s "
msgstr ""

#: libcore/asobj/Number_as.cpp:93
#, c-format
msgid "Number.toString(%s): radix must be in the 2..36 range (%d is invalid)"
msgstr ""

#: libcore/as_environment.cpp:65
#, c-format
msgid "get_variable(%s)"
msgstr ""

#: libcore/as_environment.cpp:90
#, c-format
msgid "find_object(\"%s\") [ varname = '%s' - current target = '%s' ] failed"
msgstr ""

#: libcore/as_environment.cpp:96
#, c-format
msgid "...but get_variable_raw(%s, <scopeStack>) succeeded (%s)!"
msgstr ""

#: libcore/as_environment.cpp:148
#, c-format
msgid "get_variable_raw(%s)"
msgstr ""

#: libcore/as_environment.cpp:154
#, c-format
msgid "Won't get invalid raw variable name: %s"
msgstr ""

#: libcore/as_environment.cpp:249
#, c-format
msgid "reference to non-existent variable '%s'"
msgstr ""

#: libcore/as_environment.cpp:334
#, c-format
msgid "Path target '%s' not found while setting %s=%s"
msgstr ""

#: libcore/as_environment.cpp:360
#, c-format
msgid "Won't set invalid raw variable name: %s"
msgstr ""

#: libcore/as_environment.cpp:561
#, c-format
msgid "find_object(%s) called"
msgstr ""

#: libcore/as_environment.cpp:567
msgid "Returning m_target (empty path)"
msgstr ""

#: libcore/as_environment.cpp:606
#, c-format
msgid "Path is '/', return the root (%p)"
msgstr ""

#: libcore/as_environment.cpp:616
#, c-format
msgid "Absolute path, start at the root (%p)"
msgstr ""

#: libcore/as_environment.cpp:623
#, c-format
msgid "Relative path, start at (%s)"
msgstr ""

#: libcore/as_environment.cpp:638
#, c-format
msgid "Path is %s, returning whatever we were up to"
msgstr ""

#: libcore/as_environment.cpp:649
#, c-format
msgid "invalid path '%s' (p=next_slash=%s)"
msgstr ""

#: libcore/as_environment.cpp:661
#, c-format
msgid "invalid path '%s' (dot not allowed after having seen a slash)"
msgstr ""

#: libcore/as_environment.cpp:682
#, c-format
msgid "No more subparts, env is %p"
msgstr ""

#: libcore/as_environment.cpp:752
#, c-format
msgid "Invoking get_path_element(%s) on object %p (%s)"
msgstr ""

#: libcore/as_environment.cpp:760
#, c-format
msgid "Path element %s not found in object %p"
msgstr ""

#: libcore/as_environment.cpp:950
#, c-format
msgid "Max stack count reached (%u)"
msgstr ""

#: libcore/impl.cpp:258
#, c-format
msgid "Can't read image file from %s"
msgstr "Kuvatiedostoa ei voi lukea kohteesta: %s"

#: libcore/impl.cpp:268
#, c-format
msgid "Parsing error: %s"
msgstr ""

#: libcore/impl.cpp:294
msgid ""
"Requested to keep from completely loading a movie, but the movie in question "
"is an image, for which we don't yet have the concept of a 'loading thread'"
msgstr ""

#: libcore/impl.cpp:307
msgid "FLV can't be loaded directly as a movie"
msgstr ""

#: libcore/impl.cpp:311
#, c-format
msgid "unknown file type (%s)"
msgstr ""

#: libcore/impl.cpp:336
#, c-format
msgid "failed to open '%s'; can't create movie"
msgstr ""

#: libcore/impl.cpp:342
#, c-format
msgid "streamProvider opener can't open '%s'"
msgstr ""

#: libcore/impl.cpp:369
msgid "Can't read file header"
msgstr ""

#: libcore/impl.cpp:413
msgid "Can't read 3 bytes after an MZ (.exe) header"
msgstr ""

#: libcore/impl.cpp:425
msgid "Could not find SWF inside an exe file"
msgstr "SWF:ää ei löydy exe-tiedoston sisältä"

#: libcore/impl.cpp:638
#, c-format
msgid "Movie %s already in library"
msgstr ""

#: libcore/impl.cpp:652
#, c-format
msgid "Couldn't load library movie '%s'"
msgstr ""

#: libcore/impl.cpp:660
#, c-format
msgid "Movie %s (SWF%d) added to library"
msgstr ""

#: libcore/impl.cpp:665
#, c-format
msgid "Movie %s (SWF%d) NOT added to library (resulted from a POST)"
msgstr ""

#: libcore/Button.cpp:492
#, c-format
msgid "Unhandled button event %s"
msgstr ""

#: libcore/Button.cpp:1104
#, c-format
msgid ""
"A button member (%s) clashes with the name of an existing character in its "
"display list.    The member will hide the character"
msgstr ""

#: libcore/Button.cpp:1193
msgid "Button state"
msgstr ""

#: libcore/as_value.cpp:390
#, c-format
msgid "to_primitive(%s, STRING) threw an ActionTypeError %s"
msgstr ""

#: libcore/as_value.cpp:827
#, c-format
msgid "to_primitive(%s, NUMBER) threw an ActionTypeError %s"
msgstr ""

#: libcore/as_value.cpp:2024
#, c-format
msgid "(%s + %s) [primitive conversion done]"
msgstr ""

#: libcore/as_value.cpp:2171
msgid "AMF0 read: premature end of input reading Number type"
msgstr ""

#: libcore/as_value.cpp:2189
msgid "AMF0 read: premature end of input reading String  type"
msgstr ""

#: libcore/as_value.cpp:2195
msgid "AMF0 read: premature end of input reading String type"
msgstr ""

#: libcore/as_value.cpp:2215 libcore/as_value.cpp:2221
msgid "AMF0 read: premature end of input reading Long String type"
msgstr ""

#: libcore/as_value.cpp:2406
msgid "AMF0 read: premature end of input reading Date type"
msgstr ""

#: libcore/as_value.cpp:2422
msgid "AMF0 read: premature end of input reading timezone from Date type"
msgstr ""

#: libcore/as_value.cpp:2464
#, c-format
msgid "serialization of as_value of type %d"
msgstr ""

#: libcore/as_value.cpp:2468
msgid "serialization of as_value of type FUNCTION"
msgstr ""

#: libcore/as_value.cpp:2488
#, c-format
msgid "writeAMF0: serializing array of %d elements as STRICT_ARRAY (index %d)"
msgstr ""

#: libcore/as_value.cpp:2510
#, c-format
msgid ""
"writeAMF0: serializing array of %d elements as ECMA_ARRAY (index %d) "
"[allowStrict:%d, isStrict:%d]"
msgstr ""

#: libcore/as_value.cpp:2523
#, c-format
msgid "writeAMF0: serializing date object with index %d and value %g"
msgstr ""

#: libcore/as_value.cpp:2541
#, c-format
msgid "writeAMF0: serializing object (or function) with index %d"
msgstr ""

#: libcore/as_value.cpp:2562
#, c-format
msgid "writeAMF0: serializing object (or function) as reference to %d"
msgstr ""

#: libcore/as_value.cpp:2579
#, c-format
msgid "writeAMF0: serializing string '%s'"
msgstr ""

#: libcore/as_value.cpp:2588
#, c-format
msgid "writeAMF0: serializing long string '%s'"
msgstr ""

#: libcore/as_value.cpp:2601
#, c-format
msgid "writeAMF0: serializing number '%g'"
msgstr ""

#: libcore/as_value.cpp:2612
msgid "writeAMF0: serializing MOVIECLIP (as undefined)"
msgstr ""

#: libcore/as_value.cpp:2622
msgid "writeAMF0: serializing null"
msgstr ""

#: libcore/as_value.cpp:2631
msgid "writeAMF0: serializing undefined"
msgstr ""

#: libcore/as_value.cpp:2641
#, c-format
msgid "writeAMF0: serializing boolean '%s'"
msgstr ""

#: utilities/flvdumper.cpp:147 utilities/rtmpget.cpp:175
#: utilities/processor.cpp:274 utilities/soldumper.cpp:98 gui/gnash.cpp:251
msgid "Verbose output turned on"
msgstr ""

#: utilities/flvdumper.cpp:165 utilities/rtmpget.cpp:208 gui/gnash.cpp:418
msgid "Error parsing command line options: "
msgstr ""

#: utilities/flvdumper.cpp:166
msgid "This is a Gnash flvdumper bug."
msgstr ""

#: utilities/flvdumper.cpp:171 utilities/rtmpget.cpp:214 gui/gnash.cpp:470
msgid "Error: no input file was specified. Exiting."
msgstr ""

#: utilities/flvdumper.cpp:293
msgid "This program dumps the internal data of an FLV video file"
msgstr ""

#: utilities/flvdumper.cpp:295
msgid "Usage: flvdumper [-h] [-m] [-a] filename"
msgstr ""

#: utilities/flvdumper.cpp:296 utilities/soldumper.cpp:193
#: utilities/dumpshm.cpp:334
msgid "-h\tHelp"
msgstr ""

#: utilities/flvdumper.cpp:297
msgid "-m\tPrint only Meta tags (default)"
msgstr ""

#: utilities/flvdumper.cpp:298
msgid "-a\tPrint all tags."
msgstr ""

#: utilities/rtmpget.cpp:203
#, c-format
msgid "Extraneous argument: %s"
msgstr ""

#: utilities/rtmpget.cpp:209 gui/gnash.cpp:420
msgid "This is a Gnash bug."
msgstr ""

#: utilities/rtmpget.cpp:502
msgid "Got an interrupt"
msgstr ""

#: utilities/rtmpget.cpp:512
msgid ""
"Copyright (C) 2008 Free Software Foundation, Inc.\n"
"Cygnal comes with NO WARRANTY, to the extent permitted by law.\n"
"You may redistribute copies of Cygnal under the terms of the GNU General\n"
"Public License.  For more information, see the file named COPYING.\n"
msgstr ""

#: utilities/rtmpget.cpp:523
msgid "rtmpget -- a file downloaded that uses RTMP."
msgstr ""

#: utilities/rtmpget.cpp:525
msgid "Usage: rtmpget [options...] <url>"
msgstr ""

#: utilities/rtmpget.cpp:526
msgid "  -h,  --help          Print this help and exit"
msgstr ""

#: utilities/rtmpget.cpp:527
msgid "  -V,  --version       Print version information and exit"
msgstr ""

#: utilities/rtmpget.cpp:528
msgid "  -v,  --verbose       Output verbose debug info"
msgstr "  -v,  --verbose       Tuloste enemmän virheenjäljitystietoja"

#: utilities/rtmpget.cpp:529
msgid "  -n,  --netdebug      Verbose networking debug info"
msgstr ""

#: utilities/rtmpget.cpp:530
msgid "  -d,  --dump          display init file to terminal"
msgstr ""

#: utilities/processor.cpp:146
#, c-format
msgid "fs_callback(%p): %s %s"
msgstr ""

#: utilities/processor.cpp:158
#, c-format
msgid "eventCallback: %s %s"
msgstr ""

#: utilities/processor.cpp:232
#, c-format
msgid "Gnash gprocessor version: %s, Gnash version: %s\n"
msgstr "Gnash gprocessor -versio: %s, Gnash-versio: %s\n"

#: utilities/processor.cpp:280 gui/gnash.cpp:322
msgid "Setting debugger ON"
msgstr ""

#: utilities/processor.cpp:282
msgid "The debugger has been disabled at configuration time"
msgstr ""

#: utilities/processor.cpp:288
msgid "Verbose actions disabled at compile time"
msgstr ""

#: utilities/processor.cpp:295
msgid "Verbose parsing disabled at compile time"
msgstr ""

#: utilities/processor.cpp:425 utilities/processor.cpp:428 gui/Player.cpp:256
#: gui/Player.cpp:280
#, c-format
msgid "%s appended to local sandboxes"
msgstr ""

#: utilities/processor.cpp:592
#, c-format
msgid ""
"gprocessor -- an SWF preprocessor for Gnash.\n"
"\n"
"usage: %s [options] <file>\n"
"\n"
"Preprocesses the given SWF movie files.  Optionally write preprocessed "
"shape\n"
"and font data to cache files, so the associated SWF files can be loaded\n"
"faster.\n"
"\n"
"%s%s%s%s"
msgstr ""

#: utilities/processor.cpp:601
msgid ""
"options:\n"
"\n"
"  --help(-h)  Print this info.\n"
"  --version   Print the version numbers.\n"
"  -w          Write a .gsc file with preprocessed info, for each input "
"file.\n"
"  -v          Be verbose; i.e. print log messages to stdout\n"
msgstr ""

#: utilities/processor.cpp:609
msgid "  -vp         Be verbose about movie parsing\n"
msgstr ""

#: utilities/processor.cpp:614
msgid "  -va         Be verbose about ActionScript\n"
msgstr ""

#: utilities/processor.cpp:619
msgid ""
"  -d [<ms>]\n"
"              Milliseconds delay between advances (0 by default).\n"
"              If '-1' the delay will be computed from the FPS.\n"
"  -r <times>  Allow the given number of complete runs.\n"
"              Keep looping undefinitely if set to 0.\n"
"              Default is 1 (end as soon as the last frame is reached).\n"
"  -f <frames>  \n"
"              Allow the given number of frame advancements.\n"
"              Keep advancing untill any other stop condition\n"
"              is encountered if set to 0 (default).\n"
msgstr ""

#: utilities/soldumper.cpp:83
#, c-format
msgid "Gnash soldumper version: %s, Gnash version: %s\n"
msgstr "Gnash soldumper -versio: %s, Gnash-versio: %s\n"

#: utilities/soldumper.cpp:102
msgid "forcing local directory access only"
msgstr ""

#: utilities/soldumper.cpp:107
msgid "List .sol files in the default directory"
msgstr ""

#: utilities/soldumper.cpp:190
msgid "This program dumps the internal data of a .sol file"
msgstr ""

#: utilities/soldumper.cpp:192
msgid "Usage: soldumper [h] filename"
msgstr ""

#: utilities/soldumper.cpp:194
msgid "-f\tForce local directory access"
msgstr ""

#: utilities/soldumper.cpp:195
msgid "-l\tList all .sol files in default dir"
msgstr ""

#: utilities/dumpshm.cpp:125
#, c-format
msgid "Gnash dumpshm version: %s, Gnash version: %s\n"
msgstr "Gnash dumpshm -versio: %s, Gnash-versio: %s\n"

#: utilities/dumpshm.cpp:253
#, c-format
msgid "The data is: 0x%s"
msgstr ""

#: utilities/dumpshm.cpp:331
msgid "This program dumps the internal data of a shared memory segment"
msgstr ""

#: utilities/dumpshm.cpp:333
msgid "Usage: dumpmem [hdsanlif] filename"
msgstr ""

#: utilities/dumpshm.cpp:335
msgid "-i\tList segments"
msgstr ""

#: utilities/dumpshm.cpp:336
msgid "-r\tDump SYSV segments"
msgstr ""

#: utilities/dumpshm.cpp:337
msgid "-c\tDump SYSV segments to disk"
msgstr ""

#: utilities/dumpshm.cpp:338
msgid "-v\tVerbose output"
msgstr ""

#: utilities/dumpshm.cpp:350
msgid "\tBase address of this segment: "
msgstr ""

#: utilities/dumpshm.cpp:352
msgid "\tFilespec: "
msgstr ""

#: utilities/dumpshm.cpp:353
msgid "\t# Bytes allocated: "
msgstr ""

#: utilities/dumpshm.cpp:354
msgid "\tTotal # of bytes: "
msgstr ""

#: plugin/win32/plugin.cpp:584
#, c-format
msgid "FSCommand_callback(%p): %s %s"
msgstr ""

#: gui/fb.cpp:191
msgid "Closing framebuffer device"
msgstr "Suljetaan kuvapuskurilaite"

#: gui/fb.cpp:199
msgid "Free'ing offscreen buffer"
msgstr "Vapautetaan näytön ulkopuolinen puskuri"

#: gui/fb.cpp:213
msgid "LUT8: Setting up colormap"
msgstr "LUT8: Asetetaan värikarttaa"

#: gui/fb.cpp:235
#, c-format
msgid "LUT8: Error setting colormap: %s"
msgstr ""

#: gui/fb.cpp:251
msgid "You won't have any pointing input device, sorry."
msgstr ""

#: gui/fb.cpp:256
msgid "You won't have any keyboard input device, sorry."
msgstr ""

#: gui/fb.cpp:269
#, c-format
msgid "Framebuffer device uses %d bytes of memory."
msgstr "Kuvapuskurilaite käyttää %d tavua muistia."

#: gui/fb.cpp:271
#, c-format
msgid "Video mode: %dx%d with %d bits per pixel."
msgstr "Näyttötila: %dx%d, %d bittiä pikseliä kohden."

#: gui/fb.cpp:311
msgid "Double buffering enabled"
msgstr "Kaksoispuskurointi käytössä"

#: gui/fb.cpp:314
msgid "Double buffering disabled"
msgstr "Kaksoispuskurointi pois käytöstä"

#: gui/fb.cpp:323
#, c-format
msgid "red channel: %d / %d"
msgstr "punainen kanava: %d / %d"

#: gui/fb.cpp:325
#, c-format
msgid "green channel: %d / %d"
msgstr "vihreä kanava: %d / %d"

#: gui/fb.cpp:327
#, c-format
msgid "blue channel: %d / %d"
msgstr "sininen kanava: %d / %d"

#: gui/fb.cpp:329
#, c-format
msgid "Total bits per pixel: %d"
msgstr "Yhteensä bittejä pikseliä kohden: %d"

#: gui/fb.cpp:477
msgid "This GUI does not yet support menus"
msgstr "Tämä käyttöliittymä ei vielä tue valikoita"

#: gui/fb.cpp:482
msgid "This GUI does not yet support a mouse pointer"
msgstr "Tämä käyttöliittymä ei vielä tue hiiren osoitinta"

#: gui/fb.cpp:568
msgid "WARNING: Could not detect controlling TTY"
msgstr ""

#: gui/fb.cpp:578 gui/fb.cpp:613 gui/fb.cpp:644 gui/fb.cpp:694
#, c-format
msgid "WARNING: Could not open %s"
msgstr "VAROITUS: Ei voi avata %s"

#: gui/fb.cpp:583
msgid "WARNING: Could not get current VT state"
msgstr ""

#: gui/fb.cpp:589
#, c-format
msgid "Original TTY NO = %d"
msgstr "Alkuperäinen TTY-numero = %d"

#: gui/fb.cpp:595
msgid "WARNING: Could not request a new VT"
msgstr ""

#: gui/fb.cpp:600
#, c-format
msgid "Own TTY NO = %d"
msgstr "Oma TTY-nro = %d"

#: gui/fb.cpp:607 gui/fb.cpp:638 gui/fb.cpp:688
#, c-format
msgid "WARNING: Could not find device for VT number %d"
msgstr ""

#: gui/fb.cpp:618 gui/fb.cpp:699
#, c-format
msgid "WARNING: Could not activate VT number %d"
msgstr ""

#: gui/fb.cpp:624 gui/fb.cpp:705
#, c-format
msgid "WARNING: Error waiting for VT %d becoming active"
msgstr ""

#: gui/fb.cpp:662
msgid "WARNING: Could not query current keyboard mode on VT"
msgstr ""

#: gui/fb.cpp:666
msgid "WARNING: Could not switch to graphics mode on new VT"
msgstr ""

#: gui/fb.cpp:671
#, c-format
msgid "VT %d ready"
msgstr "VT %d valmis"

#: gui/fb.cpp:684
msgid "Restoring terminal..."
msgstr "Palautetaan päätettä..."

#: gui/fb.cpp:715
msgid "WARNING: Could not restore keyboard mode"
msgstr "VAROITUS: Näppäimistötilaa ei voi palauttaa"

#: gui/fb.cpp:759
#, c-format
msgid "mouse_command: discarded %d bytes from input buffer"
msgstr ""

#: gui/fb.cpp:792 gui/fb.cpp:922
msgid "Could not open "
msgstr "Ei voi avata "

#: gui/fb.cpp:810
msgid "Mouse reset failed"
msgstr "Hiiren alustus epäonnistui"

#: gui/fb.cpp:818
msgid "WARNING: Could not detect mouse device ID"
msgstr ""

#: gui/fb.cpp:822
#, c-format
msgid "WARNING: Non-standard mouse device ID %d"
msgstr ""

#: gui/fb.cpp:827
msgid "Could not activate Data Reporting mode for mouse"
msgstr ""

#: gui/fb.cpp:834
msgid "Mouse enabled."
msgstr "Hiiri käytössä"

#: gui/fb.cpp:881
#, c-format
msgid "x/y %d/%d btn %d"
msgstr "x/y %d/%d pnk %d"

#: gui/fb.cpp:940
msgid "Touchpad enabled."
msgstr "Kosketuslevy käytössä."

#: gui/fb.cpp:1028 gui/fb.cpp:1247
#, c-format
msgid "Could not open %s: %s"
msgstr "Ei voi avata %s: %s"

#: gui/fb.cpp:1032
#, c-format
msgid "Pointing device %s open"
msgstr "Osoitinlaite %s auki"

#: gui/fb.cpp:1035
#, c-format
msgid "Could not set non-blocking mode for pointing device: %s"
msgstr ""

#: gui/fb.cpp:1118
msgid "WARNING: Error parsing calibration data!"
msgstr ""

#: gui/fb.cpp:1120
#, c-format
msgid "Using touchscreen calibration data: %.0f / %.0f / %.0f / %.0f"
msgstr "Käytetään kosketusnäytön kalibrointidataa: %.0f / %.0f / %.0f / %.0f"

#: gui/fb.cpp:1124
msgid ""
"WARNING: No touchscreen calibration settings found. The mouse pointer most "
"probably won't work precisely. Set TSCALIB environment variable with correct "
"values for better results"
msgstr ""

#: gui/fb.cpp:1251
#, c-format
msgid "Keyboard device %s open"
msgstr "Näppäimistölaite %s auki"

#: gui/fb.cpp:1254
#, c-format
msgid "Could not set non-blocking mode for keyboard device: %s"
msgstr ""

#: gui/gtk.cpp:185
msgid "Created XEmbedded window"
msgstr "Luotiin XEmbedded-ikkuna"

#: gui/gtk.cpp:193
msgid "Created top level window"
msgstr "Luotiin päätason ikkuna"

#: gui/gtk.cpp:206
msgid "Click to play"
msgstr "Napsauta toistaaksesi"

#: gui/gtk.cpp:259
msgid "LIRC daemon not running"
msgstr "LIRC-palvelu ei käynnissä"

#: gui/gtk.cpp:664
msgid "Sound"
msgstr "Ääni"

#: gui/gtk.cpp:672 gui/kde.cpp:411 gui/Kde4Gui.cpp:502
msgid "Quit Gnash"
msgstr "Lopeta Gnash"

#: gui/gtk.cpp:1181 gui/Kde4Gui.cpp:763
msgid "Gnash preferences"
msgstr "Gnash-asetukset"

#: gui/gtk.cpp:1216
msgid "_Network"
msgstr "_Verkko"

#: gui/gtk.cpp:1220 gui/Kde4Gui.cpp:886
msgid "<b>Network preferences</b>"
msgstr "<b>Verkkoasetukset</b>"

#: gui/gtk.cpp:1228
msgid "Network timeout in seconds (0 for no timeout):"
msgstr "Verkon aikakatkaisu sekunneissa (0 - ei aikakatkaisua):"

#: gui/gtk.cpp:1247
msgid "_Logging"
msgstr "_Lokiinkirjaus"

#: gui/gtk.cpp:1252 gui/Kde4Gui.cpp:781
msgid "<b>Logging options</b>"
msgstr "<b>Lokivalinnat</b>"

#: gui/gtk.cpp:1256
msgid "Verbosity level:"
msgstr "Tulosteen määrä:"

#: gui/gtk.cpp:1269
msgid "Log to _file"
msgstr "Loki _tiedostoon"

#: gui/gtk.cpp:1275
msgid "Logfile name:"
msgstr "Lokitiedoston nimi:"

#: gui/gtk.cpp:1288
msgid "Log _parser output"
msgstr "_Jäsentimen ulostulo lokiin"

#: gui/gtk.cpp:1296
msgid "Log SWF _actions"
msgstr "SWF-_toiminnot lokiin"

#: gui/gtk.cpp:1304
msgid "Log malformed SWF _errors"
msgstr "Väärin muodostetun SWF:n virh_eet lokiin"

#: gui/gtk.cpp:1312
msgid "Log ActionScript _coding errors"
msgstr "ActionScript-_ohjelmavirheet lokiin"

#: gui/gtk.cpp:1320
msgid "Log _Local Connection activity"
msgstr "Paika_llisyhteystapahtumat lokiin"

#: gui/gtk.cpp:1329
msgid "Enable _debugger"
msgstr "Ota käyttöön _virheenjäljitin"

#: gui/gtk.cpp:1347
msgid "_Security"
msgstr "_Turvallisuus"

#: gui/gtk.cpp:1354 gui/Kde4Gui.cpp:838
msgid "<b>Network connections</b>"
msgstr "<b>Verkkoyhteydet</b>"

#: gui/gtk.cpp:1360
msgid "Connect only to local _host"
msgstr "Yhdistä vain paikall_iseen isäntäkoneeseen"

#: gui/gtk.cpp:1367
msgid "Connect only to local _domain"
msgstr "Yhdistä vain paikalliseen _verkkoalueeseen"

#: gui/gtk.cpp:1374
msgid "Disable SSL _verification"
msgstr "Ota SSL-_tarkistus pois käytöstä"

#: gui/gtk.cpp:1381
msgid "_Whitelist"
msgstr "_Sallittujen luettelo"

#: gui/gtk.cpp:1390
msgid "_Blacklist"
msgstr "_Estettyjen luettelo"

#: gui/gtk.cpp:1399 gui/Kde4Gui.cpp:856
msgid "<b>Privacy</b>"
msgstr "<b>Yksityisyys</b>"

#: gui/gtk.cpp:1403 gui/Kde4Gui.cpp:859
msgid "Shared objects directory:"
msgstr "Jaettujen objektien hakemisto:"

#: gui/gtk.cpp:1415
msgid "Do _not write Shared Object files"
msgstr "Älä _kirjoita jaettujen objektien tiedostoja"

#: gui/gtk.cpp:1422
msgid "Only _access local Shared Object files"
msgstr "Saanti v_ain paikallisiin jaettujen objektien tiedostoihin"

#: gui/gtk.cpp:1429
msgid "Disable Local _Connection object"
msgstr "Ota paikallis_yhteyden objekti pois käytöstä"

#: gui/gtk.cpp:1443
msgid "_Media"
msgstr "_Media"

#: gui/gtk.cpp:1449 gui/Kde4Gui.cpp:904
msgid "<b>Sound</b>"
msgstr "<b>Ääni</b>"

#: gui/gtk.cpp:1454
msgid "Use sound _handler"
msgstr "Käytä äänen_käsittelijää"

#: gui/gtk.cpp:1462
msgid "<b>Media Streams</b>"
msgstr "<b>Mediavirrat</b>"

#: gui/gtk.cpp:1468 gui/Kde4Gui.cpp:911
msgid "Save media streams to disk"
msgstr "Tallenna mediavirrat levylle"

#: gui/gtk.cpp:1477 gui/Kde4Gui.cpp:917
msgid "Save dynamically loaded media to disk"
msgstr "Tallenna dynaamisesti ladatut mediat levylle"

#: gui/gtk.cpp:1485 gui/Kde4Gui.cpp:921
msgid "Saved media directory:"
msgstr "Medioiden tallennuksen hakemisto:"

#: gui/gtk.cpp:1505
msgid "_Player"
msgstr "_Soitin"

#: gui/gtk.cpp:1511 gui/Kde4Gui.cpp:933
msgid "<b>Player description</b>"
msgstr "<b>Soittimen kuvaus</b>"

#: gui/gtk.cpp:1519 gui/Kde4Gui.cpp:936
msgid "Player version:"
msgstr "Soittimen versio:"

#: gui/gtk.cpp:1535 gui/Kde4Gui.cpp:942
msgid "Operating system:"
msgstr "Käyttöjärjestelmä:"

#: gui/gtk.cpp:1545
msgid "<i>If blank, Gnash will detect your OS</i>"
msgstr "<i>Jos tyhjä, Gnash tunnistaa käyttöjärjestelmän</i>"

#: gui/gtk.cpp:1555 gui/Kde4Gui.cpp:953
msgid "URL opener:"
msgstr "URL-avaaja:"

#: gui/gtk.cpp:1567 gui/Kde4Gui.cpp:960
msgid "<b>Performance</b>"
msgstr "<b>Suorituskyky</b>"

#: gui/gtk.cpp:1581 gui/Kde4Gui.cpp:963
msgid "Max size of movie library:"
msgstr "Elokuvakirjaston suurin koko:"

#: gui/gtk.cpp:1593
msgid "Start _Gnash in pause mode"
msgstr "Käynnistä _Gnash pysäytetyssä tilassa"

#: gui/gtk.cpp:1617 gui/Kde4Gui.cpp:393
msgid "Movie properties"
msgstr "Elokuvan ominaisuudet"

#: gui/gtk.cpp:1691 gui/Kde4Gui.cpp:412
msgid "Variable"
msgstr "Muuttuja"

#: gui/gtk.cpp:1704 gui/Kde4Gui.cpp:413
msgid "Value"
msgstr "Arvo"

#: gui/gtk.cpp:1752
msgid "Gnash is the GNU SWF Player based on GameSWF."
msgstr "Gnash on GNU-projektin SWF-soitin, joka perustuu GameSWF:ään."

#: gui/gtk.cpp:1754
msgid ""
"\n"
"Renderer: "
msgstr ""
"\n"
"Piirto: "

#: gui/gtk.cpp:1756
msgid ""
"\n"
"GUI: "
msgstr ""
"\n"
"Käyttöliittymä: "

#: gui/gtk.cpp:1758
msgid ""
"\n"
"Media: "
msgstr ""
"\n"
"Media: "

#: gui/gtk.cpp:1761
msgid ""
"\n"
"Built against gstreamer version: "
msgstr ""
"\n"
"Rakennettu gstreamer-versiolle: "

#: gui/gtk.cpp:1768
msgid ""
"\n"
"Built against ffmpeg version: "
msgstr ""
"\n"
"Rakennettu ffmpeg-versiolle: "

#: gui/gtk.cpp:1791 gui/gtk.cpp:1828
msgid "translator-credits"
msgstr "Timo Jyrinki <timo.jyrinki@iki.fi>, 2008-2009."

#: gui/gtk.cpp:1820
msgid "Gnash"
msgstr "Gnash"

#: gui/gtk.cpp:1863
msgid "_File"
msgstr "_Tiedosto"

#: gui/gtk.cpp:1917
msgid "_Edit"
msgstr "_Muokkaa"

#: gui/gtk.cpp:1937
msgid "_Help"
msgstr "O_hje"

#: gui/gtk.cpp:1957
msgid "_View"
msgstr "_Näytä"

#: gui/gtk.cpp:1965
msgid "Redraw"
msgstr "Piirrä uudelleen"

#: gui/gtk.cpp:1975 gui/gtk.cpp:1980
msgid "Toggle fullscreen"
msgstr "Kytke kokonäyttötila"

#: gui/gtk.cpp:1989
msgid "Show updated ranges"
msgstr "Näytä päivitetyt vaihteluvälit"

#: gui/gtk.cpp:2008
msgid "Movie _Control"
msgstr "Elokuvan _hallinta"

#: gui/gtk.cpp:2019 gui/Kde4Gui.cpp:513
msgid "Play"
msgstr "Toista"

#: gui/gtk.cpp:2030 gui/Kde4Gui.cpp:517
msgid "Pause"
msgstr "Tauko"

#: gui/gtk.cpp:2040 gui/Kde4Gui.cpp:521
msgid "Stop"
msgstr "Pysäytä"

#: gui/gtk.cpp:2052 gui/kde.cpp:403
msgid "Restart Movie"
msgstr "Käynnistä elokuva uudelleen"

#: gui/gtk.cpp:2128 gui/gtk.cpp:2129
#, c-format
msgid "Couldn't find pixmap file: %s"
msgstr "pixmap-tiedostoa ei löydy: %s"

#: gui/gtk.cpp:2135
#, c-format
msgid "Failed to load pixbuf file: %s: %s"
msgstr "pixbuf-tiedoston lataus epäonnistui: %s: %s"

#: gui/gtk.cpp:2423
#, c-format
msgid ""
"Attempting to open file %s.\n"
"NOTE: the file open functionality is not yet implemented!"
msgstr ""
"Yritetään avata tiedostoa %s.\n"
"Huom: tiedoston avaustoiminto ei ole vielä toteutettu."

#: gui/gtk.cpp:2440 gui/gtk.cpp:2453
msgid "Open file"
msgstr "Avaa tiedosto"

#: gui/gnash.cpp:86
msgid "Usage: gnash [options] movie_file.swf"
msgstr "Käyttö: gnash [valitsimet] elokuvatiedosto.swf"

#: gui/gnash.cpp:88
msgid "Plays a SWF (Shockwave Flash) movie"
msgstr "Toistaa SWF (Shockwave Flash) -elokuvia"

#: gui/gnash.cpp:89
msgid "Options:"
msgstr "Valitsimet:"

#: gui/gnash.cpp:91
msgid "  -h,  --help              Print this help and exit"
msgstr "  -h,  --help              Näytä tämä ohje ja poistu"

#: gui/gnash.cpp:92
msgid "  -V,  --version           Print version information and exit"
msgstr "  -V,  --version           Näytä versiotiedot ja poistu"

#: gui/gnash.cpp:93
msgid "  -s,  --scale <factor>    Scale the movie by the specified factor"
msgstr "  -s,  --scale <kerroin>   Skaalaa elokuva valitulla kertoimella"

#: gui/gnash.cpp:94
msgid ""
"  -c                       Produce a core file instead of letting SDL trap it"
msgstr ""
"  -c                       Tuota core-tiedosto sen sijaan että SDL pyydystää "
"sen"

#: gui/gnash.cpp:95
msgid "  -d,  --delay num         Number of milliseconds to delay in main loop"
msgstr ""
"  -d,  --delay num         Pääsilmukassa vietettävä viive millisekunneissa"

#: gui/gnash.cpp:96
msgid "  -v,  --verbose           Produce verbose output"
msgstr "  -v,  --verbose           Tuota enemmän tulostetta"

#: gui/gnash.cpp:98
msgid "  -va                      Be (very) verbose about action execution"
msgstr ""
"  -va                      Tulosta enemmän elokuvan toimintojen "
"toteuttamisesta"

#: gui/gnash.cpp:101
msgid "  -vp                      Be (very) verbose about parsing"
msgstr "  -vp                      Tulosta enemmän elokuvan jäsentämisestä"

#: gui/gnash.cpp:103
msgid "  -A <file>                Audio dump file (wave format)"
msgstr "  -A <file>                Äänentallennustiedosto (wav-muoto)"

#: gui/gnash.cpp:104
msgid "  -D <file>                Video dump file (only valid with dump-gnash)"
msgstr "  -D <file>                Videontallennustiedosto (vain dump-gnash)"

#: gui/gnash.cpp:105
msgid "  -x,  --xid <ID>          X11 Window ID for display"
msgstr "  -x,  --xid <ID>          X11-ikkunatunniste näyttämistä varten"

#: gui/gnash.cpp:106
msgid "  -w,  --writelog          Produce the disk based debug log"
msgstr "  -w,  --writelog          Tuota virheenjäljityslokia levylle"

#: gui/gnash.cpp:107
msgid "  -j,  --width <width>     Set window width"
msgstr "  -j,  --width <leveys>    Aseta ikkunan leveys"

#: gui/gnash.cpp:108
msgid "  -k,  --height <height>   Set window height"
msgstr "  -k,  --height <korkeus>  Aseta ikkunan korkeus"

#: gui/gnash.cpp:109
msgid "  -1,  --once              Exit when/if movie reaches the last frame"
msgstr ""
"  -1,  --once              Poistu jos/kun elokuva etenee viimeiseen kehykseen"

#: gui/gnash.cpp:110
msgid "  -g,  --debugger          Turn on the SWF debugger"
msgstr "  -g,  --debugger          Ota SWF-virheenjäljitin käyttöön"

#: gui/gnash.cpp:111
msgid "  -r,  --render-mode <0|1|2|3>"
msgstr "  -r,  --render-mode <0|1|2|3>"

#: gui/gnash.cpp:112
msgid "                           0 disable rendering and sound"
msgstr "                           0 poista piirto ja ääni käytöstä"

#: gui/gnash.cpp:113
msgid "                           1 enable rendering, disable sound"
msgstr "                           1 käytä piirtoa, älä ääntä"

#: gui/gnash.cpp:114
msgid "                           2 enable sound, disable rendering"
msgstr "                           2 käytä ääntä, älä piirtoa"

#: gui/gnash.cpp:115
msgid "                           3 enable rendering and sound (default)"
msgstr "                           3 ota piirto ja ääni käyttöön (oletus)"

#: gui/gnash.cpp:116
msgid "  -t,  --timeout <sec>     Exit after the specified number of seconds"
msgstr "  -t,  --timeout <sek>     Poistu määritellyn sekuntimäärän jälkeen"

#: gui/gnash.cpp:117
msgid "  -u,  --real-url <url>    Set \"real\" URL of the movie"
msgstr "  -u,  --real-url <url>    Aseta elokuvan ”todellinen” URL"

#: gui/gnash.cpp:118
msgid "  -U,  --base-url <url>    Set \"base\" URL for resolving relative URLs"
msgstr ""

#: gui/gnash.cpp:119
msgid "  -P,  --param <param>     Set parameter (e.g. \"FlashVars=A=1&b=2\")"
msgstr ""

#: gui/gnash.cpp:120
msgid ""
"  -F,  --fd <fd>           Filedescriptor to use for external communications"
msgstr ""

#: gui/gnash.cpp:122
msgid "  -f,  --debug-fps num     Print FPS every num seconds (float)."
msgstr ""
"  -f,  --debug-fps lkm     Tulosta kehysten määrä sekunnissa lkm sekunnin "
"välein."

#: gui/gnash.cpp:125
msgid "  --max-advances num       Exit after specified number of advances"
msgstr ""

#: gui/gnash.cpp:126
msgid "  --fullscreen             Start in fullscreen mode"
msgstr "  --fullscreen             Käynnistä kokonäyttötilassa"

#: gui/gnash.cpp:127
msgid "  --hide-menubar           Start without displaying the menu bar "
msgstr "  --hide-menubar           Käynnistä näyttämättä valikkopalkkia "

#: gui/gnash.cpp:129
msgid "Keys:"
msgstr "Näppäimet:"

#: gui/gnash.cpp:131
msgid "  CTRL-Q, CTRL-W           Quit/Exit"
msgstr "  CTRL-Q, CTRL-W           Poistu/lopeta"

#: gui/gnash.cpp:132
msgid "  CTRL-P                   Toggle Pause"
msgstr "  CTRL-P                   Tauko"

#: gui/gnash.cpp:133
msgid "  CTRL-R                   Restart the movie"
msgstr "  CTRL-R                   Käynnistä elokuva uudelleen"

#: gui/gnash.cpp:136
msgid "  CTRL-[ or kp-   Step back one frame"
msgstr "  CTRL-[ tai kp-  Yksi kehys taaksepäin"

#: gui/gnash.cpp:137
msgid "  CTRL-] or kp+   Step forward one frame"
msgstr "  CTRL-] tai kp-  Yksi kehys eteenpäin"

#: gui/gnash.cpp:140
msgid "  CTRL-L                   Force immediate redraw"
msgstr "  CTRL-L                   Pakota välitön uudelleenpiirto"

#: gui/gnash.cpp:155
msgid ""
"Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\n"
"Gnash comes with NO WARRANTY, to the extent permitted by law.\n"
"You may redistribute copies of Gnash under the terms of the GNU General\n"
"Public License.  For more information, see the file named COPYING.\n"
msgstr ""

#: gui/gnash.cpp:166
msgid "Build options "
msgstr "Rakennusvalinnat "

#: gui/gnash.cpp:167
msgid "   Target: "
msgstr "   Kohde: "

#: gui/gnash.cpp:169
msgid "   Renderer: "
msgstr "   Piirto: "

#: gui/gnash.cpp:170
msgid " - GUI: "
msgstr " - GUI: "

#: gui/gnash.cpp:171
msgid " - Media handler: "
msgstr " - Mediakäsittelijä: "

#: gui/gnash.cpp:173
msgid "   Configured with: "
msgstr "   Tehdyt asetukset: "

#: gui/gnash.cpp:174
msgid "   CXXFLAGS: "
msgstr "   CXXFLAGS: "

#: gui/gnash.cpp:177
msgid "Built against ffmpeg version: "
msgstr "Rakennettu ffmpeg-versiolle: "

#: gui/gnash.cpp:180
msgid "Built against gstreamer version: "
msgstr "Rakennettu gstreamer-versiolle: "

#: gui/gnash.cpp:184
msgid "Linked against gstreamer version: "
msgstr "Linkitetty gstreamer-versiolle: "

#: gui/gnash.cpp:259
msgid "Logging to disk enabled"
msgstr "Levylle lokin kirjoittaminen otettu käyttöön"

#: gui/gnash.cpp:265
msgid "No verbose actions; disabled at compile time"
msgstr "Ei suuren tulostemäärän toimintoja: poistettu käytöstä käännettäessä"

#: gui/gnash.cpp:272
msgid "No verbose parsing; disabled at compile time"
msgstr "Ei suuren tulostemäärän jäsennystä; poistettu käytöstä käännettäessä"

#: gui/gnash.cpp:294
#, c-format
msgid "Setting root URL to %s"
msgstr "Asetetaan juuri-URL:ksi %s"

#: gui/gnash.cpp:299
#, c-format
msgid "Setting base URL to %s"
msgstr "Asetetaan URL perusosaksi %s"

#: gui/gnash.cpp:307
#, c-format
msgid "Invalid host communication filedescriptor %d\n"
msgstr "Epäkelpo isäntäviestinnän tiedostokuvain %d\n"

#: gui/gnash.cpp:317
#, c-format
msgid "Setting width to %d"
msgstr "Asetetaan leveys arvoon %d"

#: gui/gnash.cpp:327
msgid "No debugger; disabled at compile time, -g is invalid"
msgstr ""
"Ei virheenjäljitintä; poistettu käytöstä käännösaikaan, -g ei kelvollinen"

#: gui/gnash.cpp:335
#, c-format
msgid "Setting height to %d"
msgstr "Asetaan korkeus arvoon %d"

#: gui/gnash.cpp:370
msgid "ERROR: -r must be followed by 0, 1, 2 or 3 "
msgstr "VIRHE: -r-valitsimen kanssa tulee määrittää 0, 1, 2, tai 3 "

#: gui/gnash.cpp:382
msgid "FPS debugging disabled at compile time, -f is invalid"
msgstr ""
"FPS-virheenjäljitys otettu pois käytöstä käännettäessä, -f ei kelvollinen"

#: gui/gnash.cpp:425
msgid "No rendering flags specified, using rcfile"
msgstr "Piirtolippuja ei määritelty, käytetään rc-tiedostoa"

#: gui/gnash.cpp:464
msgid "Exception thrown during parseCommandLine"
msgstr "Poikkeus heitetty parseCommandLinen aikana"

#: gui/dump.cpp:114
msgid "Ignoring request to display in X11 window"
msgstr "Ohitetaan pyyntö näyttää X11-ikkunassa"

#: gui/dump.cpp:124
msgid "# FATAL:  No filename given with -D argument."
msgstr ""

#: gui/dump.cpp:169 gui/dump.cpp:196
msgid "Unable to call gettimeofday."
msgstr ""

#: gui/dump.cpp:253
msgid "# FATAL:  Unable to write to closed output file."
msgstr ""

#: gui/dump.cpp:254
msgid "Unable to write to closed output file."
msgstr ""

#: gui/dump.cpp:268
#, c-format
msgid "Unable to write file '%s'."
msgstr "Ei voida kirjoittaa tiedostoon '%s'."

#: gui/gtk_glue_gtkglext.cpp:67
#, c-format
msgid "OpenGL extension version - %d.%d"
msgstr "OpenGL-laajennoksen versio - %d.%d"

#: gui/gtk_glue_gtkglext.cpp:77
msgid ""
"Cannot find the double-buffered visual.\n"
"Trying single-buffered visual."
msgstr ""
"Kaksoispuskuroitua näkymää ei löydy.\n"
"Yritetään yhden puskurin näkymän käyttöä."

#: gui/gtk_glue_gtkglext.cpp:83
msgid "No appropriate OpenGL-capable visual found."
msgstr "Sopivaa OpenGL-kykyistä näkymää ei löydy."

#: gui/gtk_glue_gtkglext.cpp:86
msgid "Got single-buffered visual."
msgstr "Saatiin yhden puskurin näkymä."

#: gui/gtk_glue_gtkglext.cpp:89
msgid "Got double-buffered visual."
msgstr "Saatiin kaksoispuskuroitu näkymä."

#: gui/gui.cpp:172 gui/gui.cpp:178
msgid "Fullscreen not yet supported in this GUI"
msgstr "Kokonäyttötilaa ei vielä tuettu tässä käyttöliittymässä"

#: gui/gui.cpp:184
msgid "Menu hiding not yet supported in this GUI"
msgstr "Valikon piilotus ei vielä tuettu tässä käyttöliittymässä"

#: gui/gui.cpp:190
msgid "Mouse show/hide not yet supported in this GUI"
msgstr "Hiiren näyttö/piilotus ei vielä tuettu tässä käyttöliittymässä"

#: gui/gui.cpp:197
msgid "menushow not yet supported in this GUI"
msgstr "menushow ei vielä tuettu tässä käyttöliittymässä"

#: gui/gui.cpp:454
#, c-format
msgid "mouse @ %d,%d"
msgstr "hiiri @ %d,%d"

#: gui/gui.cpp:928
#, c-format
msgid "Frame %d"
msgstr "Kehys %d"

#: gui/Player.cpp:159
#, c-format
msgid "Timer delay set to %d milliseconds"
msgstr "Ajastimen viive asetettu %d millisekuntiin"

#: gui/Player.cpp:181
#, c-format
msgid "Could not create sound handler: %s. Will continue w/out sound."
msgstr "Äänenkäsittelijää ei voi luoda: %s. Jatketaan ilman ääntä."

#: gui/Player.cpp:193
msgid "Sound requested but no sound support compiled in"
msgstr "Ääntä pyydetty, mutta äänitukea ei ole käännetty mukaan"

#: gui/Player.cpp:207
msgid "No media support compiled in"
msgstr "Mediatukea ei ole käännetty mukaan"

#: gui/Player.cpp:232
#, c-format
msgid "Activating FPS debugging every %g seconds"
msgstr "Aktivoidaan FPS-virheenjäljitys joka %g sekunti"

#: gui/Player.cpp:406
#, c-format
msgid ""
"Input movie has collapsed dimensions %d/%d. Setting to 1/1 and going on."
msgstr ""
"Annetulla elokuvalla on kokoontaittuneet mitat %d/%d. Asetetaan 1/1 ja "
"jatketaan."

#: gui/Player.cpp:565
#, c-format
msgid "Unhandled callback %s with arguments %s"
msgstr ""

#: gui/Player.cpp:606
#, c-format
msgid "Sent FsCommand '%s' to host fd %d"
msgstr ""

#: gui/Player.cpp:615
#, c-format
msgid "Running as plugin: skipping internal handling of FsCommand %s%s."
msgstr "Suoritetaan liitännäisenä: ohitetaan FsCommand %s%s sisäinen käsittely"

#: gui/Player.cpp:660
#, c-format
msgid "FsCommand exec called with argument %s"
msgstr ""

#: gui/Player.cpp:680
#, c-format
msgid "FsCommand trapallkeys called with argument %s"
msgstr ""

#: gui/Player.cpp:686
#, c-format
msgid "FsCommand '%s(%s)' not handled internally"
msgstr ""

#: gui/kde.cpp:400
msgid "Play Movie"
msgstr "Toista elokuva"

#: gui/kde.cpp:401
msgid "Pause Movie"
msgstr "Tauko"

#: gui/kde.cpp:402
msgid "Stop Movie"
msgstr "Pysäytä elokuva"

#: gui/kde.cpp:405
msgid "Step Forward"
msgstr "Askel eteenpäin"

#: gui/kde.cpp:406
msgid "Step Backward"
msgstr "Askel taaksepäin"

#: gui/kde.cpp:407
msgid "Jump Forward"
msgstr "Hyppää eteenpäin"

#: gui/kde.cpp:408
msgid "Jump Backward"
msgstr "Hyppää taaksepäin"

#: gui/kde.cpp:410 gui/Kde4Gui.cpp:530
msgid "Refresh"
msgstr "Päivitä"

#: gui/sdl_agg_glue.cpp:77
#, c-format
msgid "AGG's bit depth must be 16, 24 or 32 bits, not %d."
msgstr "AGG:n värisyvyyden tulee olla 16, 24 tai 32 bittiä, ei %d."

#: gui/sdl_agg_glue.cpp:94
msgid "SDL_SetVideoMode() failed for SdlAggGlue."
msgstr "SDL_SetVideoMode() epäonnistui kohteelle SdlAggGlue."

#: gui/sdl_agg_glue.cpp:131
#, c-format
msgid "SDL-AGG: %i byte offscreen buffer allocated"
msgstr "SDL-AGG: varattiin %i tavun kuvan ulkopuolinen puskuri"

#: gui/Kde4Gui.cpp:498
msgid "Properties"
msgstr "Ominaisuudet"

#: gui/Kde4Gui.cpp:508
msgid "Preferences"
msgstr "Asetukset"

#: gui/Kde4Gui.cpp:525
msgid "Restart"
msgstr "Käynnistä uudelleen"

#: gui/Kde4Gui.cpp:534
msgid "Fullscreen"
msgstr "Kokonäyttötila"

#: gui/Kde4Gui.cpp:549
msgid "File"
msgstr "Tiedosto"

#: gui/Kde4Gui.cpp:554
msgid "Edit"
msgstr "Muokkaa"

#: gui/Kde4Gui.cpp:558
msgid "Movie Control"
msgstr "Elokuvan hallinta"

#: gui/Kde4Gui.cpp:565
msgid "View"
msgstr "Näytä"

#: gui/Kde4Gui.cpp:778
msgid "Logging"
msgstr "Lokiinkirjaus"

#: gui/Kde4Gui.cpp:784
msgid "Verbosity level"
msgstr "Tulosteen määrä"

#: gui/Kde4Gui.cpp:802
msgid "Log to file"
msgstr "Loki tiedostoon"

#: gui/Kde4Gui.cpp:809
msgid "Log parser output"
msgstr "Jäsentimen ulostulo lokiin"

#: gui/Kde4Gui.cpp:813
msgid "Log SWF actions"
msgstr "SWF-toiminnot lokiin"

#: gui/Kde4Gui.cpp:817
msgid "Log malformed SWF errors"
msgstr "Väärin muodostetun SWF:n virheet lokiin"

#: gui/Kde4Gui.cpp:822
msgid "Log ActionScript coding errors"
msgstr "ActionScript-ohjelmavirheet lokiin"

#: gui/Kde4Gui.cpp:827
msgid "Log Local Connection activity"
msgstr "Paikallisyhteystapahtumat lokiin"

#: gui/Kde4Gui.cpp:835
msgid "Security"
msgstr "Turvallisuus"

#: gui/Kde4Gui.cpp:841
msgid "Connect only to local host"
msgstr "Yhdistä vain paikalliseen isäntäkoneeseen"

#: gui/Kde4Gui.cpp:846
msgid "Connect only to local domain"
msgstr "Yhdistä vain paikalliseen verkkoalueeseen"

#: gui/Kde4Gui.cpp:851
msgid "Disable SSL verification"
msgstr "Ota SSL-tarkistus pois käytöstä"

#: gui/Kde4Gui.cpp:865
msgid "Do not write Shared Object files"
msgstr "Älä kirjoita jaettujen objektien tiedostoja"

#: gui/Kde4Gui.cpp:871
msgid "Only access local Shared Object files"
msgstr "Saanti vain paikallisiin jaettujen objektien tiedostoihin"

#: gui/Kde4Gui.cpp:876
msgid "Disable Local Connection object"
msgstr "Ota paikallisyhteyden objekti pois käytöstä"

#: gui/Kde4Gui.cpp:883
msgid "Network"
msgstr "Verkko"

#: gui/Kde4Gui.cpp:889
msgid "Network timeout in seconds"
msgstr "Verkon aikakatkaisu sekunneissa"

#: gui/Kde4Gui.cpp:901
msgid "Media"
msgstr "Media"

#: gui/Kde4Gui.cpp:907
msgid "Use sound handler"
msgstr "Käytä äänenkäsittelijää"

#: gui/Kde4Gui.cpp:930
msgid "Player"
msgstr "Soitin"

#: gui/Kde4Gui.cpp:947 gui/Kde4Gui.cpp:1021
msgid "<Autodetect>"
msgstr "<automaattinen tunnistus>"

#: gui/Kde4Gui.cpp:972
msgid "Start Gnash in pause mode"
msgstr "Käynnistä Gnash pysäytetyssä tilassa"

#: extensions/mysql/mysql_db.cpp:190
msgid "Couldn't initialize database"
msgstr "Tietokantaa ei voi alustaa"

#: extensions/mysql/mysql_db.cpp:195
msgid "Couldn't connect to database"
msgstr "Tietokantaan ei voi yhdistää"

#: extensions/mysql/mysql_db.cpp:221 extensions/mysql/mysql_db.cpp:249
#, c-format
msgid "MySQL connection error: %s"
msgstr "MySQL-yhteysvirhe: %s"

#: extensions/mysql/mysql_db.cpp:228 extensions/mysql/mysql_db.cpp:256
#, c-format
msgid ""
"MySQL error on query for:\n"
"\t%s\n"
"Query was: %s"
msgstr ""
"MySQL-virhe kyselyssä:\n"
"\t%s\n"
"Kysely oli: %s"

#: extensions/mysql/mysql_db.cpp:270
#, c-format
msgid "Field name is: %s: "
msgstr "Kentän nimi on: %s: "

#~ msgid "Step Forward Frame"
#~ msgstr "Siirry kehys eteenpäin"

#~ msgid "Step Backward Frame"
#~ msgstr "Siirry kehys taaksepäin"

#~ msgid "Jump Forward 10 Frames"
#~ msgstr "Hyppää eteenpäin 10 kehystä"

#~ msgid "Jump Backward 10 Frames"
#~ msgstr "Hyppää taaksepäin 10 kehystä"

#, fuzzy
#~ msgid "GNASH flash movie player"
#~ msgstr "GNASH - SWF-elokuvasoitin"

#~ msgid "404 response from url %s"
#~ msgstr "404-vastaus kohteesta url %s"

#, fuzzy
#~ msgid "AMF property name is: %s"
#~ msgstr "Kentän nimi on: %s: "

#, fuzzy
#~ msgid "AMF String is: %s"
#~ msgstr "Ffmpeg-versio on: %s\n"

#~ msgid ""
#~ "usage: gnash [options] movie_file.swf\n"
#~ "\n"
#~ "Plays a SWF (Shockwave Flash) movie\n"
#~ "options:\n"
#~ "\n"
#~ msgstr ""
#~ "käyttö: gnash [valitsimet] elokuvatiedosto.swf\n"
#~ "\n"
#~ "Toistaa SWF (Shockwave Flash) -elokuvia\n"
#~ "valitsimet:\n"
#~ "\n"

#~ msgid ""
#~ "  -h, --help    Print this info.\n"
#~ "  -s <factor>   Scale the movie up/down by the specified factor\n"
#~ "  -c            Produce a core file instead of letting SDL trap it\n"
#~ "  -d num        Number of milliseconds to delay in main loop\n"
#~ "  -v            Be verbose; i.e. print log messages to stdout\n"
#~ msgstr ""
#~ "  -h, --help    Tulosta tämä ohje.\n"
#~ "  -s <kerroin>  Skaalaa elokuvaa määritellyn kertoimen verran\n"
#~ "  -c            Tuota core-tiedosto sen sijaan että SDL käsittelee sen\n"
#~ "  -d numero     Pääsilmukan viiveen määrä millisekunneissa\n"
#~ "  -v            Suurempi tulosteen määrä, esim. tulosta lokiviestit\n"

#, fuzzy
#~ msgid ""
#~ "  -x <ID>       X11 Window ID for display\n"
#~ "  -v            Produce verbose output\n"
#~ "  -w            Produce the disk based debug log\n"
#~ "  -j <width >   Set window width\n"
#~ "  -k <height>   Set window height\n"
#~ "  -1            Play once; exit when/if movie reaches the last frame\n"
#~ msgstr ""
#~ "  -m <arvo>     Määritä tekstuurien LOD-arvo (liukuluku, oletus -1.0)\n"
#~ "  -x <tunniste> Näytön X11-ikkunatunniste\n"
#~ "  -v            Tuota enemmän tulostetta\n"
#~ "  -vp           Tuota enemmän tulostetta jäsentämisestä\n"
#~ "  -va           Tuota enemmän tulostetta toimintojen toteuttamisesta\n"
#~ "  -w            Tee virheenjäljitysloki levylle\n"
#~ "  -j <leveys>   Aseta ikkunan leveys\n"
#~ "  -k <korkeus>  Aseta ikkunan korkeus\n"
#~ "  -1            Toista kerran, poistu jos/kun elokuva päättyy\n"

#~ msgid ""
#~ "  -g            Turn on the SWF debugger\n"
#~ "  -r <0|1|2|3>\n"
#~ "                0 disables both rendering & sound (good for batch tests)\n"
#~ "                1 enables rendering & disables sound\n"
#~ "                2 enables sound & disables rendering\n"
#~ "                3 enables both rendering & sound (default)\n"
#~ msgstr ""
#~ "  -g            Kytke SWF-virheenjäljitin päälle\n"
#~ "  -r <0|1|2|3>\n"
#~ "                0 piirto ja ääni pois käytöstä (hyvä testierille)\n"
#~ "                1 piirto käytössä, ääni pois käytöstä\n"
#~ "                2 ääni käytössä, piirto pois käytöstä\n"
#~ "                3 piirto ja ääni käytössä (oletus)\n"

#~ msgid ""
#~ "  -t <sec>      Timeout and exit after the specified number of seconds\n"
#~ "  -u <url>      Set \"real\" url of the movie\n"
#~ "                (useful for downloaded movies)\n"
#~ "  -U <url>      Set \"base\" url for this run\n"
#~ "                (used to resolve relative urls, defaults to movie url)\n"
#~ "  -P <param>    Set parameter (ie. \"FlashVars=A=1&b=2\")\n"
#~ "  -V, --version Print gnash's version number and exit\n"
#~ "  -F <fd>       Set filedescriptor to use for external communications\n"
#~ msgstr ""
#~ "  -t <sek>      Aikakatkaise ja poistu sekuntimäärän kuluttua\n"
#~ "  -u <url>      Aseta elokuvan \"oikea\" url\n"
#~ "                (hyödyllinen ladatuille elokuville)\n"
#~ "  -U <url>      Aseta tämän kerran url:n \"perusosa\"\n"
#~ "                (käytetään suhteellisiin url:iin, oletus elokuvan url)\n"
#~ "  -P <param>    Aseta parametri (esim. \"FlashVars=A=1&b=2\")\n"
#~ "  -V, --version Tulosta Gnashin versionumero ja poistu\n"
#~ "  -F <tk>       Aseta ulkoisiin yhteyksiin käytettävä tiedostokuvain\n"

#~ msgid ""
#~ "\n"
#~ "keys:\n"
#~ "\n"
#~ "  CTRL-Q, CTRL-W  Quit/Exit\n"
#~ "  CTRL-P          Toggle Pause\n"
#~ "  CTRL-R          Restart the movie\n"
#~ "  CTRL-[ or kp-   Step back one frame\n"
#~ "  CTRL-] or kp+   Step forward one frame\n"
#~ "  CTRL-L          Force immediate redraw\n"
#~ msgstr ""
#~ "\n"
#~ "näppäimet:\n"
#~ "\n"
#~ "  CTRL-Q, CTRL-W  Lopeta/poistu\n"
#~ "  CTRL-P          Kytke tauko päälle ja pois\n"
#~ "  CTRL-R          Käynnistä elokuva uudelleen\n"
#~ "  CTRL-[ tai kp-  Siirry yksi kehys taaksepäin\n"
#~ "  CTRL-] tai kp+  Siirry yksi kehys eteenpäin\n"
#~ "  CTRL-L          Toteuta uudelleenpiirto välittömästi\n"

#~ msgid ""
#~ "Build options %s\n"
#~ "   Target: %s\n"
#~ "   Renderer: %s - GUI: %s - Media handler: %s\n"
#~ "   Configured with: %s\n"
#~ "   CXXFLAGS: %s\n"
#~ msgstr ""
#~ "Käännösvalinnat %s\n"
#~ "   Kohde: %s\n"
#~ "   Piirto: %s - GUI: %s - median käsittelijä: %s\n"
#~ "   Määrittelyt: %s\n"
#~ "   CXXFLAGS: %s\n"

#~ msgid "Gstreamer version is: %d.%d.%d.\n"
#~ msgstr "Gstreamer-versio on: %d.%d.%d.\n"

#~ msgid "Got variable option (%s) on command line"
#~ msgstr "Komentoriviltä saatiin muuttujavalitsin (%s)"

#~ msgid "Created fullscreen window"
#~ msgstr "Luotiin kokonäyttöikkuna"

#~ msgid "Destroyed fullscreen window"
#~ msgstr "Tuhottiin kokonäyttöikkuna"

#~ msgid "VM not initialized yet"
#~ msgstr "Virtuaalikone ei ole vielä alustettu"