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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Members of the gmerlin project
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: gmerlin-general@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-12 00:21+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: plugins/i_avdec.c:107
msgid "Audio options"
msgstr ""
#: plugins/i_avdec.c:115
msgid "Video options"
msgstr ""
#: plugins/i_avdec.c:121
msgid "Shrink factor"
msgstr ""
#: plugins/i_avdec.c:126
msgid ""
"This enables downscaling of images while decoding. Currently only supported "
"for JPEG-2000."
msgstr ""
#: plugins/i_avdec.c:130
msgid "Use vdpau"
msgstr ""
#: plugins/i_avdec.c:132
msgid "Use VDPAU"
msgstr ""
#: plugins/i_avdec.c:137
msgid "Network options"
msgstr ""
#: plugins/i_avdec.c:142
msgid "Connect timeout (milliseconds)"
msgstr ""
#: plugins/i_avdec.c:150 plugins/i_dvb.c:81
msgid "Read timeout (milliseconds)"
msgstr ""
#: plugins/i_avdec.c:158
msgid "Network buffer size (kB)"
msgstr ""
#: plugins/i_avdec.c:166
msgid "Bandwidth"
msgstr ""
#: plugins/i_avdec.c:182
msgid "14.4 Kbps (Modem)"
msgstr ""
#: plugins/i_avdec.c:183
msgid "19.2 Kbps (Modem)"
msgstr ""
#: plugins/i_avdec.c:184
msgid "28.8 Kbps (Modem)"
msgstr ""
#: plugins/i_avdec.c:185
msgid "33.6 Kbps (Modem)"
msgstr ""
#: plugins/i_avdec.c:186
msgid "34.4 Kbps (Modem)"
msgstr ""
#: plugins/i_avdec.c:187
msgid "57.6 Kbps (Modem)"
msgstr ""
#: plugins/i_avdec.c:188
msgid "115.2 Kbps (ISDN)"
msgstr ""
#: plugins/i_avdec.c:189
msgid "262.2 Kbps (Cable/DSL)"
msgstr ""
#: plugins/i_avdec.c:190
msgid "393.2 Kbps (Cable/DSL)"
msgstr ""
#: plugins/i_avdec.c:191
msgid "524.3 Kbps (Cable/DSL)"
msgstr ""
#: plugins/i_avdec.c:192
msgid "1.5 Mbps (T1)"
msgstr ""
#: plugins/i_avdec.c:193
msgid "10.5 Mbps (LAN)"
msgstr ""
#: plugins/i_avdec.c:198
msgid "HTTP Options"
msgstr ""
#: plugins/i_avdec.c:203
msgid "Enable shoutcast title streaming"
msgstr ""
#: plugins/i_avdec.c:209
msgid "Use proxy"
msgstr ""
#: plugins/i_avdec.c:215
msgid "Proxy host"
msgstr ""
#: plugins/i_avdec.c:220
msgid "Proxy port"
msgstr ""
#: plugins/i_avdec.c:228
msgid "Proxy needs authentication"
msgstr ""
#: plugins/i_avdec.c:234
msgid "Proxy username"
msgstr ""
#: plugins/i_avdec.c:240
msgid "Proxy password"
msgstr ""
#: plugins/i_avdec.c:246
msgid "RTSP Options"
msgstr ""
#: plugins/i_avdec.c:251
msgid "Try RTP over TCP"
msgstr ""
#: plugins/i_avdec.c:254
msgid ""
"Use this if your filewall blocks all UDP traffic. Not all servers support TCP"
msgstr ""
#: plugins/i_avdec.c:258
msgid "Port base for RTP"
msgstr ""
#: plugins/i_avdec.c:263
msgid ""
"Port base for RTP over UDP. Values of 1024 or smaller enable random ports "
"(recommended for RTSP aware firewalls). Values larger than 1024 define the "
"base port. 2 consecutive ports are used for each A/V stream, these must be "
"accessible through the firewall. Odd values are rounded to the next even "
"value."
msgstr ""
#: plugins/i_avdec.c:267
msgid "FTP Options"
msgstr ""
#: plugins/i_avdec.c:272
msgid "Login as anonymous"
msgstr ""
#: plugins/i_avdec.c:278
msgid "Anonymous ftp password"
msgstr ""
#: plugins/i_avdec.c:284
msgid "Subtitle Options"
msgstr ""
#: plugins/i_avdec.c:289
msgid "Seek external subtitles"
msgstr ""
#: plugins/i_avdec.c:293 plugins/i_avdec.c:327
msgid "Never"
msgstr ""
#: plugins/i_avdec.c:294
msgid "For video files only"
msgstr ""
#: plugins/i_avdec.c:295 plugins/i_avdec.c:328
msgid "Always"
msgstr ""
#: plugins/i_avdec.c:297
msgid ""
"If the input is a regular file, gmerlin_avdecoder can scan the directory for "
"matching subtitle files. For a file movie.mpg, possible subtitle files are e."
"g. movie_english.srt, movie_german.srt. The rule is, that the first part of "
"the filename of the subtitle file must be equal to the movie filename up to "
"the extension. Furthermore, the subtitle filename must have an extension "
"supported by any of the subtitle readers. Subtitle seeking can be disabled, "
"enabled for video files or enabled for all files."
msgstr ""
#: plugins/i_avdec.c:308
msgid "Default subtitle encoding"
msgstr ""
#: plugins/i_avdec.c:311
msgid ""
"This sets the default encoding for text subtitles,when the original encoding "
"is unknown. It must be a character set namerecognized by iconv. Type 'iconv -"
"l' at the commandline for a list of supported encodings."
msgstr ""
#: plugins/i_avdec.c:318
msgid "Misc options"
msgstr ""
#: plugins/i_avdec.c:323
msgid "Sample accurate"
msgstr ""
#: plugins/i_avdec.c:329
msgid "When necessary"
msgstr ""
#: plugins/i_avdec.c:332
msgid ""
"Try sample accurate seeking. For most formats, this is not necessary, since "
"normal seeking works fine. Some formats are only seekable in sample accurate "
"mode. Choose \"When necessary\" to enable seeking for most formats with the "
"smallest overhead."
msgstr ""
#: plugins/i_avdec.c:336
msgid "Cache time (milliseconds)"
msgstr ""
#: plugins/i_avdec.c:339
msgid ""
"If building an index takes longer than the specified time, it will be cached."
msgstr ""
#: plugins/i_avdec.c:343
msgid "Cache size (Megabytes)"
msgstr ""
#: plugins/i_avdec.c:346
msgid "Set the maximum total size of the cache directory."
msgstr ""
#: plugins/i_avdec.c:350
msgid "Export date and time as timecodes for DV"
msgstr ""
#: plugins/i_avdec.c:390
msgid "AVDecoder plugin"
msgstr ""
#: plugins/i_avdec.c:391
msgid ""
"Plugin based on the Gmerlin avdecoder library. Supports most media formats. "
"Playback is supported from files, URLs (with various protocols) and stdin."
msgstr ""
#: plugins/i_dvd.c:72
msgid "Handle chapters as tracks"
msgstr ""
#: plugins/i_dvd.c:102
msgid "DVD Player"
msgstr ""
#: plugins/i_dvd.c:103
msgid "Plugin for playing DVDs. Based on Gmerlin avdecoder."
msgstr ""
#: plugins/avdec_common.h:125
msgid "Dynamic range control"
msgstr ""
#: plugins/avdec_common.h:128
msgid ""
"Enable dynamic range control for codecs, which support this (currently only "
"A52 and DTS)."
msgstr ""
#: plugins/avdec_common.h:134
msgid "Postprocessing level"
msgstr ""
#: plugins/avdec_common.h:141
msgid ""
"Set postprocessing (to remove compression artifacts). 0 means no "
"postprocessing, 1 means maximum postprocessing."
msgstr ""
#: plugins/i_dvb.c:69
msgid "Channel file"
msgstr ""
#: plugins/i_dvb.c:71
msgid ""
"The channels file must have the format of the dvb-utils programs (like szap, "
"tzap). If you don't set this file, several locations like $HOME/.tzap/"
"channels.conf will be searched."
msgstr ""
#: plugins/i_dvb.c:109
msgid "DVB Player"
msgstr ""
#: plugins/i_dvb.c:110
msgid ""
"Plugin for playing DVB streams from a Linux-DVB compatible card. Based on "
"Gmerlin avdecoder."
msgstr ""
#: plugins/i_vcd.c:81
msgid "VCD Player"
msgstr ""
#: plugins/i_vcd.c:82
msgid "Plugin for playing VCDs. Based on Gmerlin avdecoder."
msgstr ""
#: lib/r_smil.c:399
msgid "Parse smil failed (yml error)"
msgstr ""
#: lib/r_smil.c:409
msgid "Parse smil failed"
msgstr ""
#: lib/bgav.c:156
msgid "Cannot detect stream type"
msgstr ""
#: lib/bgav.c:410
msgid "Reopening input due to track reset"
msgstr ""
#: lib/matroska.c:226
#, c-format
msgid "Skipping %<PRId64> bytes of element %x in %s\n"
msgstr ""
#: lib/matroska.c:981
msgid "Couldn't read header element for cues (truncated file?)"
msgstr ""
#: lib/matroska.c:987
msgid "Didn't find cues where I expected them (truncated file?)"
msgstr ""
#: lib/audio_gsm.c:63
msgid "Multichannel GSM not supported"
msgstr ""
#: lib/audio_ffmpeg.c:770
#, c-format
msgid "Codec not found: %s"
msgstr ""
#: lib/redirect.c:87 lib/redirect.c:105
#, c-format
msgid "Detected %s redirector"
msgstr ""
#: lib/audio_a52.c:223
#, c-format
msgid "Resync %<PRId64>"
msgstr ""
#: lib/video_vpx.c:59
#, c-format
msgid "Failed to initialize decoder: %s"
msgstr ""
#: lib/video_vpx.c:110
#, c-format
msgid "Failed to decode frame: %s"
msgstr ""
#: lib/video_vpx.c:113
#, c-format
msgid " Additional information: %s\n"
msgstr ""
#: lib/video_vpx.c:147
msgid "Ignoring additional frame\n"
msgstr ""
#: lib/in_smb.c:99
#, c-format
msgid "Initialization of samba failed (error: %d)"
msgstr ""
#: lib/in_smb.c:107
#, c-format
msgid "Open file failed (error: %d)"
msgstr ""
#: lib/in_smb.c:118
msgid "Can't get filesize"
msgstr ""
#: lib/video_qtraw.c:244 lib/video_qtraw.c:258 lib/video_qtraw.c:272
#: lib/video_qtraw.c:286
#, c-format
msgid "Palette missing or too small %d"
msgstr ""
#: lib/in_file.c:60
#, c-format
msgid "Cannot open %s: %s"
msgstr ""
#: lib/qt_timecode.c:49
msgid "Timecode tracks in non-seekable sources not supported"
msgstr ""
#: lib/qt_timecode.c:108
msgid "EOF while reading timecode"
msgstr ""
#: lib/sdp.c:537 lib/sdp.c:705
#, c-format
msgid "Invalid line %d: %s"
msgstr ""
#: lib/sdp.c:774
#, c-format
msgid "Unknown specifier: %c"
msgstr ""
#: lib/input.c:731
#, c-format
msgid "Unknown protocol: %s"
msgstr ""
#: lib/input.c:807
#, c-format
msgid "Got redirected to %s"
msgstr ""
#: lib/input.c:834
msgid "mms connection failed, trying http"
msgstr ""
#: lib/input.c:1082
#, c-format
msgid "Reopening %s failed"
msgstr ""
#: lib/demux_wavpack.c:125
msgid "Floating point data is not supported"
msgstr ""
#: lib/demux_wavpack.c:131
msgid "Hybrid coding mode is not supported"
msgstr ""
#: lib/demux_wavpack.c:137
msgid "Integer point data is not supported"
msgstr ""
#: lib/demux_wavpack.c:182 lib/mpegts_common.c:299
msgid "Lost sync"
msgstr ""
#: lib/rtsp.c:153 lib/video_openjpeg.c:42 lib/video_openjpeg.c:48
#: lib/video_openjpeg.c:54 lib/video_png.c:68 lib/video_png.c:153
#: lib/http.c:381 lib/http.c:414
#, c-format
msgid "%s"
msgstr ""
#: lib/rtsp.c:203
msgid "Reading session description failed"
msgstr ""
#: lib/parse_mpeg4.c:125
msgid "Detected packed B-frames"
msgstr ""
#: lib/demux_quicktime.c:274
msgid "No packets in movie"
msgstr ""
#: lib/demux_quicktime.c:759
msgid "Chapters detected but stream is not seekable"
msgstr ""
#: lib/demux_quicktime.c:765
msgid "More than one chapter track, choosing first"
msgstr ""
#: lib/demux_quicktime.c:782
msgid "Unknown encoding for chapter names"
msgstr ""
#: lib/demux_quicktime.c:825
msgid "Read error while setting up chapter list"
msgstr ""
#: lib/demux_quicktime.c:945
msgid "Invalid mp3on4 channel configuration"
msgstr ""
#: lib/demux_quicktime.c:1280
msgid "More than one timecode track, ignoring them all"
msgstr ""
#: lib/demux_quicktime.c:1492 lib/demux_adts.c:227
msgid "Detected HE-AAC"
msgstr ""
#: lib/demux_quicktime.c:1498 lib/demux_adts.c:234
msgid "Detected no HE-AAC"
msgstr ""
#: lib/demux_quicktime.c:1564
msgid "Dirac stream has no ctts"
msgstr ""
#: lib/demux_quicktime.c:1628
msgid "Non streamable file on non seekable source"
msgstr ""
#: lib/demux_quicktime.c:1637
msgid "Reading moov atom failed"
msgstr ""
#: lib/demux_mpegaudio.c:259
#, c-format
msgid "Skipped %d bytes in MPEG audio stream"
msgstr ""
#: lib/subtitle.c:257
#, c-format
msgid "No subtitle decoder found for fourcc %c%c%c%c (0x%08x)"
msgstr ""
#: lib/rmff.c:337
msgid "Reading logical stream failed"
msgstr ""
#: lib/rmff.c:574
msgid "No index found, where I expected one"
msgstr ""
#: lib/rmff.c:831
msgid "Control attribute missing"
msgstr ""
#: lib/rmff.c:838
msgid "Stream number missing"
msgstr ""
#: lib/rmff.c:848
msgid "No ASMRuleBook found"
msgstr ""
#: lib/rmff.c:857
msgid "Bad ASMRuleBook"
msgstr ""
#: lib/rmff.c:871
msgid "No Opaque data there"
msgstr ""
#: lib/rmff.c:925
#, c-format
msgid "Unsupported packet header version: %d"
msgstr ""
#: lib/qt_esds.c:120
#, c-format
msgid "length of MP4DecConfigDescrTag too short: %d < 13"
msgstr ""
#: lib/in_vcd.c:254 lib/in_dvd.c:677
#, c-format
msgid "cdio_close_tray failed: %s"
msgstr ""
#: lib/in_vcd.c:258 lib/in_dvd.c:681
msgid "cdio_close_tray failed"
msgstr ""
#: lib/in_vcd.c:270
#, c-format
msgid "cdio_open failed for %s"
msgstr ""
#: lib/in_vcd.c:282
#, c-format
msgid "read_toc failed for %s"
msgstr ""
#: lib/audio_faad2.c:114 lib/aac_frame.c:121
#, c-format
msgid "faacDecDecode failed %s"
msgstr ""
#: lib/log.c:42
msgid "Debug"
msgstr ""
#: lib/log.c:43
msgid "Warning"
msgstr ""
#: lib/log.c:44
msgid "Error"
msgstr ""
#: lib/log.c:45
msgid "Info"
msgstr ""
#: lib/demux_ogg.c:224
#, c-format
msgid "Unknown stream type \"%.8s\" in OGM header"
msgstr ""
#: lib/demux_ogg.c:424
#, c-format
msgid "Skipped %d bytes of random garbage"
msgstr ""
#: lib/demux_ogg.c:554 lib/demux_ogg.c:1023
msgid "EOF while setting up track"
msgstr ""
#: lib/demux_ogg.c:685
msgid "Dirac header contains no framerate, assuming 24 fps"
msgstr ""
#: lib/demux_ogg.c:785 lib/demux_ogg.c:838
msgid "Reading OGM header failed"
msgstr ""
#: lib/demux_ogg.c:860
#, c-format
msgid "Unsupported stream (serialno: %d)"
msgstr ""
#: lib/demux_ogg.c:1215
msgid "Page has no BOS marker"
msgstr ""
#: lib/demux_ogg.c:1223
msgid "Setting up track failed"
msgstr ""
#: lib/demux_matroska.c:135
msgid "Ogg extradata must start with 0x02n"
msgstr ""
#: lib/demux_matroska.c:603
msgid "Complex tracks not supported yet\n"
msgstr ""
#: lib/demux_matroska.c:607
msgid "Logo tracks not supported yet\n"
msgstr ""
#: lib/demux_matroska.c:611
msgid "Subtitle tracks not supported yet\n"
msgstr ""
#: lib/demux_matroska.c:615
msgid "Button tracks not supported yet\n"
msgstr ""
#: lib/demux_matroska.c:619
msgid "Control tracks not supported yet\n"
msgstr ""
#: lib/demux_avi.c:1379
msgid "Could not get video framerate, assuming 25 fps"
msgstr ""
#: lib/demux_avi.c:1907
#, c-format
msgid "Unknown stream type: %c%c%c%c"
msgstr ""
#: lib/audio_win32.c:307
#, c-format
msgid "acmStreamPrepareHeader failed %d"
msgstr ""
#: lib/audio_win32.c:314
#, c-format
msgid "acmStreamConvert failed %d"
msgstr ""
#: lib/audio_win32.c:326
#, c-format
msgid "acmStreamUnprepareHeader failed %d"
msgstr ""
#: lib/audio_win32.c:412
msgid "Unappropriate audio format"
msgstr ""
#: lib/audio_win32.c:415
#, c-format
msgid "acmStreamOpen error %d"
msgstr ""
#: lib/audio_win32.c:438
msgid "DS_AudioDecoder_Open failed"
msgstr ""
#: lib/audio_win32.c:562 lib/video_win32.c:772
#, c-format
msgid "Codec DLL %s not found"
msgstr ""
#: lib/mxf.c:2609
msgid "Cannot decode MXF file from non seekable source"
msgstr ""
#: lib/mxf.c:2623
msgid "Could not find header partition"
msgstr ""
#: lib/in_mmsh.c:151 lib/in_mms.c:80
msgid "Initializing asf demuxer failed"
msgstr ""
#: lib/udp.c:55 lib/tcp.c:171
msgid "Cannot create socket"
msgstr ""
#: lib/udp.c:64
#, c-format
msgid "Cannot bind inet socket: %s"
msgstr ""
#: lib/udp.c:73
#, c-format
msgid "UDP Socket bound on port %d\n"
msgstr ""
#: lib/udp.c:109
#, c-format
msgid "Sending UDP packet failed: %s\n"
msgstr ""
#: lib/qt_cmov.c:66
#, c-format
msgid "Unknown compression method: %c%c%c%c"
msgstr ""
#: lib/qt_cmov.c:91
msgid "Uncompression failed"
msgstr ""
#: lib/track.c:232
#, c-format
msgid "Starting audio decoder for stream %d failed"
msgstr ""
#: lib/track.c:244
#, c-format
msgid "Starting video decoder for stream %d failed"
msgstr ""
#: lib/track.c:260
#, c-format
msgid "Cannot decode subtitles from stream %d (no video)"
msgstr ""
#: lib/track.c:285
#, c-format
msgid ""
"Starting subtitle decoder for stream %d failed (cannot get video format)"
msgstr ""
#: lib/track.c:301
#, c-format
msgid "Starting subtitle decoder for stream %d failed"
msgstr ""
#: lib/track.c:441
#, c-format
msgid "No audio decoder found for WAVId 0x%04x"
msgstr ""
#: lib/track.c:445 lib/audio.c:246
#, c-format
msgid "No audio decoder found for fourcc %c%c%c%c (0x%08x)"
msgstr ""
#: lib/track.c:467 lib/video.c:136
#, c-format
msgid "No video decoder found for fourcc %c%c%c%c (0x%08x)"
msgstr ""
#: lib/track.c:479
#, c-format
msgid "No parser found for fourcc %c%c%c%c (0x%08x)"
msgstr ""
#: lib/charset.c:153
msgid "Invalid multibyte sequence"
msgstr ""
#: lib/charset.c:158
msgid "Incomplete multibyte sequence"
msgstr ""
#: lib/demux_avs.c:170
msgid "2 Palette blocks without intermediate video block"
msgstr ""
#: lib/demux_y4m.c:106
#, c-format
msgid "Reading stream header failed %d"
msgstr ""
#: lib/dvb_channels.c:138
#, c-format
msgid "Channels file %s cannot be opened"
msgstr ""
#: lib/dvb_channels.c:149
msgid "Channels file cannot be found (home directory unset)"
msgstr ""
#: lib/dvb_channels.c:244
msgid "Channels file cannot be found"
msgstr ""
#: lib/dvb_channels.c:251
#, c-format
msgid "Channels file %s cannot be opened: %s"
msgstr ""
#: lib/demux_au.c:170
#, c-format
msgid "Unsupported encoding %d"
msgstr ""
#: lib/demux_rm.c:668
#, c-format
msgid "Video extradata too short: %d"
msgstr ""
#: lib/demux_rm.c:676
#, c-format
msgid "Video extradata too long: %d"
msgstr ""
#: lib/demux_rm.c:830
msgid "Cannot play multirate real from non seekable source"
msgstr ""
#: lib/demux_rm.c:837
msgid "Detected multirate real"
msgstr ""
#: lib/demux_ra.c:112
msgid "Unable to read header"
msgstr ""
#: lib/demux_ra.c:157
msgid "Header too small"
msgstr ""
#: lib/demux_ra.c:209
#, c-format
msgid "Invalid fourcc size %d"
msgstr ""
#: lib/demux_vmd.c:114
msgid "Cannot open VMD file from nonseekable source"
msgstr ""
#: lib/demux_vmd.c:204
#, c-format
msgid "Unexpected end of file %d %d"
msgstr ""
#: lib/video_win32.c:329
#, c-format
msgid "Cannot open %s"
msgstr ""
#: lib/video_win32.c:409
msgid "ICDecompressBegin failed"
msgstr ""
#: lib/video_win32.c:458
msgid "ICDecompress failed"
msgstr ""
#: lib/video_win32.c:530
#, c-format
msgid "DS_VideoDecoder_Open failed %d"
msgstr ""
#: lib/video_win32.c:567 lib/video_win32.c:667
msgid "Decode failed"
msgstr ""
#: lib/video_win32.c:631
#, c-format
msgid "DMO_VideoDecoder_Open failed %d"
msgstr ""
#: lib/demux_flv.c:233
#, c-format
msgid "Unknown audio codec tag: %d"
msgstr ""
#: lib/demux_flv.c:287
#, c-format
msgid "Unknown video codec tag: %d"
msgstr ""
#: lib/demux_flv.c:462
#, c-format
msgid "Unknown type %d for metadata object %s"
msgstr ""
#: lib/demux_flv.c:688 lib/demux_flv.c:729
#, c-format
msgid "Packet size is %d (somethings wrong?)"
msgstr ""
#: lib/demux_flv.c:911
msgid "Zero flags detected, assuming audio and video (might fail)"
msgstr ""
#: lib/demux_flv.c:1002
msgid "Getting duration from last timestamp failed"
msgstr ""
#: lib/video_png.c:55
msgid "EOF"
msgstr ""
#: lib/video_png.c:72 lib/video_png.c:157 lib/subread.c:431
msgid "Reading png header failed"
msgstr ""
#: lib/video_png.c:110
msgid "Decode png failed"
msgstr ""
#: lib/superindex.c:310
msgid "Detected B-pyramid, fixing possibly broken timestamps"
msgstr ""
#: lib/video_ffmpeg.c:577
msgid "Got EOF while skipping"
msgstr ""
#: lib/video_ffmpeg.c:777
msgid "Using VDPAU for decoding"
msgstr ""
#: lib/video_ffmpeg.c:906
msgid "Could not get initial frame"
msgstr ""
#: lib/video_ffmpeg.c:1733
#, c-format
msgid "Cannot find %s"
msgstr ""
#: lib/video_ffmpeg.c:2165
msgid "Unsupported pixelformat for postprocessing"
msgstr ""
#: lib/video_aviraw.c:196
#, c-format
msgid "Palette too small %d < 2"
msgstr ""
#: lib/video_aviraw.c:203
#, c-format
msgid "Palette too small %d < 16"
msgstr ""
#: lib/video_aviraw.c:219
#, c-format
msgid "Palette too small %d < 256"
msgstr ""
#: lib/video_aviraw.c:247
#, c-format
msgid "Unsupported depth: %d"
msgstr ""
#: lib/qt_wave.c:80
msgid "Skipping remainder of broken wave atom"
msgstr ""
#: lib/audio.c:193
#, c-format
msgid "No audio parser found for fourcc %c%c%c%c (0x%08x)"
msgstr ""
#: lib/audio.c:207
msgid "EOF while initializing audio parser"
msgstr ""
#: lib/audio.c:222 lib/video.c:112
msgid "EOF while getting start time"
msgstr ""
#: lib/audio.c:228
#, c-format
msgid "Got initial audio timestamp: %s"
msgstr ""
#: lib/audio.c:243
#, c-format
msgid "No audio decoder found for WAV ID 0x%04x"
msgstr ""
#: lib/audio.c:427 lib/video.c:344
#, c-format
msgid "Cannot skip backwards: Stream time: %s skip time: %s difference: %s"
msgstr ""
#: lib/audio.c:438
#, c-format
msgid "Skipping %s samples"
msgstr ""
#: lib/audio.c:561
#, c-format
msgid "Cannot output compressed audio stream %d: Unsupported codec"
msgstr ""
#: lib/audio.c:568
#, c-format
msgid "Cannot output compressed audio stream %d: Global header missing"
msgstr ""
#: lib/audio.c:575
#, c-format
msgid "Cannot output compressed audio stream %d: No bitrate specified"
msgstr ""
#: lib/demux_thp.c:145 lib/demux_dxa.c:88
msgid "Cannot decode from nonseekable source"
msgstr ""
#: lib/video_tga.c:142
#, c-format
msgid "tga_read_from_memory failed: %s (%d bytes)"
msgstr ""
#: lib/video_tga.c:181
#, c-format
msgid "Cannot detect image type: %d"
msgstr ""
#: lib/video_tga.c:277
#, c-format
msgid "Setting palette %d entries"
msgstr ""
#: lib/in_dvd.c:115 lib/in_dvd.c:131
#, c-format
msgid "Opening vts %d failed"
msgstr ""
#: lib/in_dvd.c:139
#, c-format
msgid "Opening IFO for vts %d failed"
msgstr ""
#: lib/in_dvd.c:426
msgid "Detected still cell"
msgstr ""
#: lib/in_dvd.c:693
msgid "DVDOpen failed"
msgstr ""
#: lib/in_dvd.c:709
msgid "ifoOpen failed"
msgstr ""
#: lib/in_dvd.c:808 lib/in_dvd.c:1070
#, c-format
msgid "Reading NAV packet at sector %d failed"
msgstr ""
#: lib/in_dvd.c:901
#, c-format
msgid "Reading blocks at %d failed"
msgstr ""
#: lib/in_dvd.c:1245
#, c-format
msgid "Cannot open DVD Device %s"
msgstr ""
#: lib/mpv_header.c:291
msgid "Cannot read sequence header: missing marker bit"
msgstr ""
#: lib/mpv_header.c:359
#, c-format
msgid "Cannot read picture header: Invalid coding type %d"
msgstr ""
#: lib/demux_smaf.c:108
msgid "MIDI like files not supported"
msgstr ""
#: lib/demux_smaf.c:122 lib/demux_smaf.c:182
#, c-format
msgid "Unsupported SMAF chunk (%c%c%c%c)"
msgstr ""
#: lib/demux_smaf.c:157
msgid "Invalid samplerate"
msgstr ""
#: lib/rtpbuffer.c:299
msgid "Dropping obsolete packet"
msgstr ""
#: lib/rtpbuffer.c:310
msgid "Dropping duplicate packet"
msgstr ""
#: lib/rtpbuffer.c:374
#, c-format
msgid "%<PRId64> packet(s) missing"
msgstr ""
#: lib/subread.c:402 lib/subread.c:572
msgid "yml node has no start attribute"
msgstr ""
#: lib/subread.c:412
msgid "yml node has no filename attribute"
msgstr ""
#: lib/subread.c:418
#, c-format
msgid "Reading file %s failed"
msgstr ""
#: lib/subread.c:426
#, c-format
msgid "Reading png header failed: %s"
msgstr ""
#: lib/subread.c:446
msgid "Overlay too large"
msgstr ""
#: lib/subread.c:460
#, c-format
msgid "Parsing time string %s failed"
msgstr ""
#: lib/subread.c:517
msgid "Parsing spumux file failed"
msgstr ""
#: lib/subread.c:583
msgid "Error parsing start attribute"
msgstr ""
#: lib/demux_roq.c:102
msgid "Cannot play Roq files from nonseekable source"
msgstr ""
#: lib/demux_roq.c:139
#, c-format
msgid "Unknown Roq chunk %04x"
msgstr ""
#: lib/demux_roq.c:242
msgid "No CODEBOOK chunk before VQ chunk"
msgstr ""
#: lib/demux_roq.c:287
#, c-format
msgid "Unknown chunk %04x"
msgstr ""
#: lib/parse_mpv.c:247
msgid "Bogus picture header or broken frame"
msgstr ""
#: lib/parse_mpv.c:263
msgid "Detected Intra slice refresh"
msgstr ""
#: lib/video_theora.c:70
msgid "Theora codec requires extradata"
msgstr ""
#: lib/video_theora.c:89
#, c-format
msgid "Parsing header packet %d failed"
msgstr ""
#: lib/video_theora.c:161
#, c-format
msgid "Unknown pixelformat %d"
msgstr ""
#: lib/subovl_dvd.c:241
#, c-format
msgid "Unknown command %02x, decoding is doomed to failure"
msgstr ""
#: lib/video.c:71
#, c-format
msgid "No video parser found for fourcc %c%c%c%c (0x%08x)"
msgstr ""
#: lib/video.c:84
msgid "EOF while initializing video parser"
msgstr ""
#: lib/video.c:98
msgid "EOF while initializing packet timer"
msgstr ""
#: lib/video.c:118
#, c-format
msgid "Got initial video timestamp: %s"
msgstr ""
#: lib/video.c:293
msgid "Skipping packet while waiting for keyframe"
msgstr ""
#: lib/video.c:764
msgid "Video compression format needs pixelformat for compressed output"
msgstr ""
#: lib/video.c:804
msgid "Video compression format needs bitrate for compressed output"
msgstr ""
#: lib/utils.c:553
#, c-format
msgid "Created directory %s"
msgstr ""
#: lib/demux_wve.c:95
msgid "No PT header found"
msgstr ""
#: lib/demux_wve.c:132
msgid "Unknown audio compression type"
msgstr ""
#: lib/demux_wve.c:153
#, c-format
msgid "Unknown audio header element 0x%02x: 0x%08x"
msgstr ""
#: lib/demux_wve.c:166
#, c-format
msgid "Unknown header element 0x%02x: 0x%08x"
msgstr ""
#: lib/r_asx.c:189
msgid "Parse asx failed (yml error)"
msgstr ""
#: lib/r_asx.c:197
msgid "Parse asx failed"
msgstr ""
#: lib/demux_psxstr.c:115
#, c-format
msgid "Invalid channel number %d"
msgstr ""
#: lib/video_xadll.c:317
#, c-format
msgid "Cannot open dll %s: %s"
msgstr ""
#: lib/video_xadll.c:325
#, c-format
msgid "failed to init %s"
msgstr ""
#: lib/video_xadll.c:332
msgid "initializer function failed"
msgstr ""
#: lib/video_xadll.c:337
#, c-format
msgid "Unsupported api revision (%d)"
msgstr ""
#: lib/video_xadll.c:344
msgid "function table error"
msgstr ""
#: lib/video_xadll.c:379
msgid "Codec not supported"
msgstr ""
#: lib/video_xadll.c:467 lib/video_real.c:93
#, c-format
msgid "Cannot find file %s, disabling %s"
msgstr ""
#: lib/http.c:93 lib/mms.c:598 lib/mms.c:666
msgid "Remote end closed connection"
msgstr ""
#: lib/http.c:282 lib/in_ftp.c:162
msgid "Unvalid URL"
msgstr ""
#: lib/demux_mxf.c:323
msgid "Clip wrapped tracks with nonconstant framesize not supported"
msgstr ""
#: lib/demux_mxf.c:326
msgid "Custom wrapping not supported"
msgstr ""
#: lib/demux_mxf.c:329
msgid "Unknown wrapping"
msgstr ""
#: lib/demux_mxf.c:360
msgid "Rounding fractional audio samplerate"
msgstr ""
#: lib/demux_mxf.c:602
#, c-format
msgid "Couldn't find partition for source package %d"
msgstr ""
#: lib/demux_mxf.c:628
msgid "Parsing MXF file failed, please report"
msgstr ""
#: lib/demux_mxf.c:643
msgid "Unsupported MXF type, please report"
msgstr ""
#: lib/demuxer.c:244 lib/demuxer.c:254 lib/demuxer.c:267
#: lib/demux_ffmpeg.c:137
#, c-format
msgid "Detected %s format"
msgstr ""
#: lib/demuxer.c:289
#, c-format
msgid "Detected %s format after skipping %d bytes"
msgstr ""
#: lib/demuxer.c:357
#, c-format
msgid "Removing audio stream %d (no packets found)"
msgstr ""
#: lib/demuxer.c:372
#, c-format
msgid "Removing video stream %d (no packets found)"
msgstr ""
#: lib/demuxer.c:478
msgid "Non interleaved file from non seekable source"
msgstr ""
#: lib/demux_vivo.c:304
#, c-format
msgid "Unknown extended header: %s"
msgstr ""
#: lib/demux_vivo.c:326
#, c-format
msgid "Unknown timestamp type: %s"
msgstr ""
#: lib/demux_vivo.c:579
msgid "Unknown packet type"
msgstr ""
#: lib/fileindex.c:728
#, c-format
msgid "Removing %s to keep maximum cache size"
msgstr ""
#: lib/fileindex.c:1239
msgid "Building file index failed"
msgstr ""
#: lib/fileindex.c:1245
#, c-format
msgid "Built file index in %.2f seconds"
msgstr ""
#: lib/demux_voc.c:233
#, c-format
msgid "Skipping %d bytes of chunk type %02x"
msgstr ""
#: lib/demux_dxa.c:107
msgid "File contains zero frames"
msgstr ""
#: lib/demux_aiff.c:304
#, c-format
msgid "%d bit aiff not supported"
msgstr ""
#: lib/demux_aiff.c:346
#, c-format
msgid "Compression %c%c%c%c not supported"
msgstr ""
#: lib/qt_udta.c:111
msgid "Skipping garbage in udta atom"
msgstr ""
#: lib/demux_mpegps.c:713
#, c-format
msgid "Unknown ID %02x in private stream 1"
msgstr ""
#: lib/demux_mpegps.c:796
#, c-format
msgid "Unknown PES ID %02x"
msgstr ""
#: lib/video_libmpeg2.c:403
msgid "Detected change of image size, not handled yet"
msgstr ""
#: lib/video_libmpeg2.c:411
#, c-format
msgid "Detected change of pixel aspect ratio: %dx%d"
msgstr ""
#: lib/video_libmpeg2.c:433
msgid "Detected MPEG still image"
msgstr ""
#: lib/video_real.c:213 lib/audio_real.c:213
#, c-format
msgid "Could not open DLL %s %s"
msgstr ""
#: lib/video_real.c:244
#, c-format
msgid "DLL %s is not ok: %s"
msgstr ""
#: lib/video_real.c:261
msgid "Init codec failed"
msgstr ""
#: lib/video_real.c:289
msgid "rvyuv_custom_message failed"
msgstr ""
#: lib/video_real.c:339
msgid "Decoding failed"
msgstr ""
#: lib/vdpau.c:111
#, c-format
msgid "Creating surface failed: %s\n"
msgstr ""
#: lib/vdpau.c:138
#, c-format
msgid "Creating decoder failed: %s\n"
msgstr ""
#: lib/vdpau.c:164
#, c-format
msgid "Decoding image failed: %s\n"
msgstr ""
#: lib/vdpau.c:194
#, c-format
msgid "Get surface bits failed: %s\n"
msgstr ""
#: lib/demux_nsv.c:519
msgid ""
"Seeking with version 2 TOC not support due to lack of sample files.\n"
"Contact the authors to solve this"
msgstr ""
#: lib/audio_flac.c:214
msgid "FLAC decoder needs 42 bytes extradata"
msgstr ""
#: lib/audio_flac.c:250
msgid "Reading metadata failed"
msgstr ""
#: lib/audio_speex.c:62
msgid "Speex needs extradata"
msgstr ""
#: lib/demux_ffmpeg.c:612
msgid "av_open_input_stream failed"
msgstr ""
#: lib/demux_ffmpeg.c:622
msgid "av_find_stream_info failed"
msgstr ""
#: lib/demux_4xm.c:475
#, c-format
msgid "Unknown Chunk %c%c%c%c"
msgstr ""
#: lib/rtp.c:971
msgid "Joining RTP thread..."
msgstr ""
#: lib/rtp.c:975
msgid "Joined RTP thread"
msgstr ""
#: lib/rtp.c:1148
msgid "Interleaved MPEG-4 audio not supported yet"
msgstr ""
#: lib/rtp.c:1185
msgid "No audio mode for mpeg4-generic"
msgstr ""
#: lib/rtp.c:1199
#, c-format
msgid "Unknown audio mode for mpeg4-generic: %s"
msgstr ""
#: lib/rtp.c:1207
msgid "Interleaved audio not yet supported for mpeg4-generic"
msgstr ""
#: lib/rtp.c:1214
msgid "No sizelength for mpeg4-generic"
msgstr ""
#: lib/rtp.c:1223
msgid "No indexlength for mpeg4-generic"
msgstr ""
#: lib/rtp.c:1232
msgid "No indexdeltalength for mpeg4-generic"
msgstr ""
#: lib/mms.c:254
#, c-format
msgid "Sequence number mismatch, expected %d, got %d"
msgstr ""
#: lib/mms.c:373
#, c-format
msgid "Unknown data: %02x %02x %02x %02x %02x %02x %02x %02x"
msgstr ""
#: lib/mms.c:436
#, c-format
msgid "Invalid URL: %s"
msgstr ""
#: lib/mms.c:464 lib/tcp.c:182
msgid "Cannot set nonblocking mode"
msgstr ""
#: lib/mms.c:495
msgid "Cannot get software version number and stuff"
msgstr ""
#: lib/mms.c:504
#, c-format
msgid "Invalid answer 1 %08x %08x"
msgstr ""
#: lib/mms.c:568 lib/mms.c:689
msgid "Next packet failed"
msgstr ""
#: lib/mms.c:578
msgid "Protocol not supported"
msgstr ""
#: lib/mms.c:583
#, c-format
msgid "Got answer: %d"
msgstr ""
#: lib/mms.c:605
msgid "Next packet failed 2"
msgstr ""
#: lib/mms.c:610
#, c-format
msgid "Invalid answer 2 %08x"
msgstr ""
#: lib/mms.c:616
msgid "Passwords not supported"
msgstr ""
#: lib/mms.c:622
#, c-format
msgid "Invalid answer 3: %d"
msgstr ""
#: lib/mms.c:631
#, c-format
msgid "Request not accepted %08x"
msgstr ""
#: lib/mms.c:678
msgid "Invalid answer 4"
msgstr ""
#: lib/mms.c:697
msgid "Read header failed"
msgstr ""
#: lib/parse_vorbis.c:98 lib/audio_vorbis.c:406
msgid "No extradata found"
msgstr ""
#: lib/parse_vorbis.c:111 lib/audio_vorbis.c:419
#, c-format
msgid "Truncated vorbis header %d"
msgstr ""
#: lib/parse_vorbis.c:125 lib/audio_vorbis.c:433
#, c-format
msgid "Packet %d is not a vorbis header"
msgstr ""
#: lib/demux_mpegts.c:197
#, c-format
msgid "Detected pts wrap (%s < %s)"
msgstr ""
#: lib/demux_mpegts.c:251
msgid "Too many transport errors"
msgstr ""
#: lib/demux_mpegts.c:254
msgid "Transport error"
msgstr ""
#: lib/demux_mpegts.c:584
msgid "PAT section spans multiple packets, please report"
msgstr ""
#: lib/demux_mpegts.c:593
msgid "PAT has multiple sections, please report"
msgstr ""
#: lib/demux_mpegts.c:627
msgid "Premature EOF"
msgstr ""
#: lib/demux_mpegts.c:640
msgid "Lost sync during initializing"
msgstr ""
#: lib/demux_mpegts.c:678
msgid "PMT section spans multiple packets, please report"
msgstr ""
#: lib/demux_mpegts.c:688
msgid "PMT has multiple sections, please report"
msgstr ""
#: lib/demux_mpegts.c:994
msgid "Cannot get packet size"
msgstr ""
#: lib/demux_mpegts.c:998
#, c-format
msgid "Packet size: %d"
msgstr ""
#: lib/demux_mpegts.c:1110
msgid "Could not get program durations, seeking disabled"
msgstr ""
#: lib/demux_mpegts.c:1364
#, c-format
msgid "Next PCR wrap in %s"
msgstr ""
#: lib/in_dvb_linux.c:257
#, c-format
msgid "Setting channel failed: %s"
msgstr ""
#: lib/in_dvb_linux.c:274
msgid "Setting channel failed: Event queue overflow"
msgstr ""
#: lib/in_dvb_linux.c:280
msgid "Setting frequency failed"
msgstr ""
#: lib/in_dvb_linux.c:301
#, c-format
msgid "Reading status failed: %s"
msgstr ""
#: lib/in_dvb_linux.c:309
msgid "Waiting for lock"
msgstr ""
#: lib/in_dvb_linux.c:314
msgid "Locking timed out"
msgstr ""
#: lib/in_dvb_linux.c:318
msgid "Frontend locked successfully"
msgstr ""
#: lib/in_dvb_linux.c:356
#, c-format
msgid "Setting PAT filter failed: %s"
msgstr ""
#: lib/in_dvb_linux.c:365
msgid "Parsing PAT failed"
msgstr ""
#: lib/in_dvb_linux.c:390
#, c-format
msgid "Cannot find service ID %d in PAT (recreate channels.conf)"
msgstr ""
#: lib/in_dvb_linux.c:405
#, c-format
msgid "Setting PMT filter failed: %s"
msgstr ""
#: lib/in_dvb_linux.c:415
msgid "Parsing PMT failed"
msgstr ""
#: lib/in_dvb_linux.c:483
#, c-format
msgid "Channel cache %s cannot be opened: %s"
msgstr ""
#: lib/in_dvb_linux.c:523
msgid "Channel cache older than channels.conf"
msgstr ""
#: lib/in_dvb_linux.c:754
#, c-format
msgid "Cannot open frontend device %s: %s"
msgstr ""
#: lib/in_dvb_linux.c:761
msgid "Cannot get frontend info"
msgstr ""
#: lib/in_dvb_linux.c:770
msgid "Cannot get frontend status"
msgstr ""
#: lib/in_dvb_linux.c:786
msgid "Found no channels.conf file"
msgstr ""
#: lib/in_dvb_linux.c:798
msgid "Regenerating channel cache"
msgstr ""
#: lib/in_dvb_linux.c:812
msgid "Using channel cache"
msgstr ""
#: lib/in_dvb_linux.c:1164 lib/in_dvb_linux.c:1185
msgid "Reading timed out (check cable connections)"
msgstr ""
#: lib/in_dvb_linux.c:1176
#, c-format
msgid "poll failed: %s"
msgstr ""
#: lib/in_dvb_linux.c:1194
#, c-format
msgid "read failed: %s"
msgstr ""
#: lib/in_dvb_linux.c:1219
#, c-format
msgid "Setting pes filter failed: %s"
msgstr ""
#: lib/in_dvb_linux.c:1239
#, c-format
msgid "Setting section filter failed: %s"
msgstr ""
#: lib/in_dvb_linux.c:1392
#, c-format
msgid "Setting section filter buffer failed: %s"
msgstr ""
#: lib/in_dvb_linux.c:1402
msgid "Filters initialized successfully"
msgstr ""
#: lib/demux_musepack.c:120
msgid "Cannot decode from nonseekable sources"
msgstr ""
#: lib/demux_sphere.c:231
msgid "Bytes per sample is zero"
msgstr ""
#: lib/audio_vorbis.c:215 lib/audio_vorbis.c:254 lib/audio_vorbis.c:298
#: lib/audio_vorbis.c:334 lib/audio_vorbis.c:384
msgid "decode: vorbis_synthesis_headerin: not a vorbis header"
msgstr ""
#: lib/audio_vorbis.c:237
#, c-format
msgid "Vorbis decoder: Init data too small (%d bytes)"
msgstr ""
#: lib/audio_vorbis.c:283
msgid "ext size too small"
msgstr ""
#: lib/audio_vorbis.c:365
msgid "No OVHS Atom found"
msgstr ""
#: lib/qt_atom.c:79
#, c-format
msgid "Unknown atom [%c%c%c%c] at toplevel"
msgstr ""
#: lib/qt_atom.c:88
#, c-format
msgid "Unknown atom inside [%c%c%c%c] (fourcc: [%c%c%c%c], size: %s)"
msgstr ""
#: lib/packettimer.c:261
msgid "Packet cache full"
msgstr ""
#: lib/audio_pcm.c:861 lib/audio_pcm.c:944 lib/audio_pcm.c:984
#, c-format
msgid "%d audio bits not supported."
msgstr ""
#: lib/audio_pcm.c:955
msgid "Could not get initial packet"
msgstr ""
#: lib/audio_pcm.c:1093
#, c-format
msgid "extradata too small (%d < %zd)"
msgstr ""
#: lib/audio_pcm.c:1192
msgid "Unknown fourcc"
msgstr ""
#: lib/audio_real.c:262 lib/audio_real.c:268
msgid "raOpenCodec2 failed"
msgstr ""
#: lib/audio_real.c:294
msgid "raInitDecoder failed"
msgstr ""
#: lib/audio_real.c:304
msgid "raSetFlavor failed"
msgstr ""
#: lib/audio_real.c:474
msgid "raDecode failed"
msgstr ""
#: lib/demux_r3d.c:275
msgid "Wrong index tag (broken file)"
msgstr ""
#: lib/demux_r3d.c:281
msgid "Index chunk too small"
msgstr ""
#: lib/demux_r3d.c:290
msgid "Unexpected EOF in index"
msgstr ""
#: lib/demux_r3d.c:380
msgid "R3D cannot be read from nonseekable sources"
msgstr ""
#: lib/demux_r3d.c:392
msgid "Got no header"
msgstr ""
#: lib/demux_r3d.c:407
msgid "Got no footer"
msgstr ""
#: lib/tcp.c:139
#, c-format
msgid "Cannot resolve address of %s: %s"
msgstr ""
#: lib/tcp.c:197
msgid "Connection timed out"
msgstr ""
#: lib/tcp.c:204 lib/tcp.c:215
#, c-format
msgid "Connecting failed: %s"
msgstr ""
#: lib/tcp.c:229
msgid "Cannot set blocking mode"
msgstr ""
#: lib/tcp.c:257
#, c-format
msgid "Could not send data: %s"
msgstr ""
#: lib/in_ftp.c:179 lib/in_ftp.c:215 lib/in_ftp.c:226 lib/in_ftp.c:250
#: lib/in_ftp.c:267 lib/in_ftp.c:294 lib/in_ftp.c:311 lib/in_ftp.c:332
msgid "Could not read answer"
msgstr ""
#: lib/in_ftp.c:277
msgid "Invalid server answer"
msgstr ""
#: lib/in_rtsp.c:267
#, c-format
msgid "Unknown RDT chunk %02x %02x %02x %02x %02x %02x %02x %02x"
msgstr ""
#: lib/in_rtsp.c:333
#, c-format
msgid "Real Server, challenge %s"
msgstr ""
#: lib/in_rtsp.c:351
msgid "QTSS Server"
msgstr ""
#: lib/in_rtsp.c:360
msgid "Generic RTSP code\n"
msgstr ""
#: lib/in_rtsp.c:426
msgid "Got smil redirector"
msgstr ""
#: lib/in_rtsp.c:539
#, c-format
msgid "Client ports: %d %d\n"
msgstr ""
#: lib/in_rtsp.c:547
#, c-format
msgid "Server ports: %d %d\n"
msgstr ""
#: lib/in_rtsp.c:581
#, c-format
msgid "Server address: %s\n"
msgstr ""
#: lib/in_rtsp.c:593
#, c-format
msgid "ssrc: %08x\n"
msgstr ""
#: lib/in_rtsp.c:817
msgid "Got no RTP-Info from server"
msgstr ""
#: lib/in_rtsp.c:879
msgid "Got no ETag"
msgstr ""
#: lib/audio_qtwin32.c:149
msgid "Cannot open QuickTime.qts"
msgstr ""
#: lib/audio_qtwin32.c:156
msgid "Cannot open qtmlClient.dll"
msgstr ""
#: lib/audio_qtwin32.c:165
msgid "Getting proc address InitializeQTML failed"
msgstr ""
#: lib/audio_qtwin32.c:173
msgid "Getting proc address SoundConverterOpen failed"
msgstr ""
#: lib/audio_qtwin32.c:182
msgid "Getting proc address SoundConverterClose failed"
msgstr ""
#: lib/audio_qtwin32.c:190
msgid "Getting proc address TerminateQTML failed"
msgstr ""
#: lib/audio_qtwin32.c:198
msgid "Getting proc address SoundConverterSetInfo failed"
msgstr ""
#: lib/audio_qtwin32.c:206
msgid "Getting proc address SoundConverterGetBufferSizes failed"
msgstr ""
#: lib/audio_qtwin32.c:214
msgid "Getting proc address SoundConverterConvertBuffer1 failed"
msgstr ""
#: lib/audio_qtwin32.c:222
msgid "Getting proc address SoundConverterEndConversion failed"
msgstr ""
#: lib/audio_qtwin32.c:230
msgid "Getting proc address SoundConverterBeginConversion failed"
msgstr ""
#: lib/audio_qtwin32.c:236
msgid "InitializeQTML failed"
msgstr ""
#: lib/audio_qtwin32.c:275
msgid "SoundConverterOpen failed"
msgstr ""
#: lib/audio_qtwin32.c:285
msgid "SoundConverterSetInfo failed"
msgstr ""
#: lib/audio_qtwin32.c:302
msgid "SoundConverterBeginConversion failed"
msgstr ""
#: lib/audio_qtwin32.c:368
msgid "SoundConverterConvertBuffer failed"
msgstr ""
#: lib/audio_qtwin32.c:456
#, c-format
msgid "DLL %s not found"
msgstr ""
#: lib/demux_asf.c:941
#, c-format
msgid "unknown segment type (rlen): 0x%02X"
msgstr ""
#: lib/demux_asf.c:1027
#, c-format
msgid "data_size %d, Offset: %d"
msgstr ""
|