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
|
/* No comment provided by engineer. */
" (Autoreply)" = " (Autoreply)";
/* No comment provided by engineer. */
" Please restart Adium." = " Please restart Adium.";
/* file size measured in kilobytes */
"%.1f KB" = "%.1f KB";
/* No comment provided by engineer. */
"%.1f KB of %.1f KB" = "%1$.1f KB of %2$.1f KB";
/* file size measured in kilobytes out of some other measurement */
"%.1f KB of %@" = "%1$.1f KB of %2$@";
/* file sizes both measured in kilobytes */
"%.1f of %.1f KB" = "%1$.1f of %2$.1f KB";
/* file size measured in megabytes */
"%.2f MB" = "%.2f MB";
/* file size measured in megabytes out of some other measurement */
"%.2f MB of %@" = "%1$.2f MB of %2$@";
/* file sizes both measured in megabytes */
"%.2f of %.2f MB" = "%1$.2f of %2$.2f MB";
/* file size measured in gigabytes */
"%.3f GB" = "%.3f GB";
/* file size measured in gigabytes out of some other measurement */
"%.3f GB of %@" = "%1$.3f GB of %2$@";
/* file sizes both measured in gigabytes */
"%.3f of %.3f GB" = "%1$.3f of %2$.3f GB";
/* file sizes both measured in terabytes */
"%.4f of %.4f TB" = "%1$.4f of %2$.4f TB";
/* file size measured in terabytes */
"%.4f TB" = "%.4f TB";
/* file size measured in terabytes out of some other measurement */
"%.4f TB of %@" = "%1$.4f TB of %2$@";
/* No comment provided by engineer. */
"%@" = "%@";
/* %@ will be replaced by an amount of time such as '1 day, 4 hours'. This string is used in the 'Last Seen:' information shown when hovering over an offline contact. */
"%@ ago" = "%@ ago";
/* No comment provided by engineer. */
"%@ appears to be offline. How do you want to send this message?" = "%@ appears to be offline. How do you want to send this message?";
/* Event: <A contact's name> became active (is no longer idle) */
"%@ became active" = "%@ became active";
/* A person began receiving a file from you. The first %@ is the recipient of the file; the second %@ is the filename of the file being sent. */
"%@ began receiving %@" = "%1$@ began receiving %2$@";
/* A person began sending you a file. The first %@ is a name; the second %@ is the filename of the file being sent. */
"%@ began sending you %@" = "%1$@ began sending you %2$@";
/* Event: <A contact's name> came back (is now available) */
"%@ came back" = "%@ came back";
/* The other contact cancelled a file transfer in progress. The first %@ is the recipient of the file; the second %@ is the filename of the file being sent. */
"%@ cancelled the transfer of %@" = "%1$@ cancelled the transfer of %2$@";
/* No comment provided by engineer. */
"%@ closed the conversation window." = "%@ closed the conversation window.";
/* Event: <A contact's name> connected */
"%@ connected" = "%@ connected";
/* Event: <A contact's name> disconnected */
"%@ disconnected" = "%@ disconnected";
/* No comment provided by engineer. */
"%@ has sent you (%@) an unknown encryption fingerprint.\n\nFingerprint for you: %@\n\nPurported fingerprint for %@: %@\n\nAccept this fingerprint as verified?" = "%1$@ has sent you (%2$@) an unknown encryption fingerprint.\n\nFingerprint for you: %3$@\n\nPurported fingerprint for %4$@: %5$@\n\nAccept this fingerprint as verified?";
/* AccountName on ChatRoomName */
"%@ in %@" = "%1$@ in %2$@";
/* Contact invites you to a group chat */
"%@ invites you to a group chat" = "%@ invites you to a group chat";
/* No comment provided by engineer. */
"%@ invites you to join the chat \"%@\"" = "%1$@ invites you to join the chat \"%2$@\"";
/* Event: <A contact's name> is no longer seen (went offline, or you went offline) */
"%@ is no longer seen" = "%@ is no longer seen";
/* Message when the remote contact cancels his half of an encrypted conversation. %s will be a name. */
"%@ is no longer using encryption; you should cancel encryption on your side." = "%@ is no longer using encryption; you should cancel encryption on your side.";
/* No comment provided by engineer. */
"%@ is not able to be combined into a meta contact." = "%@ is not able to be combined into a meta contact.";
/* Event: <A contact's name> is seen (which can be 'came online' or 'was online when you connected') */
"%@ is seen" = "%@ is seen";
/* No comment provided by engineer. */
"%@ is the name of the default status icon pack; this pack therefore can not be installed." = "%@ is the name of the default status icon pack; this pack therefore can not be installed.";
/* Contact joined Chat Name */
"%@ joined %@" = "%1$@ joined %2$@";
/* No comment provided by engineer. */
"%@ joined the chat" = "%@ joined the chat";
/* Contact left Chat Name */
"%@ left %@" = "%1$@ left %2$@";
/* No comment provided by engineer. */
"%@ left the chat" = "%@ left the chat";
/* No comment provided by engineer. */
"%@ Link" = "%@ Link";
/* Someone mentions your name in a group chat */
"%@ mentioned you in %@" = "%1$@ mentioned you in %2$@";
/* %@ is the name of the authentication service. */
"%@ Password" = "%@ Password";
/* %@ will be replaced by a string such as '5 MB' in the file transfer window */
"%@ received" = "%@ received";
/* First placeholder is a name; second is a filename */
"%@ received %@" = "%1$@ received %2$@";
/* No comment provided by engineer. */
"%@ received new email" = "%@ received new email";
/* Time remaining for a file transfer to be completed phrase. %@ will be replaced by an amount of time such as '5 seconds' or '4 minutes and 30 seconds'. */
"%@ remaining" = "%@ remaining";
/* A person is wanting to send you a file. The first %@ is a name; the second %@ is the filename of the file being sent. */
"%@ requests to send you %@" = "%1$@ requests to send you %2$@";
/* Event: <A contact's name> is no longer mobile (came online and is no longer available on a mobile device) */
"%@ returned from mobile" = "%@ returned from mobile";
/* Contact said Message */
"%@ said %@" = "%1$@ said %2$@";
/* %@ will be replaced by a string such as '5 MB' in the file transfer window */
"%@ sent" = "%@ sent";
/* First placeholder is a name; second is a filename */
"%@ sent you %@" = "%1$@ sent you %2$@";
/* Contact sent you a message */
"%@ sent you a message" = "%@ sent you a message";
/* AccountName talking to Username */
"%@ talking to %@" = "%1$@ talking to %2$@";
/* Message displayed when a contact sends a buzz/nudge/other notification */
"%@ wants your attention!" = "%@ wants your attention!";
/* Event: <A contact's name> went away (is no longer available but is still online) */
"%@ went away" = "%@ went away";
/* Event: <A contact's name> went idle */
"%@ went idle" = "%@ went idle";
/* Event: <A contact's name> went mobile (went offline but is available on a mobile device) */
"%@ went mobile" = "%@ went mobile";
/* (name)'s (information type), e.g. tekjew's status */
"%@'s %@" = "%1$@'s %2$@";
/* No comment provided by engineer. */
"%@'s Image" = "%@'s Image";
/* No comment provided by engineer. */
"%@'s Info" = "%@'s Info";
/* Statement that someone's private (encrypted) connection is closed. */
"%@'s private connection to you is closed." = "%@'s private connection to you is closed.";
/* First placeholder is a name; second is a filename */
"%@'s transfer of %@ failed" = "%1$@'s transfer of %2$@ failed";
/* Rate of transfer phrase. %@ will be replaced by an abbreviated data amount such as 4 KB or 1 MB */
"%@/sec" = "%@/sec";
/* No comment provided by engineer. */
"%d contacts" = "%d contacts";
/* Used to describe omitted contacts.\
The first parameter is the number of omitted contacts */
"%d others" = "%d others";
/* No comment provided by engineer. */
"%i hours" = "%i hours";
/* No comment provided by engineer. */
"%i minutes" = "%i minutes";
/* file size measured in bytes */
"%llu bytes" = "%llu bytes";
/* file size measured in bytes out of some other measurement */
"%llu bytes of %@" = "%1$llu bytes of %2$@";
/* file sizes both measured in bytes */
"%llu of %llu bytes" = "%1$llu of %2$llu bytes";
/* Overview of total, enabled, and online accounts */
"%lu accounts, %lu enabled, %lu online" = "%1$lu accounts, %2$lu enabled, %3$lu online";
/* Overview of total and online accounts */
"%lu accounts, %lu online" = "%1$lu accounts, %2$lu online";
/* No comment provided by engineer. */
"%lu Contacts" = "%lu Contacts";
/* (number) downloads */
"%lu downloads" = "%lu downloads";
/* No comment provided by engineer. */
"%lu matching transcripts" = "%lu matching transcripts";
/* Used in the display for the contact list for the number of online contacts out of the number of total contacts */
"%lu of %lu" = "%1$lu of %2$lu";
/* No comment provided by engineer. */
"%lu transcripts" = "%lu transcripts";
/* (number) uploads */
"%lu uploads" = "%lu uploads";
/* No comment provided by engineer. */
"%u accounts connected" = "%u accounts connected";
/* No comment provided by engineer. */
"%u accounts disconnected" = "%u accounts disconnected";
/* No comment provided by engineer. */
"%u accounts received new email" = "%u accounts received new email";
/* No comment provided by engineer. */
"%u attention requests" = "%u attention requests";
/* No comment provided by engineer. */
"%u chats are open in this window, %u of which have unviewed messages. Do you want to close this window anyway?" = "%1$u chats are open in this window, %2$u of which have unviewed messages. Do you want to close this window anyway?";
/* No comment provided by engineer. */
"%u chats are open in this window, 1 of which has unviewed messages. Do you want to close this window anyway?" = "%u chats are open in this window, 1 of which has unviewed messages. Do you want to close this window anyway?";
/* No comment provided by engineer. */
"%u chats are open in this window. Do you want to close this window anyway?" = "%u chats are open in this window. Do you want to close this window anyway?";
/* No comment provided by engineer. */
"%u contacts are no longer seen" = "%u contacts are no longer seen";
/* No comment provided by engineer. */
"%u contacts are seen" = "%u contacts are seen";
/* No comment provided by engineer. */
"%u contacts became active" = "%u contacts became active";
/* No comment provided by engineer. */
"%u contacts came back" = "%u contacts came back";
/* No comment provided by engineer. */
"%u contacts connected" = "%u contacts connected";
/* No comment provided by engineer. */
"%u contacts disconnected" = "%u contacts disconnected";
/* No comment provided by engineer. */
"%u contacts joined" = "%u contacts joined";
/* No comment provided by engineer. */
"%u contacts left" = "%u contacts left";
/* No comment provided by engineer. */
"%u contacts returned from mobile" = "%u contacts returned from mobile";
/* No comment provided by engineer. */
"%u contacts went away" = "%u contacts went away";
/* No comment provided by engineer. */
"%u contacts went idle" = "%u contacts went idle";
/* No comment provided by engineer. */
"%u contacts went mobile" = "%u contacts went mobile";
/* No comment provided by engineer. */
"%u errors" = "%u errors";
/* No comment provided by engineer. */
"%u file transfers failed" = "%u file transfers failed";
/* No comment provided by engineer. */
"%u files began transferring" = "%u files began transferring";
/* No comment provided by engineer. */
"%u files being checksummed prior to sending" = "%u files being checksummed prior to sending";
/* No comment provided by engineer. */
"%u files cancelled remotely" = "%u files cancelled remotely";
/* No comment provided by engineer. */
"%u files completed successfully" = "%u files completed successfully";
/* No comment provided by engineer. */
"%u files offered to send" = "%u files offered to send";
/* No comment provided by engineer. */
"%u incoming file transfers" = "%u incoming file transfers";
/* No comment provided by engineer. */
"%u invites to a group chat" = "%u invites to a group chat";
/* No comment provided by engineer. */
"%u mentions received" = "%u mentions received";
/* No comment provided by engineer. */
"%u messages received" = "%u messages received";
/* No comment provided by engineer. */
"%u messages sent" = "%u messages sent";
/* No comment provided by engineer. */
"%u users" = "%u users";
/* Short word inserted after the sender's name when displaying a message which was an autoresponse */
"(Autoreply)" = "(Autoreply)";
/* Prefix to place before autoreplies on services which do not natively support them */
"(Autoreply) " = "(Autoreply) ";
/* Copy, in parenthesis, as a noun indicating that the preceding item is a duplicate */
"(Copy)" = "(Copy)";
/* No comment provided by engineer. */
"(Multiple privacy levels are active)" = "(Multiple privacy levels are active)";
/* Hot Keys: Key Combo text for 'empty' combo */
"(None)" = "(None)";
/* Phrase sent in response to %_music. The first %%@ is the track; the second %%@ is the artist. */
"*is listening to %@ by %@*" = "*is listening to %1$@ by %2$@*";
/* Phrase sent in response to %_music when nothing is playing. */
"*is listening to nothing*" = "*is listening to nothing*";
/* The amount of time until a reconnect occurs. %@ is the formatted time remaining. */
"...in %@" = "...in %@";
/* Checkbox under 'on screen edges' in the advanced contact list preferences */
"...only while Adium is in the background" = "...only while Adium is in the background";
/* Command which will clear the message area of a chat. Please include the '/' at the front of your translation. */
"/clear" = "/clear";
/* No comment provided by engineer. */
"1 Contact" = "1 Contact";
/* No comment provided by engineer. */
"1 download" = "1 download";
/* No comment provided by engineer. */
"1 hour" = "1 hour";
/* No comment provided by engineer. */
"1 matching transcript" = "1 matching transcript";
/* No comment provided by engineer. */
"1 minute" = "1 minute";
/* No comment provided by engineer. */
"1 transcript" = "1 transcript";
/* No comment provided by engineer. */
"1 upload" = "1 upload";
/* No comment provided by engineer. */
"1 user" = "1 user";
/* Example for a songs debut-year */
"1970" = "1970";
/* Colon which will be appended after a label such as 'User Name', before an input field */
":" = ":";
/* No comment provided by engineer. */
"<HTML>Adium is <i>your</i> instant messaging solution.<br><br>Chat with whomever you want, whenever you want, however you want. Multiple messaging services or accounts? Just one account? Work? Play? Both? No problem; Adium has you covered.<br><br>Adium is fast, free, and fun, with an interface you'll love to use day in and day out. :)<br><br>This assistant will help you set up your instant messaging accounts and get started chatting.<br><br>Click <b>Continue</b> and the duck will take it from here.</HTML>" = "<HTML>Adium is <i>your</i> instant messaging solution.<br><br>Chat with whomever you want, whenever you want, however you want. Multiple messaging services or accounts? Just one account? Work? Play? Both? No problem; Adium has you covered.<br><br>Adium is fast, free, and fun, with an interface you'll love to use day in and day out. :)<br><br>This assistant will help you set up your instant messaging accounts and get started chatting.<br><br>Click <b>Continue</b> and the duck will take it from here.</HTML>";
/* No comment provided by engineer. */
"<HTML>To chat with your friends, family, and coworkers, you must have an instant messaging account on the same service they do. Choose a service, name, and password below; if you don't have an account yet, click <A HREF=\"http://trac.adium.im/wiki/CreatingAnAccount#Sigingupforanaccount\">here</A> for more information.\n\nAdium supports as many accounts as you want to add; you can always add more in the Accounts pane of the Adium Preferences.</HTML>" = "<HTML>To chat with your friends, family, and coworkers, you must have an instant messaging account on the same service they do. Choose a service, name, and password below; if you don't have an account yet, click <A HREF=\"http://trac.adium.im/wiki/CreatingAnAccount#Sigingupforanaccount\">here</A> for more information.\n\nAdium supports as many accounts as you want to add; you can always add more in the Accounts pane of the Adium Preferences.</HTML>";
/* Placeholder displayed as the name of a new account */
"<New Account>" = "<New Account>";
/* Placeholder shown when no information is available */
"<None>" = "<None>";
/* A Growl notification with a timestamp. The first %@ is the timestamp, the second is the main string */
"[%@] %@" = "[%1$@] %2$@";
/* Description of safe files (files which Adium can open automatically without danger to the user). This description should be on two lines; the lines are separated by \n. */
"\"Safe\" files include movies, pictures,\nsounds, text documents, and archives." = "\"Safe\" files include movies, pictures,\nsounds, text documents, and archives.";
/* No comment provided by engineer. */
"a contact" = "a contact";
/* No comment provided by engineer. */
"A fingerprint is a unique identifier that you should use to verify the identity of %@.\n\nTo verify the fingerprint, contact %@ via some other authenticated channel such as the telephone or GPG-signed email. Each of you should tell your fingerprint to the other." = "A fingerprint is a unique identifier that you should use to verify the identity of %1$@.\n\nTo verify the fingerprint, contact %2$@ via some other authenticated channel such as the telephone or GPG-signed email. Each of you should tell your fingerprint to the other.";
/* No comment provided by engineer. */
"a member of %@" = "a member of %@";
/* No comment provided by engineer. */
"A message may not have been sent; a timeout occurred." = "A message may not have been sent; a timeout occurred.";
/* No comment provided by engineer. */
"About Adium" = "About Adium";
/* No comment provided by engineer. */
"About Encryption" = "About Encryption";
/* No comment provided by engineer. */
"Above other windows" = "Above other windows";
/* No comment provided by engineer. */
"Accept" = "Accept";
/* No comment provided by engineer. */
"Accepted file transfer" = "Accepted file transfer";
/* Proxy password prompt window title */
"Accessing Proxy" = "Accessing Proxy";
/* Title of column containing blocking accounts */
"Account" = "Account";
/* No comment provided by engineer. */
"Account List" = "Account List";
/* No comment provided by engineer. */
"Account:" = "Account:";
/* Accounts preferences label */
"Accounts" = "Accounts";
/* Add button for Privacy Settings */
"Add" = "Add";
/* No comment provided by engineer. */
"Add a new contact" = "Add a new contact";
/* No comment provided by engineer. */
"Add an account for:" = "Add an account for:";
/* No comment provided by engineer. */
"Add an Instant Messaging Account" = "Add an Instant Messaging Account";
/* button title for adding another account in the setup wizard */
"Add Another" = "Add Another";
/* Add a chat bookmark (context menu) */
"Add Bookmark" = "Add Bookmark";
/* No comment provided by engineer. */
"Add Contact" = "Add Contact";
/* No comment provided by engineer. */
"Add Contact To Group" = "Add Contact To Group";
/* No comment provided by engineer. */
"Add Group" = "Add Group";
/* Add a chat bookmark */
"Add Group Chat Bookmark" = "Add Group Chat Bookmark";
/* No comment provided by engineer. */
"Add Link" = "Add Link";
/* Inserts a custom mark into the message window */
"Add Mark" = "Add Mark";
/* No comment provided by engineer. */
"Add New Layout" = "Add New Layout";
/* No comment provided by engineer. */
"Add New Preset" = "Add New Preset";
/* No comment provided by engineer. */
"Add New Theme" = "Add New Theme";
/* No comment provided by engineer. */
"Add/Edit Hyperlink" = "Add/Edit Hyperlink";
/* No comment provided by engineer. */
"Address Book" = "Address Book";
/* No comment provided by engineer. */
"Address Book Information (optional):" = "Address Book Information (optional):";
/* Error message window title */
"Adium : Error" = "Adium : Error";
/* No comment provided by engineer. */
"Adium currently has access to your account." = "Adium currently has access to your account.";
/* Debug window title */
"Adium Debug Log" = "Adium Debug Log";
/* No comment provided by engineer. */
"Adium Forums" = "Adium Forums";
/* No comment provided by engineer. */
"Adium Help" = "Adium Help";
/* No comment provided by engineer. */
"Adium Homepage" = "Adium Homepage";
/* No comment provided by engineer. */
"Adium Icon" = "Adium Icon";
/* No comment provided by engineer. */
"Adium includes assistants to import your accounts, settings, and transcripts from other clients. Choose a client below to open its assistant, or press Continue to skip importing." = "Adium includes assistants to import your accounts, settings, and transcripts from other clients. Choose a client below to open its assistant, or press Continue to skip importing.";
/* No comment provided by engineer. */
"Adium is now ready for you. \n\nThe Status indicator at the top of your Contact List and in the Status menu lets you determine whether others see you as Available or Away or, alternately, if you are Offline. Select Custom to type your own status message.\n\nDouble-click a name in your Contact List to begin a conversation. You can add contacts to your Contact List via the Contact menu.\n\nWant to customize your Adium experience? Check out the Adium Preferences and Xtras Manager via the Adium menu.\n\nEnjoy! Click Done to begin using Adium." = "Adium is now ready for you. \n\nThe Status indicator at the top of your Contact List and in the Status menu lets you determine whether others see you as Available or Away or, alternately, if you are Offline. Select Custom to type your own status message.\n\nDouble-click a name in your Contact List to begin a conversation. You can add contacts to your Contact List via the Contact menu.\n\nWant to customize your Adium experience? Check out the Adium Preferences and Xtras Manager via the Adium menu.\n\nEnjoy! Click Done to begin using Adium.";
/* Error message displayed when the server reports that our access has been revoked or invalid. */
"Adium isn't allowed access to your account." = "Adium isn't allowed access to your account.";
/* No comment provided by engineer. */
"Adium plugin" = "Adium plugin";
/* No comment provided by engineer. */
"Adium Preferences" = "Adium Preferences";
/* No comment provided by engineer. */
"Adium Setup Assistant" = "Adium Setup Assistant";
/* Growl installation explanation */
"Adium uses the Growl notification system to provide a configurable interface to display status changes, incoming messages and more.\n\nIt is strongly recommended that you allow Adium to automatically install Growl; no download is required." = "Adium uses the Growl notification system to provide a configurable interface to display status changes, incoming messages and more.\n\nIt is strongly recommended that you allow Adium to automatically install Growl; no download is required.";
/* Growl update explanation */
"Adium uses the Growl notification system to provide a configurable interface to display status changes, incoming messages and more.\n\nThis release of Adium includes an updated version of Growl. It is strongly recommended that you allow Adium to automatically update Growl; no download is required." = "Adium uses the Growl notification system to provide a configurable interface to display status changes, incoming messages and more.\n\nThis release of Adium includes an updated version of Growl. It is strongly recommended that you allow Adium to automatically update Growl; no download is required.";
/* Title of the messages preferences */
"Advanced" = "Advanced";
/* No comment provided by engineer. */
"Advanced Preference Categories" = "Advanced Preference Categories";
/* This segment displays the advanced settings for a contact, including encryption details and account information. */
"Advanced Settings" = "Advanced Settings";
/* No comment provided by engineer. */
"After" = "After";
/* Album of current song */
"Album" = "Album";
/* Label for the 'show an alert' action */
"Alert Text:" = "Alert Text:";
/* No comment provided by engineer. */
"Alias" = "Alias";
/* No comment provided by engineer. */
"Alias (User Name)" = "Alias (User Name)";
/* Label beside the field for a contact's alias in the settings tab of the Get Info window */
"Alias:" = "Alias:";
/* No comment provided by engineer. */
"All" = "All";
/* No comment provided by engineer. */
"All (%@)" = "All (%@)";
/* No comment provided by engineer. */
"All of the iChat transcripts that were imported into Adium will be moved to the Trash." = "All of the iChat transcripts that were imported into Adium will be moved to the Trash.";
/* No comment provided by engineer. */
"All Other Accounts" = "All Other Accounts";
/* No comment provided by engineer. */
"Allow Adium access" = "Allow Adium access";
/* No comment provided by engineer. */
"Allow anyone" = "Allow anyone";
/* No comment provided by engineer. */
"Allow only certain contacts" = "Allow only certain contacts";
/* No comment provided by engineer. */
"Allow only contacts on my contact list" = "Allow only contacts on my contact list";
/* Confirmation preference */
"Always" = "Always";
/* No comment provided by engineer. */
"Always set Adium as the default" = "Always set Adium as the default";
/* No comment provided by engineer. */
"An encrypted message from %@ could not be decrypted." = "An encrypted message from %@ could not be decrypted.";
/* No comment provided by engineer. */
"An error occured while trying to gain access. Please try again." = "An error occured while trying to gain access. Please try again.";
/* No comment provided by engineer. */
"An error occurred" = "An error occurred";
/* No comment provided by engineer. */
"An error occurred while downloading this Xtra: %@." = "An error occurred while downloading this Xtra: %@.";
/* No comment provided by engineer. */
"An error occurred while installing the X(tra)." = "An error occurred while installing the X(tra).";
/* This string is under the heading 'Contact List' and refers to changes such as sort order in the contact list being animated rather than occurring instantenously */
"Animate changes" = "Animate changes";
/* No comment provided by engineer. */
"Animate the dock icon" = "Animate the dock icon";
/* No comment provided by engineer. */
"Any Date" = "Any Date";
/* Appearance preferences label */
"Appearance" = "Appearance";
/* No comment provided by engineer. */
"AppleScript set" = "AppleScript set";
/* No comment provided by engineer. */
"AppleScript:" = "AppleScript:";
/* No comment provided by engineer. */
"Are you sure you want to block %@?" = "Are you sure you want to block %@?";
/* No comment provided by engineer. */
"Are you sure you want to block all contacts in the group %@?" = "Are you sure you want to block all contacts in the group %@?";
/* No comment provided by engineer. */
"Are you sure you want to close this window?" = "Are you sure you want to close this window?";
/* No comment provided by engineer. */
"Are you sure you want to delete %lu saved status items?" = "Are you sure you want to delete %lu saved status items?";
/* No comment provided by engineer. */
"Are you sure you want to delete all of your iChat Transcripts?" = "Are you sure you want to delete all of your iChat Transcripts?";
/* No comment provided by engineer. */
"Are you sure you want to delete the %@ Dock Icon? It will be moved to the Trash." = "Are you sure you want to delete the %@ Dock Icon? It will be moved to the Trash.";
/* No comment provided by engineer. */
"Are you sure you want to delete the %@ Emoticon Pack? It will be moved to the Trash." = "Are you sure you want to delete the %@ Emoticon Pack? It will be moved to the Trash.";
/* No comment provided by engineer. */
"Are you sure you want to delete the direct message:\n\n\"%@\"\n\nThis action cannot be undone." = "Are you sure you want to delete the direct message:\n\n\"%@\"\n\nThis action cannot be undone.";
/* No comment provided by engineer. */
"Are you sure you want to delete the group \"%@\" containing 1 saved status item?" = "Are you sure you want to delete the group \"%@\" containing 1 saved status item?";
/* No comment provided by engineer. */
"Are you sure you want to delete the tweet:\n\n\"%@\"\n\nThis action cannot be undone." = "Are you sure you want to delete the tweet:\n\n\"%@\"\n\nThis action cannot be undone.";
/* Quit Confirmation */
"Are you sure you want to quit Adium?" = "Are you sure you want to quit Adium?";
/* No comment provided by engineer. */
"Are you sure you want to send %lu logs to the Trash?" = "Are you sure you want to send %lu logs to the Trash?";
/* No comment provided by engineer. */
"Are you sure you want to unblock %@?" = "Are you sure you want to unblock %@?";
/* No comment provided by engineer. */
"Are you sure you want to unblock all contacts in the group %@?" = "Are you sure you want to unblock all contacts in the group %@?";
/* Directional arrow keys word */
"Arrows (%@ and %@)" = "Arrows (%1$@ and %2$@)";
/* Artist of current song */
"Artist" = "Artist";
/* Menu item for attaching groups to detachable windows */
"Attach To Window" = "Attach To Window";
/* No comment provided by engineer. */
"Attempt to delete tweet failed to connect." = "Attempt to delete tweet failed to connect.";
/* No comment provided by engineer. */
"Attempt to favorite tweet failed to connect." = "Attempt to favorite tweet failed to connect.";
/* No comment provided by engineer. */
"Attempt to favorite tweet failed. %@" = "Attempt to favorite tweet failed. %@";
/* No comment provided by engineer. */
"Audio Notifications" = "Audio Notifications";
/* No comment provided by engineer. */
"Authorization Requests" = "Authorization Requests";
/* File Transfer preferences */
"Automatically accept files and images" = "Automatically accept files and images";
/* No comment provided by engineer. */
"Automatically hide the contact list:" = "Automatically hide the contact list:";
/* No comment provided by engineer. */
"Available" = "Available";
/* No comment provided by engineer. */
"Away" = "Away";
/* No comment provided by engineer. */
"Away and Idle" = "Away and Idle";
/* No comment provided by engineer. */
"Away Message" = "Away Message";
/* No comment provided by engineer. */
"Away Message: %@" = "Away Message: %@";
/* No comment provided by engineer. */
"Away Status Window" = "Away Status Window";
/* No comment provided by engineer. */
"Background images are only applicable to normal and borderless window styles" = "Background images are only applicable to normal and borderless window styles";
/* No comment provided by engineer. */
"Badge (Lower Left)" = "Badge (Lower Left)";
/* No comment provided by engineer. */
"Badge (Lower Right)" = "Badge (Lower Right)";
/* No comment provided by engineer. */
"Badge the menu item with current status" = "Badge the menu item with current status";
/* Event: became active (follows a contact's name displayed as a header) */
"became active" = "became active";
/* No comment provided by engineer. */
"Becomes idle" = "Becomes idle";
/* No comment provided by engineer. */
"Before" = "Before";
/* %@ is a filename of a file being sent */
"began receiving %@" = "began receiving %@";
/* No comment provided by engineer. */
"Began receiving %@" = "Began receiving %@";
/* No comment provided by engineer. */
"Began sending %@" = "Began sending %@";
/* %@ is a filename of a file being sent */
"began sending you %@" = "began sending you %@";
/* Dock behavior contact alert label */
"Behavior" = "Behavior";
/* No comment provided by engineer. */
"Below Name" = "Below Name";
/* No comment provided by engineer. */
"Below other windows" = "Below other windows";
/* No comment provided by engineer. */
"Beside Name" = "Beside Name";
/* Menu item title for making the font size bigger */
"Bigger" = "Bigger";
/* No comment provided by engineer. */
"Biography" = "Biography";
/* Block Contact menu item */
"Block" = "Block";
/* No comment provided by engineer. */
"Block certain contacts" = "Block certain contacts";
/* Block Group menu item */
"Block Group" = "Block Group";
/* No comment provided by engineer. */
"Blocking prevents a contact from contacting you or seeing your online status." = "Blocking prevents a contact from contacting you or seeing your online status.";
/* No comment provided by engineer. */
"Bold" = "Bold";
/* tooltip text for Add Bookmark */
"Bookmark the current chat" = "Bookmark the current chat";
/* No comment provided by engineer. */
"Borderless Window" = "Borderless Window";
/* Position menu item for tabs at the bottom of the message window */
"Bottom" = "Bottom";
/* No comment provided by engineer. */
"Bounce the dock icon" = "Bounce the dock icon";
/* %@ will be repalced with a string like 'one time' or 'repeatedly'. */
"Bounce the dock icon %@" = "Bounce the dock icon %@";
/* Word for [ and ] keys */
"Brackets (%@ and %@)" = "Brackets (%1$@ and %2$@)";
/* No comment provided by engineer. */
"Bring All to Front" = "Bring All to Front";
/* iTunes toolbar menu item title to make iTunes frontmost app. */
"Bring iTunes to Front" = "Bring iTunes to Front";
/* No comment provided by engineer. */
"Browse" = "Browse";
/* Event: came back (follows a contact's name displayed as a header) */
"came back" = "came back";
/* Cancel button for Privacy Settings */
"Cancel" = "Cancel";
/* No comment provided by engineer. */
"Cancel Encrypted Chat" = "Cancel Encrypted Chat";
/* File transfer cancelled locally status description */
"Cancelled" = "Cancelled";
/* %@ is a filename of a file being sent */
"cancelled the transfer of %@" = "cancelled the transfer of %@";
/* No comment provided by engineer. */
"Cancelling transcript import" = "Cancelling transcript import";
/* No comment provided by engineer. */
"Cannot change notification setting for %@. %@" = "Cannot change notification setting for %1$@. %2$@";
/* No comment provided by engineer. */
"Center" = "Center";
/* Background image display preference: The image will be centered in the window */
"Centered" = "Centered";
/* No comment provided by engineer. */
"Change display name" = "Change display name";
/* No comment provided by engineer. */
"Change Display Name" = "Change Display Name";
/* No comment provided by engineer. */
"Change Icon For:" = "Change Icon For:";
/* No comment provided by engineer. */
"Change Source or Destination" = "Change Source or Destination";
/* No comment provided by engineer. */
"Change status" = "Change status";
/* No comment provided by engineer. */
"Changed status to %@" = "Changed status to %@";
/* No comment provided by engineer. */
"Changed status to %@: %@" = "Changed status to %1$@: %2$@";
/* No comment provided by engineer. */
"Chat Transcript Viewer" = "Chat Transcript Viewer";
/* Title for the messages window menu item */
"Chats" = "Chats";
/* Instructions for enabling an account */
"Check a box to enable an account" = "Check a box to enable an account";
/* No comment provided by engineer. */
"Check For Updates" = "Check For Updates";
/* No comment provided by engineer. */
"Check Grammar With Spelling" = "Check Grammar With Spelling";
/* No comment provided by engineer. */
"Check Spelling" = "Check Spelling";
/* No comment provided by engineer. */
"Check Spelling As You Type" = "Check Spelling As You Type";
/* No comment provided by engineer. */
"Choose an Address Card:" = "Choose an Address Card:";
/* No comment provided by engineer. */
"Choose Icon" = "Choose Icon";
/* No comment provided by engineer. */
"Clear" = "Clear";
/* File Transfer preferences */
"Clear completed transfers automatically" = "Clear completed transfers automatically";
/* Clears the display window for the currently open message window */
"Clear Display" = "Clear Display";
/* No comment provided by engineer. */
"Clear Recent Pictures" = "Clear Recent Pictures";
/* Instructions on how to add an account when none are present */
"Click the + to add a new account" = "Click the + to add a new account";
/* No comment provided by engineer. */
"Client" = "Client";
/* No comment provided by engineer. */
"Close" = "Close";
/* Title for the close all chats menu item */
"Close All Chats" = "Close All Chats";
/* Title for the close chat menu item */
"Close Chat" = "Close Chat";
/* Title for the close window menu item */
"Close Window" = "Close Window";
/* No comment provided by engineer. */
"Collapse Combined Contact" = "Collapse Combined Contact";
/* Button title for accepting the action of combining multiple contacts into a metacontact */
"Combine" = "Combine";
/* Title of the prompt when combining two contacts. Each %@ will be filled with a contact name. */
"Combine %@ and %@?" = "Combine %1$@ and %2$@?";
/* No comment provided by engineer. */
"Combine contacts listed on a single card" = "Combine contacts listed on a single card";
/* Title of the prompt when combining two or more contacts with another. %@ will be filled with a contact name. */
"Combine these contacts with %@?" = "Combine these contacts with %@?";
/* No comment provided by engineer. */
"Command failed." = "Command failed.";
/* No comment provided by engineer. */
"Complete" = "Complete";
/* Composer of current song */
"Composer" = "Composer";
/* No comment provided by engineer. */
"Configure Alphabetical Sort" = "Configure Alphabetical Sort";
/* Configure Sort window title */
"Configure Sorting" = "Configure Sorting";
/* No comment provided by engineer. */
"Configure Status Sort" = "Configure Status Sort";
/* Message close confirmation preference */
"Confirm before closing multiple chat windows" = "Confirm before closing multiple chat windows";
/* Quit Confirmation preference */
"Confirm before quitting Adium" = "Confirm before quitting Adium";
/* No comment provided by engineer. */
"Confirm Quit" = "Confirm Quit";
/* No comment provided by engineer. */
"Confirmations" = "Confirmations";
/* Header line in the last pane of the Adium setup wizard */
"Congratulations!" = "Congratulations!";
/* No comment provided by engineer. */
"Connect" = "Connect";
/* Menu item title which opens the window for adding and connecting a guest (temporary) account */
"Connect a Guest Account" = "Connect a Guest Account";
/* No comment provided by engineer. */
"Connect All Accounts" = "Connect All Accounts";
/* Title for the window shown when adding a guest (temporary) account */
"Connect Guest Account" = "Connect Guest Account";
/* No comment provided by engineer. */
"Connect Temporary IRC Account" = "Connect Temporary IRC Account";
/* Account preferences checkbox for automatically conencting the account when Adium opens */
"Connect when Adium opens" = "Connect when Adium opens";
/* Event: connected (follows a contact's name displayed as a header) */
"connected" = "connected";
/* No comment provided by engineer. */
"Connecting" = "Connecting";
/* Password prompt window title */
"Connecting Account" = "Connecting Account";
/* No comment provided by engineer. */
"Consolidate Chats" = "Consolidate Chats";
/* menu item title */
"Consolidate Detached Groups" = "Consolidate Detached Groups";
/* Title of column containing user IDs of blocked contacts
Title of the Contact menu */
"Contact" = "Contact";
/* No comment provided by engineer. */
"Contact Alert" = "Contact Alert";
/* No comment provided by engineer. */
"Contact Alert Error" = "Contact Alert Error";
/* No comment provided by engineer. */
"Contact becomes idle" = "Contact becomes idle";
/* No comment provided by engineer. */
"Contact Bubbles" = "Contact Bubbles";
/* No comment provided by engineer. */
"Contact Bubbles (To Fit)" = "Contact Bubbles (To Fit)";
/* No comment provided by engineer. */
"Contact goes away" = "Contact goes away";
/* No comment provided by engineer. */
"Contact goes mobile" = "Contact goes mobile";
/* Contact icon label in create new AB person */
"Contact Icon" = "Contact Icon";
/* No comment provided by engineer. */
"Contact ID" = "Contact ID";
/* No comment provided by engineer. */
"Contact Info" = "Contact Info";
/* This segment displays contact and alias information for the selected contact. */
"Contact Information" = "Contact Information";
/* No comment provided by engineer. */
"Contact invites you to a group chat" = "Contact invites you to a group chat";
/* No comment provided by engineer. */
"Contact is no longer seen" = "Contact is no longer seen";
/* No comment provided by engineer. */
"Contact is seen" = "Contact is seen";
/* No comment provided by engineer. */
"Contact joins a group chat" = "Contact joins a group chat";
/* No comment provided by engineer. */
"Contact leaves a group chat" = "Contact leaves a group chat";
/* Name of the window which lists contacts */
"Contact List" = "Contact List";
/* No comment provided by engineer. */
"contact list layout" = "contact list layout";
/* No comment provided by engineer. */
"contact list theme" = "contact list theme";
/* AdiumXtras category name */
"Contact List Themes" = "Contact List Themes";
/* No comment provided by engineer. */
"Contact Name Format" = "Contact Name Format";
/* No comment provided by engineer. */
"Contact returns from away" = "Contact returns from away";
/* No comment provided by engineer. */
"Contact returns from idle" = "Contact returns from idle";
/* No comment provided by engineer. */
"Contact returns from mobile" = "Contact returns from mobile";
/* No comment provided by engineer. */
"Contact signs off" = "Contact signs off";
/* No comment provided by engineer. */
"Contact signs on" = "Contact signs on";
/* Contact type service dropdown label in Add Contact */
"Contact Type:" = "Contact Type:";
/* No comment provided by engineer. */
"Contact:" = "Contact:";
/* Contact List window title */
"Contacts" = "Contacts";
/* No comment provided by engineer. */
"Content" = "Content";
/* 'done' button title */
"Continue" = "Continue";
/* No comment provided by engineer. */
"Contribute" = "Contribute";
/* No comment provided by engineer. */
"Contributing to Adium" = "Contributing to Adium";
/* No comment provided by engineer. */
"Copy" = "Copy";
/* Menu Item for the context menu of an account in the accounts list */
"Copy Error Message" = "Copy Error Message";
/* No comment provided by engineer. */
"Copy Style" = "Copy Style";
/* No comment provided by engineer. */
"Could not create the %@ folder." = "Could not create the %@ folder.";
/* No comment provided by engineer. */
"Could not receive the last message because it was invalid." = "Could not receive the last message because it was invalid.";
/* No comment provided by engineer. */
"Could not receive the last message because it was too large." = "Could not receive the last message because it was too large.";
/* No comment provided by engineer. */
"Could not receive the last message because the rate limit has been exceeded. Please wait a moment and then try again." = "Could not receive the last message because the rate limit has been exceeded. Please wait a moment and then try again.";
/* No comment provided by engineer. */
"Could not receive: you are too evil." = "Could not receive: you are too evil.";
/* No comment provided by engineer. */
"Could not receive; %@ is too evil." = "Could not receive; %@ is too evil.";
/* No comment provided by engineer. */
"Could not send because %@ is blocked." = "Could not send because %@ is blocked.";
/* No comment provided by engineer. */
"Could not send because %@ is not available." = "Could not send because %@ is not available.";
/* No comment provided by engineer. */
"Could not send from %@ to %@" = "Could not send from %1$@ to %2$@";
/* No comment provided by engineer. */
"Could not send the last message because it was too large." = "Could not send the last message because it was too large.";
/* No comment provided by engineer. */
"Could not send the last message because the rate limit has been exceeded. Please wait a moment and then try again." = "Could not send the last message because the rate limit has been exceeded. Please wait a moment and then try again.";
/* No comment provided by engineer. */
"Could not send; a connection error occurred." = "Could not send; a connection error occurred.";
/* No comment provided by engineer. */
"Could not send; not allowed while invisible." = "Could not send; not allowed while invisible.";
/* No comment provided by engineer. */
"Count unread conversations instead of unread messages" = "Count unread conversations instead of unread messages";
/* No comment provided by engineer. */
"Create New Person" = "Create New Person";
/* Ctrl/Ctrl+Shift + Tab key word */
"Ctrl + Tab (%@ and %@)" = "Ctrl + Tab (%1$@ and %2$@)";
/* Word for { and } keys */
"Curly braces (%@ and %@)" = "Curly braces (%1$@ and %2$@)";
/* No comment provided by engineer. */
"Current Status" = "Current Status";
/* Message in the rate limit status window */
"Current Twitter rate limit" = "Current Twitter rate limit";
/* No comment provided by engineer. */
"Custom" = "Custom";
/* No comment provided by engineer. */
"Custom settings for each account" = "Custom settings for each account";
/* No comment provided by engineer. */
"Customize Toolbar" = "Customize Toolbar";
/* No comment provided by engineer. */
"Cut" = "Cut";
/* No comment provided by engineer. */
"Date" = "Date";
/* singular day */
"day" = "day";
/* plural days */
"days" = "days";
/* No comment provided by engineer. */
"Debug Window" = "Debug Window";
/* No comment provided by engineer. */
"Default" = "Default";
/* No comment provided by engineer. */
"Default Client" = "Default Client";
/* No comment provided by engineer. */
"Default Notifications" = "Default Notifications";
/* No comment provided by engineer. */
"Delete" = "Delete";
/* No comment provided by engineer. */
"Delete %lu Xtras?" = "Delete %lu Xtras?";
/* No comment provided by engineer. */
"Delete Direct Message?" = "Delete Direct Message?";
/* No comment provided by engineer. */
"Delete Dock Icon" = "Delete Dock Icon";
/* No comment provided by engineer. */
"Delete Emoticon Pack" = "Delete Emoticon Pack";
/* No comment provided by engineer. */
"Delete Logs?" = "Delete Logs?";
/* No comment provided by engineer. */
"Delete the selection" = "Delete the selection";
/* No comment provided by engineer. */
"Delete Tweet?" = "Delete Tweet?";
/* No comment provided by engineer. */
"Delete Xtra?" = "Delete Xtra?";
/* No comment provided by engineer. */
"Deleting iChat Transcripts" = "Deleting iChat Transcripts";
/* No comment provided by engineer. */
"Deselect All" = "Deselect All";
/* Menu item for detaching groups from their window */
"Detach From Window" = "Detach From Window";
/* No comment provided by engineer. */
"Details" = "Details";
/* No comment provided by engineer. */
"Disable" = "Disable";
/* No comment provided by engineer. */
"Disable chat encryption" = "Disable chat encryption";
/* Disable sending Twitter notifications to your phone */
"Disable device notifications for %@" = "Disable device notifications for %@";
/* No comment provided by engineer. */
"Disabled" = "Disabled";
/* No comment provided by engineer. */
"Disabling automatic contact consolidation will also unconsolidate all existing metacontacts, including any created manually. You will need to recreate any manually-created metacontacts if you proceed." = "Disabling automatic contact consolidation will also unconsolidate all existing metacontacts, including any created manually. You will need to recreate any manually-created metacontacts if you proceed.";
/* No comment provided by engineer. */
"Disconnect" = "Disconnect";
/* Event: disconnected (follows a contact's name displayed as a header) */
"disconnected" = "disconnected";
/* No comment provided by engineer. */
"Disconnecting" = "Disconnecting";
/* Dismiss All Button
Used in the error window; closes all open errors. */
"Dismiss All" = "Dismiss All";
/* Title of the Display menu */
"Display" = "Display";
/* No comment provided by engineer. */
"Display a Growl notification" = "Display a Growl notification";
/* No comment provided by engineer. */
"Display a Growl notification with a time stamp" = "Display a Growl notification with a time stamp";
/* No comment provided by engineer. */
"Display a message count badge" = "Display a message count badge";
/* No comment provided by engineer. */
"Display a sticky Growl notification" = "Display a sticky Growl notification";
/* No comment provided by engineer. */
"Display a sticky Growl notification with a time stamp" = "Display a sticky Growl notification with a time stamp";
/* No comment provided by engineer. */
"Display an alert" = "Display an alert";
/* No comment provided by engineer. */
"Display Name" = "Display Name";
/* No comment provided by engineer. */
"Display Name For:" = "Display Name For:";
/* No comment provided by engineer. */
"Display name in the dock icon" = "Display name in the dock icon";
/* No comment provided by engineer. */
"Display Preferences" = "Display Preferences";
/* No comment provided by engineer. */
"Display the alert \"%@\"" = "Display the alert \"%@\"";
/* No comment provided by engineer. */
"Do Not perform any further actions" = "Do Not perform any further actions";
/* No comment provided by engineer. */
"Do not use an icon to represent you." = "Do not use an icon to represent you.";
/* No comment provided by engineer. */
"Do not warn when closing multiple chats" = "Do not warn when closing multiple chats";
/* No comment provided by engineer. */
"Do not warn when closing unread chats" = "Do not warn when closing unread chats";
/* No comment provided by engineer. */
"Do Nothing" = "Do Nothing";
/* No comment provided by engineer. */
"Dock Icon" = "Dock Icon";
/* No comment provided by engineer. */
"Dock Icon and Status Menu Item Counts" = "Dock Icon and Status Menu Item Counts";
/* No comment provided by engineer. */
"dock icon set" = "dock icon set";
/* AdiumXtras category name */
"Dock Icons" = "Dock Icons";
/* No comment provided by engineer. */
"Don't ask again" = "Don't ask again";
/* No comment provided by engineer. */
"Don't Send" = "Don't Send";
/* No comment provided by engineer. */
"Donate" = "Donate";
/* 'done' button title */
"Done" = "Done";
/* %@ will be a file name */
"Download %@" = "Download %@";
/* Install an Xtra; %@ is the name of the Xtra. */
"Downloading %@" = "Downloading %@";
/* Title of the Edit menu */
"Edit" = "Edit";
/* No comment provided by engineer. */
"Edit Account" = "Edit Account";
/* No comment provided by engineer. */
"Edit Layouts" = "Edit Layouts";
/* No comment provided by engineer. */
"Edit Link" = "Edit Link";
/* No comment provided by engineer. */
"Edit Presets" = "Edit Presets";
/* No comment provided by engineer. */
"Edit Status Menu" = "Edit Status Menu";
/* No comment provided by engineer. */
"Edit Themes" = "Edit Themes";
/* No comment provided by engineer. */
"Email:" = "Email:";
/* Growl priority */
"Emergency" = "Emergency";
/* No comment provided by engineer. */
"Emoticon" = "Emoticon";
/* No comment provided by engineer. */
"emoticon set" = "emoticon set";
/* AdiumXtras category name */
"Emoticons" = "Emoticons";
/* Emoticons in <an emoticon pack name> */
"Emoticons in %@" = "Emoticons in %@";
/* No comment provided by engineer. */
"Enable" = "Enable";
/* Enable sending Twitter notifications to your phone (device) */
"Enable device notifications for %@" = "Enable device notifications for %@";
/* No comment provided by engineer. */
"Encrypt chats as requested" = "Encrypt chats as requested";
/* No comment provided by engineer. */
"Encrypt chats automatically" = "Encrypt chats automatically";
/* No comment provided by engineer. */
"Encrypted by Off-the-Record Messaging" = "Encrypted by Off-the-Record Messaging";
/* No comment provided by engineer. */
"Encrypted Messaging" = "Encrypted Messaging";
/* No comment provided by engineer. */
"Encrypted OTR chat initiated." = "Encrypted OTR chat initiated.";
/* No comment provided by engineer. */
"Encrypted OTR chat initiated. %@'s identity not verified." = "Encrypted OTR chat initiated. %@'s identity not verified.";
/* No comment provided by engineer. */
"Encryption" = "Encryption";
/* No comment provided by engineer. */
"Encryption Settings" = "Encryption Settings";
/* No comment provided by engineer. */
"Ended encrypted OTR chat." = "Ended encrypted OTR chat.";
/* Enter key for sending messages */
"Enter" = "Enter";
/* No comment provided by engineer. */
"Enter a unique name for this new event set." = "Enter a unique name for this new event set.";
/* No comment provided by engineer. */
"Enter a unique name for this new layout." = "Enter a unique name for this new layout.";
/* No comment provided by engineer. */
"Enter a unique name for this new theme." = "Enter a unique name for this new theme.";
/* Enter and return key for sending messages */
"Enter and Return" = "Enter and Return";
/* No comment provided by engineer. */
"Enter group name:" = "Enter group name:";
/* No comment provided by engineer. */
"Enter the contact's type and screen name/number:" = "Enter the contact's type and screen name/number:";
/* Prefix to error messages in the Account List. */
"Error" = "Error";
/* No comment provided by engineer. */
"Error during image upload" = "Error during image upload";
/* No comment provided by engineer. */
"Error occurs" = "Error occurs";
/* No comment provided by engineer. */
"Error Saving Theme" = "Error Saving Theme";
/* File transfer connecting status description */
"Establishing file transfer connection" = "Establishing file transfer connection";
/* No comment provided by engineer. */
"Even if the contact already has a contact icon" = "Even if the contact already has a contact icon";
/* No comment provided by engineer. */
"Event preset:" = "Event preset:";
/* Name of preferences and tab for specifying what Adium should do when events occur - for example, display a Growl alert when John signs on.
This segment displays controls for a user to set up events for this contact. */
"Events" = "Events";
/* Update tweets every: 10 minutes */
"every 10 minutes" = "every 10 minutes";
/* No comment provided by engineer. */
"Every 10 Seconds" = "Every 10 Seconds";
/* Update tweets every: 15 minutes */
"every 15 minutes" = "every 15 minutes";
/* No comment provided by engineer. */
"Every 15 Seconds" = "Every 15 Seconds";
/* Update tweets: every 2 minutes */
"every 2 minutes" = "every 2 minutes";
/* No comment provided by engineer. */
"Every 30 Seconds" = "Every 30 Seconds";
/* Update tweets: every 5 minutes */
"every 5 minutes" = "every 5 minutes";
/* No comment provided by engineer. */
"Every 5 Seconds" = "Every 5 Seconds";
/* No comment provided by engineer. */
"Every 60 Seconds" = "Every 60 Seconds";
/* Update tweets every: half-hour */
"every half-hour" = "every half-hour";
/* Update tweets every hour */
"every hour" = "every hour";
/* No comment provided by engineer. */
"Exactly" = "Exactly";
/* No comment provided by engineer. */
"Expand Combined Contact" = "Expand Combined Contact";
/* File transfer failed status description */
"Failed" = "Failed";
/* %@ is a filename of a file being sent */
"failed to receive %@" = "failed to receive %@";
/* %@ is a filename of a file being sent */
"failed to send you %@" = "failed to send you %@";
/* No comment provided by engineer. */
"Far Left" = "Far Left";
/* No comment provided by engineer. */
"Far Right" = "Far Right";
/* Title of the File menu */
"File" = "File";
/* No comment provided by engineer. */
"File is checksummed before sending" = "File is checksummed before sending";
/* No comment provided by engineer. */
"File Transfer" = "File Transfer";
/* No comment provided by engineer. */
"File transfer" = "File transfer";
/* No comment provided by engineer. */
"File transfer begins" = "File transfer begins";
/* No comment provided by engineer. */
"File transfer being offered to other side" = "File transfer being offered to other side";
/* No comment provided by engineer. */
"File transfer cancelled by the other side" = "File transfer cancelled by the other side";
/* No comment provided by engineer. */
"File transfer completed successfully" = "File transfer completed successfully";
/* No comment provided by engineer. */
"File transfer failed" = "File transfer failed";
/* No comment provided by engineer. */
"File transfer fails" = "File transfer fails";
/* No comment provided by engineer. */
"File transfer requested" = "File transfer requested";
/* No comment provided by engineer. */
"File Transfers" = "File Transfers";
/* Quit Confirmation preference */
"File transfers are in progress" = "File transfers are in progress";
/* No comment provided by engineer. */
"Fill" = "Fill";
/* No comment provided by engineer. */
"Filter logs by date" = "Filter logs by date";
/* No comment provided by engineer. */
"Find" = "Find";
/* No comment provided by engineer. */
"Find Next" = "Find Next";
/* No comment provided by engineer. */
"Find Previous" = "Find Previous";
/* Fingerprint for <name>: */
"Fingerprint for %@:" = "Fingerprint for %@:";
/* No comment provided by engineer. */
"Fingerprint for you (%@): %@\n\nPurported fingerprint for %@: %@\n\nIs this the verifiably correct fingerprint for %@?" = "Fingerprint for you (%1$@): %2$@\n\nPurported fingerprint for %3$@: %4$@\n\nIs this the verifiably correct fingerprint for %5$@?";
/* No comment provided by engineer. */
"Fingerprint Help" = "Fingerprint Help";
/* No comment provided by engineer. */
"Fingerprint: %.80s" = "Fingerprint: %.80s";
/* No comment provided by engineer. */
"Finished" = "Finished";
/* First name token */
"First" = "First";
/* No comment provided by engineer. */
"First Name:" = "First Name:";
/* No comment provided by engineer. */
"Flash names with unviewed messages" = "Flash names with unviewed messages";
/* No comment provided by engineer. */
"Flash when there are unread messages" = "Flash when there are unread messages";
/* No comment provided by engineer. */
"Followers" = "Followers";
/* No comment provided by engineer. */
"Following" = "Following";
/* No comment provided by engineer. */
"Force encryption and refuse plaintext" = "Force encryption and refuse plaintext";
/* Title of the Format menu */
"Format" = "Format";
/* No comment provided by engineer. */
"From" = "From";
/* Label in front of the dropdown of accounts from which to send a message */
"From:" = "From:";
/* No comment provided by engineer. */
"Full Name" = "Full Name";
/* No comment provided by engineer. */
"Gathering list of transcripts" = "Gathering list of transcripts";
/* General preferences label */
"General" = "General";
/* No comment provided by engineer. */
"Generate" = "Generate";
/* No comment provided by engineer. */
"Generating private encryption key for %@" = "Generating private encryption key for %@";
/* Genre of current song */
"Genre" = "Genre";
/* No comment provided by engineer. */
"Get Info" = "Get Info";
/* No comment provided by engineer. */
"Get Info for Bookmark" = "Get Info for Bookmark";
/* No comment provided by engineer. */
"Get Info for Contact" = "Get Info for Contact";
/* No comment provided by engineer. */
"Get Rate Limit Amount" = "Get Rate Limit Amount";
/* 'go back' button title */
"Go Back" = "Go Back";
/* No comment provided by engineer. */
"Goes away" = "Goes away";
/* No comment provided by engineer. */
"Goes mobile" = "Goes mobile";
/* No comment provided by engineer. */
"Group Bubbles" = "Group Bubbles";
/* No comment provided by engineer. */
"Group Chats" = "Group Chats";
/* The popup button after this lists status types; it will determine the status type with which a status group will be listed in status menus */
"Group with:" = "Group with:";
/* No comment provided by engineer. */
"Group:" = "Group:";
/* Growl installation window title */
"Growl Installation Recommended" = "Growl Installation Recommended";
/* Growl update window title */
"Growl Update Available" = "Growl Update Available";
/* Example for song composer */
"Harrison" = "Harrison";
/* Title which introduces import assistants during setup */
"Have you used other chat clients?" = "Have you used other chat clients?";
/* Title of the Help menu */
"Help" = "Help";
/* No comment provided by engineer. */
"Hide Adium" = "Hide Adium";
/* No comment provided by engineer. */
"Hide Away Contacts" = "Hide Away Contacts";
/* No comment provided by engineer. */
"Hide Blocked Contacts" = "Hide Blocked Contacts";
/* No comment provided by engineer. */
"Hide Certain Contacts" = "Hide Certain Contacts";
/* No comment provided by engineer. */
"Hide Contacts for Accounts" = "Hide Contacts for Accounts";
/* No comment provided by engineer. */
"Hide Emoticons" = "Hide Emoticons";
/* No comment provided by engineer. */
"Hide Fonts" = "Hide Fonts";
/* No comment provided by engineer. */
"Hide Idle Contacts" = "Hide Idle Contacts";
/* No comment provided by engineer. */
"Hide Mobile Contacts" = "Hide Mobile Contacts";
/* No comment provided by engineer. */
"Hide Offline Contacts" = "Hide Offline Contacts";
/* No comment provided by engineer. */
"Hide Others" = "Hide Others";
/* No comment provided by engineer. */
"Hide Status Item" = "Hide Status Item";
/* No comment provided by engineer. */
"Hide the status window when Adium is not active" = "Hide the status window when Adium is not active";
/* No comment provided by engineer. */
"Hide Timestamps" = "Hide Timestamps";
/* No comment provided by engineer. */
"Hide Toolbar" = "Hide Toolbar";
/* Growl priority */
"High" = "High";
/* singular hour */
"hour" = "hour";
/* plural hours */
"hours" = "hours";
/* Adium forums page. Localized only if a translated version exists. */
"http://forum.adium.im/" = "http://forum.adium.im/";
/* Adium homepage. Only localize if a translated version of the page exists. */
"http://www.adium.im" = "http://www.adium.im";
/* Adium xtras page. Localized only if a translated version exists. */
"http://xtras.adium.im/" = "http://xtras.adium.im/";
/* Example for song title */
"I Me Mine" = "I Me Mine";
/* No comment provided by engineer. */
"I've allowed Adium access" = "I've allowed Adium access";
/* Menu item title under the 'Import' submenu. iChat is another OS X instant messaging client. */
"iChat Accounts, Statuses, and Transcripts" = "iChat Accounts, Statuses, and Transcripts";
/* No comment provided by engineer. */
"iChat Available Messages" = "iChat Available Messages";
/* No comment provided by engineer. */
"iChat Away Messages" = "iChat Away Messages";
/* No comment provided by engineer. */
"Icon" = "Icon";
/* No comment provided by engineer. */
"Idle" = "Idle";
/* No comment provided by engineer. */
"Idle and Status" = "Idle and Status";
/* No comment provided by engineer. */
"Idle Beside, Status Below" = "Idle Beside, Status Below";
/* No comment provided by engineer. */
"Idle Time" = "Idle Time";
/* No comment provided by engineer. */
"If multiple accounts can send to this contact or this is a combined contact, change the source and/or destination of this chat" = "If multiple accounts can send to this contact or this is a combined contact, change the source and/or destination of this chat";
/* Ignore means no longer receive messages from this contact in a chat */
"Ignore" = "Ignore";
/* No comment provided by engineer. */
"Image Picker" = "Image Picker";
/* No comment provided by engineer. */
"Images" = "Images";
/* No comment provided by engineer. */
"Import" = "Import";
/* No comment provided by engineer. */
"Import Finished" = "Import Finished";
/* iChat is the OS X instant messaging client which ships with OS X; the name probably should not be localized */
"Import from iChat" = "Import from iChat";
/* No comment provided by engineer. */
"Import my contacts' names from the Address Book" = "Import my contacts' names from the Address Book";
/* No comment provided by engineer. */
"Importing Accounts and Settings" = "Importing Accounts and Settings";
/* No comment provided by engineer. */
"Importing iChat Transcripts" = "Importing iChat Transcripts";
/* No comment provided by engineer. */
"Importing Statuses" = "Importing Statuses";
/* No comment provided by engineer. */
"Importing transcripts requires at least 1 account to be present." = "Importing transcripts requires at least 1 account to be present.";
/* No comment provided by engineer. */
"In Group:" = "In Group:";
/* This is shown before the Off-the-Record Session ID (a series of numbers and letters) sent by the other party with whom you are having an encrypted chat. */
"Incoming:" = "Incoming:";
/* No comment provided by engineer. */
"Incorrect number of command argments." = "Incorrect number of command argments.";
/* Error message displayed when the server reports username or password as being incorrect. */
"Incorrect username or password" = "Incorrect username or password";
/* No comment provided by engineer. */
"Indexing %qi of %qi transcripts" = "Indexing %1$qi of %2$qi transcripts";
/* No comment provided by engineer. */
"Info" = "Info";
/* button title for more information about importing information in the setup wizard */
"Information About Importing" = "Information About Importing";
/* No comment provided by engineer. */
"Initializing transfer" = "Initializing transfer";
/* No comment provided by engineer. */
"Initiate Encrypted OTR Chat" = "Initiate Encrypted OTR Chat";
/* No comment provided by engineer. */
"Initiating file transfer" = "Initiating file transfer";
/* No comment provided by engineer. */
"Insert" = "Insert";
/* No comment provided by engineer. */
"Insert %@ Link" = "Insert %@ Link";
/* No comment provided by engineer. */
"Insert a script" = "Insert a script";
/* No comment provided by engineer. */
"Insert an emoticon into the text" = "Insert an emoticon into the text";
/* Label for iTunes toolbar menu item. */
"Insert current iTunes track information." = "Insert current iTunes track information.";
/* No comment provided by engineer. */
"Insert Emoticon" = "Insert Emoticon";
/* Label used for edit and contextual menus of iTunes triggers */
"Insert iTunes Token" = "Insert iTunes Token";
/* No comment provided by engineer. */
"Insert Link" = "Insert Link";
/* No comment provided by engineer. */
"Insert link to active page in %@" = "Insert link to active page in %@";
/* No comment provided by engineer. */
"Insert Script" = "Insert Script";
/* Title of installation failed window */
"Installation Failed" = "Installation Failed";
/* Installation introduction, like 'Installation of the message style Fiat was successful...'. */
"Installation of the %@ %@ was successful because the file was already in the correct location." = "Installation of the %1$@ %2$@ was successful because the file was already in the correct location.";
/* Installation sentence, like 'Installation of the message style Fiat was successful.'. */
"Installation of the %@ %@ was successful." = "Installation of the %1$@ %2$@ was successful.";
/* Installation failed sentence, like 'Installation of the message style Fiat was unsuccessful.'. */
"Installation of the %@ %@ was unsuccessful." = "Installation of the %1$@ %2$@ was unsuccessful.";
/* Title of installation successful window */
"Installation Successful" = "Installation Successful";
/* No comment provided by engineer. */
"Invite Contact:" = "Invite Contact:";
/* Invite to Chat window title */
"Invite to Chat" = "Invite to Chat";
/* No comment provided by engineer. */
"Invites you to a group chat" = "Invites you to a group chat";
/* Contact left Chat Name */
"invites you to a group chat" = "invites you to a group chat";
/* An abbreviation for 'in reply to' - placed at the beginning of the tweet tools for those which are directly in reply to another */
"IRT" = "IRT";
/* No comment provided by engineer. */
"Is mentioned in a group chat message" = "Is mentioned in a group chat message";
/* No comment provided by engineer. */
"Is no longer seen" = "Is no longer seen";
/* Event: is no longer seen (follows a contact's name displayed as a header) */
"is no longer seen" = "is no longer seen";
/* No comment provided by engineer. */
"Is seen" = "Is seen";
/* Event: is seen (follows a contact's name displayed as a header) */
"is seen" = "is seen";
/* No comment provided by engineer. */
"Is sent a message" = "Is sent a message";
/* No comment provided by engineer. */
"Is sent a message in a group chat" = "Is sent a message in a group chat";
/* No comment provided by engineer. */
"Italic" = "Italic";
/* Label for iTunes toolbar menu item. */
"iTunes" = "iTunes";
/* No comment provided by engineer. */
"iTunes Elements" = "iTunes Elements";
/* iTUnes Music Store link for current song */
"iTunes Music Store Link" = "iTunes Music Store Link";
/* Current track information (Track - Artist) */
"iTunes Status" = "iTunes Status";
/* No comment provided by engineer. */
"iTunes Status Format" = "iTunes Status Format";
/* No comment provided by engineer. */
"Join Group Chat" = "Join Group Chat";
/* Contact joined Chat Name */
"joined %@" = "joined %@";
/* No comment provided by engineer. */
"Joins a group chat" = "Joins a group chat";
/* Jump to the next location in the message window where the user last saw content */
"Jump to Focus Mark" = "Jump to Focus Mark";
/* Jump to the next mark in the message window */
"Jump to Next Mark" = "Jump to Next Mark";
/* Jump to the previous mark in the message window */
"Jump to Previous Mark" = "Jump to Previous Mark";
/* No comment provided by engineer. */
"Jump to Selection" = "Jump to Selection";
/* Contact list labels */
"Labels" = "Labels";
/* Last name token */
"Last" = "Last";
/* No comment provided by engineer. */
"Last Name:" = "Last Name:";
/* A time interval such as '4 days ago' will be shown after this tooltip identifier */
"Last Seen" = "Last Seen";
/* No comment provided by engineer. */
"Launch Disk Utility" = "Launch Disk Utility";
/* No comment provided by engineer. */
"Leaves a group chat" = "Leaves a group chat";
/* Position menu item for tabs at the left of the message window */
"Left" = "Left";
/* Contact left Chat Name */
"left %@" = "left %@";
/* Example for album title */
"Let It Be" = "Let It Be";
/* No comment provided by engineer. */
"License" = "License";
/* No comment provided by engineer. */
"Link" = "Link";
/* Label for the text entry area for the name when creating a link */
"Link Text:" = "Link Text:";
/* Listening status string (*is listening to XXX by YYY) */
"Listening Status" = "Listening Status";
/* No comment provided by engineer. */
"Location" = "Location";
/* Logging checkbox in the Adium Debug Window */
"Log to ~/Library/Logs/Adium Debug" = "Log to ~/Library/Logs/Adium Debug";
/* Option in the 'Attach to Window' for the main contact list window */
"Main Window" = "Main Window";
/* No comment provided by engineer. */
"Maximum Width:" = "Maximum Width:";
/* No comment provided by engineer. */
"Mention" = "Mention";
/* AdiumXtras category name */
"Menu Bar Icons" = "Menu Bar Icons";
/* No comment provided by engineer. */
"menu bar icons" = "menu bar icons";
/* Speak Text action keyword: message */
"Message" = "Message";
/* No comment provided by engineer. */
"Message Alerts" = "Message Alerts";
/* No comment provided by engineer. */
"Message received" = "Message received";
/* No comment provided by engineer. */
"Message received (Away Group Chat)" = "Message received (Away Group Chat)";
/* No comment provided by engineer. */
"Message received (Away)" = "Message received (Away)";
/* No comment provided by engineer. */
"Message received (Background Chat)" = "Message received (Background Chat)";
/* No comment provided by engineer. */
"Message received (Background Group Chat)" = "Message received (Background Group Chat)";
/* No comment provided by engineer. */
"Message received (Group Chat)" = "Message received (Group Chat)";
/* No comment provided by engineer. */
"Message received (Initial)" = "Message received (Initial)";
/* No comment provided by engineer. */
"Message sent" = "Message sent";
/* No comment provided by engineer. */
"Message sent (Group Chat)" = "Message sent (Group Chat)";
/* No comment provided by engineer. */
"message style" = "message style";
/* AdiumXtras category name */
"Message Styles" = "Message Styles";
/* No comment provided by engineer. */
"Message:" = "Message:";
/* Message Display Options advanced preferences label
Title of the messages preferences */
"Messages" = "Messages";
/* No comment provided by engineer. */
"Messages are highlighted when the following terms are spoken. Your username is always highlighted." = "Messages are highlighted when the following terms are spoken. Your username is always highlighted.";
/* Middle name token */
"Middle" = "Middle";
/* Minimize menu item title int he Wndow menu */
"Minimize" = "Minimize";
/* singular minute */
"minute" = "minute";
/* plural minutes */
"minutes" = "minutes";
/* No comment provided by engineer. */
"Mobile" = "Mobile";
/* Growl priority */
"Moderate" = "Moderate";
/* singular month */
"month" = "month";
/* plural months */
"months" = "months";
/* No comment provided by engineer. */
"Move Chat to New Window" = "Move Chat to New Window";
/* Prompt when more than one web browser is available when inserting a link from the active browser. */
"Multiple browsers are open. Please select one link:" = "Multiple browsers are open. Please select one link:";
/* No comment provided by engineer. */
"Multiple Packs Selected" = "Multiple Packs Selected";
/* No comment provided by engineer. */
"My Webcam" = "My Webcam";
/* No comment provided by engineer. */
"Name" = "Name";
/* Contains name format tokens */
"Name elements" = "Name elements";
/* No comment provided by engineer. */
"Name:" = "Name:";
/* No comment provided by engineer. */
"Names" = "Names";
/* Used when the account will connect once the network returns. */
"Network Offline" = "Network Offline";
/* Update tweets: never */
"never" = "never";
/* No comment provided by engineer. */
"Never" = "Never";
/* No comment provided by engineer. */
"New Chat" = "New Chat";
/* No comment provided by engineer. */
"New email notification" = "New email notification";
/* No comment provided by engineer. */
"New Event Set" = "New Event Set";
/* No comment provided by engineer. */
"New Group" = "New Group";
/* No comment provided by engineer. */
"New Message" = "New Message";
/* No comment provided by engineer. */
"New Person" = "New Person";
/* Next Button */
"Next" = "Next";
/* No comment provided by engineer. */
"Next Chat" = "Next Chat";
/* menu item title */
"Next Detached Group" = "Next Detached Group";
/* Nickname token */
"Nick" = "Nick";
/* Name for IRC user names */
"Nickname:" = "Nickname:";
/* No comment provided by engineer. */
"No" = "No";
/* No comment provided by engineer. */
"No Host set" = "No Host set";
/* Message to show in the Encryption OTR preferences when an account is selected which does not have a private key */
"No private key present" = "No private key present";
/* No comment provided by engineer. */
"None" = "None";
/* No comment provided by engineer. */
"Nontrusted Xtra" = "Nontrusted Xtra";
/* Background image display preference: The image will be displayed normally
Growl priority
Normal style variant menu item */
"Normal" = "Normal";
/* No comment provided by engineer. */
"Normally" = "Normally";
/* No comment provided by engineer. */
"Not private" = "Not private";
/* Explanation of when the 'show contact list' action is available for use */
"Note: This behavior is only available if the contact list is set to hide." = "Note: This behavior is only available if the contact list is set to hide.";
/* Short identifier for the 'notes' which can be entered for contacts. This will be shown in the contact list tooltips. */
"Notes" = "Notes";
/* Label beside the field for contact notes in the Settings tab of the Get Info window */
"Notes:" = "Notes:";
/* No comment provided by engineer. */
"Notification received" = "Notification received";
/* No comment provided by engineer. */
"Notifications Disabled" = "Notifications Disabled";
/* No comment provided by engineer. */
"Notifications Enabled" = "Notifications Enabled";
/* No comment provided by engineer. */
"Now importing %lu 'Available' messages" = "Now importing %lu 'Available' messages";
/* No comment provided by engineer. */
"Now importing %lu 'Away' messages" = "Now importing %lu 'Away' messages";
/* No comment provided by engineer. */
"Now importing all your accounts from iChat" = "Now importing all your accounts from iChat";
/* %ld will be a number; %@ is a name */
"Now importing transcript %ld of %ld: %@" = "Now importing transcript %1$ld of %2$ld: %3$@";
/* You are offering to send a file to a remote user. The first %@ is the filename of the file being sent; the second %@ is the recipient of the file being sent. */
"Offering to send %@ to %@" = "Offering to send %1$@ to %2$@";
/* %@ is a filename of a file being sent */
"offers to send %@" = "offers to send %@";
/* Name of offline group */
"Offline" = "Offline";
/* No comment provided by engineer. */
"OK" = "OK";
/* No comment provided by engineer. */
"On Accounts:" = "On Accounts:";
/* Advanced contact list: hide the contact list: On screen edges */
"On screen edges" = "On screen edges";
/* No comment provided by engineer. */
"Once" = "Once";
/* Explanation of metacontact creation */
"Once combined, Adium will treat these contacts as a single individual both on your contact list and when sending messages.\n\nYou may un-combine these contacts by getting info on the combined contact." = "Once combined, Adium will treat these contacts as a single individual both on your contact list and when sending messages.\n\nYou may un-combine these contacts by getting info on the combined contact.";
/* No comment provided by engineer. */
"Online" = "Online";
/* A time interval such as '3 days' will be shown after this identifier */
"Online For" = "Online For";
/* This tooltip identifier will followed by a date */
"Online Since" = "Online Since";
/* No comment provided by engineer. */
"Only count number of highlights and mentions for group chats" = "Only count number of highlights and mentions for group chats";
/* File Transfer preferences */
"only from contacts on my Contact List" = "only from contacts on my Contact List";
/* Quit Confirmation preference */
"Only when" = "Only when";
/* Message close confirmation preference */
"Only when there are unread messages" = "Only when there are unread messages";
/* No comment provided by engineer. */
"Open" = "Open";
/* No comment provided by engineer. */
"Open %@'s user page" = "Open %@'s user page";
/* File Transfer preferences */
"Open \"Safe\" files after receiving" = "Open \"Safe\" files after receiving";
/* No comment provided by engineer. */
"Open a message window" = "Open a message window";
/* No comment provided by engineer. */
"Open Appearance Prefs" = "Open Appearance Prefs";
/* No comment provided by engineer. */
"Open Chat" = "Open Chat";
/* No comment provided by engineer. */
"Open Event Prefs" = "Open Event Prefs";
/* No comment provided by engineer. */
"Open Image" = "Open Image";
/* No comment provided by engineer. */
"Open Link" = "Open Link";
/* No comment provided by engineer. */
"Open Message Prefs" = "Open Message Prefs";
/* No comment provided by engineer. */
"Open Preferences" = "Open Preferences";
/* No comment provided by engineer. */
"Opening transcripts" = "Opening transcripts";
/* Option key word + Directional arrow keys word */
"Option + Arrows (%@ and %@)" = "Option + Arrows (%1$@ and %2$@)";
/* No comment provided by engineer. */
"Options" = "Options";
/* No comment provided by engineer. */
"Other" = "Other";
/* No comment provided by engineer. */
"Other Unavailable" = "Other Unavailable";
/* No comment provided by engineer. */
"OTR Fingerprint" = "OTR Fingerprint";
/* No comment provided by engineer. */
"OTR Fingerprint Verification" = "OTR Fingerprint Verification";
/* This is shown before the Off-the-Record Session ID (a series of numbers and letters) sent by you to the other party with whom you are having an encrypted chat. */
"Outgoing:" = "Outgoing:";
/* No comment provided by engineer. */
"Overwrite Address Book images with contacts' icons" = "Overwrite Address Book images with contacts' icons";
/* Label for the password field in the account preferences */
"Password:" = "Password:";
/* No comment provided by engineer. */
"Paste" = "Paste";
/* No comment provided by engineer. */
"Paste and Match Style" = "Paste and Match Style";
/* No comment provided by engineer. */
"Paste Style" = "Paste Style";
/* No comment provided by engineer. */
"Paste with Images and Colors" = "Paste with Images and Colors";
/* Example for music players' status (e.g. playing, paused) */
"Paused" = "Paused";
/* Personal preferences label */
"Personal" = "Personal";
/* No comment provided by engineer. */
"Play a sound" = "Play a sound";
/* No comment provided by engineer. */
"Play the sound \"%@\"" = "Play the sound \"%@\"";
/* Playing-status of current song (e.g. paused, playing) */
"Player State" = "Player State";
/* %@ is the name of the authentication service. */
"Please enter your %@ password." = "Please enter your %@ password.";
/* No comment provided by engineer. */
"Please select an account into which to import your transcripts:" = "Please select an account into which to import your transcripts:";
/* No comment provided by engineer. */
"Please wait" = "Please wait";
/* AdiumXtras category name */
"Plugins" = "Plugins";
/* No comment provided by engineer. */
"Preferences" = "Preferences";
/* No comment provided by engineer. */
"Preparing" = "Preparing";
/* waiting to begin a file transfer status */
"Preparing file" = "Preparing file";
/* File transfer preparing status description */
"Preparing file transfer" = "Preparing file transfer";
/* No comment provided by engineer. */
"Preparing to import your custom status messages" = "Preparing to import your custom status messages";
/* No comment provided by engineer. */
"Previous Chat" = "Previous Chat";
/* menu item title */
"Previous Detached Group" = "Previous Detached Group";
/* No comment provided by engineer. */
"Print" = "Print";
/* Priority label for Growl */
"Priority:" = "Priority:";
/* No comment provided by engineer. */
"Privacy" = "Privacy";
/* No comment provided by engineer. */
"Privacy level:" = "Privacy level:";
/* No comment provided by engineer. */
"Privacy Settings" = "Privacy Settings";
/* No comment provided by engineer. */
"Private" = "Private";
/* No comment provided by engineer. */
"Private connection closed" = "Private connection closed";
/* No comment provided by engineer. */
"Profile to display when contacts request information about you (not supported by all services). Text may be formatted using the Edit and Format menus." = "Profile to display when contacts request information about you (not supported by all services). Text may be formatted using the Edit and Format menus.";
/* File Transfer preferences label */
"Progress:" = "Progress:";
/* No comment provided by engineer. */
"Proxy" = "Proxy";
/* No comment provided by engineer. */
"Quit" = "Quit";
/* No comment provided by engineer. */
"Quit Adium" = "Quit Adium";
/* Preference */
"Quit Confirmation" = "Quit Confirmation";
/* No comment provided by engineer. */
"Rank" = "Rank";
/* No comment provided by engineer. */
"Rate Limit Status" = "Rate Limit Status";
/* No comment provided by engineer. */
"Real Name" = "Real Name";
/* %@ is a filename of a file being sent */
"received %@" = "received %@";
/* No comment provided by engineer. */
"received new email" = "received new email";
/* File Transfer preferences label */
"Receiving files:" = "Receiving files:";
/* Label at the top of the recent icons picker shown in the contact list */
"Recent Icons:" = "Recent Icons:";
/* Used when the account will perform an automatic reconnection after a certain period of time. */
"Reconnecting" = "Reconnecting";
/* No comment provided by engineer. */
"Regenerate" = "Regenerate";
/* No comment provided by engineer. */
"Regular Window" = "Regular Window";
/* Menu item titel under the 'Import' submenu. This causes existing Adium logs to be reindexed. */
"Reindex Adium Logs" = "Reindex Adium Logs";
/* No comment provided by engineer. */
"Remember this account" = "Remember this account";
/* File transfer cancelled remotely status description */
"Remote contact cancelled" = "Remote contact cancelled";
/* No comment provided by engineer. */
"Remove" = "Remove";
/* No comment provided by engineer. */
"Remove Contact" = "Remove Contact";
/* No comment provided by engineer. */
"Remove Contact or Group" = "Remove Contact or Group";
/* No comment provided by engineer. */
"Remove from List" = "Remove from List";
/* No comment provided by engineer. */
"Remove from list?" = "Remove from list?";
/* No comment provided by engineer. */
"Remove Group" = "Remove Group";
/* No comment provided by engineer. */
"Remove Link" = "Remove Link";
/* No comment provided by engineer. */
"Removing any contacts from their last group will permanently remove them from your contact list.\n\n%@" = "Removing any contacts from their last group will permanently remove them from your contact list.\n\n%@";
/* No comment provided by engineer. */
"Rename Group" = "Rename Group";
/* Title for the reopen closed tab menu item */
"Reopen Closed Tab" = "Reopen Closed Tab";
/* No comment provided by engineer. */
"Reorder emoticon packs by dragging. Packs are used in the order listed." = "Reorder emoticon packs by dragging. Packs are used in the order listed.";
/* No comment provided by engineer. */
"Repeatedly" = "Repeatedly";
/* No comment provided by engineer. */
"Replace Nick with First if not available" = "Replace Nick with First if not available";
/* No comment provided by engineer. */
"Replace with Shortened URL" = "Replace with Shortened URL";
/* No comment provided by engineer. */
"Replace with Uploaded Image" = "Replace with Uploaded Image";
/* No comment provided by engineer. */
"Reply" = "Reply";
/* Name of the 'reply to a tweet' window. */
"Reply to a Tweet" = "Reply to a Tweet";
/* No comment provided by engineer. */
"Report a Bug" = "Report a Bug";
/* No comment provided by engineer. */
"Request refused by the server." = "Request refused by the server.";
/* No comment provided by engineer. */
"Requested resource not found." = "Requested resource not found.";
/* %@ is a filename of a file being sent */
"requests to send you %@" = "requests to send you %@";
/* No comment provided by engineer. */
"Restore Default Formatting" = "Restore Default Formatting";
/* No comment provided by engineer. */
"Restoring chat failed" = "Restoring chat failed";
/* No comment provided by engineer. */
"Restoring the last closed tab failed. Perhaps the account not exist anymore?" = "Restoring the last closed tab failed. Perhaps the account not exist anymore?";
/* Return key for sending messages */
"Return" = "Return";
/* Event: is no longer mobile (follows a contact's name displayed as a header) */
"returned from mobile" = "returned from mobile";
/* No comment provided by engineer. */
"Returns from away" = "Returns from away";
/* No comment provided by engineer. */
"Returns from idle" = "Returns from idle";
/* No comment provided by engineer. */
"Returns from mobile" = "Returns from mobile";
/* Position menu item for tabs at the right of the message window */
"Right" = "Right";
/* Menu item in a submenu under 'writing direction' for writing which goes from right to left */
"Right to Left" = "Right to Left";
/* Example for song genre */
"Rock" = "Rock";
/* No comment provided by engineer. */
"Run an AppleScript" = "Run an AppleScript";
/* %@ will be replaced by the name of the AppleScript to run. */
"Run the AppleScript \"%@\"" = "Run the AppleScript \"%@\"";
/* No comment provided by engineer. */
"Sample" = "Sample";
/* Title for the sample conversation */
"Sample Conversation" = "Sample Conversation";
/* No comment provided by engineer. */
"Save As" = "Save As";
/* File Transfer preferences label */
"Save files to:" = "Save files to:";
/* No comment provided by engineer. */
"Save Image As" = "Save Image As";
/* Appears in the Format > Show Fonts window. You are limited for horizontal space, so try to keep it at most the length of the English string. */
"Save This Setting As My Default Font" = "Save This Setting As My Default Font";
/* No comment provided by engineer. */
"Saving search index" = "Saving search index";
/* Background image display preference: The image will be increased or decreased in size to fit the window */
"Scaled" = "Scaled";
/* AdiumXtras category name */
"Scripts" = "Scripts";
/* No comment provided by engineer. */
"Search" = "Search";
/* Placeholder for searching logs by date */
"Search by Date" = "Search by Date";
/* Placeholder for searching logs by content */
"Search Content" = "Search Content";
/* No comment provided by engineer. */
"Search for '%@' complete." = "Search for '%@' complete.";
/* Placeholder for searching logs from an account */
"Search From" = "Search From";
/* No comment provided by engineer. */
"Search In Address Book" = "Search In Address Book";
/* No comment provided by engineer. */
"Search Logs" = "Search Logs";
/* No comment provided by engineer. */
"Search Menu" = "Search Menu";
/* No comment provided by engineer. */
"Search or filter logs" = "Search or filter logs";
/* iTunes toolbar menu item title to search selection in iTMS. */
"Search Selection in Music Store" = "Search Selection in Music Store";
/* Placeholder for searching logs with/to a contact */
"Search To" = "Search To";
/* No comment provided by engineer. */
"Searching for '%@'" = "Searching for '%@'";
/* singular second */
"second" = "second";
/* plural seconds */
"seconds" = "seconds";
/* Label before a slider which sets the number of seconds to show the contact list when an action is triggerred */
"Seconds To Show:" = "Seconds To Show:";
/* No comment provided by engineer. */
"Secure ID for this session:" = "Secure ID for this session:";
/* No comment provided by engineer. */
"Select All" = "Select All";
/* No comment provided by engineer. */
"Select an AppleScript" = "Select an AppleScript";
/* No comment provided by engineer. */
"Select an entry from your address book, or add a new person." = "Select an entry from your address book, or add a new person.";
/* No comment provided by engineer. */
"Select Buddy" = "Select Buddy";
/* No comment provided by engineer. */
"Send %@ the message \"%@\"" = "Send %1$@ the message \"%2$@\"";
/* Tooltip for the Send File toolbar item */
"Send a file" = "Send a file";
/* No comment provided by engineer. */
"Send a message" = "Send a message";
/* No comment provided by engineer. */
"Send a notification to a contact" = "Send a notification to a contact";
/* No comment provided by engineer. */
"Send Feedback" = "Send Feedback";
/* No comment provided by engineer. */
"Send File" = "Send File";
/* No comment provided by engineer. */
"Send File to %@" = "Send File to %@";
/* No comment provided by engineer. */
"Send Later" = "Send Later";
/* Send Later dialogue explanation text */
"Send Later will send the message the next time both you and %@ are online." = "Send Later will send the message the next time both you and %@ are online.";
/* Send Later dialogue explanation text */
"Send Later will send the message the next time both you and %@ are online. Send Now may work if %@ is invisible or is not on your contact list and so only appears to be offline." = "Send Later will send the message the next time both you and %1$@ are online. Send Now may work if %2$@ is invisible or is not on your contact list and so only appears to be offline.";
/* Send notification (nudge or buzz) menu item */
"Send Notification" = "Send Notification";
/* No comment provided by engineer. */
"Send Now" = "Send Now";
/* Send Later dialogue explanation text for accounts supporting offline messaging support. */
"Send Now will deliver your message to the server immediately. %@ will receive the message the next time he or she signs on, even if you are no longer online.\n\nSend When Both Online will send the message the next time both you and %@ are known to be online and you are connected using Adium on this computer." = "Send Now will deliver your message to the server immediately. %1$@ will receive the message the next time he or she signs on, even if you are no longer online.\n\nSend When Both Online will send the message the next time both you and %2$@ are known to be online and you are connected using Adium on this computer.";
/* No comment provided by engineer. */
"Send When Both Online" = "Send When Both Online";
/* No comment provided by engineer. */
"Sends a message" = "Sends a message";
/* No comment provided by engineer. */
"Sends a message in a background chat" = "Sends a message in a background chat";
/* No comment provided by engineer. */
"Sends a message in a background group chat" = "Sends a message in a background group chat";
/* No comment provided by engineer. */
"Sends a message in a group chat" = "Sends a message in a group chat";
/* No comment provided by engineer. */
"Sends a message in a group chat while away" = "Sends a message in a group chat while away";
/* No comment provided by engineer. */
"Sends a message while away" = "Sends a message while away";
/* No comment provided by engineer. */
"Sends an initial message" = "Sends an initial message";
/* %@ is a filename of a file being sent */
"sent you %@" = "sent you %@";
/* No comment provided by engineer. */
"Server:" = "Server:";
/* AdiumXtras category name */
"Service Icons" = "Service Icons";
/* No comment provided by engineer. */
"service icons" = "service icons";
/* No comment provided by engineer. */
"Service:" = "Service:";
/* Services menu item in the Adium menu */
"Services" = "Services";
/* No comment provided by engineer. */
"Set Default for All" = "Set Default for All";
/* Accessibility label for button to set to the maximum sound volume */
"Set maximum volume" = "Set maximum volume";
/* Accessibility label for button to set to the minimum sound volume */
"Set minimum volume" = "Set minimum volume";
/* Used in the context menu for the accounts list for the sub menu to set status in. */
"Set Status" = "Set Status";
/* Shift key word + Directional arrow keys word */
"Shift + Arrows (%@ and %@)" = "Shift + Arrows (%1$@ and %2$@)";
/* No comment provided by engineer. */
"Show All" = "Show All";
/* No comment provided by engineer. */
"Show Colors" = "Show Colors";
/* No comment provided by engineer. */
"Show contact information tooltips" = "Show contact information tooltips";
/* No comment provided by engineer. */
"Show Details" = "Show Details";
/* No comment provided by engineer. */
"Show Emoticons" = "Show Emoticons";
/* No comment provided by engineer. */
"Show Fonts" = "Show Fonts";
/* No comment provided by engineer. */
"Show Group Online Count" = "Show Group Online Count";
/* No comment provided by engineer. */
"Show Group Total Count" = "Show Group Total Count";
/* No comment provided by engineer. */
"Show Groups" = "Show Groups";
/* No comment provided by engineer. */
"Show in Finder" = "Show in Finder";
/* Tooltip for the Get Info toolbar button */
"Show information about this contact or group and change settings specific to it" = "Show information about this contact or group and change settings specific to it";
/* No comment provided by engineer. */
"Show Join/Leave Messages" = "Show Join/Leave Messages";
/* No comment provided by engineer. */
"Show on all spaces" = "Show on all spaces";
/* No comment provided by engineer. */
"Show or hide emoticons in logs" = "Show or hide emoticons in logs";
/* No comment provided by engineer. */
"Show or hide timestamps in logs" = "Show or hide timestamps in logs";
/* No comment provided by engineer. */
"Show the contact list window" = "Show the contact list window";
/* No comment provided by engineer. */
"Show the contact list window for %.1f seconds" = "Show the contact list window for %.1f seconds";
/* No comment provided by engineer. */
"Show the contact list:" = "Show the contact list:";
/* File Transfer preferences */
"Show the File Transfers window automatically" = "Show the File Transfers window automatically";
/* No comment provided by engineer. */
"Show the status window above other windows" = "Show the status window above other windows";
/* No comment provided by engineer. */
"Show this contact's icon" = "Show this contact's icon";
/* Growl contact alert label */
"Show time stamp" = "Show time stamp";
/* No comment provided by engineer. */
"Show Timestamps" = "Show Timestamps";
/* No comment provided by engineer. */
"Show Toolbar" = "Show Toolbar";
/* No comment provided by engineer. */
"Show unread message count in the menu bar" = "Show unread message count in the menu bar";
/* No comment provided by engineer. */
"Show window shadow" = "Show window shadow";
/* No comment provided by engineer. */
"Show/Hide Emoticons" = "Show/Hide Emoticons";
/* No comment provided by engineer. */
"Show/Hide Timestamps" = "Show/Hide Timestamps";
/* No comment provided by engineer. */
"Signing off" = "Signing off";
/* No comment provided by engineer. */
"Signs off" = "Signs off";
/* No comment provided by engineer. */
"Signs on" = "Signs on";
/* No comment provided by engineer. */
"Since Yesterday" = "Since Yesterday";
/* button title for skipping the import of another client in the setup wizard */
"Skip Import" = "Skip Import";
/* Menu item title for making the font size smaller */
"Smaller" = "Smaller";
/* No comment provided by engineer. */
"Sorry, there was an error parsing this transcript. It may be corrupt." = "Sorry, there was an error parsing this transcript. It may be corrupt.";
/* No comment provided by engineer. */
"Sort Contacts" = "Sort Contacts";
/* No comment provided by engineer. */
"Sort Contacts Alphabetically" = "Sort Contacts Alphabetically";
/* No comment provided by engineer. */
"Sort contacts by last name" = "Sort contacts by last name";
/* No comment provided by engineer. */
"Sort Contacts by Status" = "Sort Contacts by Status";
/* No comment provided by engineer. */
"Sort Contacts Manually" = "Sort Contacts Manually";
/* No comment provided by engineer. */
"Sort groups alphabetically" = "Sort groups alphabetically";
/* No comment provided by engineer. */
"sound set" = "sound set";
/* No comment provided by engineer. */
"Sound set:" = "Sound set:";
/* AdiumXtras category name */
"Sound Sets" = "Sound Sets";
/* No comment provided by engineer. */
"Sound:" = "Sound:";
/* No comment provided by engineer. */
"Source/Destination" = "Source/Destination";
/* short phrase for the contact alert which speaks the event */
"Speak Event" = "Speak Event";
/* No comment provided by engineer. */
"Speak Event Time" = "Speak Event Time";
/* No comment provided by engineer. */
"Speak Name" = "Speak Name";
/* No comment provided by engineer. */
"Speak Specific Text" = "Speak Specific Text";
/* short phrase for the contact alert which speaks the event */
"Speak the event aloud" = "Speak the event aloud";
/* No comment provided by engineer. */
"Speak the text \"%@\"" = "Speak the text \"%@\"";
/* No comment provided by engineer. */
"Speech" = "Speech";
/* No comment provided by engineer. */
"Spelling" = "Spelling";
/* file transfer is stalled status message */
"Stalled" = "Stalled";
/* No comment provided by engineer. */
"Start Speaking" = "Start Speaking";
/* Title of the Status menu */
"Status" = "Status";
/* This segment displays the status and profile information for the selected contact. */
"Status and Profile" = "Status and Profile";
/* No comment provided by engineer. */
"Status Deletion Confirmation" = "Status Deletion Confirmation";
/* No comment provided by engineer. */
"Status Group Deletion Confirmation" = "Status Group Deletion Confirmation";
/* No comment provided by engineer. */
"Status icon" = "Status icon";
/* No comment provided by engineer. */
"status icons" = "status icons";
/* AdiumXtras category name */
"Status Icons" = "Status Icons";
/* In the 'reply to tweet' window, this is the field for the ID of the status (numerical). */
"Status ID:" = "Status ID:";
/* No comment provided by engineer. */
"Status importing is now complete." = "Status importing is now complete.";
/* No comment provided by engineer. */
"Status Menu Item" = "Status Menu Item";
/* No comment provided by engineer. */
"Statuses" = "Statuses";
/* Growl contact alert label */
"Sticky" = "Sticky";
/* No comment provided by engineer. */
"Stop Speaking" = "Stop Speaking";
/* No comment provided by engineer. */
"Stopped" = "Stopped";
/* No comment provided by engineer. */
"Stretch to fill" = "Stretch to fill";
/* Title above the box in the Speak Text action's detail pane. The box contains keywords such as \%a and what they will become when spoken such as User Alias. */
"Substitutions:" = "Substitutions:";
/* No comment provided by engineer. */
"Success! Adium now has access to your account. Click OK below." = "Success! Adium now has access to your account. Click OK below.";
/* No comment provided by engineer. */
"Successfully received %@" = "Successfully received %@";
/* No comment provided by engineer. */
"Successfully sent %@" = "Successfully sent %@";
/* No comment provided by engineer. */
"Systemwide HTTP Settings" = "Systemwide HTTP Settings";
/* No comment provided by engineer. */
"Systemwide SOCKS4 Settings" = "Systemwide SOCKS4 Settings";
/* No comment provided by engineer. */
"Systemwide SOCKS5 Settings" = "Systemwide SOCKS5 Settings";
/* No comment provided by engineer. */
"Text To Speak:" = "Text To Speak:";
/* No comment provided by engineer. */
"The <a href=\"%@\">requested tweet</a> by <a href=\"%@\">%@</a> is no longer a favorite." = "The <a href=\"%1$@\">requested tweet</a> by <a href=\"%2$@\">%3$@</a> is no longer a favorite.";
/* No comment provided by engineer. */
"The <a href=\"%@\">requested tweet</a> by <a href=\"%@\">%@</a> is now a favorite." = "The <a href=\"%1$@\">requested tweet</a> by <a href=\"%2$@\">%3$@</a> is now a favorite.";
/* Example for song artist */
"The Beatles" = "The Beatles";
/* No comment provided by engineer. */
"The characters you're entering are not valid for an account name on this service." = "The characters you're entering are not valid for an account name on this service.";
/* No comment provided by engineer. */
"The conversation with %@ timed out." = "The conversation with %@ timed out.";
/* No comment provided by engineer. */
"The direct message failed to delete. %@" = "The direct message failed to delete. %@";
/* No comment provided by engineer. */
"The direct message has been successfully deleted." = "The direct message has been successfully deleted.";
/* No comment provided by engineer. */
"The following message was <b>not encrypted</b>: " = "The following message was <b>not encrypted</b>: ";
/* No comment provided by engineer. */
"The selected Xtra will be moved to the Trash." = "The selected Xtra will be moved to the Trash.";
/* No comment provided by engineer. */
"The selected Xtras will be moved to the Trash." = "The selected Xtras will be moved to the Trash.";
/* No comment provided by engineer. */
"The server is currently down." = "The server is currently down.";
/* No comment provided by engineer. */
"The server is overloaded with requests." = "The server is overloaded with requests.";
/* No comment provided by engineer. */
"The server reported an internal error." = "The server reported an internal error.";
/* No comment provided by engineer. */
"The transfer of %@ failed" = "The transfer of %@ failed";
/* Quit Confirmation preference */
"There are open chat windows" = "There are open chat windows";
/* Quit Confirmation preference */
"There are unread messages" = "There are unread messages";
/* No comment provided by engineer. */
"This is a sample topic for this chat. Enjoy!" = "This is a sample topic for this chat. Enjoy!";
/* No comment provided by engineer. */
"This Month" = "This Month";
/* No comment provided by engineer. */
"This Week" = "This Week";
/* No comment provided by engineer. */
"This will remove %@ from the contact lists of your online accounts." = "This will remove %@ from the contact lists of your online accounts.";
/* No comment provided by engineer. */
"This will remove %@ from the group \"%@\" of your online accounts." = "This will remove %1$@ from the group \"%2$@\" of your online accounts.";
/* No comment provided by engineer. */
"This will remove %lu contacts from the contact lists of your online accounts.\n\nThis action cannot be undone." = "This will remove %lu contacts from the contact lists of your online accounts.\n\nThis action cannot be undone.";
/* No comment provided by engineer. */
"This will remove %lu items from the contact lists of your online accounts. Contacts in any deleted groups will also be removed.\n\nThis action can not be undone." = "This will remove %lu items from the contact lists of your online accounts. Contacts in any deleted groups will also be removed.\n\nThis action can not be undone.";
/* No comment provided by engineer. */
"This will remove the group \"%@\" from the contact lists of your online accounts. The %lu contacts within this group will also be removed.\n\nThis action can not be undone." = "This will remove the group \"%1$@\" from the contact lists of your online accounts. The %2$lu contacts within this group will also be removed.\n\nThis action can not be undone.";
/* No comment provided by engineer. */
"This Xtra is not hosted by xtras.adium.im. Automatic installation is not allowed." = "This Xtra is not hosted by xtras.adium.im. Automatic installation is not allowed.";
/* No comment provided by engineer. */
"Tile" = "Tile";
/* Background image display preference: The image will be tiled (repeated) in the window to fill available space */
"Tiled" = "Tiled";
/* Background image display preference: The image will be tiled and centered in the window */
"Tiled (Centered)" = "Tiled (Centered)";
/* Speak Text action keyword: time */
"Time" = "Time";
/* No comment provided by engineer. */
"Title" = "Title";
/* No comment provided by engineer. */
"Title:" = "Title:";
/* No comment provided by engineer. */
"To" = "To";
/* No comment provided by engineer. */
"To Chat:" = "To Chat:";
/* Label in front of the dropdown for picking which contact to send a message to in the message window */
"To:" = "To:";
/* Day designation for the current day */
"Today" = "Today";
/* No comment provided by engineer. */
"Toggle Contact List" = "Toggle Contact List";
/* No comment provided by engineer. */
"Toggle encrypted messaging. Shows a closed lock when secure and an open lock when insecure." = "Toggle encrypted messaging. Shows a closed lock when secure and an open lock when insecure.";
/* No comment provided by engineer. */
"Toggle User List" = "Toggle User List";
/* No comment provided by engineer. */
"Toggle User List Side" = "Toggle User List Side";
/* No comment provided by engineer. */
"Tooltips" = "Tooltips";
/* Position menu item for tabs at the top of the message window */
"Top" = "Top";
/* No comment provided by engineer. */
"Topic" = "Topic";
/* Track name of current song */
"Track" = "Track";
/* Submenu for iTunes toolbar item menu for inserting current track information. */
"Track Information" = "Track Information";
/* No comment provided by engineer. */
"Transcript importing cancelled. %ld of %ld transcripts already imported." = "Transcript importing cancelled. %1$ld of %2$ld transcripts already imported.";
/* No comment provided by engineer. */
"Transcript importing complete." = "Transcript importing complete.";
/* No comment provided by engineer. */
"Transcripts" = "Transcripts";
/* e.g: Transfer of file.zip from Evan to Joel : Upload complete. Keep the spaces around the colon */
"Transfer of %@ from %@ to %@ : %@" = "Transfer of %1$@ from %2$@ to %3$@ : %4$@";
/* e.g: Transferring file.zip from Evan to Joel at 45 kb/sec : 5 minutes remaining. Keep the spaces around the colon. */
"Transferring %@ from %@ to %@ at %@ : %@" = "Transferring %1$@ from %2$@ to %3$@ at %4$@ : %5$@";
/* No comment provided by engineer. */
"Try running Repair Permissions from Disk Utility." = "Try running Repair Permissions from Disk Utility.";
/* No comment provided by engineer. */
"Tweet successfully sent." = "Tweet successfully sent.";
/* No comment provided by engineer. */
"Type text and drag iTunes elements to create a custom format." = "Type text and drag iTunes elements to create a custom format.";
/* No comment provided by engineer. */
"Type text and drag name elements to create a custom name format." = "Type text and drag name elements to create a custom name format.";
/* Un-ignore means begin receiving messages from this contact again in a chat */
"Un-ignore" = "Un-ignore";
/* No comment provided by engineer. */
"Unable to add %@ to account %@, the user does not exist." = "Unable to add %1$@ to account %2$@, the user does not exist.";
/* No comment provided by engineer. */
"Unable to add %@ to account %@. %@" = "Unable to add %1$@ to account %2$@. %3$@";
/* No comment provided by engineer. */
"Unable to Add Contact" = "Unable to Add Contact";
/* No comment provided by engineer. */
"Unable to Combine" = "Unable to Combine";
/* No comment provided by engineer. */
"Unable to connect to server" = "Unable to connect to server";
/* No comment provided by engineer. */
"Unable to connect to the Twitter server." = "Unable to connect to the Twitter server.";
/* No comment provided by engineer. */
"Unable to Disable Notifications" = "Unable to Disable Notifications";
/* No comment provided by engineer. */
"Unable to Enable Notifications" = "Unable to Enable Notifications";
/* No comment provided by engineer. */
"Unable to remove %@ on account %@. %@" = "Unable to remove %1$@ on account %2$@. %3$@";
/* No comment provided by engineer. */
"Unable to Remove Contact" = "Unable to Remove Contact";
/* No comment provided by engineer. */
"Unable to retrieve user list" = "Unable to retrieve user list";
/* Message when a (vital) twitter request to retrieve the follow list fails */
"Unable to retrieve user list [additional fail]" = "Unable to retrieve user list [additional fail]";
/* Message when a (vital) twitter request to retrieve the follow list fails */
"Unable to retrieve user list [fail]" = "Unable to retrieve user list [fail]";
/* No comment provided by engineer. */
"Unable to send message to %@." = "Unable to send message to %@.";
/* No comment provided by engineer. */
"Unable to update timeline: %@" = "Unable to update timeline: %@";
/* No comment provided by engineer. */
"Unable to upload" = "Unable to upload";
/* No comment provided by engineer. */
"Unable to validate credentials" = "Unable to validate credentials";
/* No comment provided by engineer. */
"Unable to write file %@ to %@" = "Unable to write file %1$@ to %2$@";
/* No comment provided by engineer. */
"Unavailable" = "Unavailable";
/* Unblock Contact menu item */
"Unblock" = "Unblock";
/* Unblock Group menu item */
"Unblock Group" = "Unblock Group";
/* No comment provided by engineer. */
"Unconsolidate all metacontacts" = "Unconsolidate all metacontacts";
/* No comment provided by engineer. */
"Underline" = "Underline";
/* No comment provided by engineer. */
"Unknown conversation error." = "Unknown conversation error.";
/* No comment provided by engineer. */
"Unknown error: code %d, %@" = "Unknown error: code %1$d, %2$@";
/* No comment provided by engineer. */
"Unread messages" = "Unread messages";
/* Word to describe an encryption fingerprint which is not currently being used */
"Unused" = "Unused";
/* No comment provided by engineer. */
"Unverified" = "Unverified";
/* No comment provided by engineer. */
"Update Tweets" = "Update Tweets";
/* No comment provided by engineer. */
"Updates" = "Updates";
/* No comment provided by engineer. */
"Uploading image to server" = "Uploading image to server";
/* No comment provided by engineer. */
"URL:" = "URL:";
/* No comment provided by engineer. */
"Use Address Book images as contacts' icons" = "Use Address Book images as contacts' icons";
/* No comment provided by engineer. */
"Use another account if necessary" = "Use another account if necessary";
/* No comment provided by engineer. */
"Use custom pitch:" = "Use custom pitch:";
/* No comment provided by engineer. */
"Use custom rate:" = "Use custom rate:";
/* Radio button in the Personal tab of Account preferences. This -must- be a short string of 20 characters or less. */
"Use global icon" = "Use global icon";
/* No comment provided by engineer. */
"Use Nick exclusively if available" = "Use Nick exclusively if available";
/* No comment provided by engineer. */
"Use Offline Group" = "Use Offline Group";
/* No comment provided by engineer. */
"Use Selection for Find" = "Use Selection for Find";
/* No comment provided by engineer. */
"Use System Default" = "Use System Default";
/* No comment provided by engineer. */
"Use the icon below to represent you." = "Use the icon below to represent you.";
/* Radio button in the Personal tab of Account preferences; an image is shown beneath it to select the account's icon. This -must- be a short string of 20 characters or less. */
"Use this icon:" = "Use this icon:";
/* Speak Text action keyword: user alias */
"User alias" = "User alias";
/* No comment provided by engineer. */
"User Host" = "User Host";
/* No comment provided by engineer. */
"User icon" = "User icon";
/* Speak Text action keyword: user name */
"User name" = "User name";
/* No comment provided by engineer. */
"User Name" = "User Name";
/* No comment provided by engineer. */
"User Name (Alias)" = "User Name (Alias)";
/* Either the username or the URL of a tweet we want to reply to. */
"Username or Tweet URL:" = "Username or Tweet URL:";
/* Label in front of an account drop-down selector to determine what account to use */
"Using:" = "Using:";
/* No comment provided by engineer. */
"Verify" = "Verify";
/* No comment provided by engineer. */
"Verify Later" = "Verify Later";
/* Growl priority */
"Very Low" = "Very Low";
/* Title of the View menu */
"View" = "View";
/* No comment provided by engineer. */
"View Chat Transcripts" = "View Chat Transcripts";
/* No comment provided by engineer. */
"View previous conversations with this contact or chat" = "View previous conversations with this contact or chat";
/* No comment provided by engineer. */
"Visual Notifications" = "Visual Notifications";
/* No comment provided by engineer. */
"Voice:" = "Voice:";
/* Accessibility label for the sound volume slider */
"Volume" = "Volume";
/* File transfer waiting on remote user status description */
"Waiting for transfer to be accepted" = "Waiting for transfer to be accepted";
/* waiting to begin a file transfer status */
"Waiting to start." = "Waiting to start.";
/* Phrase displayed when a contact sends a buzz/nudge/other notification. The contact's name will be shown above this phrase, as in a Growl notification. */
"wants your attention!" = "wants your attention!";
/* No comment provided by engineer. */
"Website" = "Website";
/* singular week */
"week" = "week";
/* plural weeks */
"weeks" = "weeks";
/* No comment provided by engineer. */
"Welcome to Adium!" = "Welcome to Adium!";
/* Event: went away (follows a contact's name displayed as a header) */
"went away" = "went away";
/* Event: went idle (follows a contact's name displayed as a header) */
"went idle" = "went idle";
/* Event: went mobile (follows a contact's name displayed as a header) */
"went mobile" = "went mobile";
/* No comment provided by engineer. */
"When %@ connects" = "When %@ connects";
/* No comment provided by engineer. */
"When %@ disconnects" = "When %@ disconnects";
/* No comment provided by engineer. */
"When %@ goes away" = "When %@ goes away";
/* No comment provided by engineer. */
"When %@ goes idle" = "When %@ goes idle";
/* No comment provided by engineer. */
"When %@ goes mobile" = "When %@ goes mobile";
/* No comment provided by engineer. */
"When %@ invites you to a group chat" = "When %@ invites you to a group chat";
/* No comment provided by engineer. */
"When %@ joins a group chat" = "When %@ joins a group chat";
/* No comment provided by engineer. */
"When %@ leaves a group chat" = "When %@ leaves a group chat";
/* No comment provided by engineer. */
"When %@ returns from away" = "When %@ returns from away";
/* No comment provided by engineer. */
"When %@ returns from idle" = "When %@ returns from idle";
/* No comment provided by engineer. */
"When %@ returns from mobile" = "When %@ returns from mobile";
/* No comment provided by engineer. */
"When %@ sends a message that mentions your name in a group chat" = "When %@ sends a message that mentions your name in a group chat";
/* No comment provided by engineer. */
"When %@ sends a message to you" = "When %@ sends a message to you";
/* No comment provided by engineer. */
"When %@ sends a message to you in a background chat" = "When %@ sends a message to you in a background chat";
/* No comment provided by engineer. */
"When %@ sends a message to you in a background group chat" = "When %@ sends a message to you in a background group chat";
/* No comment provided by engineer. */
"When %@ sends a message to you in a group chat" = "When %@ sends a message to you in a group chat";
/* No comment provided by engineer. */
"When %@ sends a message to you in a group chat while you are way" = "When %@ sends a message to you in a group chat while you are way";
/* No comment provided by engineer. */
"When %@ sends a message to you while you are away" = "When %@ sends a message to you while you are away";
/* No comment provided by engineer. */
"When %@ sends a notification" = "When %@ sends a notification";
/* No comment provided by engineer. */
"When %@ sends an initial message to you" = "When %@ sends an initial message to you";
/* No comment provided by engineer. */
"When a contact invites you to a group chat" = "When a contact invites you to a group chat";
/* No comment provided by engineer. */
"When a contact joins a group chat" = "When a contact joins a group chat";
/* No comment provided by engineer. */
"When a contact leaves a group chat" = "When a contact leaves a group chat";
/* No comment provided by engineer. */
"When a contact sends a notification" = "When a contact sends a notification";
/* No comment provided by engineer. */
"When a file is checksummed prior to sending" = "When a file is checksummed prior to sending";
/* No comment provided by engineer. */
"When a file transfer begins" = "When a file transfer begins";
/* No comment provided by engineer. */
"When a file transfer fails" = "When a file transfer fails";
/* No comment provided by engineer. */
"When a file transfer is cancelled remotely" = "When a file transfer is cancelled remotely";
/* No comment provided by engineer. */
"When a file transfer is completed successfully" = "When a file transfer is completed successfully";
/* No comment provided by engineer. */
"When a file transfer is offered to a remote user" = "When a file transfer is offered to a remote user";
/* No comment provided by engineer. */
"When a file transfer is requested" = "When a file transfer is requested";
/* No comment provided by engineer. */
"When a file transfer with %@ fails" = "When a file transfer with %@ fails";
/* No comment provided by engineer. */
"When an error occurs" = "When an error occurs";
/* No comment provided by engineer. */
"When pressed, this key combination will bring Adium to the front" = "When pressed, this key combination will bring Adium to the front";
/* No comment provided by engineer. */
"When there are unread messages:" = "When there are unread messages:";
/* No comment provided by engineer. */
"When you connect" = "When you connect";
/* No comment provided by engineer. */
"When you disconnect" = "When you disconnect";
/* No comment provided by engineer. */
"When you no longer see %@" = "When you no longer see %@";
/* No comment provided by engineer. */
"When you receive a message in a background chat" = "When you receive a message in a background chat";
/* No comment provided by engineer. */
"When you receive a message in a background group chat" = "When you receive a message in a background group chat";
/* No comment provided by engineer. */
"When you receive a message in a group chat" = "When you receive a message in a group chat";
/* No comment provided by engineer. */
"When you receive a message in a group chat while away" = "When you receive a message in a group chat while away";
/* No comment provided by engineer. */
"When you receive a message that mentions your name in a group chat" = "When you receive a message that mentions your name in a group chat";
/* No comment provided by engineer. */
"When you receive a message while away" = "When you receive a message while away";
/* No comment provided by engineer. */
"When you receive a new email notification" = "When you receive a new email notification";
/* No comment provided by engineer. */
"When you receive an initial message" = "When you receive an initial message";
/* No comment provided by engineer. */
"When you receive any message" = "When you receive any message";
/* No comment provided by engineer. */
"When you see %@" = "When you see %@";
/* No comment provided by engineer. */
"When you send %@ a message" = "When you send %@ a message";
/* No comment provided by engineer. */
"When you send %@ a message in a group chat" = "When you send %@ a message in a group chat";
/* No comment provided by engineer. */
"When you send a message" = "When you send a message";
/* No comment provided by engineer. */
"When you send a message in a group chat" = "When you send a message in a group chat";
/* Checkbox to indicate that something should occur while Adium is not the active application */
"While Adium is in the background" = "While Adium is in the background";
/* No comment provided by engineer. */
"Width:" = "Width:";
/* Title of the Window menu */
"Window" = "Window";
/* Preference */
"Window Close Confirmation" = "Window Close Confirmation";
/* No comment provided by engineer. */
"Window Handling" = "Window Handling";
/* No comment provided by engineer. */
"With Message:" = "With Message:";
/* No comment provided by engineer. */
"Within Last 2 Months" = "Within Last 2 Months";
/* No comment provided by engineer. */
"Within Last 2 Weeks" = "Within Last 2 Weeks";
/* No comment provided by engineer. */
"Writing Direction" = "Writing Direction";
/* No comment provided by engineer. */
"Xtra Download" = "Xtra Download";
/* No comment provided by engineer. */
"Xtra Downloading Error" = "Xtra Downloading Error";
/* Xtras Manager window title */
"Xtras Manager" = "Xtras Manager";
/* singular year */
"year" = "year";
/* Year of current song */
"Year" = "Year";
/* plural years */
"years" = "years";
/* No comment provided by engineer. */
"Yes" = "Yes";
/* Day designation for the previous day */
"Yesterday" = "Yesterday";
/* No comment provided by engineer. */
"You are editing a default event set. Please enter a unique name for your modified set." = "You are editing a default event set. Please enter a unique name for your modified set.";
/* No comment provided by engineer. */
"You are mentioned (Group Chat)" = "You are mentioned (Group Chat)";
/* No comment provided by engineer. */
"You are using an old-style (rsrc) keyboard layout which Adium does not support." = "You are using an old-style (rsrc) keyboard layout which Adium does not support.";
/* No comment provided by engineer. */
"You connect" = "You connect";
/* No comment provided by engineer. */
"You disconnect" = "You disconnect";
/* Quit Confirmation */
"You have %d file transfers in progress." = "You have %d file transfers in progress.";
/* Quit Confirmation */
"You have %d open chats." = "You have %d open chats.";
/* Quit Confirmation */
"You have %d unread messages." = "You have %d unread messages.";
/* The first %d is the number of requests, the second is the total number of requests per hour. The %@ is the duration of time until the count resets. */
"You have %d/%d more requests for %@." = "You have %1$d/%2$d more requests for %3$@.";
/* Quit Confirmation */
"You have a file transfer in progress." = "You have a file transfer in progress.";
/* Quit Confirmation */
"You have an open chat." = "You have an open chat.";
/* Quit Confirmation */
"You have an unread message." = "You have an unread message.";
/* No comment provided by engineer. */
"You must allow Adium access to your account in the browser window which just opened. When you have done so, enter the PIN code in the field above." = "You must allow Adium access to your account in the browser window which just opened. When you have done so, enter the PIN code in the field above.";
/* No comment provided by engineer. */
"You need to create a new IRC account to connect to irc://%@%@/%@:" = "You need to create a new IRC account to connect to irc://%1$@%2$@/%3$@:";
/* You said Message to Contact */
"You said %@ to %@" = "You said %1$@ to %2$@";
/* You sent a message to Contact */
"You sent a message to %@" = "You sent a message to %@";
/* Message when sending encrypted messages to a contact expecting unencrypted ones. %s will be a name. */
"You sent an encrypted message, but %@ was not expecting encryption." = "You sent an encrypted message, but %@ was not expecting encryption.";
/* Message when sending unencrypted messages to a contact expecting encrypted ones. %s will be a name. */
"You sent an unencrypted message, but %@ was expecting encryption." = "You sent an unencrypted message, but %@ was expecting encryption.";
/* Someone mentions your name in a group chat */
"you were mentioned in %@" = "you were mentioned in %@";
/* No comment provided by engineer. */
"You will no longer receive device notifications for %@." = "You will no longer receive device notifications for %@.";
/* No comment provided by engineer. */
"You will now receive device notifications for %@." = "You will now receive device notifications for %@.";
/* No comment provided by engineer. */
"You've exceeded the rate limit." = "You've exceeded the rate limit.";
/* No comment provided by engineer. */
"Your accounts have been successfully imported." = "Your accounts have been successfully imported.";
/* No comment provided by engineer. */
"Your credentials do not allow you access." = "Your credentials do not allow you access.";
/* No comment provided by engineer. */
"Your iChat transcripts have been removed." = "Your iChat transcripts have been removed.";
/* No comment provided by engineer. */
"Your message has been sent. %@ will receive it when online." = "Your message has been sent. %@ will receive it when online.";
/* No comment provided by engineer. */
"Your message was not sent. You should end the encrypted chat on your side or re-request encryption." = "Your message was not sent. You should end the encrypted chat on your side or re-request encryption.";
/* No comment provided by engineer. */
"Your name, which on supported services will be sent to remote contacts. Substitutions from the Edit->Scripts and Edit->iTunes menus may be used here." = "Your name, which on supported services will be sent to remote contacts. Substitutions from the Edit->Scripts and Edit->iTunes menus may be used here.";
/* First placeholder is a name; second is a filename */
"Your transfer to %@ of %@ failed" = "Your transfer to %1$@ of %2$@ failed";
/* No comment provided by engineer. */
"Your tweet failed to delete. %@" = "Your tweet failed to delete. %@";
/* No comment provided by engineer. */
"Your tweet has been successfully deleted." = "Your tweet has been successfully deleted.";
/* no file size */
"Zero bytes" = "Zero bytes";
/* Zoom menu item title in the Window menu */
"Zoom" = "Zoom";
|