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
|
This file contains strings from the OpenConnect VPN client, found at
https://www.infradead.org/openconnect/ and browsable in gitweb at
https://git.infradead.org/users/dwmw2/openconnect.git
We do this because NetworkManager-openconnect authentication dialog
uses a lot of strings from libopenconnect, which also need to be
translated too if the user is to have a fully localised experience.
For translators looking to see source comments in their original context
in order to translate them properly, the URLs by each one will give a
link to the original source code.
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/27066a2b9:/array.c#l113
_("No ANsession cookie found\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l57
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8f113f32a:/http.c#l423
_("Invalid cookie '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/561541d63:/array.c#l333
_("Found DNS server %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/561541d63:/array.c#l358
_("Got search domain '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/561541d63:/array.c#l445
_("Unknown Array config element '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/561541d63:/array.c#l484
_("Initial config: Speed tunnel %d, enc %d, DPD %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/561541d63:/array.c#l515
_("Short write in Array JSON negotiation\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/561541d63:/array.c#l524
_("Failed to read Array JSON response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/561541d63:/array.c#l533
_("Unexpected response to Array JSON request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l578
_("Failed to parse Array JSON response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l124
_("Error creating array negotiation request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l140
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l412
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l768
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/00e4586d7:/oncp.c#l173
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1042
_("Unexpected %d result from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/80f90dccd:/array.c#l699
_("Error building Array DTLS negotiation packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l695
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l198
_("Short write in array negotiation\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l704
_("Failed to read UDP negotiation response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l717
_("DTLS enabled on port %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l746
_("Refusing non-DTLS UDP tunnel\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l207
_("Failed to read ipff response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l257
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1057
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1167
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f26b11e76:/cstp.c#l802
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f5220f02c:/dtls.c#l715
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c00609adc:/dtls.c#l1296
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2cb39a6c:/esp.c#l166
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l635
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f5220f02c:/mainloop.c#l64
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ede7fad4:/oncp.c#l539
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l975
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1642
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1767
_("Allocation failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ad2e3199c:/array.c#l841
_("Received %d more bytes after partial %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ad2e3199c:/array.c#l855
_("Received partial packet, %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4a5c4a40c:/array.c#l864
_("Unrecognised data packet, len %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ad2e3199c:/array.c#l881
_("Received partial packet, %d of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l849
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1194
_("Receive control packet of type %x:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l856
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1793
_("Received data packet of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4a5c4a40c:/array.c#l905
_("Moved down %d bytes after previous packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l323
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l616
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l735
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ede7fad4:/oncp.c#l649
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l1180
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1868
_("SSL wrote too few bytes! Asked for %d, sent %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l337
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l641
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ede7fad4:/oncp.c#l679
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1895
_("CSTP rekey due\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l344
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a983aed4f:/cstp.c#l898
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ede7fad4:/oncp.c#l686
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1902
_("Rehandshake failed; attempting new-tunnel\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l934
_("TCP Dead Peer Detection detected dead peer!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l359
_("TCP reconnect failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l954
_("Send TCP DPD\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l971
_("Send TCP Keepalive\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l987
_("Sending DTLS off packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l404
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l729
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ede7fad4:/oncp.c#l753
_("Sending uncompressed data packet of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1035
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/dtls.c#l687
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1756
_("Attempt new DTLS connection\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1069
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1654
_("Failed to receive authentication response from DTLS\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1081
_("DTLS session established\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1094
_("Received Legacy IP over DTLS; assuming established\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1102
_("Received IPv6 over DTLS; assuming established\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1108
_("Received unknown DTLS packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1116
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1708
_("Error creating connect request for DTLS session\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1132
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1724
_("Failed to write connect request to DTLS session\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1185
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/dtls.c#l443
_("Received DTLS packet 0x%02x of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1209
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/dtls.c#l493
_("DTLS rekey due\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1216
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c02460c44:/dtls.c#l761
_("DTLS Rehandshake failed; reconnecting.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1225
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/dtls.c#l512
_("DTLS Dead Peer Detection detected dead peer!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1231
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/dtls.c#l790
_("Send DTLS DPD\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1235
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/845e629fa:/dtls.c#l684
_("Failed to send DPD request. Expect disconnect\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/de93bad15:/array.c#l1274
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/845e629fa:/dtls.c#l756
_("Sent DTLS packet of %d bytes; DTLS send returned %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l433
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/auth-globalprotect.c#l479
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l455
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e7eb9ef63:/fortinet.c#l352
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/df273812d:/oncp.c#l1282
_("Logout failed.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/array.c#l435
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c00bdc4f9:/auth-globalprotect.c#l709
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l457
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e7eb9ef63:/fortinet.c#l354
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/df273812d:/oncp.c#l1284
_("Logout successful.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ff13a983b:/auth-globalprotect.c#l100
_(""
"SAML authentication required; using portal-userauthcookie to continue SAML.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ff13a983b:/auth-globalprotect.c#l102
_(""
"SAML authentication required; using portal-prelogonuserauthcookie to "
"continue SAML.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ff13a983b:/auth-globalprotect.c#l104
_(""
"Destination form field %s was specified; assuming SAML %s authentication is "
"complete.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fd1d30a24:/auth-globalprotect.c#l117
_("SAML %s authentication is required via %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ff13a983b:/auth-globalprotect.c#l158
_(""
"When SAML authentication is complete, specify destination form field by "
"appending :field_name to login URL.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3e91f7bf7:/auth-globalprotect.c#l110
_("Please enter your username and password");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf4338c6e:/auth-globalprotect.c#l173
_("Username");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf4338c6e:/auth-globalprotect.c#l190
_("Password");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3e91f7bf7:/auth-globalprotect.c#l181
_("Challenge: ");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/645302574:/auth-globalprotect.c#l291
_("GlobalProtect login returned unexpected argument value arg[%d]=%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/auth-globalprotect.c#l153
_("GlobalProtect login returned %s=%s (expected %s)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/auth-globalprotect.c#l159
_("GlobalProtect login returned empty or missing %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/auth-globalprotect.c#l165
_("GlobalProtect login returned %s=%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/07386df8c:/auth-globalprotect.c#l403
_("Please report %d unexpected values above (of which %d fatal) to <%s>\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/auth-globalprotect.c#l200
_("Please select GlobalProtect gateway.");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/auth-globalprotect.c#l210
_("GATEWAY:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/057b381be:/auth-globalprotect.c#l367
_(""
"Ignoring portal's HIP report interval (%d minutes), because interval is "
"already set to %d minutes.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/057b381be:/auth-globalprotect.c#l371
_("Portal set HIP report interval to %d minutes).\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c0d2daeaa:/auth-globalprotect.c#l506
_(""
"Portal reports GlobalProtect version %s; we will report the same client "
"version.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9164e21e8:/auth-globalprotect.c#l508
_("GlobalProtect portal configuration lists no gateway servers.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c0d2daeaa:/auth-globalprotect.c#l539
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/abc38e6fe:/main.c#l1451
_("unknown");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/auth-globalprotect.c#l264
_("%d gateway servers available:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/auth-globalprotect.c#l286
_(" %s (%s)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/auth-globalprotect.c#l355
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5ebfec224:/auth-juniper.c#l548
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/05d9a6b7c:/auth.c#l800
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fb93cf5db:/f5.c#l194
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/21d3cfd87:/fortinet.c#l166
_("Failed to generate OTP tokencode; disabling token\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/auth-globalprotect.c#l431
_("Server is neither a GlobalProtect portal nor a gateway.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cb56ec21e:/auth-html.c#l107
_("Ignoring unknown form submit item '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cb56ec21e:/auth-html.c#l118
_("Ignoring unknown form input type '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cb56ec21e:/auth-html.c#l128
_("Discarding duplicate option '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cb56ec21e:/auth-html.c#l205
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/766633fac:/auth.c#l343
_("Cannot handle form method='%s', action='%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cb56ec21e:/auth-html.c#l236
_("Unknown textarea field: '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0e4fd86e5:/auth-juniper.c#l307
_("Failed to allocate memory for communication with TNCC\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0e4fd86e5:/auth-juniper.c#l312
_("Failed to send command to TNCC\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5ebfec224:/auth-juniper.c#l339
_("TNCC support not implemented yet on Windows\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5ebfec224:/auth-juniper.c#l361
_("No DSPREAUTH cookie; not attempting TNCC\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7083a0ac5:/auth-juniper.c#l408
_("Trying to run TNCC/Host Checker Trojan script '%s'.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5ebfec224:/auth-juniper.c#l405
_("Failed to exec TNCC script %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5ebfec224:/auth-juniper.c#l421
_("Sent start; waiting for response from TNCC\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5ebfec224:/auth-juniper.c#l426
_("Failed to read response from TNCC\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/80342b349:/auth-juniper.c#l435
_("Received unsuccessful %s response from TNCC\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/80342b349:/auth-juniper.c#l441
_("TNCC response 200 OK\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/80342b349:/auth-juniper.c#l448
_("Second line of TNCC response: '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5ebfec224:/auth-juniper.c#l460
_("Got new DSPREAUTH cookie from TNCC: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0e4fd86e5:/auth-juniper.c#l504
_("Got reauth interval from TNCC: %d seconds\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5c1cba8b9:/auth-juniper.c#l321
_("Unexpected non-empty line from TNCC after DSPREAUTH cookie: '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5c1cba8b9:/auth-juniper.c#l327
_("Too many non-empty lines from TNCC after DSPREAUTH cookie\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e41e201d1:/auth-juniper.c#l488
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/423449253:/f5.c#l110
_("Failed to parse HTML document\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5ebfec224:/auth-juniper.c#l499
_("Failed to find or parse web form in login page\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c8a6ee941:/auth-juniper.c#l743
_("Encountered form with no 'name' or 'id'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/db5142ff0:/auth-juniper.c#l761
_("Form action (%s) likely indicates that TNCC/Host Checker failed.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c8a6ee941:/auth-juniper.c#l795
_("Unknown form (name '%s', id '%s')\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5ebfec224:/auth-juniper.c#l534
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/423449253:/f5.c#l149
_("Dumping unknown HTML form:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/auth.c#l124
_("Form choice has no name\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/auth.c#l188
_("name %s not input\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/auth.c#l195
_("No input type in form\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/auth.c#l207
_("No input name in form\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/auth.c#l230
_("Unknown input type %s in form\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7a4dcd93b:/auth.c#l498
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l219
_("Empty response from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/auth.c#l338
_("Failed to parse server response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/auth.c#l340
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l75
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l117
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l185
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l300
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e7eb9ef63:/fortinet.c#l102
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e7eb9ef63:/fortinet.c#l208
_("Response was:%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/088b39077:/auth.c#l542
_("Received <client-cert-request> when not expected.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f51ecb36b:/auth.c#l639
_("Received <multiple-client-cert-request> when not expected.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f51ecb36b:/auth.c#l674
_("Server reported certificate error: %s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c407e79e9:/auth.c#l541
_("XML response has no \"auth\" node\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/auth.c#l361
_("Asked for password but '--no-passwd' set\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/82c85c8fd:/auth.c#l691
_(""
"Client certificate missing or incorrect (Certificate Validation Failure)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1132
_("Not downloading XML profile because SHA1 already matches\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1138
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l140
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fe85faaee:/http.c#l892
_("Failed to open HTTPS connection to %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1155
_("Failed to send GET request for new config\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1179
_("Downloaded config file did not match intended SHA1\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1184
_("Downloaded new XML profile\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/318d5777a:/auth.c#l982
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3c5887bea:/auth.c#l973
_(""
"Error: Running the 'Cisco Secure Desktop' trojan on this platform is not yet "
"implemented.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/318d5777a:/auth.c#l993
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/79f5ed273:/mainloop.c#l140
_("Failed to set gid %ld: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/318d5777a:/auth.c#l1000
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/79f5ed273:/mainloop.c#l147
_("Failed to set groups to %ld: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/318d5777a:/auth.c#l1007
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/79f5ed273:/mainloop.c#l154
_("Failed to set uid %ld: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/318d5777a:/auth.c#l1014
_("Invalid user uid=%ld: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/318d5777a:/auth.c#l1021
_("Failed to change to CSD home directory '%s': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1203
_(""
"Error: Server asked us to run CSD hostscan.\n"
"You need to provide a suitable --csd-wrapper argument.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1210
_(""
"Error: Server asked us to download and run a 'Cisco Secure Desktop' trojan.\n"
"This facility is disabled by default for security reasons, so you may wish "
"to enable it.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1244
_("Temporary directory '%s' is not writable: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1252
_("Failed to open temporary CSD script file: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1261
_("Failed to write temporary CSD script file: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7083a0ac5:/auth.c#l1122
_("Trying to run CSD Trojan script '%s'.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ad3ef669b:/auth.c#l1129
_("CSD script '%s' exited abnormally\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ad3ef669b:/auth.c#l1134
_("CSD script '%s' returned non-zero status: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2a2c7a9c:/auth.c#l1146
_(""
"Authentication may fail. If your script is not returning zero, fix it.\n"
"Future versions of openconnect will abort on this error.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7083a0ac5:/auth.c#l1149
_("CSD script '%s' completed successfully.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5c1cba8b9:/auth.c#l1203
_(""
"Warning: you are running insecure CSD code with root privileges\n"
"\t Use command line option \"--csd-user\"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ad3ef669b:/auth.c#l1210
_("Failed to exec CSD script %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1372
_("Unknown response from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1496
_("Server requested SSL client certificate after one was provided\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1500
_("Server requested SSL client certificate; none was configured\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/af7058410:/auth.c#l1487
_(""
"Multiple-certificate authentication requires a second certificate; none were "
"configured.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1516
_("XML POST enabled\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7a5974a59:/auth.c#l1388
_("Couldn't fetch CSD stub. Proceeding anyway with CSD wrapper script.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7083a0ac5:/auth.c#l1432
_("Fetched CSD stub for %s platform (size is %d bytes).\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/321066cf8:/auth.c#l1559
_("Refreshing %s after 1 second...\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f51ecb36b:/auth.c#l1808
_("Unsupported hash algorithm '%s' requested.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f51ecb36b:/auth.c#l1817
_("Duplicate hash algorithm '%s' requested.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f51ecb36b:/auth.c#l1908
_(""
"Multiple-certificate authentication signature hash algorithm negotiation "
"failed.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/af7058410:/auth.c#l1942
_("Error exporting multiple-certificate signer's certificate chain.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f51ecb36b:/auth.c#l1929
_("Error encoding the challenge response.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/487d08cb3:/compat.c#l207
_("(error 0x%lx)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/887c9d97e:/compat.c#l246
_("(Error while describing error!)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b5df97e74:/compat.c#l200
_("ERROR: Cannot initialize sockets\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e2c36e363:/cstp.c#l121
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2b90f3335:/mtucalc.c#l56
_("TCP_INFO rcv mss %d, snd mss %d, adv mss %d, pmtu %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/cstp.c#l128
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2b90f3335:/mtucalc.c#l75
_("TCP_MAXSEG %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0e72b17ee:/cstp.c#l205
_(""
"CRITICAL ERROR: DTLS master secret is uninitialised. Please report this.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fe34f4d0d:/cstp.c#l205
_("Error creating HTTPS CONNECT request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l133
_("Error fetching HTTPS response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l160
_("VPN service unavailable; reason: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l165
_("Got inappropriate HTTP CONNECT response: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l172
_("Got CONNECT response: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l194
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l202
_("No memory for options\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/cstp.c#l312
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l175
_("<elided>");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/aafaa23f2:/cstp.c#l215
_("X-DTLS-Session-ID not 64 characters; is: \"%s\"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/120b59248:/cstp.c#l429
_("X-DTLS-Session-ID is invalid; is: \"%s\"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5f9e9271b:/cstp.c#l363
_("Unknown DTLS-Content-Encoding %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l246
_("Unknown CSTP-Content-Encoding %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e2ee619fa:/cstp.c#l419
_("No MTU received. Aborting\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l353
_("CSTP connected. DPD %d, Keepalive %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8bacc334b:/cstp.c#l694
_("Ingested STRAP public key %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l389
_("Compression setup failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l397
_("Allocation of deflate buffer failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l460
_("inflate failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/84ecff1b9:/cstp.c#l708
_("LZS decompression failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/329991d51:/cstp.c#l757
_("LZ4 decompression failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2028d2f00:/cstp.c#l739
_("Unknown compression type %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/84ecff1b9:/cstp.c#l715
_("Received %s compressed data packet of %d bytes (was %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bdd670b6f:/cstp.c#l751
_("deflate failed %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f26b11e76:/cstp.c#l813
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l648
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1778
_("Short packet received (%d bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l504
_("Unexpected packet length. SSL_read returned %d but packet is\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l516
_("Got CSTP DPD request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l522
_("Got CSTP DPD response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l527
_("Got CSTP Keepalive\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l532
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47d69d35:/oncp.c#l970
_("Received uncompressed data packet of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l547
_("Received server disconnect: %02x '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/709744176:/cstp.c#l884
_("Received server disconnect\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l555
_("Compressed packet received in !deflate mode\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l563
_("received server terminate packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l570
_("Unknown packet %02x %02x %02x %02x %02x %02x %02x %02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l648
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ede7fad4:/oncp.c#l697
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1913
_("CSTP Dead Peer Detection detected dead peer!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l651
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l759
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/613bca6f9:/oncp.c#l1616
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ede7fad4:/oncp.c#l701
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l1200
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1838
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1918
_("Reconnect failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/cstp.c#l922
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ede7fad4:/oncp.c#l717
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1934
_("Send CSTP DPD\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/cstp.c#l933
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ede7fad4:/oncp.c#l728
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1946
_("Send CSTP Keepalive\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bdd670b6f:/cstp.c#l1130
_("Sending compressed data packet of %d bytes (was %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/cstp.c#l767
_("Send BYE packet: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/43db0b32c:/cstp.c#l1224
_("Short write writing BYE packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e33b27beb:/digest.c#l27
_("Attempting Digest authentication to proxy\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/06723682f:/digest.c#l257
_("Attempting Digest authentication to server '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6a3ad9877:/dtls.c#l453
_("DTLS connection attempted with an existing fd\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4824e10ae:/dtls.c#l332
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/828966dae:/dtls.c#l188
_("No DTLS address\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4824e10ae:/dtls.c#l339
_("Server offered no DTLS cipher option\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4824e10ae:/dtls.c#l346
_("No DTLS when connected via proxy\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b710c91a2:/dtls.c#l692
_("DTLS initialised. DPD %d, Keepalive %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/21da88397:/dtls.c#l259
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/87070617c:/tun.c#l419
_("Unknown packet (len %d) received: %02x %02x %02x %02x...\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/21da88397:/dtls.c#l266
_("TOS this: %d, TOS last: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/21da88397:/dtls.c#l270
_("UDP setsockopt");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/dtls.c#l728
_("Got DTLS DPD request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/dtls.c#l461
_("Failed to send DPD response. Expect disconnect\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/dtls.c#l738
_("Got DTLS DPD response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/dtls.c#l742
_("Got DTLS Keepalive\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5f9e9271b:/dtls.c#l760
_("Compressed DTLS packet received when compression not enabled\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/dtls.c#l474
_("Unknown DTLS packet type %02x, len %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/dtls.c#l808
_("Send DTLS Keepalive\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/845e629fa:/dtls.c#l702
_("Failed to send keepalive request. Expect disconnect\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0120a25b4:/dtls.c#l551
_("Initiating MTU detection (min=%d, max=%d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0120a25b4:/dtls.c#l585
_("Sending MTU DPD probe (%u bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8adb493b3:/dtls.c#l526
_("Failed to send DPD request (%d %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0120a25b4:/dtls.c#l612
_("Too long time in MTU detect loop; assuming negotiated MTU.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0120a25b4:/dtls.c#l616
_("Too long time in MTU detect loop; MTU set to %d.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c00609adc:/dtls.c#l1252
_("Received unexpected packet (%.2x) in MTU detection; skipping.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0120a25b4:/dtls.c#l640
_("No response to size %u after %d tries; declare MTU is %u\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0120a25b4:/dtls.c#l647
_("Failed to recv DPD request (%d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0120a25b4:/dtls.c#l651
_("Received MTU DPD probe (%u bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c00609adc:/dtls.c#l1317
_("Detected MTU of %d bytes (was %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c00609adc:/dtls.c#l1320
_("No change in MTU after detection (was %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/30931b517:/esp-seqno.c#l53
_("Accepting expected ESP packet with seq %u\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f0d0e83a8:/esp-seqno.c#l109
_(""
"Accepting later-than-expected ESP packet with seq %u (expected %<PRIu64>)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/497b3dd7a:/esp-seqno.c#l104
_("Discarding ancient ESP packet with seq %u (expected %<PRIu64>)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/497b3dd7a:/esp-seqno.c#l109
_("Tolerating ancient ESP packet with seq %u (expected %<PRIu64>)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/497b3dd7a:/esp-seqno.c#l118
_("Discarding replayed ESP packet with seq %u\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/497b3dd7a:/esp-seqno.c#l123
_("Tolerating replayed ESP packet with seq %u\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/122dcc953:/esp-seqno.c#l122
_("Accepting out-of-order ESP packet with seq %u (expected %<PRIu64>)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d70f11ed0:/esp.c#l148
_("Parameters for %s ESP: SPI 0x%08x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d70f11ed0:/esp.c#l151
_("ESP encryption type %s key 0x%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d70f11ed0:/esp.c#l154
_("ESP authentication type %s key 0x%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2c6174775:/esp.c#l199
_("incoming");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d70f11ed0:/esp.c#l180
_("outgoing");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4cfeab795:/esp.c#l218
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/299d4444a:/esp.c#l315
_("Send ESP probes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0d2eb51ab:/esp.c#l182
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0d2eb51ab:/esp.c#l189
_("ESP receive error: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4daac3fa2:/esp.c#l198
_("Received ESP packet from old SPI 0x%x, seq %u\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2c6174775:/esp.c#l259
_("Received ESP packet with invalid SPI 0x%08x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e3374fc:/esp.c#l202
_("Received ESP Legacy IP packet of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e3374fc:/esp.c#l205
_("Received ESP Legacy IP packet of %d bytes (LZO-compressed)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e3374fc:/esp.c#l208
_("Received ESP IPv6 packet of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e3374fc:/esp.c#l212
_("Received ESP packet of %d bytes with unrecognised payload type %02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2cb39a6c:/esp.c#l198
_("Invalid padding length %02x in ESP\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f0cbeacf0:/esp.c#l310
_("Invalid padding bytes in ESP\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2cb39a6c:/esp.c#l207
_("ESP session established with server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/be62fff9e:/esp.c#l295
_("Failed to allocate memory to decrypt ESP packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/be62fff9e:/esp.c#l301
_("LZO decompression of ESP packet failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/be62fff9e:/esp.c#l307
_("LZO decompressed %d bytes into %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2c700089a:/esp.c#l345
_("Rekey not implemented for ESP\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2c700089a:/esp.c#l349
_("ESP detected dead peer\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2c700089a:/esp.c#l356
_("Send ESP probes for DPD\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2c700089a:/esp.c#l362
_("Keepalive not implemented for ESP\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3014e3059:/esp.c#l294
_("Requeueing failed ESP send: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2cb39a6c:/esp.c#l239
_("Failed to send ESP packet: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e3374fc:/esp.c#l374
_("Sent ESP IPv%d packet of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/347060a85:/esp.c#l373
_("Failed to generate random keys for ESP\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/347060a85:/esp.c#l380
_("Failed to generate initial IV for ESP\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/514cacaff:/f5.c#l214
_(""
"WARNING: Unknown F5 JSON form field type '%s', treating as 'text'. Please "
"report to <%s>");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/514cacaff:/f5.c#l308
_(""
"WARNING: No HTML authentication form found. Extracted form from F5's "
"embedded\n"
" JSON. This is EXPERIMENTAL. Please report results to <%s>.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/423449253:/f5.c#l123
_(""
"WARNING: no HTML login form found; assuming username and password fields\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/423449253:/f5.c#l146
_("Unknown form ID '%s' (expected 'auth_form')\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l73
_("Failed to parse F5 profile response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l115
_("Failed to find VPN profile parameters\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l183
_("Failed to parse F5 options response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l223
_("Idle timeout is %d minutes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/792647ee1:/f5.c#l369
_("Got default routes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l233
_("Got SplitTunneling0 value of %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/792647ee1:/f5.c#l381
_("Got DNS server %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l249
_("Got WINS/NBNS server %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l256
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8b21650a5:/fortinet.c#l168
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/52000184b:/fortinet.c#l402
_("Got search domain %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/792647ee1:/f5.c#l425
_("Got split exclude route %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/792647ee1:/f5.c#l429
_("Got split include route %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0066def47:/f5.c#l440
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dc059032b:/fortinet.c#l321
_("DTLS is enabled on port %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0066def47:/f5.c#l452
_(""
"WARNING: Server enables DTLS, but also requires HDLC. Disabling DTLS,\n"
" because HDLC prevents determination of efficient and consistent MTU.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l298
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e7eb9ef63:/fortinet.c#l206
_("Failed to find VPN options\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0066def47:/f5.c#l492
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/52000184b:/fortinet.c#l343
_("Got Legacy IP address %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l317
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cd555051e:/fortinet.c#l411
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/52000184b:/fortinet.c#l398
_("Got IPv6 address %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l354
_("Got profile parameters '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l374
_("Got ipv4 %d ipv6 %d hdlc %d ur_Z '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/f5.c#l396
_("Error establishing F5 connection\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/23fae21ee:/fortinet.c#l120
_("Got login realm '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d03404734:/fortinet.c#l294
_("Invalid credentials; try again.");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/526fd5d44:/fortinet.c#l331
_("Got IPv%d exclude route %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/526fd5d44:/fortinet.c#l336
_("Got IPv%d route %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e7eb9ef63:/fortinet.c#l100
_("Failed to parse Fortinet config XML\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e7eb9ef63:/fortinet.c#l134
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/37fbeedd7:/gpst.c#l486
_("Idle timeout is %d minutes.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4e4d32543:/fortinet.c#l358
_(""
"Server reports that reconnect-after-drop is allowed within %d seconds, %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4e4d32543:/fortinet.c#l360
_("but only from the same source IP address");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4e4d32543:/fortinet.c#l360
_("even if source IP address changes");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0d79ec0b3:/fortinet.c#l365
_(""
"Server reports that reconnect-after-drop is not allowed. OpenConnect will "
"not\n"
"be able to reconnect if dead peer is detected. If reconnection DOES work,\n"
"please report to <%s>\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8b21650a5:/fortinet.c#l158
_("Reported platform is %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8b21650a5:/fortinet.c#l172
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/52000184b:/fortinet.c#l406
_("Got IPv%d DNS server %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7dd69fe08:/fortinet.c#l352
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/52000184b:/fortinet.c#l412
_("WARNING: Got split-DNS domains %s (not yet implemented)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7dd69fe08:/fortinet.c#l357
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/52000184b:/fortinet.c#l417
_("WARNING: Got split-DNS server %s (not yet implemented)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8c36399e6:/fortinet.c#l550
_(""
"WARNING: Fortinet server does not specifically enable or disable "
"reconnection\n"
" without reauthentication. If automatic reconnection does work, please\n"
" report results to <%s>\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0d79ec0b3:/fortinet.c#l511
_(""
"Server did not send <auth-ses tun-connect-without-reauth=\"0/1\"/>. "
"OpenConnect will\n"
"probably not be able to reconnect if dead peer is detected. If reconnection "
"DOES,\n"
"work please report to <%s>\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/526fd5d44:/fortinet.c#l569
_("Received split routes; not setting default Legacy IP route\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/526fd5d44:/fortinet.c#l571
_("No split routes received; setting default Legacy IP route\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0d79ec0b3:/fortinet.c#l595
_(""
"Ancient Fortinet server (<v5?) only supports ancient HTML config, which is "
"not implemented by OpenConnect.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/40a4c8449:/fortinet.c#l606
_(""
"Fortinet server is rejecting request for connection options. This\n"
"has been observed after reconnection in some cases. Please report to\n"
"<%s>, or see the discussions on\n"
"%s and\n"
"%s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/339138770:/fortinet.c#l505
_("Error establishing Fortinet connection\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/08128ddfb:/fortinet.c#l709
_("No cookie named SVPNCOOKIE.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dc059032b:/fortinet.c#l625
_("Did not receive expected svrhello response.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dc059032b:/fortinet.c#l636
_("svrhello status was \"%.*s\" rather than \"ok\"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c032fcd93:/gnutls-dtls.c#l166
_("Deferring DTLS resumption until CSTP generates a PSK\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/120b59248:/gnutls-dtls.c#l164
_("Failed to generate DTLS priority string\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/120b59248:/gnutls-dtls.c#l182
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/87c528d64:/gnutls-dtls.c#l296
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bfbe33bc0:/gnutls-dtls.c#l348
_("Failed to set DTLS priority: '%s': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/120b59248:/gnutls-dtls.c#l194
_("Failed to allocate credentials: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/120b59248:/gnutls-dtls.c#l207
_("Failed to generate DTLS key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/120b59248:/gnutls-dtls.c#l221
_("Failed to set DTLS key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/120b59248:/gnutls-dtls.c#l229
_("Failed to set DTLS PSK credentials: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/gnutls-dtls.c#l149
_("Unknown DTLS parameters for requested CipherSuite '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/gnutls-dtls.c#l183
_("Failed to set DTLS session parameters: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b974ed3c5:/gnutls-dtls.c#l336
_("GnuTLS used %d ClientHello random bytes; this should never happen\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b974ed3c5:/gnutls-dtls.c#l354
_("GnuTLS sent insecure ClientHello random. Upgrade to 3.6.13 or newer.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/87c528d64:/gnutls-dtls.c#l328
_("Failed to initialize DTLS: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dadbd5907:/gnutls-dtls.c#l330
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dadbd5907:/openssl-dtls.c#l484
_("Peer MTU %d too small to allow DTLS\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dadbd5907:/gnutls-dtls.c#l339
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dadbd5907:/openssl-dtls.c#l495
_("DTLS MTU reduced to %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2c7a54bb7:/gnutls-dtls.c#l321
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f449451c7:/openssl-dtls.c#l404
_("DTLS session resume failed; possible MITM attack. Disabling DTLS.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/gnutls-dtls.c#l206
_("Failed to set DTLS MTU: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/gnutls-dtls.c#l224
_("Established DTLS connection (using GnuTLS). Ciphersuite %s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/gnutls-dtls.c#l230
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l314
_("DTLS connection compression using %s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/gnutls-dtls.c#l245
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l395
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l399
_("DTLS handshake timed out\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/gnutls-dtls.c#l248
_("DTLS handshake failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/gnutls-dtls.c#l252
_("(Is a firewall preventing you from sending UDP packets?)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4971447f6:/gnutls-esp.c#l64
_("Failed to initialise ESP cipher: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4971447f6:/gnutls-esp.c#l74
_("Failed to initialize ESP HMAC: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cb844980a:/gnutls-esp.c#l146
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60da8a847:/gnutls-esp.c#l234
_("Failed to calculate HMAC for ESP packet: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2fea605d6:/gnutls-esp.c#l160
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c43d15b5e:/openssl-esp.c#l147
_("Received ESP packet with invalid HMAC\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4748e0884:/gnutls-esp.c#l181
_("Decrypting ESP packet failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60da8a847:/gnutls-esp.c#l226
_("Failed to encrypt ESP packet: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9232b7be9:/gnutls.c#l94
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9232b7be9:/gnutls.c#l244
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9232b7be9:/gnutls.c#l2297
_("Failed select() for TLS");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/gnutls.c#l118
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/openssl.c#l174
_("TLS/DTLS write cancelled\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/gnutls.c#l122
_("Failed to write to TLS/DTLS socket: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/gnutls.c#l168
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e1a3be3da:/openssl.c#l179
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e1a3be3da:/openssl.c#l235
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e1a3be3da:/openssl.c#l307
_("Failed select() for TLS/DTLS");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/gnutls.c#l173
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/gnutls.c#l269
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/openssl.c#l224
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/openssl.c#l291
_("TLS/DTLS read cancelled\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/gnutls.c#l186
_("TLS/DTLS socket closed uncleanly\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/gnutls.c#l196
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/gnutls.c#l278
_("Failed to read from TLS/DTLS socket: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9070a12a6:/gnutls.c#l306
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9070a12a6:/openssl.c#l321
_("Attempted to read from non-existent %s session\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/32dd02ea8:/gnutls.c#l318
_("Read error on %s session: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9070a12a6:/gnutls.c#l330
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9070a12a6:/openssl.c#l346
_("Attempted to write to non-existent %s session\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/32dd02ea8:/gnutls.c#l364
_("Write error on %s session: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/51068959a:/gnutls.c#l248
_("Could not extract expiration time of certificate\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l383
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1677
_("Client certificate has expired at");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l384
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1678
_("Secondary client certificate has expired at");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l386
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1683
_("Client certificate expires soon at");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l387
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1684
_("Secondary client certificate expires soon at");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/gnutls.c#l264
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/openssl.c#l621
_("Failed to load item '%s' from keystore: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/63c870c01:/gnutls.c#l242
_("Failed to open key/certificate file %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/63c870c01:/gnutls.c#l249
_("Failed to stat key/certificate file %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c15cebbfa:/gnutls.c#l266
_("Failed to allocate certificate buffer\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c15cebbfa:/gnutls.c#l274
_("Failed to read certificate into memory: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c15cebbfa:/gnutls.c#l294
_("Failed to setup PKCS#12 data structure: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c15cebbfa:/gnutls.c#l314
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/901cb62d6:/openssl.c#l414
_("Failed to decrypt PKCS#12 certificate file\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l535
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l637
_("Enter PKCS#12 pass phrase:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l536
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l638
_("Enter secondary PKCS#12 pass phrase:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/40f86bdd2:/gnutls.c#l375
_("Failed to process PKCS#12 file: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l571
_("Failed to load PKCS#12 certificate: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l572
_("Failed to load secondary PKCS#12 certificate: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l596
_("Could not initialise MD5 hash: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l606
_("MD5 hash error: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l663
_("Missing DEK-Info: header from OpenSSL encrypted key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/83d64deb8:/gnutls.c#l671
_("Cannot determine PEM encryption type\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l683
_("Unsupported PEM encryption type: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l701
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/83d64deb8:/gnutls.c#l722
_("Invalid salt in encrypted PEM file\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l738
_("Error base64-decoding encrypted PEM file: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l746
_("Encrypted PEM file too short\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l774
_("Failed to initialise cipher for decrypting PEM file: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l785
_("Failed to decrypt PEM key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l837
_("Decrypting PEM key failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l901
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4af8c6ccc:/gnutls.c#l971
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l514
_("Enter PEM pass phrase:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l902
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l515
_("Enter secondary PEM pass phrase:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c256cf97:/gnutls.c#l934
_("This binary built without system key support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6e4deee99:/gnutls.c#l597
_("This binary built without PKCS#11 support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c256cf97:/gnutls.c#l998
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l413
_("Using PKCS#11 certificate %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c256cf97:/gnutls.c#l999
_("Using system certificate %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c256cf97:/gnutls.c#l1017
_("Error loading certificate from PKCS#11: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c256cf97:/gnutls.c#l1018
_("Error loading system certificate: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l1083
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l933
_("Using certificate file %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l1084
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l934
_("Using secondary certificate file %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3249ec9ad:/gnutls.c#l508
_("PKCS#11 file contained no certificate\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/22b82ad97:/gnutls.c#l518
_("No certificate found in file");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l1144
_("Loading certificate failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l1145
_("Loading secondary certificate failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l1160
_("Using system key %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l1161
_("Using secondary system key %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c256cf97:/gnutls.c#l1108
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2cc4d410f:/gnutls.c#l596
_("Error initialising private key structure: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c256cf97:/gnutls.c#l1119
_("Error importing system key %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8af8f5473:/gnutls.c#l1131
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8af8f5473:/gnutls.c#l1221
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8af8f5473:/gnutls.c#l1249
_("Trying PKCS#11 key URL %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2cc4d410f:/gnutls.c#l577
_("Error initialising PKCS#11 key structure: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2cc4d410f:/gnutls.c#l586
_("Error importing PKCS#11 URL %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8af8f5473:/gnutls.c#l1268
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l649
_("Using PKCS#11 key %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2cc4d410f:/gnutls.c#l606
_("Error importing PKCS#11 key into private key structure: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9e2226839:/gnutls.c#l1342
_("Using private key file %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d10944185:/gnutls.c#l695
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l407
_("This version of OpenConnect was built without TPM support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/584cbb01a:/gnutls.c#l1326
_("This version of OpenConnect was built without TPM2 support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l1134
_("Failed to interpret PEM file\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l1153
_("Failed to load PKCS#1 private key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9b4add922:/gnutls.c#l1174
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c15cebbfa:/gnutls.c#l431
_("Failed to load private key as PKCS#8: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c15cebbfa:/gnutls.c#l439
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/71353bfd1:/gnutls.c#l1512
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1081
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1096
_("Failed to decrypt PKCS#8 certificate file\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b0f2edbae:/gnutls.c#l1191
_("Failed to determine type of private key %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/71353bfd1:/gnutls.c#l1516
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1091
_("Enter PKCS#8 pass phrase:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/22b82ad97:/gnutls.c#l584
_("Failed to get key ID: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/09bc61713:/gnutls.c#l970
_("Error signing test data with private key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/09bc61713:/gnutls.c#l982
_("Error validating signature against certificate: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l1600
_("No SSL certificate found to match private key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l1601
_("No secondary certificate found to match private key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/27a03c503:/gnutls.c#l1637
_("got_key conditions not met!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/27a03c503:/gnutls.c#l1652
_("Error creating an abstract privkey from /x509_privkey: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l1613
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l662
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l817
_("Using client certificate '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls.c#l1614
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l663
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l818
_("Using secondary certificate '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/202bbd2d3:/gnutls.c#l1442
_("Failed to allocate memory for certificate\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6b30c1be6:/gnutls.c#l1727
_("Got no issuer from PKCS#11\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c00bdc4f9:/gnutls.c#l1638
_("Got next CA '%s' from PKCS#11\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6894d6518:/gnutls.c#l605
_("Failed to allocate memory for supporting certificates\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6894d6518:/gnutls.c#l627
_("Adding supporting CA '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c5728b91d:/gnutls.c#l1783
_("Importing X509 certificate failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c5728b91d:/gnutls.c#l1793
_("Setting PKCS#11 certificate failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c5728b91d:/gnutls.c#l1822
_("Setting certificate revocation list failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c5728b91d:/gnutls.c#l1843
_("Private key appears not to support RSA-PSS. Disabling TLSv1.3\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c5728b91d:/gnutls.c#l1857
_("Setting certificate failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f60bd0a83:/gnutls.c#l605
_("Server presented no certificate\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/06dffc5dd:/gnutls.c#l1970
_("Error comparing server's cert on rehandshake: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/06dffc5dd:/gnutls.c#l1975
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ec9c8e13:/openssl.c#l1385
_("Server presented different cert on rehandshake\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/06dffc5dd:/gnutls.c#l1980
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7ec9c8e13:/openssl.c#l1388
_("Server presented identical cert on rehandshake\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1cc5b5c7c:/gnutls.c#l1731
_("Error initialising X509 cert structure\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1cc5b5c7c:/gnutls.c#l1737
_("Error importing server's cert\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b91b4a9fb:/gnutls.c#l1771
_("Could not calculate hash of server's certificate\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f60bd0a83:/gnutls.c#l633
_("Error checking server cert status\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f60bd0a83:/gnutls.c#l638
_("certificate revoked");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f60bd0a83:/gnutls.c#l640
_("signer not found");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f60bd0a83:/gnutls.c#l642
_("signer not a CA certificate");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f60bd0a83:/gnutls.c#l644
_("insecure algorithm");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f60bd0a83:/gnutls.c#l646
_("certificate not yet activated");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f60bd0a83:/gnutls.c#l648
_("certificate expired");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f60bd0a83:/gnutls.c#l653
_("signature verification failed");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ed68cf54:/gnutls.c#l2205
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ed68cf54:/openssl.c#l1678
_("certificate does not match SNI");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/908237cd1:/gnutls.c#l1833
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/674881cbb:/openssl.c#l1270
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8b041c738:/openssl.c#l1369
_("certificate does not match hostname");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4b701f473:/gnutls.c#l1838
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/674881cbb:/openssl.c#l1269
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8b041c738:/openssl.c#l1375
_("Server certificate verify failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/222178086:/gnutls.c#l2218
_("TLS Finished message larger than expected (%u bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c33f3e488:/gnutls.c#l1376
_("Failed to allocate memory for cafile certs\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c33f3e488:/gnutls.c#l1395
_("Failed to read certs from cafile: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffb0c6816:/gnutls.c#l1045
_("Failed to open CA file '%s': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d8cc2eec5:/gnutls.c#l635
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l1029
_("Loading certificate failed. Aborting.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7f42c35e5:/gnutls.c#l2282
_("Failed to construct GnuTLS priority string\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5b12bfc7b:/gnutls.c#l2254
_("Failed to set GnuTLS priority string (\"%s\"): %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d8cc2eec5:/gnutls.c#l671
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l1068
_("SSL negotiation with %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d8cc2eec5:/gnutls.c#l695
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l1099
_("SSL connection cancelled\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fed9fe8f9:/gnutls.c#l2522
_("SSL connection failure due to fatal alert: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d8cc2eec5:/gnutls.c#l702
_("SSL connection failure: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d8cc2eec5:/gnutls.c#l711
_("GnuTLS non-fatal return during handshake: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd4693b60:/gnutls.c#l2339
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd4693b60:/openssl.c#l1891
_("Connected to HTTPS on %s with ciphersuite %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd4693b60:/gnutls.c#l2342
_("Renegotiated SSL on %s with ciphersuite %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b3f306d21:/gnutls.c#l2362
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l182
_("PIN required for %s");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ace861fc9:/gnutls.c#l1376
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l185
_("Wrong PIN");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ace861fc9:/gnutls.c#l1379
_("This is the final try before locking!");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ace861fc9:/gnutls.c#l1381
_("Only a few tries left before locking!");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ace861fc9:/gnutls.c#l1386
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l189
_("Enter PIN:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/929d35ed0:/gnutls.c#l2614
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/929d35ed0:/openssl.c#l1689
_("Unsupported OATH HMAC algorithm\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/554454bf2:/gnutls.c#l2608
_("Failed to calculate OATH HMAC: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccb1573f0:/gnutls.c#l2739
_("%s %dms\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1c236226d:/gnutls.c#l2671
_("Could not set ciphersuites: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/gnutls.c#l2649
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/openssl.c#l2042
_("Established EAP-TTLS session\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cdc32a49a:/gnutls.c#l2864
_("Failed to generate STRAP key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cdc32a49a:/gnutls.c#l2873
_("Failed to generate STRAP DH key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/02ca865dd:/gnutls.c#l2906
_("Failed to decode server DH key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/02ca865dd:/gnutls.c#l2918
_("Failed to export DH private key parameters: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/02ca865dd:/gnutls.c#l2924
_("Failed to export server DH key parameters: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/02ca865dd:/gnutls.c#l2932
_("HPKE uses unsupported EC curve (%d, %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/02ca865dd:/gnutls.c#l2945
_("Failed to create ECC public point for ECDH\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/02ca865dd:/gnutls.c#l2990
_("HKDF extract failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/02ca865dd:/gnutls.c#l3002
_("HKDF expand failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/02ca865dd:/gnutls.c#l3021
_("Failed to init AES-256-GCM cipher: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/02ca865dd:/gnutls.c#l3030
_("SSO token decryption failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8bacc334b:/gnutls.c#l3140
_("Failed to decode STRAP key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/222178086:/gnutls.c#l3129
_("Failed to regenerate STRAP key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/62aa9c138:/gnutls.c#l3184
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/62aa9c138:/openssl.c#l2509
_("Failed to generate STRAP key DER\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/222178086:/gnutls.c#l3161
_("STRAP signature failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/abb6773cd:/gnutls.c#l2908
_("Certificate may be multiple certificate authentication incompatible.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/abb6773cd:/gnutls.c#l2946
_("gnutls_x509_crt_get_key_purpose_oid: %s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/abb6773cd:/gnutls.c#l2969
_("gnutls_X509_crt_get_key_usage: %s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a2a7f1adb:/gnutls.c#l3232
_(""
"The certificate specifies key usages incompatible with authentication.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/74eb51cfa:/gnutls.c#l2950
_("Certificate doesn't specify key usage.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/abb6773cd:/gnutls.c#l3014
_("Precondition failed %s[%s]:%d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/abb6773cd:/gnutls.c#l3068
_("Failed to generate the PKCS#7 structure: %s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/74eb51cfa:/gnutls.c#l3076
_("Precondition failed %s[%s]:%d.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/abb6773cd:/gnutls.c#l3137
_("gnutls_privkey_sign_data: %s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/abb6773cd:/gnutls.c#l3162
_("Failed to sign data with second certificate: %s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l111
_("TPM sign function called for %d bytes.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l118
_("Failed to create TPM hash object: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l125
_("Failed to set value in TPM hash object: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l135
_("TPM hash signature failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l157
_("Error decoding TSS key blob: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l164
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l175
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l188
_("Error in TSS key blob\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l195
_("Failed to create TPM context: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l202
_("Failed to connect TPM context: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l210
_("Failed to load TPM SRK key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l217
_("Failed to load TPM SRK policy object: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l238
_("Failed to set TPM PIN: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l254
_("Failed to load TPM key blob: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l261
_("Enter TPM SRK PIN:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l286
_("Failed to create key policy object: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l294
_("Failed to assign policy to key: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls_tpm.c#l244
_("Enter TPM key PIN:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls_tpm.c#l245
_("Enter secondary key TPM PIN:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b2962e7ed:/gnutls_tpm.c#l311
_("Failed to set key PIN: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ff4fb5c11:/gnutls_tpm2.c#l69
_("Unknown TPM2 EC digest size %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ff367965f:/gnutls_tpm2.c#l134
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4c225c0e6:/gnutls_tpm2.c#l159
_("Not supporting EC sign algo %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/584cbb01a:/gnutls_tpm2.c#l44
_("Error decoding TSS2 key blob: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e1f2bb72e:/gnutls_tpm2.c#l73
_("Failed to create ASN.1 type for TPM2: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e1f2bb72e:/gnutls_tpm2.c#l82
_("Failed to decode TPM2 key ASN.1: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c7140a505:/gnutls_tpm2.c#l226
_("Failed to parse TPM2 key type OID: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c7140a505:/gnutls_tpm2.c#l232
_("TPM2 key has unknown type OID %s not %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e1f2bb72e:/gnutls_tpm2.c#l115
_("Failed to parse TPM2 key parent: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b7b29a5a4:/gnutls_tpm2.c#l146
_("Failed to parse TPM2 pubkey element\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b7b29a5a4:/gnutls_tpm2.c#l151
_("Failed to parse TPM2 privkey element\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e1f2bb72e:/gnutls_tpm2.c#l126
_("Parsed TPM2 key with parent %x, emptyauth %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3079615d7:/gnutls_tpm2.c#l352
_("TPM2 digest too large: %d > %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ff367965f:/gnutls_tpm2.c#l464
_("PSS encoding failed; hash size %d too large for RSA key %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ff367965f:/gnutls_tpm2.c#l583
_("TPMv2 RSA sign called for unknown algorithm %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l133
_("TPM2 password too long; truncating\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l150
_("owner");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l151
_("null");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l152
_("endorsement");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l153
_("platform");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l157
_("Creating primary key under %s hierarchy.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l162
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c116b30aa:/gnutls_tpm2_ibm.c#l300
_("Enter TPM2 %s hierarchy password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b7b29a5a4:/gnutls_tpm2_esys.c#l147
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l249
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0173d30a8:/gnutls_tpm2_esys.c#l287
_("TPM2 Esys_TR_SetAuth failed: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b7b29a5a4:/gnutls_tpm2_esys.c#l159
_("TPM2 Esys_CreatePrimary owner auth failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b7b29a5a4:/gnutls_tpm2_esys.c#l164
_("TPM2 Esys_CreatePrimary failed: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l204
_("Establishing connection with TPM.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l209
_("TPM2 Esys_Initialize failed: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l217
_(""
"TPM2 was already started up thus false positive failing in tpm2tss log.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l220
_("TPM2 Esys_Startup failed: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l233
_("Esys_TR_FromTPMPublic failed for handle 0x%x: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls_tpm2_esys.c#l305
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls_tpm2_ibm.c#l284
_("Enter TPM2 parent key password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls_tpm2_esys.c#l306
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls_tpm2_ibm.c#l285
_("Enter secondary TPM2 parent key password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l255
_("Loading TPM2 key blob, parent %x.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l263
_("TPM2 Esys_Load auth failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b7b29a5a4:/gnutls_tpm2_esys.c#l209
_("TPM2 Esys_Load failed: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l278
_("TPM2 Esys_FlushContext for generated primary failed: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls_tpm2_esys.c#l378
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls_tpm2_ibm.c#l374
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c116b30aa:/gnutls_tpm2_ibm.c#l501
_("Enter TPM2 key password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls_tpm2_esys.c#l379
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed80bfacf:/gnutls_tpm2_ibm.c#l375
_("Enter secondary TPM2 key password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ff367965f:/gnutls_tpm2_esys.c#l412
_("TPM2 RSA sign function called for %d bytes, algo %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0173d30a8:/gnutls_tpm2_esys.c#l340
_("TPM2 Esys_RSA_Decrypt auth failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0173d30a8:/gnutls_tpm2_esys.c#l346
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/18337ca1e:/gnutls_tpm2_esys.c#l427
_("TPM2 failed to generate RSA signature: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/18337ca1e:/gnutls_tpm2_esys.c#l391
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c116b30aa:/gnutls_tpm2_ibm.c#l456
_("TPM2 EC sign function called for %d bytes.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/830f14c37:/gnutls_tpm2_esys.c#l502
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/830f14c37:/gnutls_tpm2_ibm.c#l443
_("Unknown TPM2 EC digest size %d for algo 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c166bb76c:/gnutls_tpm2_esys.c#l421
_("TPM2 Esys_Sign auth failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c72c75164:/gnutls_tpm2_esys.c#l490
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c116b30aa:/gnutls_tpm2_ibm.c#l535
_("Invalid TPM2 parent handle 0x%08x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2f09ab7a:/gnutls_tpm2_esys.c#l582
_("Using SWTPM due to TPM_INTERFACE_TYPE environment variable\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2f09ab7a:/gnutls_tpm2_esys.c#l587
_("TSS2_TctiLdr_Initialize failed for swtpm: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0173d30a8:/gnutls_tpm2_esys.c#l399
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c116b30aa:/gnutls_tpm2_ibm.c#l551
_("Failed to import TPM2 private key data: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c116b30aa:/gnutls_tpm2_esys.c#l513
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c116b30aa:/gnutls_tpm2_ibm.c#l561
_("Failed to import TPM2 public key data: 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/18337ca1e:/gnutls_tpm2_esys.c#l537
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c116b30aa:/gnutls_tpm2_ibm.c#l572
_("Unsupported TPM2 key type %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/51581d920:/gnutls_tpm2_ibm.c#l62
_("TPM2 operation %s failed (%d): %s%s%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/227526e3d:/gpst.c#l225
_("%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2fc03b6b4:/gpst.c#l223
_("Challenge: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cb2be9106:/gpst.c#l206
_("Failed to parse non-XML server response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cb2be9106:/gpst.c#l207
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l270
_("Response was: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cb2be9106:/gpst.c#l262
_("Failed to parse XML server response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b056e27c9:/gpst.c#l300
_("Unknown ESP MAC algorithm: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b056e27c9:/gpst.c#l308
_("Unknown ESP encryption algorithm: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/958da8244:/gpst.c#l388
_(""
"WARNING: Config XML contains <quarantine> tag with value of \"%s\".\n"
" VPN connectivity may be disabled or limited.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l397
_("Non-standard SSL tunnel path: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l400
_("Tunnel timeout (rekey interval) is %d minutes.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a9fc48bd2:/gpst.c#l417
_(""
"Gateway address in config XML (%s) differs from external gateway address "
"(%s).\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c3c2565bc:/gpst.c#l516
_(""
"Config XML <connected-gw-ip> address (%s) differs from external\n"
"gateway address (%s). Please report this to\n"
"<%s>, including any problems\n"
"with ESP or other apparent loss of connectivity or performance.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1ad22fc31:/gpst.c#l531
_("GlobalProtect config sent ipsec-mode=%s (expected esp-tunnel)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l439
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cfe8cc43e:/oncp.c#l1277
_("Ignoring ESP keys since ESP support not available in this build\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/90b2ffc03:/gpst.c#l632
_("Potential IPv6-related GlobalProtect config tag <%s>: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d6db0ec03:/gpst.c#l585
_("Unknown GlobalProtect config tag <%s>: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/07386df8c:/gpst.c#l571
_(""
"GlobalProtect IPv6 support is experimental. Please report results to <%s>.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5b98b6288:/gpst.c#l596
_(""
"Did not receive ESP keys and matching gateway in GlobalProtect config; "
"tunnel will be TLS only.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1ad22fc31:/gpst.c#l607
_("ESP disabled");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1ad22fc31:/gpst.c#l609
_("No ESP keys received");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1ad22fc31:/gpst.c#l611
_("ESP support not available in this build");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1ad22fc31:/gpst.c#l615
_("No MTU received. Calculated %d for %s%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l548
_("Connecting to HTTPS tunnel endpoint ...\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l570
_("Error fetching GET-tunnel HTTPS response.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l579
_("Gateway disconnected immediately after GET-tunnel request.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d257a7e7c:/gpst.c#l749
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d257a7e7c:/ppp.c#l1118
_("Got unexpected HTTP response: %.*s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4e35d5053:/gpst.c#l844
_(""
"WARNING: Server asked us to submit HIP report with md5sum %s.\n"
" VPN connectivity may be disabled or limited without HIP report "
"submission.\n"
" %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5f9a83865:/gpst.c#l923
_(""
"However, running the HIP report submission script on this platform is not "
"yet implemented.");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5f9a83865:/gpst.c#l925
_(""
"You need to provide a --csd-wrapper argument with the HIP report submission "
"script.");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4e35d5053:/gpst.c#l854
_(""
"Error: Running the 'HIP Report' script on this platform is not yet "
"implemented.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7083a0ac5:/gpst.c#l960
_("Trying to run HIP Trojan script '%s'.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2f6436449:/gpst.c#l913
_("Failed to create pipe for HIP script\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2f6436449:/gpst.c#l921
_("Failed to fork for HIP script\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f06b564fa:/gpst.c#l890
_("HIP script '%s' exited abnormally\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f06b564fa:/gpst.c#l895
_("HIP script '%s' returned non-zero status: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7083a0ac5:/gpst.c#l1002
_("HIP script '%s' completed successfully (report is %d bytes).\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4e35d5053:/gpst.c#l881
_("HIP report submission failed.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4e35d5053:/gpst.c#l883
_("HIP report submitted successfully.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4e35d5053:/gpst.c#l910
_("Failed to exec HIP script %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8713a8cd:/gpst.c#l1013
_("Gateway says HIP report submission is needed.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8713a8cd:/gpst.c#l1017
_("Gateway says no HIP report submission is needed.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1ad22fc31:/gpst.c#l757
_("ESP tunnel connected; exiting HTTPS mainloop.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1ad22fc31:/gpst.c#l773
_("Failed to connect ESP tunnel; using HTTPS instead.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l644
_("Packet receive error: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l665
_(""
"Unexpected packet length. SSL_read returned %d (includes 16 header bytes) "
"but header payload_len is %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l675
_("Got GPST DPD/keepalive response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l679
_(""
"Expected 0000000000000000 as last 8 bytes of DPD/keepalive packet header, "
"but got:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d6db0ec03:/gpst.c#l1141
_("Received IPv%d data packet of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l694
_(""
"Expected 0100000000000000 as last 8 bytes of data packet header, but got:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l702
_("Unknown packet. Header dump follows:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d61ae145e:/gpst.c#l1231
_("GlobalProtect HIP check due\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d61ae145e:/gpst.c#l1244
_("HIP check or report failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l750
_("GlobalProtect rekey due\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l755
_("GPST Dead Peer Detection detected dead peer!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/gpst.c#l773
_("Send GPST DPD/keepalive request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d6db0ec03:/gpst.c#l1254
_("Sending IPv%d data packet of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5b98b6288:/gpst.c#l1483
_("ICMPv%d probe packet (seq %d) for GlobalProtect ESP:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8ff6cc1de:/gpst.c#l1355
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8ff6cc1de:/oncp.c#l1321
_("Failed to send ESP probe\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a14dea8bf:/gssapi.c#l70
_("Error importing GSSAPI name for authentication:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7a2b2e823:/gssapi.c#l113
_("Error generating GSSAPI response:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3015829af:/gssapi.c#l109
_("Attempting GSSAPI authentication to proxy\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/70dd287c2:/gssapi.c#l148
_("Attempting GSSAPI authentication to server '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l159
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3405d8995:/gssapi.c#l240
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l168
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/360a0dff0:/sspi.c#l245
_("GSSAPI authentication completed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/73e61c6b3:/gssapi.c#l170
_("GSSAPI token too large (%zd bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l184
_("Sending GSSAPI token of %zu bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l189
_("Failed to send GSSAPI authentication token to proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l197
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l217
_("Failed to receive GSSAPI authentication token from proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l203
_("SOCKS server reported GSSAPI context failure\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l207
_("Unknown GSSAPI status response (0x%02x) from SOCKS server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l221
_("Got GSSAPI token of %zu bytes: %02x %02x %02x %02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l248
_("Sending GSSAPI protection negotiation of %zu bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l253
_("Failed to send GSSAPI protection response to proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l261
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l271
_("Failed to receive GSSAPI protection response from proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l276
_("Got GSSAPI protection response of %zu bytes: %02x %02x %02x %02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l286
_("Invalid GSSAPI protection response from proxy (%zu bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l295
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l377
_("SOCKS proxy demands message integrity, which is not supported\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l299
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l381
_("SOCKS proxy demands message confidentiality, which is not supported\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/gssapi.c#l303
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l385
_("SOCKS proxy demands protection unknown type 0x%02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d6780b960:/hpke.c#l58
_("Spawning external browser '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d6780b960:/hpke.c#l73
_("Spawn browser");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d738b6f2c:/hpke.c#l83
_("Failed to listen on local port 29786: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b474b2539:/hpke.c#l131
_("Failed to spawn external browser for %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d738b6f2c:/hpke.c#l124
_("Accepted incoming external-browser connection on port 29786\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d738b6f2c:/hpke.c#l131
_("Invalid incoming external-browser request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d738b6f2c:/hpke.c#l207
_("Got encrypted SSO token of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d738b6f2c:/hpke.c#l275
_("Failed to decode SSO token at %d:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d738b6f2c:/hpke.c#l302
_("SSO token not alphanumeric\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/df80b8068:/http-auth.c#l192
_("Attempting HTTP Basic authentication to proxy\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/df80b8068:/http-auth.c#l194
_("Attempting HTTP Basic authentication to server '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/aa8d434da:/http-auth.c#l213
_("Attempting HTTP Bearer authentication to server '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/df80b8068:/http-auth.c#l208
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5a4be39fd:/http.c#l1566
_("This version of OpenConnect was built without GSSAPI support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/41e131bf4:/http-auth.c#l240
_("Proxy requested Basic authentication which is disabled by default\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/41e131bf4:/http-auth.c#l243
_(""
"Server '%s' requested Basic authentication which is disabled by default\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/df80b8068:/http-auth.c#l250
_("No more authentication methods to try\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l63
_("No memory for allocating cookies\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/093de8050:/http.c#l444
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/093de8050:/http.c#l470
_("Error reading HTTP response: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/093de8050:/http.c#l455
_("Failed to parse HTTP response '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/093de8050:/http.c#l461
_("Got HTTP response: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/093de8050:/http.c#l486
_("Ignoring unknown HTTP response line '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/093de8050:/http.c#l505
_("Invalid cookie offered: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/825ae458c:/http.c#l185
_("SSL certificate authentication failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l209
_("Response body has negative size (%d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l219
_("Unknown Transfer-Encoding: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/http.c#l320
_("HTTP body %s (%d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l247
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l275
_("Error reading HTTP response body\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l260
_("Error fetching chunk header\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/875f0a65a:/http.c#l563
_("HTTP chunk length is negative (%ld)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/875f0a65a:/http.c#l569
_("HTTP chunk length is too large (%ld)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l286
_("Error fetching HTTP response body\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/838fcd7ed:/http.c#l738
_("Error in chunked decoding. Expected '', got: '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l302
_("Cannot receive HTTP 1.0 body without closing connection\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3edcc28d1:/http.c#l626
_("Failed to parse redirected URL '%s': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9c7a58a89:/http.c#l669
_("Cannot follow redirection to non-https URL '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3edcc28d1:/http.c#l680
_("Allocating new path for relative redirect failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7693f1f5a:/http.c#l945
_("HTTPS socket closed by peer; reopening\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/01ef9ea90:/http.c#l1091
_("Retrying failed %s request on new connection\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l919
_("request granted");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l920
_("general failure");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l921
_("connection not allowed by ruleset");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l922
_("network unreachable");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l923
_("host unreachable");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l924
_("connection refused by destination host");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l925
_("TTL expired");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l926
_("command not supported / protocol error");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l927
_("address type not supported");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59c872249:/http.c#l1433
_("SOCKS server requested username/password but we have none\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59c872249:/http.c#l1441
_("Username and password for SOCKS authentication must be < 255 bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59c872249:/http.c#l1456
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l941
_("Error writing auth request to SOCKS proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59c872249:/http.c#l1464
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l948
_("Error reading auth response from SOCKS proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59c872249:/http.c#l1471
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l954
_("Unexpected auth response from SOCKS proxy: %02x %02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59c872249:/http.c#l1477
_("Authenticated to SOCKS server using password\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59c872249:/http.c#l1481
_("Password authentication to SOCKS server failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1239b6ea5:/http.c#l1536
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1e46958ae:/http.c#l1473
_("SOCKS server requested GSSAPI authentication\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1e46958ae:/http.c#l1478
_("SOCKS server requested password authentication\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1e46958ae:/http.c#l1483
_("SOCKS server requires authentication\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1e46958ae:/http.c#l1488
_("SOCKS server requested unknown authentication type %02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l972
_("Requesting SOCKS proxy connection to %s:%d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l987
_("Error writing connect request to SOCKS proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l995
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l1028
_("Error reading connect response from SOCKS proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l1001
_("Unexpected connect response from SOCKS proxy: %02x %02x...\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1e46958ae:/http.c#l1531
_("SOCKS proxy error %02x: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1e46958ae:/http.c#l1535
_("SOCKS proxy error %02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l1021
_("Unexpected address type %02x in SOCKS connect response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/14fed28c4:/http.c#l1668
_("Requesting HTTP proxy connection to %s:%d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l1055
_("Sending proxy request failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7df7639e5:/http.c#l1565
_("Proxy CONNECT request failed: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l1102
_("Unknown proxy type '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/51676600b:/http.c#l1383
_("Failed to parse proxy '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/http.c#l1130
_("Only http or socks(5) proxies supported\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5e53550aa:/library.c#l124
_("Cisco AnyConnect or OpenConnect");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/40802e459:/library.c#l113
_("Compatible with Cisco AnyConnect SSL VPN, as well as ocserv");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/40802e459:/library.c#l128
_("Juniper Network Connect");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/library.c#l130
_("Compatible with Juniper Network Connect");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/library.c#l146
_("Palo Alto Networks GlobalProtect");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8e7efd51f:/library.c#l147
_("Compatible with Palo Alto Networks (PAN) GlobalProtect SSL VPN");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/library.c#l167
_("Pulse Connect Secure");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/library.c#l168
_("Compatible with Pulse Connect Secure SSL VPN");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/library.c#l193
_("F5 BIG-IP SSL VPN");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/library.c#l194
_("Compatible with F5 BIG-IP SSL VPN");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e7eb9ef63:/library.c#l213
_("Fortinet SSL VPN");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e7eb9ef63:/library.c#l214
_("Compatible with FortiGate SSL VPN");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9830ff833:/library.c#l193
_("PPP over TLS");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a8ef9fa75:/library.c#l194
_("Unauthenticated RFC1661/RFC1662 PPP over TLS, for testing");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/library.c#l247
_("Array SSL VPN");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78c84690b:/library.c#l248
_("Compatible with Array Networks SSL VPN");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d68987a2e:/library.c#l139
_("Unknown VPN protocol '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9831d261f:/library.c#l121
_("Built against SSL library with no Cisco DTLS support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d1ec6e0a:/library.c#l494
_("No IP address received with Juniper rekey/reconnection.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d845bc9b:/library.c#l459
_("No IP address received. Aborting\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d845bc9b:/library.c#l466
_("Reconnect gave different Legacy IP address (%s != %s)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d845bc9b:/library.c#l475
_("Reconnect gave different Legacy IP netmask (%s != %s)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d845bc9b:/library.c#l483
_("Reconnect gave different IPv6 address (%s != %s)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d845bc9b:/library.c#l491
_("Reconnect gave different IPv6 netmask (%s != %s)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d845bc9b:/library.c#l505
_("IPv6 configuration received but MTU %d is too small.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/23267eeba:/library.c#l211
_("Failed to parse server URL '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/23267eeba:/library.c#l217
_("Only https:// permitted for server URL\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bb8e67ddc:/library.c#l951
_("Unknown certificate hash: %s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8480ed5f9:/library.c#l1137
_(""
"The size of the provided fingerprint is less than the minimum required "
"(%u).\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3a22e11d5:/library.c#l902
_("No form handler; cannot authenticate.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/386a6edb6:/library.c#l1536
_("No form ID. This is a bug in OpenConnect's authentication code.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d738b6f2c:/library.c#l1637
_("No SSO handler\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a62ce567c:/main.c#l386
_("CommandLineToArgv() failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c48013ff5:/main.c#l305
_("Fatal error in command line handling\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d298a8b6c:/main.c#l381
_("ReadConsole() failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c495e33a0:/main.c#l454
_("Operation aborted by user\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c495e33a0:/main.c#l457
_("ReadConsole() didn't read any input\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a2636e5e1:/main.c#l466
_("fgetws (stdin)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/192eb4ff4:/main.c#l370
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/887c9d97e:/main.c#l378
_("Error converting console input: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a2636e5e1:/main.c#l492
_("Allocation failure for string from stdin");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4e8f51345:/main.c#l154
_(""
"For assistance with OpenConnect, please see the web page at\n"
" %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/03dad7783:/main.c#l596
_("Using %s. Features present:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45d87529e:/main.c#l197
_("OpenSSL ENGINE not present");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbcc2c5aa:/main.c#l642
_(""
"WARNING: This binary lacks DTLS and/or ESP support. Performance will be "
"impaired.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbcc2c5aa:/main.c#l652
_("Supported protocols:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbcc2c5aa:/main.c#l654
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbcc2c5aa:/main.c#l670
_(" (default)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l661
_("Set VPN protocol");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/611cbd14b:/main.c#l434
_("Allocation failure for string from stdin\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e76aecaed:/main.c#l605
_("fgets (stdin)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a74a01c4d:/main.c#l834
_("WARNING: Cannot set handler for signal %d: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/18115d58e:/main.c#l301
_("Cannot process this executable path \"%s\"");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/18115d58e:/main.c#l307
_("Allocation for vpnc-script path failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/991e018dd:/main.c#l881
_("Default vpnc-script (override with --script):");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ec9dc6c7:/main.c#l716
_("Override hostname '%s' to '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l146
_("Usage: openconnect [options] <server>\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbcc2c5aa:/main.c#l788
_(""
"Open client for multiple VPN protocols, version %s\n"
"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/776104159:/main.c#l174
_("Read options from config file");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l785
_("Report version number");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l786
_("Display help text");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l790
_("Authentication");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l788
_("Set login username");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l789
_("Disable password/SecurID authentication");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l790
_("Do not expect user input; exit if it is required");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l791
_("Read password from standard input");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/895371501:/main.c#l962
_("Select GROUP from authentication dropdown (may be known");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/895371501:/main.c#l963
_("as \"realm\", \"domain\", \"gateway\"; protocol-dependent)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5f4149097:/main.c#l808
_("Provide authentication form responses");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l150
_("Use SSL client certificate CERT");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l152
_("Use SSL private key file KEY");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l795
_("Warn when certificate lifetime < DAYS");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/37b6a79a8:/main.c#l968
_("Set path of initial request URL");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l167
_("Set key passphrase or TPM SRK PIN");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b474b2539:/main.c#l963
_("Set external browser executable");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l168
_("Key passphrase is fsid of file system");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/aa8d434da:/main.c#l815
_("Software token type: rsa, totp, hotp or oidc");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/aa8d434da:/main.c#l816
_("Software token secret or oidc token");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l802
_("(NOTE: libstoken (RSA SecurID) disabled in this build)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l805
_("(NOTE: Yubikey OATH disabled in this build)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l811
_("Server validation");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/856d39d06:/main.c#l859
_("Accept only server certificate with this fingerprint");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l809
_("Disable default system certificate authorities");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l810
_("Cert file for server verification");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l817
_("Internet connectivity");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a2fd6f4f2:/main.c#l886
_("Set VPN server");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l169
_("Set proxy server");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/084af2dd2:/main.c#l357
_("Set proxy authentication methods");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l170
_("Disable proxy");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l171
_("Use libproxy to automatically configure proxy");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l173
_("(NOTE: libproxy disabled in this build)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/63e4b85b1:/main.c#l955
_("Reconnection retry timeout (default is 300 seconds)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l819
_("Use IP when connecting to HOST");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c44ea89e:/main.c#l999
_("Always send HOST as TLS client SNI (domain fronting)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c391ff7a7:/main.c#l847
_("Copy TOS / TCLASS field into DTLS and ESP packets");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f073e5b2b:/main.c#l828
_("Set local port for DTLS and ESP datagrams");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l830
_("Authentication (two-phase)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f073e5b2b:/main.c#l831
_("Use authentication cookie COOKIE");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l823
_("Read cookie from standard input");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l824
_("Authenticate only and print login info");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f073e5b2b:/main.c#l834
_("Fetch and print cookie only; don't connect");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f073e5b2b:/main.c#l835
_("Print cookie before connecting");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l837
_("Process control");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l828
_("Continue in background after startup");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l829
_("Write the daemon's PID to this file");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l830
_("Drop privileges after connecting");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l843
_("Logging (two-phase)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l833
_("Use syslog for progress messages");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l835
_("More output");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l175
_("Less output");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/867ee3e65:/main.c#l863
_("Dump HTTP authentication traffic (implies --verbose)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l838
_("Prepend timestamp to progress messages");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l852
_("VPN configuration script");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l839
_("Use IFNAME for tunnel interface");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l177
_("Shell command line for using a vpnc-compatible config script");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/18115d58e:/main.c#l360
_("default");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l178
_("Pass traffic to 'script' program, not tun");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l860
_("Tunnel control");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l187
_("Do not ask for IPv6 connectivity");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l846
_("XML config file");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l847
_("Request MTU from server (legacy servers only)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l848
_("Indicate path MTU to/from server");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffebb560a:/main.c#l866
_("Enable stateful compression (default is stateless only)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffebb560a:/main.c#l867
_("Disable all compression");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ff3972f3d:/main.c#l942
_("Set Dead Peer Detection interval (in seconds)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l852
_("Require perfect forward secrecy");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f073e5b2b:/main.c#l870
_("Disable DTLS and ESP");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l854
_("OpenSSL ciphers to support for DTLS");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l855
_("Set packet queue limit to LEN pkts");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l873
_("Local system information");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/638a35eb5:/main.c#l197
_("HTTP header User-Agent: field");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/436198af5:/main.c#l817
_("Local hostname to advertise to server");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/845e57262:/main.c#l951
_("OS type to report. Allowed values are the following:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/845e57262:/main.c#l952
_("linux, linux-64, win, mac-intel, android, apple-ios");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/13b641668:/main.c#l884
_("reported version string during authentication");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/13b641668:/main.c#l885
_("default:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l879
_("Trojan binary (CSD) execution");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f073e5b2b:/main.c#l881
_("Drop privileges during trojan execution");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f073e5b2b:/main.c#l882
_("Run SCRIPT instead of trojan binary");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f5911aa17:/main.c#l960
_("Set minimum interval between trojan runs (in seconds)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ffd55f342:/main.c#l884
_("Server bugs");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2560a29f1:/main.c#l1076
_("Do not offer or use auth methods requiring external browser");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l863
_("Disable HTTP connection re-use");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8da07270:/main.c#l864
_("Do not attempt XML POST authentication");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/685d880b2:/main.c#l917
_("Allow use of the ancient, insecure 3DES and RC4 ciphers");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a24fef5d5:/main.c#l973
_("Multiple certificate authentication (MCA)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a24fef5d5:/main.c#l974
_("Use MCA certificate MCACERT");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a24fef5d5:/main.c#l975
_("Use MCA key MCAKEY");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a24fef5d5:/main.c#l976
_("Passphrase MCAPASS for MCACERT/MCAKEY");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9b66010c4:/main.c#l684
_("Failed to allocate string\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/776104159:/main.c#l292
_("Failed to get line from config file: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/776104159:/main.c#l332
_("Unrecognised option at line %d: '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/776104159:/main.c#l342
_("Option '%s' does not take an argument at line %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/776104159:/main.c#l346
_("Option '%s' requires an argument at line %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/57bc08dbb:/main.c#l1130
_("Internal error; option '%s' unexpectedly yielded null config_arg\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3fe0e366e:/main.c#l978
_("Invalid user \"%s\": %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3fe0e366e:/main.c#l988
_("Invalid user ID \"%d\": %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d7fa4b375:/main.c#l1301
_("Unhandled autocomplete for option %d '--%s'. Please report.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b156b581e:/main.c#l1401
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4923d84b8:/main.c#l1401
_("connected");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b156b581e:/main.c#l1401
_("disconnected");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4923d84b8:/main.c#l1391
_("unsuccessful");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4923d84b8:/main.c#l1395
_("in progress");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4923d84b8:/main.c#l1398
_("disabled");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/abc38e6fe:/main.c#l1448
_("established");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b156b581e:/main.c#l1421
_("Configured as %s%s%s, with SSL%s%s %s and %s%s%s %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b056e27c9:/main.c#l1487
_("Session authentication will expire at %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7d8747806:/main.c#l1610
_(""
"RX: %<PRIu64> packets (%<PRIu64> B); TX: %<PRIu64> packets (%<PRIu64> B)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b156b581e:/main.c#l1445
_("SSL ciphersuite: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b156b581e:/main.c#l1447
_("%s ciphersuite: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b156b581e:/main.c#l1450
_("Next SSL rekey in %ld seconds\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b156b581e:/main.c#l1453
_("Next %s rekey in %ld seconds\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b156b581e:/main.c#l1457
_("Next Trojan invocation in %ld seconds\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/557ac6cfa:/main.c#l1431
_("Failed to open '%s' for write: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a2636e5e1:/main.c#l1600
_("Failed to continue in background");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/557ac6cfa:/main.c#l1443
_("Continuing in background; pid %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2e7415faf:/main.c#l1098
_("WARNING: Cannot set locale: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5e53550aa:/main.c#l1742
_(""
"WARNING: This version of OpenConnect was built without iconv\n"
" support but you appear to be using the legacy character\n"
" set \"%s\". Expect strangeness.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5e53550aa:/main.c#l1749
_(""
"WARNING: This version of OpenConnect is %s but\n"
" the libopenconnect library is %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1cdc7deb9:/main.c#l1452
_(""
"WARNING: This build is intended only for debugging purposes and\n"
" may allow you to establish insecure connections.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f18f58253:/main.c#l249
_("Failed to allocate vpninfo structure\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/26f6d3381:/main.c#l1847
_("WARNING: --juniper is deprecated, use --protocol=nc instead.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/776104159:/main.c#l421
_("Cannot use 'config' option inside config file\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/776104159:/main.c#l426
_("Cannot open config file '%s': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cf3b1484f:/main.c#l1082
_("Invalid compression mode '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ce7378bd0:/main.c#l1725
_(""
"Cannot enable insecure 3DES or RC4 ciphers, because the library\n"
"%s no longer supports them.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/856d39d06:/main.c#l1709
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ec9dc6c7:/main.c#l1140
_("Failed to allocate memory\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ec9dc6c7:/main.c#l1135
_("Missing colon in resolve option\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/58797b77f:/main.c#l2011
_(""
"WARNING: You are running on macOS and specified --interface='%s'\n"
" This probably won't work since recent macOS versions use utun\n"
" instead. Perhaps try --interface='u%s', or omit altogether.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/95b7af19a:/main.c#l655
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e2c36e363:/main.c#l557
_("MTU %d too small\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f18f58253:/main.c#l393
_(""
"Disabling all HTTP connection re-use due to --no-http-keepalive option.\n"
"If this helps, please report to <%s>.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6c95e85f1:/main.c#l1294
_(""
"The --no-cert-check option was insecure and has been removed.\n"
"Fix your server's certificate or use --servercert to trust it.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f18f58253:/main.c#l447
_("Queue length zero not permitted; using 1\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4c4b5dbc2:/main.c#l612
_("OpenConnect version %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4bd422228:/main.c#l734
_("Invalid software token mode \"%s\"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/845e57262:/main.c#l2033
_(""
"Invalid OS identity \"%s\"\n"
"Allowed values: linux, linux-64, win, mac-intel, android, apple-ios\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5a36dc4a0:/main.c#l1510
_(""
"WARNING: You specified %s. This should not be\n"
" necessary; please report cases where a priority string\n"
" override is necessary to connect to a server\n"
" to <%s>.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f18f58253:/main.c#l480
_("No server specified\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/89ba79922:/main.c#l2247
_("Too many arguments on command line\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5e53550aa:/main.c#l2235
_("This version of OpenConnect was built without libproxy support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cd06be2e5:/main.c#l2194
_("Error opening cmd pipe: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ce8c6968f:/main.c#l1896
_("Failed to complete authentication\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f18f58253:/main.c#l559
_("Creating SSL connection failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a8ab34e1b:/main.c#l1599
_("Set up UDP failed; using SSL instead\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/main.c#l583
_("No --script argument provided; DNS and routing are not configured\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/07386df8c:/main.c#l2335
_("See %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/56c5acb16:/main.c#l1126
_("User requested reconnect\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf4813a14:/main.c#l2002
_("Cookie was rejected by server; exiting.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/56c5acb16:/main.c#l1138
_("Session terminated by server; exiting.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7789af0e5:/main.c#l2029
_("User cancelled (%s); exiting.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7789af0e5:/main.c#l2039
_("User detached from session (%s); exiting.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/958020bea:/main.c#l2026
_("Unrecoverable I/O error; exiting.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/56c5acb16:/main.c#l1150
_("Unknown error; exiting.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/main.c#l627
_("Failed to open %s for write: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/main.c#l635
_("Failed to write config to %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/856d39d06:/main.c#l2240
_(""
"Insecurely accepting certificate from VPN server \"%s\" because you ran with "
"--servercert=ACCEPT.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/856d39d06:/main.c#l2253
_("Could not check server's certificate against %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/856d39d06:/main.c#l2261
_(""
"None of the %d fingerprint(s) specified via --servercert match server's "
"certificate: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/aed7759dd:/main.c#l948
_(""
"\n"
"Certificate from VPN server \"%s\" failed verification.\n"
"Reason: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/90cbaab36:/main.c#l1721
_(""
"To trust this server in future, perhaps add this to your command line:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/90cbaab36:/main.c#l1722
_(" --servercert %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/aed7759dd:/main.c#l954
_("Enter '%s' to accept, '%s' to abort; anything else to view: ");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8fcea963e:/main.c#l921
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5f1018513:/main.c#l1297
_("no");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8fcea963e:/main.c#l921
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5f1018513:/main.c#l1285
_("yes");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3f06cc433:/main.c#l1592
_("Server key hash: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a5e00b1fa:/main.c#l1127
_("Auth choice \"%s\" matches multiple options\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/78ea81b56:/main.c#l1112
_("Auth choice \"%s\" not available\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cd0472b35:/main.c#l1012
_("User input required in non-interactive mode\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8b897b3f:/main.c#l1796
_("Failed to open token file for write: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8b897b3f:/main.c#l1804
_("Failed to write token: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f5e5623d9:/main.c#l1231
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4bd422228:/main.c#l1284
_("Soft token string is invalid\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3382337fa:/main.c#l2208
_("Can't open stoken file\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f5e5623d9:/main.c#l1234
_("Can't open ~/.stokenrc file\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4bd422228:/main.c#l1270
_("OpenConnect was not built with libstoken support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f5e5623d9:/main.c#l1240
_("General failure in libstoken\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/39541d5a9:/main.c#l3009
_("General failure in TOTP/HOTP support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/main.c#l1910
_("Yubikey token not found\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/main.c#l1913
_("OpenConnect was not built with Yubikey support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/main.c#l1916
_("General Yubikey failure: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/aa8d434da:/main.c#l2262
_("Can't open oidc file\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/aa8d434da:/main.c#l2265
_("General failure in oidc token\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/79f5ed273:/mainloop.c#l121
_("Set up tun script failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/79f5ed273:/mainloop.c#l128
_("Set up tun device failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ec1fb1a4:/mainloop.c#l211
_("Delaying tunnel with reason: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ec1fb1a4:/mainloop.c#l245
_("Delaying cancel (immediate callback).\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ec1fb1a4:/mainloop.c#l248
_("Delaying cancel.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ec1fb1a4:/mainloop.c#l267
_("Delaying pause (immediate callback).\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ec1fb1a4:/mainloop.c#l270
_("Delaying pause.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/654d565f3:/mainloop.c#l128
_("Caller paused the connection\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/mainloop.c#l122
_("No work to do; sleeping for %d ms...\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/887c9d97e:/mainloop.c#l211
_("WaitForMultipleObjects failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/51615cbb1:/mainloop.c#l346
_("Failed epoll_wait() in mainloop");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f91b42b80:/mainloop.c#l309
_("Failed select() in mainloop");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2b90f3335:/mtucalc.c#l89
_("Using base_mtu of %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2b90f3335:/mtucalc.c#l105
_("After removing %s/IPv%d headers, MTU of %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2b90f3335:/mtucalc.c#l115
_(""
"After removing protocol specific overhead (%d unpadded, %d padded, %d "
"blocksize), MTU of %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/800692918:/ntlm.c#l81
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b015dc4ae:/sspi.c#l99
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l174
_("InitializeSecurityContext() failed: %lx\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/800692918:/ntlm.c#l103
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b015dc4ae:/sspi.c#l37
_("AcquireCredentialsHandle() failed: %lx\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e5fedab1b:/ntlm.c#l235
_("Error communicating with ntlm_auth helper\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/70dd287c2:/ntlm.c#l265
_("Attempting HTTP NTLM authentication to proxy (single-sign-on)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/70dd287c2:/ntlm.c#l268
_("Attempting HTTP NTLM authentication to server '%s' (single-sign-on)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fe5cf5fd6:/ntlm.c#l930
_("Attempting HTTP NTLMv%d authentication to proxy\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a0c0a0ed2:/ntlm.c#l969
_("Attempting HTTP NTLMv%d authentication to server '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d4606b645:/nullppp.c#l80
_("Terminating because nullppp has reached network state.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e410cdfcf:/oath.c#l99
_("Invalid base32 token string\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e410cdfcf:/oath.c#l107
_("Failed to allocate memory to decode OATH secret\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6f0ee16cc:/oath.c#l114
_("This version of OpenConnect was built without PSKC support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6f0ee16cc:/oath.c#l240
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6f0ee16cc:/oath.c#l268
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l275
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l310
_("OK to generate INITIAL tokencode\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6f0ee16cc:/oath.c#l244
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6f0ee16cc:/oath.c#l271
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l280
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l314
_("OK to generate NEXT tokencode\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6f0ee16cc:/oath.c#l249
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6f0ee16cc:/oath.c#l275
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l285
_("Server is rejecting the soft token; switching to manual entry\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6f0ee16cc:/oath.c#l291
_("Generating OATH TOTP token code\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6f0ee16cc:/oath.c#l405
_("Generating OATH HOTP token code\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l168
_("Unexpected length %d for TLV %d/%d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l175
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l317
_("Received MTU %d from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l184
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l268
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/49fbe6f19:/pulse.c#l335
_("Received DNS server %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f09253e1d:/oncp.c#l541
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l326
_("Received DNS search domain %.*s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l205
_("Received internal IP address %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l214
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l259
_("Received netmask %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l223
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l341
_("Received internal gateway address %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ee445d90b:/oncp.c#l749
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1670
_("Received split include route %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7808034ea:/oncp.c#l266
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1683
_("Received split exclude route %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1d69bcde6:/oncp.c#l581
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l283
_("Received WINS server %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/1d69bcde6:/oncp.c#l618
_("ESP encryption: 0x%02x (%s)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/539158a8f:/oncp.c#l785
_("ESP HMAC: 0x%02x (%s)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/75e2ebef0:/oncp.c#l579
_("ESP compression: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2cb39a6c:/oncp.c#l803
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l418
_("ESP port: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4971447f6:/oncp.c#l809
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l401
_("ESP key lifetime: %u bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4971447f6:/oncp.c#l817
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l393
_("ESP key lifetime: %u seconds\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4971447f6:/oncp.c#l825
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l425
_("ESP to SSL fallback: %u seconds\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/87f78b4d9:/oncp.c#l606
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l409
_("ESP replay protection: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2cb39a6c:/oncp.c#l842
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e03f856:/pulse.c#l1774
_("ESP SPI (outbound): %x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e2b7d6a2b:/oncp.c#l611
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e03f856:/pulse.c#l1762
_("%d bytes of ESP secrets\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l238
_("Unknown TLV group %d attr %d len %d:%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/92e374fae:/oncp.c#l930
_("Failed to parse KMP header\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/92e374fae:/oncp.c#l946
_("Failed to parse KMP message\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/92e374fae:/oncp.c#l951
_("Got KMP message %d of size %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/92e374fae:/oncp.c#l968
_("Received non-ESP TLVs (group %d) in ESP negotiation KMP\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/00e4586d7:/oncp.c#l156
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l343
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/47c23aa1e:/oncp.c#l496
_("Error creating oNCP negotiation request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8ccfe3bf9:/oncp.c#l728
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8ccfe3bf9:/oncp.c#l848
_("Short write in oNCP negotiation\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3e796b3d8:/oncp.c#l734
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/92e374fae:/oncp.c#l1137
_("Read %d bytes of SSL record\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l362
_("Unexpected response of size %d after hostname packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l369
_("Server response to hostname packet is error 0x%02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2823a479a:/oncp.c#l647
_(""
"This seems to indicate that the server has disabled support for\n"
"Juniper's older oNCP protocol, and only allows connections using\n"
"the newer Junos Pulse protocol. This version of OpenConnect has\n"
"EXPERIMENTAL support for Pulse using --prot=pulse\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/59e108340:/oncp.c#l384
_("Invalid packet waiting for KMP 301\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/92e374fae:/oncp.c#l1153
_("Expected KMP message 301 from server but got %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d1b86efd8:/oncp.c#l710
_("KMP message 301 from server too large (%d bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d1b86efd8:/oncp.c#l716
_("Got KMP message 301 of length %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d1b86efd8:/oncp.c#l723
_("Failed to read continuation record length\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d1b86efd8:/oncp.c#l729
_("Record of additional %d bytes too large; would make %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/db3501d5c:/oncp.c#l738
_("Failed to read continuation record of length %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/017b7b45a:/oncp.c#l691
_("Discarding Legacy IP frame in the middle of oNCP config\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d1b86efd8:/oncp.c#l744
_("Read additional %d bytes of KMP 301 message\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cfe8cc43e:/oncp.c#l1215
_("Error negotiating ESP keys\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/76583bb43:/oncp.c#l801
_("oNCP negotiation request outgoing:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2c6174775:/oncp.c#l1245
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e03f856:/pulse.c#l2008
_("new incoming");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/92e374fae:/oncp.c#l1241
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e03f856:/pulse.c#l2009
_("new outgoing");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47d69d35:/oncp.c#l826
_("Read only 1 byte of oNCP length field\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47d69d35:/oncp.c#l835
_("Server terminated connection (session expired)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dfcc430b2:/oncp.c#l825
_("Server terminated connection (idle timeout)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47d69d35:/oncp.c#l839
_("Server terminated connection (reason: %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47d69d35:/oncp.c#l845
_("Server sent zero-length oNCP record\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47d69d35:/oncp.c#l936
_("Incoming KMP message %d of size %d (got %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47d69d35:/oncp.c#l939
_("Continuing to process KMP message %d now size %d (got %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47d69d35:/oncp.c#l958
_("Unrecognised data packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9b6657caa:/oncp.c#l1051
_("Failed to set up ESP: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/79042d6f5:/oncp.c#l1491
_("Unknown KMP message %d of size %d:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/79042d6f5:/oncp.c#l1496
_(".... + %d more bytes unreceived\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/79042d6f5:/oncp.c#l1520
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1820
_("Packet outgoing:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2c700089a:/oncp.c#l1664
_("Sent ESP enable control packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/82c5a37bd:/openconnect-internal.h#l677
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/82c5a37bd:/openconnect-internal.h#l685
_("ERROR: %s() called with invalid UTF-8 for '%s' argument\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dadbd5907:/openssl-dtls.c#l94
_("Unable to calculate DTLS overhead for %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0787d693f:/openssl-dtls.c#l210
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0787d693f:/openssl-dtls.c#l269
_("Failed to generate random key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l134
_("Failed to create SSL_SESSION ASN.1 for OpenSSL: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l145
_("OpenSSL failed to parse SSL_SESSION ASN.1\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l159
_("Initialise DTLSv1 session failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0787d693f:/openssl-dtls.c#l275
_("Too large application ID size\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/120b59248:/openssl-dtls.c#l188
_("PSK callback\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l213
_("Initialise DTLSv1 CTX failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l225
_("Set DTLS CTX version failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/120b59248:/openssl-dtls.c#l299
_("Failed to generate DTLS key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l240
_("Set DTLS cipher list failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6526aa640:/openssl-dtls.c#l437
_("DTLS cipher '%s' not found\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bfbe33bc0:/openssl-dtls.c#l528
_(""
"SSL_set_session() failed with DTLS protocol version 0x%x\n"
"Are you using a version of OpenSSL older than 0.9.8m?\n"
"See %s\n"
"Use the --no-dtls command line option to avoid this message\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0787d693f:/openssl-dtls.c#l518
_("SSL_set_session() failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b056e27c9:/openssl-dtls.c#l592
_("Create DTLS dgram BIO failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8aa72856e:/openssl-dtls.c#l606
_("Established DTLS connection (using OpenSSL). Ciphersuite %s-%s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b056e27c9:/openssl-dtls.c#l714
_(""
"Your OpenSSL is older than the one you built against, so DTLS may fail!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l396
_(""
"This is probably because your OpenSSL is broken\n"
"See http://rt.openssl.org/Ticket/Display.html?id=2984\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/595e35262:/openssl-dtls.c#l403
_("DTLS handshake failed: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c43d15b5e:/openssl-esp.c#l49
_("Failed to initialise ESP cipher:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c43d15b5e:/openssl-esp.c#l59
_("Failed to initialize ESP HMAC\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c43d15b5e:/openssl-esp.c#l162
_("Failed to set up decryption context for ESP packet:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c43d15b5e:/openssl-esp.c#l170
_("Failed to decrypt ESP packet:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c43d15b5e:/openssl-esp.c#l214
_("Failed to encrypt ESP packet:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l42
_("Failed to establish libp11 PKCS#11 context:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e04d68043:/openssl-pkcs11.c#l48
_("Failed to load PKCS#11 provider module (%s):\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l252
_("PIN locked\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l255
_("PIN expired\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l258
_("Another user already logged in\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l262
_("Unknown error logging in to PKCS#11 token\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l269
_("Logged in to PKCS#11 slot '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l283
_("Failed to enumerate certs in PKCS#11 slot '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l289
_("Found %d certs in slot '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l321
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l473
_("Failed to parse PKCS#11 URI '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l328
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l483
_("Failed to enumerate PKCS#11 slots\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l362
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l525
_("Logging in to PKCS#11 slot '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b3f09ceeb:/openssl-pkcs11.c#l392
_("Failed to find PKCS#11 cert '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l377
_("Certificate X.509 content not fetched by libp11\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l414
_("Using secondary PKCS#11 certificate %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l434
_("Failed to enumerate keys in PKCS#11 slot '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l440
_("Found %d keys in slot '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l499
_("Certificate has no public key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l500
_("Secondary certificate has no public key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l506
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l530
_("Certificate does not match private key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l507
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l531
_("Secondary certificate does not match private key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/85ff68a97:/openssl-pkcs11.c#l503
_("Checking EC key matches cert\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/85ff68a97:/openssl-pkcs11.c#l507
_("Failed to allocate signature buffer\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/85ff68a97:/openssl-pkcs11.c#l517
_("Failed to sign dummy data to validate EC key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b3f09ceeb:/openssl-pkcs11.c#l573
_("Failed to find PKCS#11 key '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l650
_("Using secondary PKCS#11 key %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l656
_("Failed to instantiate private key from PKCS#11\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl-pkcs11.c#l657
_("Failed to instantiate secondary private key from PKCS#11\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l593
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/77a91693f:/openssl-pkcs11.c#l599
_("This version of OpenConnect was built without PKCS#11 support\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/openssl.c#l167
_("Failed to write to TLS/DTLS socket\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/openssl.c#l217
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccf17dd06:/openssl.c#l283
_("Failed to read from TLS/DTLS socket\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/32dd02ea8:/openssl.c#l334
_("Read error on %s session: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/32dd02ea8:/openssl.c#l369
_("Write error on %s session: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ef9e93ad8:/openssl.c#l286
_("Unhandled SSL UI request type %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6218318ab:/openssl.c#l256
_("PEM password too long (%d >= %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l558
_("Client certificate or key missing\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbfeac0d1:/openssl.c#l561
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1027
_("Loading private key failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbfeac0d1:/openssl.c#l568
_("Failed to install certificate in OpenSSL context\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbfeac0d1:/openssl.c#l592
_("Extra cert from %s: '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l649
_("Parse PKCS#12 failed (see above errors)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l650
_("Parse secondary PKCS#12 failed (see above errors)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l667
_("PKCS#12 contained no certificate!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l668
_("Secondary PKCS#12 contained no certificate!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l674
_("PKCS#12 contained no private key!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l675
_("Secondary PKCS#12 contained no private key!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbfeac0d1:/openssl.c#l671
_("PKCS#12");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l365
_("Can't load TPM engine.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l371
_("Failed to init TPM engine\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l381
_("Failed to set TPM SRK password\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l739
_("Failed to load TPM private key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l740
_("Failed to load secondary TPM private key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l794
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l447
_("Failed to open certificate file %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l795
_("Failed to open secondary certificate file %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d2cde338:/openssl.c#l616
_("Loading certificate failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l836
_("Failed to process all supporting certs. Trying anyway...\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l837
_("Failed to process secondary supporting certs. Trying anyway...\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbfeac0d1:/openssl.c#l835
_("PEM file");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/676158767:/openssl.c#l626
_("Failed to create BIO for keystore item '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l904
_("Loading private key failed (wrong passphrase?)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l905
_("Loading secondary private key failed (wrong passphrase?)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l911
_("Loading private key failed (see above errors)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l912
_("Loading secondary private key failed (see above errors)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/676158767:/openssl.c#l708
_("Failed to load X509 certificate from keystore\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l484
_("Failed to open private key file %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1028
_("Loading secondary private key failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1082
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1097
_("Failed to decrypt secondary PKCS#8 certificate file\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1092
_("Enter PKCS#8 secondary pass phrase:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1117
_("Failed to convert PKCS#8 to OpenSSL EVP_PKEY\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1118
_("Failed to convert secondary PKCS#8 to OpenSSL EVP_PKEY\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/da47029c9:/openssl.c#l866
_("Failed to identify private key type in '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l705
_("Matched DNS altname '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l712
_("No match for altname '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l726
_("Certificate has GEN_IPADD altname with bogus length %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l737
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/674881cbb:/openssl.c#l1252
_("Matched %s address '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l744
_("No match for %s address '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l786
_("URI '%s' has non-empty path; ignoring\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l791
_("Matched URI '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l802
_("No match for URI '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l817
_("No altname in peer cert matched '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l825
_("No subject name in peer cert!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l845
_("Failed to parse subject name in peer cert\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l852
_("Peer cert subject mismatch ('%s' != '%s')\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l857
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/674881cbb:/openssl.c#l1260
_("Matched peer certificate subject name '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l935
_("Extra cert from cafile: '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1673
_("Error in client cert notAfter field\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a23a8835:/openssl.c#l1674
_("Error in secondary client cert notAfter field\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l980
_("<error>");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bbfeac0d1:/openssl.c#l1684
_("SSL certificate and key do not match\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2bb5457f1:/openssl.c#l1707
_("Failed to read certs from CA file '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2bb5457f1:/openssl.c#l1737
_("Failed to open CA file '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2b6c77452:/openssl.c#l1538
_("Create TLSv1 CTX failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7f42c35e5:/openssl.c#l1768
_("Failed to construct OpenSSL cipher list\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5b12bfc7b:/openssl.c#l1743
_("Failed to set OpenSSL cipher list (\"%s\")\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bf14319ca:/openssl.c#l1084
_("SSL connection failure\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/554454bf2:/openssl.c#l1679
_("Failed to calculate OATH HMAC\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/openssl.c#l2036
_("EAP-TTLS negotiation with %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/openssl.c#l2047
_("EAP-TTLS connection failure %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cdc32a49a:/openssl.c#l2294
_("Failed to generate STRAP key");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cdc32a49a:/openssl.c#l2304
_("Failed to generate STRAP DH key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8bacc334b:/openssl.c#l2377
_("Failed to decode STRAP key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60c54dafb:/openssl.c#l2338
_("Failed to decode server DH key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60c54dafb:/openssl.c#l2348
_("Failed to compute DH secret\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60c54dafb:/openssl.c#l2371
_("HKDF key derivation failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60c54dafb:/openssl.c#l2392
_("SSO token decryption failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/222178086:/openssl.c#l2448
_("SSL Finished message too large (%zd bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/222178086:/openssl.c#l2458
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/222178086:/openssl.c#l2495
_("STRAP signature failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/222178086:/openssl.c#l2471
_("Failed to regenerate STRAP key\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab6b983d9:/openssl.c#l2323
_("Failed to create PKCS#7 structure\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab6b983d9:/openssl.c#l2330
_("Failed to output PKCS#7 structure\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7a4a14fc5:/openssl.c#l2442
_("Failed to generate signature for multiple certificate authentication\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l113
_("HDLC initial flag sequence (0x7e) is missing\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l131
_("HDLC buffer ended without FCS and flag sequence (0x7e)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l137
_("HDLC frame too short (%d bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l149
_("Bad HDLC packet FCS %04x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e71cd923c:/ppp.c#l154
_("Un-HDLC'ed packet (%ld bytes -> %ld), FCS=0x%04x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/285e86157:/ppp.c#l303
_("Current PPP state: %s (encap %s):\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l270
_(""
" in: asyncmap=0x%08x, lcp_opts=%d, lcp_magic=0x%08x, ipv4=%s, ipv6=%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/285e86157:/ppp.c#l313
_(""
" out: asyncmap=0x%08x, lcp_opts=%d, lcp_magic=0x%08x, ipv4=%s, ipv6=%s, "
"solicit_peerns=%d, got_peerns=%d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l358
_("Received MRU %d from server. Nak-offering larger MRU of %d (our MTU)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l364
_("Received MRU %d from server. Setting our MTU to match.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l372
_("Received asyncmap of 0x%08x from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l378
_("Received magic number of 0x%08x from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l383
_("Received protocol field compression from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l388
_("Received address and control field compression from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l395
_("Received deprecated IP-Addresses from server, ignoring\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l402
_("Received Van Jacobson TCP/IP compression from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l410
_("Received peer IPv4 address %s from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l421
_("Received peer IPv6 link-local address %s from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l428
_("Received unknown %s TLV (tag %d, len %d+2) from server:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/20f0c2ab4:/ppp.c#l459
_("Received %ld extra bytes at end of Config-Request:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l461
_("Reject %s/id %d config from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l472
_("Nak %s/id %d config from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l478
_("Ack %s/id %d config from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ca12dc18:/ppp.c#l513
_("Requesting calculated MTU of %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l564
_("Sending our %s/id %d config request to server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l600
_("Server rejected/nak'ed LCP MRU option\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l605
_("Server rejected/nak'ed LCP asyncmap option\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l616
_("Server rejected LCP magic option\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l622
_("Server rejected/nak'ed LCP PFCOMP option\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l627
_("Server rejected/nak'ed LCP ACCOMP option\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/71bf1d939:/ppp.c#l703
_("Server nak-offered IPv4 address: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/285e86157:/ppp.c#l685
_("Server rejected Legacy IP address %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/71bf1d939:/ppp.c#l713
_("Server rejected/nak'ed our IPv4 address or request: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l656
_("Server nak-offered IPCP request for %s[%d] server: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l665
_("Server rejected/nak'ed IPCP request for %s[%d] server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/71bf1d939:/ppp.c#l750
_("Server nak-offered IPv6 link-local address %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l698
_("Server rejected/nak'ed our IPv6 interface identifier\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l705
_("Server rejected/nak'ed %s TLV (tag %d, len %d+2)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/20f0c2ab4:/ppp.c#l721
_("Received %ld extra bytes at end of Config-Reject:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l739
_("Received %s/id %d %s from server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l770
_("Server terminates with reason: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l797
_("Server rejected our request to configure IPv%d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d2402eb30:/ppp.c#l1016
_("PPP state transition from %s to %s on %s channel\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/76a42bef0:/ppp.c#l1111
_("PPP payload exceeds receive buffer\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/76a42bef0:/ppp.c#l1150
_("Short packet received (%d bytes). Waiting for more.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a6937b663:/ppp.c#l1033
_("Unexpected pre-PPP packet header for encap %d.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/76a42bef0:/ppp.c#l1181
_("PPP payload len %d exceeds receive buffer %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/76a42bef0:/ppp.c#l1187
_(""
"PPP packet is incomplete. Received %d bytes on wire (includes %d encap) but "
"header payload_len is %d. Waiting for more.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l1026
_("Invalid PPP encapsulation\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l1035
_("Packet contains %d bytes after payload. Assuming concatenated packet.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l1085
_("Unexpected IPv%d packet in PPP state %s.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d2402eb30:/ppp.c#l1241
_("Received IPv%d data packet of %d bytes over %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l1095
_("Expected %d PPP header bytes but got %ld, shifting payload.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l1118
_("Sending Protocol-Reject for %s. Payload:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l1194
_("Detected dead peer!\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6a4220b71:/ppp.c#l1371
_("Failed to establish PPP\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l1212
_("Send PPP discard request as keepalive\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a47406b43:/ppp.c#l1216
_("Send PPP echo request as DPD\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d2402eb30:/ppp.c#l1444
_("Sending PPP %s %s packet over %s (id %d, %d bytes total)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/d2402eb30:/ppp.c#l1450
_("Sending PPP %s packet over %s (%d bytes total)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1519
_("PPP connect called with invalid DTLS state %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1540
_("DTLS tunnel connected; exiting HTTPS mainloop.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1574
_("Failed to connect DTLS tunnel; using HTTPS instead (state %d).\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1599
_("Establishing PPP tunnel over TLS failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1610
_("Invalid DTLS state %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1677
_("Reset PPP failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/04671ef02:/ppp.c#l1698
_("Failed to authenticate DTLS session\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l250
_("Received internal Legacy IP address %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l298
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/49fbe6f19:/pulse.c#l324
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/49fbe6f19:/pulse.c#l343
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/49fbe6f19:/pulse.c#l366
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35cce8ea8:/pulse.c#l499
_("Failed to handle IPv6 address\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l303
_("Received internal IPv6 address %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/49fbe6f19:/pulse.c#l358
_("Received IPv6 split include %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/49fbe6f19:/pulse.c#l381
_("Received IPv6 split exclude %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l311
_("Unexpected length %d for attr 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l362
_("ESP encryption: 0x%04x (%s)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l383
_("ESP HMAC: 0x%04x (%s)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l433
_("ESP only: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35cce8ea8:/pulse.c#l503
_("Received internal gateway IPv6 address %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7bbbc9cd0:/pulse.c#l515
_("Pulse ESP tunnel allowed to carry 6in4 or 4in6 traffic: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l475
_("Unknown attr 0x%x len %d:%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l486
_("Read %d bytes of IF-T/TLS record\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e03f856:/pulse.c#l506
_("Short write to IF-T/TLS\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l498
_("Error creating IF-T packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l529
_("Error creating EAP packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l564
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1106
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1169
_("Unexpected IF-T/TLS authentication challenge:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l582
_("Unexpected EAP-TTLS payload:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l615
_("AVP 0x%x/0x%x:%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l617
_("AVP %d:%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l684
_("Enter Pulse user realm:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l689
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l732
_("Realm:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l727
_("Choose Pulse user realm:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/33a746590:/pulse.c#l795
_("Choose Pulse region:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/33a746590:/pulse.c#l797
_("Region:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l743
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1235
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1278
_("Failed to parse AVP\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l810
_("Session limit reached. Choose session to kill:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l815
_("Session:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l831
_("Failed to parse session list\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1012
_("Enter secondary credentials:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1012
_("Enter user credentials:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1022
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1115
_("Secondary username:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1022
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1115
_("Username:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1032
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l89
_("Password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1032
_("Secondary password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48e69d156:/pulse.c#l1122
_("Password expired. Please change password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48e69d156:/pulse.c#l1126
_("Current password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48e69d156:/pulse.c#l1131
_("New password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48e69d156:/pulse.c#l1136
_("Verify new password:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48e69d156:/pulse.c#l1148
_("Passwords not provided.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48e69d156:/pulse.c#l1154
_("Passwords do not match.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48e69d156:/pulse.c#l1159
_("Current password too long.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48e69d156:/pulse.c#l1164
_("New password too long.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/569a7d6aa:/pulse.c#l1084
_("Token code request:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1129
_("Please enter response:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1133
_("Please enter your passcode:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45cbcd27c:/pulse.c#l1135
_("Please enter your secondary token information:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1025
_("Error creating Pulse connection request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1066
_("Unexpected response to IF-T/TLS version negotiation:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1071
_("IF-T/TLS version from server: %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1197
_("Failed to establish EAP-TTLS session\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b02101eb6:/pulse.c#l1701
_(""
"WARNING: Server provided certificate MD5 does not match its actual "
"certificate.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/270eda80a:/pulse.c#l1489
_("Authentication failure: Account locked out\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4261aed85:/pulse.c#l1715
_("Authentication failure: Client certificate required\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/270eda80a:/pulse.c#l1492
_("Authentication failure: Code 0x%02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/62653d993:/pulse.c#l1635
_(""
"Unknown D73 prompt value 0x%x. Will prompt for both username and password.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/62653d993:/pulse.c#l1638
_("Please report this value and the behaviour of the official client.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48e69d156:/pulse.c#l1795
_("Authentication failure: %.*s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9ec9c8621:/pulse.c#l1819
_(""
"Pulse server requested Host Checker; not yet supported\n"
"Try Juniper mode (--protocol=nc)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7e41de54b:/pulse.c#l1840
_(""
"Pulse server is trying to authenticate via EAP-TLS over EAP-TTLS, which we\n"
"do not know how to handle. This can happen when the server OPTIONALLY "
"accepts\n"
"TLS client certificates, but your authentication does not require one.\n"
"You may be able to work around it by spoofing a very old Pulse client with:\n"
" --useragent=\"Pulse-Secure/3.0.0\"\n"
"Please report results to <%s>.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f96dae330:/pulse.c#l1839
_("Pulse server requested unexpected EAP type 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/569a7d6aa:/pulse.c#l1527
_("Unhandled Pulse authentication packet, or authentication failure\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1350
_("Pulse authentication cookie not accepted\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1356
_("Pulse realm entry\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1362
_("Pulse realm choice\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/33a746590:/pulse.c#l1847
_("Pulse region choice\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1369
_("Pulse password auth request, code 0x%02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48e69d156:/pulse.c#l1867
_("Pulse password request with unknown code 0x%02x. Please report.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/569a7d6aa:/pulse.c#l1572
_("Pulse password general token code request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1379
_("Pulse session limit, %d sessions\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1386
_("Unhandled Pulse auth request\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1423
_("Unexpected response instead of IF-T/TLS auth success:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9c45fd072:/pulse.c#l2007
_("EAP-TTLS failure: Flushing output with pending input bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9c45fd072:/pulse.c#l2030
_("Error creating EAP-TTLS buffer\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9c45fd072:/pulse.c#l2078
_("Failed to read EAP-TTLS Acknowledge: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9c45fd072:/pulse.c#l2084
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1492
_("Read %d bytes of IF-T/TLS EAP-TTLS record\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9c45fd072:/pulse.c#l2095
_("Bad EAP-TTLS Acknowledge packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9c45fd072:/pulse.c#l2135
_("Bad EAP-TTLS packet (len %d, left %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1638
_("Unexpected Pulse config packet:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bad0f0430:/pulse.c#l2352
_("Processing Pulse main config packet for server version >= 9.1R14\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3bcb811e0:/pulse.c#l2364
_("attr_flag 0x2c00: known for Pulse version >= 9.1R14\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3bcb811e0:/pulse.c#l2368
_("attr_flag 0x2e00: known for Pulse version >= 9.1R16\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3bcb811e0:/pulse.c#l2372
_("attr_flag 0x%04x: unknown Pulse version. Please report to <%s>\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bad0f0430:/pulse.c#l2373
_("If any of the above attributes are meaningful, please report to <%s>\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bad0f0430:/pulse.c#l2378
_("Processing Pulse main config packet for server version < 9.1R14\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eea59ff04:/pulse.c#l1678
_("Receive route of unknown type 0x%08x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/bad0f0430:/pulse.c#l2500
_("Processing Pulse ESP config packet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e03f856:/pulse.c#l1755
_("Invalid ESP config packet:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e03f856:/pulse.c#l1767
_("Invalid ESP setup\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eea59ff04:/pulse.c#l1763
_("Bad IF-T/TLS packet when expecting configuration:\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2615
_("Unexpected IF-T/TLS packet when expecting configuration: wrong vendor\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2639
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2644
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2651
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2656
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2695
_("Unexpected Pulse configuration packet: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2640
_("wrong type field (!= 1)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2645
_("too short");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2652
_("non-zero values at offsets 0x10, 0x14, 0x18, 0x1c, or 0x24");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2657
_("length at offset 0x28 != packet length - 0x10");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3d6e371b6:/pulse.c#l2696
_("identifier at offset 0x20 is unknown");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/808a702d0:/pulse.c#l2571
_("Insufficient configuration found\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/35e03f856:/pulse.c#l2000
_("ESP rekey failed\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f1540c9d0:/pulse.c#l2732
_("Pulse fatal error (reason: %ld): %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cf4c5dcfb:/pulse.c#l2771
_(""
"Unknown Pulse packet of %d bytes (vendor 0x%03x, type 0x%02x, hdr_len %d, "
"ident %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b795ff352:/pulse.c#l1966
_("Sending IF-T/TLS data packet of %d bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e49e49e33:/script.c#l130
_("Discard bad split include: \"%s\"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e49e49e33:/script.c#l134
_("Discard bad split exclude: \"%s\"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e49e49e33:/script.c#l161
_(""
"WARNING: Split include \"%s\" has host bits set, replacing with \"%s/%d\".\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e49e49e33:/script.c#l165
_(""
"WARNING: Split exclude \"%s\" has host bits set, replacing with \"%s/%d\".\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e49e49e33:/script.c#l272
_("Ignoring legacy network because address \"%s\" is invalid.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e49e49e33:/script.c#l277
_("Ignoring legacy network because netmask \"%s\" is invalid.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b056e27c9:/script.c#l594
_("Failed to get script exit status: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ba8e9e8bb:/script.c#l599
_("Script '%s' returned error %ld\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/adc0b0cef:/script.c#l611
_("Script did not complete within 10 seconds.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/887c9d97e:/script.c#l368
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd0df3770:/script.c#l377
_("Failed to spawn script '%s' for %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f90b4428d:/script.c#l334
_("Script '%s' exited abnormally (%x)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f90b4428d:/script.c#l343
_("Script '%s' returned error %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fe2f766b6:/ssl.c#l110
_("Failed select() for socket connect");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2412b1da5:/ssl.c#l999
_("Socket connect cancelled\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8388bc370:/ssl.c#l191
_("Failed select() for socket accept");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8388bc370:/ssl.c#l196
_("Socket accept cancelled\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8388bc370:/ssl.c#l207
_("Failed to accept local connection: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b69aa4e48:/ssl.c#l194
_("Failed setsockopt(TCP_NODELAY) on TLS socket:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cda04d3b1:/ssl.c#l159
_("Failed to reconnect to proxy %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cda04d3b1:/ssl.c#l163
_("Failed to reconnect to host %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/ssl.c#l943
_("Proxy from libproxy: %s://%s:%d/\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/ssl.c#l974
_("getaddrinfo failed for host '%s': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2f55fec32:/ssl.c#l258
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2f55fec32:/ssl.c#l342
_("Reconnecting to DynDNS server using previously cached IP address\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4bcce5703:/ssl.c#l223
_("Attempting to connect to proxy %s%s%s:%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4bcce5703:/ssl.c#l224
_("Attempting to connect to server %s%s%s:%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cda04d3b1:/ssl.c#l294
_("Connected to %s%s%s:%s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/ssl.c#l1001
_("Failed to allocate sockaddr storage\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cda04d3b1:/ssl.c#l340
_("Failed to connect to %s%s%s:%s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/2f55fec32:/ssl.c#l327
_("Forgetting non-functional previous peer address\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/ssl.c#l1016
_("Failed to connect to host %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9e50ba476:/ssl.c#l306
_("Reconnecting to proxy %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/ssl.c#l1135
_("statvfs: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e57699e1d:/ssl.c#l404
_("Could not obtain file system ID for passphrase\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/45f8f22de:/ssl.c#l419
_("Failed to open private key file '%s': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/ssl.c#l1152
_("statfs: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/ssl.c#l415
_("No error");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/473903c0f:/ssl.c#l422
_("Keystore locked");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/ssl.c#l417
_("Keystore uninitialized");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/ssl.c#l418
_("System error");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/ssl.c#l419
_("Protocol error");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/ssl.c#l420
_("Permission denied");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/ssl.c#l421
_("Key not found");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/ssl.c#l422
_("Value corrupted");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/ssl.c#l423
_("Undefined action");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ed16cfcf0:/ssl.c#l465
_("Wrong password");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/dd9b0ab34:/ssl.c#l428
_("Unknown error");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e1a3be3da:/ssl.c#l885
_("Got cancel on legacy fd\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e1a3be3da:/ssl.c#l900
_("Got cancel command\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/e1a3be3da:/ssl.c#l905
_("Got pause command\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fe2f766b6:/ssl.c#l843
_("Failed select() for command socket");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ccb1573f0:/ssl.c#l938
_("%s() used with unsupported mode '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/848ceff1d:/ssl.c#l931
_("Failed to open %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/848ceff1d:/ssl.c#l938
_("Failed to fstat() %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/848ceff1d:/ssl.c#l945
_("File %s is empty\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/3b8bb9a99:/ssl.c#l973
_("File %s has suspicious size %<PRId64>\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/848ceff1d:/ssl.c#l960
_("Failed to allocate %d bytes for %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/848ceff1d:/ssl.c#l968
_("Failed to read %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8721d4074:/ssl.c#l818
_("Unknown protocol family %d. Cannot create UDP server address\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2b6cb710:/ssl.c#l832
_("Open UDP socket");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2b6cb710:/ssl.c#l863
_("Unknown protocol family %d. Cannot use UDP transport\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c2b6cb710:/ssl.c#l871
_("Bind UDP socket");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/aebbd342d:/ssl.c#l1107
_("Connect UDP socket");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9b6885730:/ssl.c#l1007
_("Make UDP socket non-blocking");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/613bca6f9:/ssl.c#l910
_("Cookie is no longer valid, ending session\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/613bca6f9:/ssl.c#l914
_("sleep %ds, remaining timeout %ds\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fe2f766b6:/ssl.c#l1121
_("Failed select() for socket send");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fe2f766b6:/ssl.c#l1160
_("Failed select() for socket recv");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l180
_("SSPI token too large (%ld bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l194
_("Sending SSPI token of %lu bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l199
_("Failed to send SSPI authentication token to proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l207
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l228
_("Failed to receive SSPI authentication token from proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l213
_("SOCKS server reported SSPI context failure\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l217
_("Unknown SSPI status response (0x%02x) from SOCKS server\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l232
_("Got SSPI token of %lu bytes: %02x %02x %02x %02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l248
_("QueryContextAttributes() failed: %lx\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l284
_("EncryptMessage() failed: %lx\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l296
_("EncryptMessage() result too large (%lu + %lu + %lu)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l318
_("Sending SSPI protection negotiation of %u bytes\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l323
_("Failed to send SSPI protection response to proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l331
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l341
_("Failed to receive SSPI protection response from proxy: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l346
_("Got SSPI protection response of %d bytes: %02x %02x %02x %02x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l362
_("DecryptMessage failed: %lx\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4dd05b4f2:/sspi.c#l367
_("Invalid SSPI protection response from proxy (%lu bytes)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l77
_("Enter credentials to unlock software token.");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l82
_("Device ID:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l118
_("User bypassed soft token.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l124
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l209
_("All fields are required; try again.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l134
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l304
_("General failure in libstoken.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l138
_("Incorrect device ID or password; try again.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l142
_("Soft token init was successful.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l185
_("Enter software token PIN.");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l189
_("PIN:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l216
_("Invalid PIN format; try again.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/465198ce3:/stoken.c#l299
_("Generating RSA token code\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/62558f59a:/tun-win32.c#l70
_("Error accessing registry key for network adapters\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0be961a51:/tun-win32.c#l101
_("Cannot read %s\\%s or is not string\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60d1f092e:/tun-win32.c#l118
_("%s\\ComponentId is unknown '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0be961a51:/tun-win32.c#l114
_("Found %s at %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0be961a51:/tun-win32.c#l131
_("Cannot open registry key %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0be961a51:/tun-win32.c#l142
_("Cannot read registry key %s\\%s or is not string\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6096fb0e4:/tun-win32.c#l186
_(""
"GetAdapterIndex() failed: %s\n"
"Falling back to GetAdaptersInfo()\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/6096fb0e4:/tun-win32.c#l200
_("GetAdaptersInfo() failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c10442fa:/tun-win32.c#l256
_("GetAdaptersAddresses() failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c10442fa:/tun-win32.c#l286
_(""
"Adapter \"%S\" / %ld is UP and using our IPv%d address. Cannot resolve.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0c10442fa:/tun-win32.c#l293
_(""
"Adapter \"%S\" / %ld is DOWN and using our IPv%d address. We will reclaim "
"the address from it.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4a224cdfc:/tun-win32.c#l309
_("GetUnicastIpAddressTable() failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4a224cdfc:/tun-win32.c#l330
_("DeleteUnicastIpAddressEntry() failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4a224cdfc:/tun-win32.c#l337
_("GetUnicastIpAddressTable() did not find matching address to reclaim\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7c7ad370b:/tun-win32.c#l129
_("Failed to open %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60d1f092e:/tun-win32.c#l242
_("Opened tun device %S\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/887c9d97e:/tun-win32.c#l184
_("Failed to obtain TAP driver version: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7c7ad370b:/tun-win32.c#l146
_("Error: TAP-Windows driver v9.9 or greater is required (found %ld.%ld)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/887c9d97e:/tun-win32.c#l207
_("Failed to set TAP IP addresses: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/887c9d97e:/tun-win32.c#l219
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/58e7ea69c:/tun-win32.c#l406
_("Failed to set TAP media status: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60d1f092e:/tun-win32.c#l303
_("Ignoring non-matching interface \"%S\"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60d1f092e:/tun-win32.c#l326
_("Could not convert interface name to UTF-8\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b5ff6f3fb:/tun-win32.c#l468
_("Using %s device '%s', index %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b5ff6f3fb:/tun-win32.c#l473
_(""
"WARNING: Support for Wintun is experimental and may be unstable. If you\n"
" encounter problems, install the TAP-Windows driver instead. See\n"
" %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60d1f092e:/tun-win32.c#l353
_("Could not construct interface name\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a4d7bf9c5:/tun-win32.c#l393
_(""
"Access denied creating Wintun adapter. Are you running with Administrator "
"privileges?\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/48bd28aad:/tun-win32.c#l394
_(""
"Neither Windows-TAP nor Wintun adapters were found. Is the driver "
"installed?\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fa3a36f01:/tun-win32.c#l249
_("TAP device aborted connectivity. Disconnecting.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/887c9d97e:/tun-win32.c#l249
_("Failed to read from TAP device: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/887c9d97e:/tun-win32.c#l263
_("Failed to complete read from TAP device: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/87070617c:/tun-win32.c#l245
_("Wrote %ld bytes to tun\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/87070617c:/tun-win32.c#l255
_("Waiting for tun write...\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/87070617c:/tun-win32.c#l258
_("Wrote %ld bytes to tun after waiting\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/887c9d97e:/tun-win32.c#l306
_("Failed to write to TAP device: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/cb1a342a4:/tun-win32.c#l285
_("Spawning tunnel scripts is not yet supported on Windows\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8fbc0b30:/tun.c#l121
_("Could not open /dev/tun for plumbing");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8fbc0b30:/tun.c#l125
_("Can't push IP");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8fbc0b30:/tun.c#l135
_("Can't set ifname");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b056e27c9:/tun.c#l109
_("Can't open %s: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0f15f33b7:/tun.c#l152
_("Can't plumb %s for IPv%d: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/720c63e28:/tun.c#l139
_("open /dev/tun");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/720c63e28:/tun.c#l145
_("Failed to create new tun");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/720c63e28:/tun.c#l151
_("Failed to put tun file descriptor into message-discard mode");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/4b960afd1:/tun.c#l183
_("tun device is unsupported on this platform\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/eef00ae2f:/tun.c#l432
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0f484d6c7:/tun.c#l619
_("Failed to open tun device: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ebc9e59a3:/tun.c#l244
_("Failed to bind local tun device (TUNSETIFF): %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ebc9e59a3:/tun.c#l248
_(""
"To configure local networking, openconnect must be running as root\n"
"See %s for more information\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/898246b25:/tun.c#l294
_("Invalid interface name '%s'; must match 'utun%%d' or 'tun%%d'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/898246b25:/tun.c#l303
_("Failed to open SYSPROTO_CONTROL socket: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/898246b25:/tun.c#l312
_("Failed to query utun control id: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5b9c521a9:/tun.c#l343
_("Failed to allocate utun device name\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/5b9c521a9:/tun.c#l354
_("Failed to connect utun unit: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/422e196ae:/tun.c#l508
_("Invalid interface name '%s'; must match 'tun%%d'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/422e196ae:/tun.c#l518
_("Cannot open '%s': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f8fbc0b30:/tun.c#l411
_("TUNSIFHEAD");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9b6885730:/tun.c#l464
_("Failed to make tun socket nonblocking: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0f484d6c7:/tun.c#l664
_("socketpair failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0f484d6c7:/tun.c#l669
_("fork failed: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/be40969ca:/tun.c#l475
_("setpgid");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/be40969ca:/tun.c#l480
_("execl");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9186ea2ae:/tun.c#l580
_("(script)");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/87070617c:/tun.c#l436
_("Failed to write incoming packet: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l77
_("Failed to set vring #%d size: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l85
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l97
_("Failed to set vring #%d base: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l107
_("Failed to set vring #%d RX backend: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l115
_("Failed to set vring #%d call eventfd: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l124
_("Failed to set vring #%d kick eventfd: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7b059e931:/vhost.c#l183
_("Failed to find virtual task size; search reached zero");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/7b059e931:/vhost.c#l233
_("Detected virtual address range 0x%lx-0x%lx\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l143
_("Not using vhost-net due to low queue length %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l157
_("Failed to open /dev/vhost-net: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l164
_("Failed to set vhost ownership: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l173
_("Failed to get vhost features: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l178
_("vhost-net lacks required features: %llx\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l186
_("Failed to set vhost features: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l194
_("Failed to open vhost kick eventfd: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l201
_("Failed to open vhost call eventfd: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l219
_("Failed to set vhost memory map: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l242
_("Failed to set tun sndbuf: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l247
_("Using vhost-net for tun acceleration, ring size %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l332
_("Error: vhost gave back invalid descriptor %d, len %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l342
_("vhost gave back empty descriptor %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l353
_("Free TX packet %p [%d] [used %d]\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l365
_("RX packet %p(%d) [%d] [used %d]\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l413
_("Queue TX packet %p at desc %d avail %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l421
_("Queue RX packet %p at desc %d avail %d\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l456
_("Immediate wake because vhost ring moved on from 0x%x to 0x%x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/fd8cfdfd3:/vhost.c#l536
_("Failed to kick vhost-net eventfd\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c6ef11969:/vhost.c#l482
_("Kick vhost ring\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60d1f092e:/wintun.c#l75
_("Could not load wintun.dll\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/60d1f092e:/wintun.c#l90
_("Could not resolve functions from wintun.dll\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/43f078d92:/wintun.c#l143
_("Loaded Wintun v%lu.%lu\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/b056e27c9:/wintun.c#l146
_("Failed to create Wintun session: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9033a84be:/wintun.c#l173
_("Could not retrieve packet from Wintun adapter '%S': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9033a84be:/wintun.c#l185
_("Drop oversized packet retrieved from Wintun adapter '%S' (%ld > %d)\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9033a84be:/wintun.c#l200
_("Could not send packet through Wintun adapter '%S': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/8d7853a7b:/xml.c#l97
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f18f58253:/xml.c#l88
_("Treating host \"%s\" as a raw hostname\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/113965a85:/xml.c#l107
_("Failed to SHA1 existing file\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/ab4abdcdf:/xml.c#l110
_("XML config file SHA1: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f18f58253:/xml.c#l86
_("Failed to parse XML config file %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f18f58253:/xml.c#l123
_("Host \"%s\" has address \"%s\"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f18f58253:/xml.c#l132
_("Host \"%s\" has UserGroup \"%s\"\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/f18f58253:/xml.c#l146
_("Host \"%s\" not listed in config; treating as raw hostname\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l74
_("Failed to send \"%s\" to ykneo-oath applet: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l80
_("Invalid short response to \"%s\" from ykneo-oath applet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a23f11ad9:/yubikey.c#l106
_("Failure response to \"%s\": %04x\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a24290ce:/yubikey.c#l151
_("select applet command");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a24290ce:/yubikey.c#l162
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a24290ce:/yubikey.c#l298
_("Unrecognised response from ykneo-oath applet\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a24290ce:/yubikey.c#l179
_("Found ykneo-oath applet v%d.%d.%d.\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a23f11ad9:/yubikey.c#l206
_("PIN required for Yubikey OATH applet");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/a23f11ad9:/yubikey.c#l211
_("Yubikey PIN:");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a24290ce:/yubikey.c#l193
_("Failed to calculate Yubikey unlock response\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a24290ce:/yubikey.c#l209
_("unlock command");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/9a7accaf7:/yubikey.c#l289
_("Trying truncated-char PBKBF2 variant of Yubikey PIN\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l146
_("Failed to establish PC/SC context: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l150
_("Established PC/SC context\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l155
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l165
_("Failed to query reader list: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l180
_("Failed to connect to PC/SC reader '%s': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/973eed1ff:/yubikey.c#l341
_("Connected PC/SC reader '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/973eed1ff:/yubikey.c#l346
_("Failed to obtain exclusive access to reader '%s': %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l232
_("list keys command");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l262
_("Found %s/%s key '%s' on '%s'\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l279
_(""
"Token '%s' not found on Yubikey '%s'. Searching for another Yubikey...\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l319
_("Server is rejecting the Yubikey token; switching to manual entry\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/c24046b93:/yubikey.c#l374
_("Generating Yubikey token code\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/973eed1ff:/yubikey.c#l515
_("Failed to obtain exclusive access to Yubikey: %s\n");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/46b6bb885:/yubikey.c#l622
_("calculate command");
// https://git.infradead.org/users/dwmw2/openconnect.git/blob/0a24290ce:/yubikey.c#l488
_("Unrecognised response from Yubikey when generating tokencode\n");
|