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
|
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: tilix\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-11-08 21:52+0100\n"
"PO-Revision-Date: 2021-04-16 10:26+0000\n"
"Last-Translator: Gontzal Manuel Pujana Onaindia <thadahdenyse@gmail.com>\n"
"Language-Team: Basque <https://hosted.weblate.org/projects/tilix/"
"translations/eu/>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.6-dev\n"
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:4
#: data/pkg/desktop/com.gexperts.Tilix.desktop.in:4
#: source/gx/tilix/application.d:321 source/gx/tilix/appwindow.d:1694
msgid "Tilix"
msgstr "Tilix"
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:5
#: data/pkg/desktop/com.gexperts.Tilix.desktop.in:5
msgid "A tiling terminal for GNOME"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:9
msgid "Tilix is a tiling terminal emulator."
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:12
msgid "It lets you:"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:14
msgid ""
"Layout terminals in any fashion by splitting them horizontally or vertically"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:15
msgid ""
"Terminals can be re-arranged using drag and drop both within and between "
"windows"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:16
msgid "Terminals can be detached into a new window via drag and drop"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:17
msgid ""
"Input can be synchronized between terminals so commands typed in one "
"terminal are replicated to the others"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:18
msgid "The grouping of terminals can be saved and loaded from disk"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:19
msgid "Terminals support custom titles"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:20
msgid ""
"Color schemes are stored in files and custom color schemes can be created by "
"simply creating a new file"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:21
msgid "Transparent background"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:22
msgid "Supports notifications when processes are completed out of view"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:24
msgid ""
"The application was written using GTK 3 and an effort was made to conform to "
"GNOME Human Interface Guidelines (HIG). As a result, it does use client-side-"
"decorations, though it can be disabled if necessary."
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:28
msgid "Tilix has been tested with GNOME and with Unity."
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:58
msgid "Tilix is still looking for a new maintainer!"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:59
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:85
msgid "This release adds the following features:"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:61
msgid "Disable advanced paste when there is no linebreak like iTerm2"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:62
msgid "Add environment variable when in quake mode"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:63
msgid "Add possibility to configure always enabled regex"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:65
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:91
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:120
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:130
msgid "This release fixes the following bugs:"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:67
msgid "More appdata -> metainfo move"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:68
msgid "Add meson target for man page translations"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:69
msgid "Update flatpak manifest"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:70
msgid "meson: drop unused argument for i18n.merge_file()"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:71
msgid "Stop using deprecated Meson features"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:72
msgid ""
"Keep quake window open if focus is restored before timeout has been reached"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:73
msgid "Don't check GtkDragResult"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:74
msgid "Don't add application/x-rootwindow-drop to dragSourceSet targets"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:76
msgid "With contributions from:"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:77
msgid ""
"Alan Scherger, Antoine Belvire, David King, Jan Beich, kohnish, luk1337, "
"matishadow, Winston Hoy, Matthias Klumpp"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:83
msgid ""
"Tilix is looking for maintainers! At the moment, only very minimal "
"maintenance is done, no new features will be implemented and pull-requests "
"may be reviewed very slowly."
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:84
msgid "If you are interested in helping Tilix, please chime in!"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:87
msgid "Actually install Yaru color scheme"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:88
msgid "Give every tab the ${title}"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:89
msgid "Add option to strip trailing whitespace on paste"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:93
msgid "Fix saving of already saved session"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:94
msgid "Add shortcut to \"Unselect all\""
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:95
msgid "Many Meson buildsystem fixes"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:96
msgid "Avoid missing the previous command exit code when encoding URLs"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:97
msgid "Resolve some D deprecation messages"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:98
msgid "Mention powerline/fonts in README"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:99
msgid "Avoid calling `values()` on a shared object"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:100
msgid "Update metainfo data"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:101
msgid "Drop compat code for older D frontend versions"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:102
msgid "Bump minimum VTE version to 0.46"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:103
msgid "Remove deprecated Autotools support"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:104
msgid "Add release notes, NEWS file, automatic metainfo update"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:105
msgid "Update to GtkD 3.9.0"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:107
msgid "This release updates translations."
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:112
msgid "This release fixes the following bug:"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:114
msgid ""
"Fixes a problem with the session sidebar getting out of sync after having "
"deleted a session. See issues #1680, #1637 and #1699."
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:122
msgid "Remove app menu for gnome 3.32"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:123
msgid "Update icon"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:124
msgid "Minor fixes"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:132
msgid "Small release to update localizations"
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:133
msgid "Update to GtkD 3.8.5 to fix library name in GtkD."
msgstr ""
#: data/metainfo/com.gexperts.Tilix.appdata.xml.rel.in:139
msgid "Some new features and bug fixes."
msgstr ""
#: data/nautilus/open-tilix.py:119
msgid "Open Remote Tilix"
msgstr ""
#: data/nautilus/open-tilix.py:120
msgid "Open Remote Tilix In {}"
msgstr ""
#: data/nautilus/open-tilix.py:126
msgid "Open In Tilix"
msgstr ""
#: data/nautilus/open-tilix.py:127
msgid "Open Tilix In {}"
msgstr ""
#: data/nautilus/open-tilix.py:138
msgid "Open Remote Tilix Here"
msgstr ""
#: data/nautilus/open-tilix.py:139
msgid "Open Remote Tilix In This Directory"
msgstr ""
#: data/nautilus/open-tilix.py:144
msgid "Open Tilix Here"
msgstr ""
#: data/nautilus/open-tilix.py:145
msgid "Open Tilix In This Directory"
msgstr ""
#: data/pkg/desktop/com.gexperts.Tilix.desktop.in:6
msgid "shell;prompt;command;commandline;cmd;"
msgstr ""
#: data/pkg/desktop/com.gexperts.Tilix.desktop.in:17
#: source/gx/tilix/appwindow.d:685 source/gx/tilix/prefeditor/prefdialog.d:1596
msgid "New Window"
msgstr "Leiho berria"
#: data/pkg/desktop/com.gexperts.Tilix.desktop.in:21
#: source/gx/tilix/prefeditor/prefdialog.d:1596 source/gx/tilix/session.d:1606
msgid "New Session"
msgstr ""
#: data/pkg/desktop/com.gexperts.Tilix.desktop.in:25
#: source/gx/tilix/appwindow.d:702 source/gx/tilix/prefeditor/prefdialog.d:263
#: source/gx/tilix/prefeditor/prefdialog.d:414
msgid "Preferences"
msgstr "Ezarpenak"
#: data/resources/ui/shortcuts.ui:10 data/resources/ui/shortcuts.ui:15
msgctxt "shortcut window"
msgid "Application"
msgstr ""
#: data/resources/ui/shortcuts.ui:19
msgctxt "shortcut window"
msgid "Open a new window"
msgstr ""
#: data/resources/ui/shortcuts.ui:25
msgctxt "shortcut window"
msgid "Open a new session"
msgstr ""
#: data/resources/ui/shortcuts.ui:31
msgctxt "shortcut window"
msgid "Open preferences"
msgstr ""
#: data/resources/ui/shortcuts.ui:37
#, fuzzy
msgctxt "shortcut window"
msgid "Show keyboard shortcuts"
msgstr "Teklatuaren lasterbideak"
#: data/resources/ui/shortcuts.ui:45
msgctxt "shortcut window"
msgid "Window"
msgstr ""
#: data/resources/ui/shortcuts.ui:49
msgctxt "shortcut window"
msgid "Toggle fullscreen mode"
msgstr ""
#: data/resources/ui/shortcuts.ui:55
msgctxt "shortcut window"
msgid "View session sidebar"
msgstr ""
#: data/resources/ui/shortcuts.ui:61
msgctxt "shortcut window"
msgid "Switch to next session"
msgstr ""
#: data/resources/ui/shortcuts.ui:67
msgctxt "shortcut window"
msgid "Switch to previous session"
msgstr ""
#: data/resources/ui/shortcuts.ui:73
msgctxt "shortcut window"
msgid "Reorder to next session"
msgstr ""
#: data/resources/ui/shortcuts.ui:79
msgctxt "shortcut window"
msgid "Reorder to previous session"
msgstr ""
#: data/resources/ui/shortcuts.ui:85
msgctxt "shortcut window"
msgid "Switch to session 1"
msgstr ""
#: data/resources/ui/shortcuts.ui:91
msgctxt "shortcut window"
msgid "Switch to session 2"
msgstr ""
#: data/resources/ui/shortcuts.ui:97
msgctxt "shortcut window"
msgid "Switch to session 3"
msgstr ""
#: data/resources/ui/shortcuts.ui:103
msgctxt "shortcut window"
msgid "Switch to session 4"
msgstr ""
#: data/resources/ui/shortcuts.ui:109
msgctxt "shortcut window"
msgid "Switch to session 5"
msgstr ""
#: data/resources/ui/shortcuts.ui:115
msgctxt "shortcut window"
msgid "Switch to session 6"
msgstr ""
#: data/resources/ui/shortcuts.ui:121
msgctxt "shortcut window"
msgid "Switch to session 7"
msgstr ""
#: data/resources/ui/shortcuts.ui:127
msgctxt "shortcut window"
msgid "Switch to session 8"
msgstr ""
#: data/resources/ui/shortcuts.ui:133
msgctxt "shortcut window"
msgid "Switch to session 9"
msgstr ""
#: data/resources/ui/shortcuts.ui:139
msgctxt "shortcut window"
msgid "Switch to session 10"
msgstr ""
#: data/resources/ui/shortcuts.ui:150
msgctxt "shortcut window"
msgid "Session"
msgstr ""
#: data/resources/ui/shortcuts.ui:155
msgctxt "shortcut window"
msgid "File"
msgstr ""
#: data/resources/ui/shortcuts.ui:159
msgctxt "shortcut window"
msgid "Close the current session"
msgstr ""
#: data/resources/ui/shortcuts.ui:165
msgctxt "shortcut window"
msgid "Save the current session"
msgstr ""
#: data/resources/ui/shortcuts.ui:171
msgctxt "shortcut window"
msgid "Save the current session with new filename"
msgstr ""
#: data/resources/ui/shortcuts.ui:177
msgctxt "shortcut window"
msgid "Open a saved session"
msgstr ""
#: data/resources/ui/shortcuts.ui:185
msgctxt "shortcut window"
msgid "Add"
msgstr ""
#: data/resources/ui/shortcuts.ui:189
msgctxt "shortcut window"
msgid "Add terminal right"
msgstr ""
#: data/resources/ui/shortcuts.ui:195
msgctxt "shortcut window"
msgid "Add terminal down"
msgstr ""
#: data/resources/ui/shortcuts.ui:201
msgctxt "shortcut window"
msgid "Add terminal automatically"
msgstr ""
#: data/resources/ui/shortcuts.ui:209
msgctxt "shortcut window"
msgid "Resize"
msgstr ""
#: data/resources/ui/shortcuts.ui:213
msgctxt "shortcut window"
msgid "Resize the terminal up"
msgstr ""
#: data/resources/ui/shortcuts.ui:219
msgctxt "shortcut window"
msgid "Resize the terminal down"
msgstr ""
#: data/resources/ui/shortcuts.ui:225
msgctxt "shortcut window"
msgid "Resize the terminal left"
msgstr ""
#: data/resources/ui/shortcuts.ui:231
msgctxt "shortcut window"
msgid "Resize the terminal right"
msgstr ""
#: data/resources/ui/shortcuts.ui:239 data/resources/ui/shortcuts.ui:511
msgctxt "shortcut window"
msgid "Other"
msgstr ""
#: data/resources/ui/shortcuts.ui:243
msgctxt "shortcut window"
msgid "Edit the session name"
msgstr ""
#: data/resources/ui/shortcuts.ui:249
msgctxt "shortcut window"
msgid "Synchronize the input"
msgstr ""
#: data/resources/ui/shortcuts.ui:257 data/resources/ui/shortcuts.ui:299
msgctxt "shortcut window"
msgid "Switch"
msgstr ""
#: data/resources/ui/shortcuts.ui:261
msgctxt "shortcut window"
msgid "Switch to next terminal"
msgstr ""
#: data/resources/ui/shortcuts.ui:267
msgctxt "shortcut window"
msgid "Switch to previous terminal"
msgstr ""
#: data/resources/ui/shortcuts.ui:273
msgctxt "shortcut window"
msgid "Switch to the terminal up"
msgstr ""
#: data/resources/ui/shortcuts.ui:279
msgctxt "shortcut window"
msgid "Switch to the terminal down"
msgstr ""
#: data/resources/ui/shortcuts.ui:285
msgctxt "shortcut window"
msgid "Switch to the terminal left"
msgstr ""
#: data/resources/ui/shortcuts.ui:291
msgctxt "shortcut window"
msgid "Switch to the terminal right"
msgstr ""
#: data/resources/ui/shortcuts.ui:303
msgctxt "shortcut window"
msgid "Switch to terminal 1"
msgstr ""
#: data/resources/ui/shortcuts.ui:309
msgctxt "shortcut window"
msgid "Switch to terminal 2"
msgstr ""
#: data/resources/ui/shortcuts.ui:315
msgctxt "shortcut window"
msgid "Switch to terminal 3"
msgstr ""
#: data/resources/ui/shortcuts.ui:321
msgctxt "shortcut window"
msgid "Switch to terminal 4"
msgstr ""
#: data/resources/ui/shortcuts.ui:327
msgctxt "shortcut window"
msgid "Switch to terminal 5"
msgstr ""
#: data/resources/ui/shortcuts.ui:333
msgctxt "shortcut window"
msgid "Switch to terminal 6"
msgstr ""
#: data/resources/ui/shortcuts.ui:339
msgctxt "shortcut window"
msgid "Switch to terminal 7"
msgstr ""
#: data/resources/ui/shortcuts.ui:345
msgctxt "shortcut window"
msgid "Switch to terminal 8"
msgstr ""
#: data/resources/ui/shortcuts.ui:351
msgctxt "shortcut window"
msgid "Switch to terminal 9"
msgstr ""
#: data/resources/ui/shortcuts.ui:357
msgctxt "shortcut window"
msgid "Switch to terminal 10"
msgstr ""
#: data/resources/ui/shortcuts.ui:368
msgctxt "shortcut window"
msgid "Terminal"
msgstr ""
#: data/resources/ui/shortcuts.ui:373 data/resources/ui/shortcuts.ui:377
msgctxt "shortcut window"
msgid "Find"
msgstr ""
#: data/resources/ui/shortcuts.ui:383
msgctxt "shortcut window"
msgid "Find next"
msgstr ""
#: data/resources/ui/shortcuts.ui:389
msgctxt "shortcut window"
msgid "Find previous"
msgstr ""
#: data/resources/ui/shortcuts.ui:397
msgctxt "shortcut window"
msgid "Clipboard"
msgstr ""
#: data/resources/ui/shortcuts.ui:401
msgctxt "shortcut window"
msgid "Copy"
msgstr ""
#: data/resources/ui/shortcuts.ui:407
msgctxt "shortcut window"
msgid "Copy As HTML"
msgstr ""
#: data/resources/ui/shortcuts.ui:413
msgctxt "shortcut window"
msgid "Paste"
msgstr ""
#: data/resources/ui/shortcuts.ui:419
msgctxt "shortcut window"
msgid "Paste selection"
msgstr ""
#: data/resources/ui/shortcuts.ui:425
msgctxt "shortcut window"
msgid "Advanced paste"
msgstr ""
#: data/resources/ui/shortcuts.ui:431
msgctxt "shortcut window"
msgid "Select all"
msgstr ""
#: data/resources/ui/shortcuts.ui:437
#, fuzzy
msgctxt "shortcut window"
msgid "Unselect all"
msgstr "Aukeratu guztia"
#: data/resources/ui/shortcuts.ui:445
msgctxt "shortcut window"
msgid "Zoom"
msgstr ""
#: data/resources/ui/shortcuts.ui:449
msgctxt "shortcut window"
msgid "Zoom in"
msgstr ""
#: data/resources/ui/shortcuts.ui:455
msgctxt "shortcut window"
msgid "Zoom out"
msgstr ""
#: data/resources/ui/shortcuts.ui:461
msgctxt "shortcut window"
msgid "Zoom normal size"
msgstr ""
#: data/resources/ui/shortcuts.ui:469
msgctxt "shortcut window"
msgid "Navigation"
msgstr ""
#: data/resources/ui/shortcuts.ui:473
msgctxt "shortcut window"
msgid "Scroll up"
msgstr ""
#: data/resources/ui/shortcuts.ui:479
msgctxt "shortcut window"
msgid "Scroll down"
msgstr ""
#: data/resources/ui/shortcuts.ui:485
msgctxt "shortcut window"
msgid "Page up"
msgstr ""
#: data/resources/ui/shortcuts.ui:491
msgctxt "shortcut window"
msgid "Page down"
msgstr ""
#: data/resources/ui/shortcuts.ui:497
msgctxt "shortcut window"
msgid "Previous prompt"
msgstr ""
#: data/resources/ui/shortcuts.ui:503
msgctxt "shortcut window"
msgid "Next prompt"
msgstr ""
#: data/resources/ui/shortcuts.ui:515
msgctxt "shortcut window"
msgid "Save terminal contents"
msgstr ""
#: data/resources/ui/shortcuts.ui:521
msgctxt "shortcut window"
msgid "Close terminal"
msgstr ""
#: data/resources/ui/shortcuts.ui:527
msgctxt "shortcut window"
msgid "Maximize terminal"
msgstr ""
#: data/resources/ui/shortcuts.ui:533
msgctxt "shortcut window"
msgid "Current profile preferences"
msgstr ""
#: data/resources/ui/shortcuts.ui:539
msgctxt "shortcut window"
msgid "Reset the terminal"
msgstr ""
#: data/resources/ui/shortcuts.ui:545
msgctxt "shortcut window"
msgid "Reset and clear the terminal"
msgstr ""
#: data/resources/ui/shortcuts.ui:551
msgctxt "shortcut window"
msgid "Toggle read only"
msgstr ""
#: data/resources/ui/shortcuts.ui:557
msgctxt "shortcut window"
msgid "Layout options"
msgstr ""
#: data/resources/ui/shortcuts.ui:563
msgctxt "shortcut window"
msgid "Insert terminal number"
msgstr ""
#: data/resources/ui/shortcuts.ui:569
msgctxt "shortcut window"
msgid "Insert password"
msgstr ""
#: data/resources/ui/shortcuts.ui:575
msgctxt "shortcut window"
msgid "Select bookmark"
msgstr ""
#: data/resources/ui/shortcuts.ui:581
msgctxt "shortcut window"
msgid "Add bookmark"
msgstr ""
#: data/resources/ui/shortcuts.ui:587
msgctxt "shortcut window"
msgid "Cycle title style"
msgstr ""
#: data/resources/ui/shortcuts.ui:593
msgctxt "shortcut window"
msgid "Monitor silence"
msgstr ""
#: data/resources/ui/shortcuts.ui:599
msgctxt "shortcut window"
msgid "Override input synchronization"
msgstr ""
#: data/resources/ui/shortcuts.ui:605
msgctxt "shortcut window"
msgid "Open file browser"
msgstr ""
#: data/resources/ui/shortcuts.ui:611
msgctxt "shortcut window"
msgid "Toggle margin"
msgstr ""
#: data/resources/ui/shortcuts.ui:622
msgctxt "shortcut window"
msgid "Nautilus"
msgstr ""
#: data/resources/ui/shortcuts.ui:627
msgctxt "shortcut window"
msgid "Open"
msgstr ""
#: data/resources/ui/shortcuts.ui:631
msgctxt "shortcut window"
msgid "Open in Tilix"
msgstr ""
#: data/resources/ui/shortcuts.ui:642 data/resources/ui/shortcuts.ui:647
msgctxt "shortcut window"
msgid "Profile"
msgstr ""
#: source/app.d:140
#, c-format
msgid "Your GTK version is too old, you need at least GTK %d.%d.%d!"
msgstr "Zure GTK bertsioa zaharregia da, gutxienez GTK %d.%d.%d behar duzu!"
#: source/app.d:150
#, fuzzy, c-format
msgid "Your VTE version is too old, you need at least VTE %d.%d!"
msgstr "Zure GTK bertsioa zaharregia da, gutxienez GTK %d.%d.%d behar duzu!"
#: source/app.d:166
msgid "Unexpected exception occurred"
msgstr "Ustekabeko arazo bat gertatu da"
#: source/app.d:167
msgid "Error: "
msgstr "Errorea: "
#: source/app.d:177
msgid "Versions"
msgstr "Bertsioak"
#: source/app.d:178
#, c-format
msgid "Tilix version: %s"
msgstr "Tilix bertsioa: %s"
#: source/app.d:179
#, c-format
msgid "VTE version: %s"
msgstr "VTE bertsioa: %s"
#: source/app.d:180
#, c-format
msgid "GTK Version: %d.%d.%d"
msgstr "GTK bertsioa: %d.%d.%d"
#: source/app.d:181
msgid "Tilix Special Features"
msgstr "Tilix-en ezaugarri bereziak"
#: source/app.d:182
msgid "Notifications enabled=%b"
msgstr "Jakinarazpenak gaituta=%b"
#: source/app.d:183
msgid "Triggers enabled=%b"
msgstr "Abiarazleak gaituta=%b"
#: source/app.d:184
msgid "Badges enabled=%b"
msgstr "Txapak gaituta=%b"
#: source/gx/gtk/actions.d:25
msgid "disabled"
msgstr "Desgaituta"
#: source/gx/gtk/dialog.d:89 source/gx/tilix/closedialog.d:143
msgid "Do not show this again"
msgstr "Ez erakutsi berriro"
#. TRANSLATORS: Please add your name to the list of translators if you want to be credited for the translations you have done.
#: source/gx/tilix/application.d:273
msgid "translator-credits"
msgstr "Gontzal Pujana Onaindia"
#: source/gx/tilix/application.d:282
msgid "Credits"
msgstr "Kredituak"
#: source/gx/tilix/application.d:679
msgid "DIRECTORY"
msgstr "DIREKTORIOA"
#: source/gx/tilix/application.d:679
msgid "Set the working directory of the terminal"
msgstr "Ezarri terminalaren lan-direktorioa"
#: source/gx/tilix/application.d:680
msgid "PROFILE_NAME"
msgstr "PROFIL_IZENA"
#: source/gx/tilix/application.d:680
msgid "Set the starting profile"
msgstr "Ezarri hasierako profila"
#: source/gx/tilix/application.d:681
msgid "Set the title of the new terminal"
msgstr "Ezarri terminal berriaren izenburua"
#: source/gx/tilix/application.d:681
msgid "TITLE"
msgstr "IZENBURUA"
#: source/gx/tilix/application.d:682
msgid "Open the specified session"
msgstr "Ireki zehaztutako saioa"
#: source/gx/tilix/application.d:682
msgid "SESSION_NAME"
msgstr "SAIO_IZENA"
#: source/gx/tilix/application.d:684
msgid "ACTION_NAME"
msgstr "EKINTZA_IZENA"
#: source/gx/tilix/application.d:684
msgid "Send an action to current Tilix instance"
msgstr "Bidali ekintza uneko Tilix instantziara"
#: source/gx/tilix/application.d:686
msgid "COMMAND"
msgstr "KOMANDOA"
#: source/gx/tilix/application.d:686
msgid "Execute the parameter as a command"
msgstr "Exekutatu parametroa komando gisa"
#: source/gx/tilix/application.d:687
msgid "Maximize the terminal window"
msgstr "Maximizatu terminalaren leihoa"
#: source/gx/tilix/application.d:688
msgid "Minimize the terminal window"
msgstr "Minimizatu terminalaren leihoa"
#: source/gx/tilix/application.d:689
msgid ""
"Override the preferred window style to use, one of: normal,disable-csd,"
"disable-csd-hide-toolbar,borderless"
msgstr ""
#: source/gx/tilix/application.d:689
msgid "WINDOW_STYLE"
msgstr "LEIHO_ESTILOA"
#: source/gx/tilix/application.d:690
msgid "Full-screen the terminal window"
msgstr ""
#: source/gx/tilix/application.d:691
msgid "Focus the existing window"
msgstr ""
#: source/gx/tilix/application.d:692
msgid "Start additional instance as new process (Not Recommended)"
msgstr ""
#: source/gx/tilix/application.d:693
msgid "GEOMETRY"
msgstr "GEOMETRIA"
#: source/gx/tilix/application.d:693
msgid ""
"Set the window size; for example: 80x24, or 80x24+200+200 (COLSxROWS+X+Y)"
msgstr ""
#: source/gx/tilix/application.d:694
msgid ""
"Opens a window in quake mode or toggles existing quake mode window visibility"
msgstr ""
#: source/gx/tilix/application.d:695
msgid "Show the Tilix and dependent component versions"
msgstr ""
#: source/gx/tilix/application.d:696
msgid "Show the Tilix preferences dialog directly"
msgstr ""
#: source/gx/tilix/application.d:697
msgid "GROUP_NAME"
msgstr "TALDE_IZENA"
#: source/gx/tilix/application.d:697
msgid ""
"Group tilix instances into different processes (Experimental, not "
"recommended)"
msgstr ""
#: source/gx/tilix/application.d:700
msgid "Hidden argument to pass terminal UUID"
msgstr ""
#: source/gx/tilix/application.d:700
msgid "TERMINAL_UUID"
msgstr "TERMINALAREN_UUID"
#: source/gx/tilix/application.d:717
#, c-format
msgid "The application ID %s is not valid"
msgstr ""
#: source/gx/tilix/application.d:883
msgid ""
"There appears to be an issue with the configuration of the terminal.\n"
"This issue is not serious, but correcting it will improve your experience.\n"
"Click the link below for more information:"
msgstr ""
#: source/gx/tilix/application.d:884
msgid "Configuration Issue Detected"
msgstr "Konfigurazio arazoa detektatu da"
#: source/gx/tilix/application.d:896
msgid "Do not show this message again"
msgstr "Ez erakutsi mezu hau berriro"
#: source/gx/tilix/appwindow.d:324
msgid "Create a new session"
msgstr "Sortu saio berria"
#: source/gx/tilix/appwindow.d:338
msgid "View session sidebar"
msgstr "Erakutsi alboko saio-barra"
#: source/gx/tilix/appwindow.d:373
msgid "Add terminal right"
msgstr "Gehitu terminala eskuinean"
#: source/gx/tilix/appwindow.d:377
msgid "Add terminal down"
msgstr "Gehitu terminala azpian"
#: source/gx/tilix/appwindow.d:383
msgid "Find text in terminal"
msgstr "Bilatu testua terminalean"
#: source/gx/tilix/appwindow.d:606
msgid "Enter a new name for the session"
msgstr "Sartu izen berri bat saiorako"
#: source/gx/tilix/appwindow.d:608
msgid "Change Session Name"
msgstr "Aldatu saio izena"
#: source/gx/tilix/appwindow.d:689
msgid "Open…"
msgstr "Ireki…"
#: source/gx/tilix/appwindow.d:690 source/gx/tilix/appwindow.d:1558
#: source/gx/tilix/prefeditor/profileeditor.d:948
#: source/gx/tilix/terminal/terminal.d:3665
msgid "Save"
msgstr "Gorde"
#: source/gx/tilix/appwindow.d:691
msgid "Save As…"
msgstr "Gorde honela…"
#: source/gx/tilix/appwindow.d:697
msgid "Name…"
msgstr "Izena…"
#: source/gx/tilix/appwindow.d:698
msgid "Synchronize Input"
msgstr "Sinkronizatu sarrera"
#: source/gx/tilix/appwindow.d:703
msgid "Keyboard Shortcuts"
msgstr "Teklatuaren lasterbideak"
#: source/gx/tilix/appwindow.d:704
msgid "About Tilix"
msgstr "Tilix-i buruz"
#: source/gx/tilix/appwindow.d:711
msgid "GC"
msgstr "GC"
#: source/gx/tilix/appwindow.d:1088
#: source/gx/tilix/prefeditor/prefdialog.d:1201 source/gx/tilix/session.d:1222
msgid "Default"
msgstr "Lehenetsia"
#: source/gx/tilix/appwindow.d:1197
msgid "There are multiple sessions open, close anyway?"
msgstr "Hainbat saio daude irekita, itxi nahi dituzu?"
#: source/gx/tilix/appwindow.d:1461
#: source/gx/tilix/prefeditor/profileeditor.d:961
msgid "All JSON Files"
msgstr "JSON fitxategi guztiak"
#: source/gx/tilix/appwindow.d:1465
#: source/gx/tilix/prefeditor/prefdialog.d:1219
#: source/gx/tilix/prefeditor/profileeditor.d:965
#: source/gx/tilix/terminal/terminal.d:3675
msgid "All Files"
msgstr "Fitxategi guztiak"
#: source/gx/tilix/appwindow.d:1474
#, c-format
msgid "Filename '%s' does not exist"
msgstr "«%s» fitxategia ez da existitzen"
#: source/gx/tilix/appwindow.d:1506
msgid "Load Session"
msgstr "Kargatu saioa"
#: source/gx/tilix/appwindow.d:1509 source/gx/tilix/appwindow.d:1558
#: source/gx/tilix/bookmark/bmchooser.d:127
#: source/gx/tilix/bookmark/bmeditor.d:151 source/gx/tilix/closedialog.d:202
#: source/gx/tilix/prefeditor/advdialog.d:192
#: source/gx/tilix/prefeditor/advdialog.d:362
#: source/gx/tilix/prefeditor/profileeditor.d:948
#: source/gx/tilix/terminal/advpaste.d:137 source/gx/tilix/terminal/layout.d:33
#: source/gx/tilix/terminal/password.d:371
#: source/gx/tilix/terminal/password.d:493
#: source/gx/tilix/terminal/terminal.d:3665
msgid "Cancel"
msgstr "Utzi"
#: source/gx/tilix/appwindow.d:1509
msgid "Open"
msgstr "Ireki"
#: source/gx/tilix/appwindow.d:1532
msgid "Could not load session due to unexpected error."
msgstr "Ezin izan da saioa kargatu ezusteko arazo batengatik."
#: source/gx/tilix/appwindow.d:1532
msgid "Error Loading Session"
msgstr "Errorea saioa kargatzean"
#: source/gx/tilix/appwindow.d:1555
msgid "Save Session"
msgstr "Gorde saioa"
#: source/gx/tilix/appwindow.d:1590 source/gx/tilix/appwindow.d:1609
msgid "Could not save session due to unexpected error."
msgstr "Ezin izan da saioa gorde ezusteko arazo batengatik."
#: source/gx/tilix/appwindow.d:1590 source/gx/tilix/appwindow.d:1609
msgid "Error Saving Session"
msgstr "Errorea saioa gordetzen"
#: source/gx/tilix/appwindow.d:1723
msgid "Quake mode is not supported under Wayland, running as normal window"
msgstr ""
"Quake modua ez da Waylandekin bateragarria; leiho normala bezala exekutatuko "
"da."
#: source/gx/tilix/appwindow.d:1725
msgid "Quake Mode Not Supported"
msgstr "Quake modua ez da bateragarria"
#: source/gx/tilix/appwindow.d:2200
msgid "New output displayed"
msgstr "Irteera berria bistaratzen da"
#: source/gx/tilix/appwindow.d:2208
msgid "Close session"
msgstr "Itxi saioa"
#: source/gx/tilix/bookmark/bmchooser.d:79
msgid "Include return character with bookmark"
msgstr ""
#: source/gx/tilix/bookmark/bmchooser.d:126
msgid "Select Bookmark"
msgstr ""
#: source/gx/tilix/bookmark/bmchooser.d:126
#: source/gx/tilix/bookmark/bmeditor.d:68
msgid "Select Folder"
msgstr ""
#: source/gx/tilix/bookmark/bmchooser.d:127
#: source/gx/tilix/bookmark/bmeditor.d:151 source/gx/tilix/closedialog.d:202
#: source/gx/tilix/terminal/layout.d:33 source/gx/tilix/terminal/password.d:493
msgid "OK"
msgstr "Ados"
#: source/gx/tilix/bookmark/bmeditor.d:74
msgid "Select folder"
msgstr ""
#: source/gx/tilix/bookmark/bmeditor.d:86
msgid "Clear folder"
msgstr ""
#: source/gx/tilix/bookmark/bmeditor.d:150
msgid "Add Bookmark"
msgstr ""
#: source/gx/tilix/bookmark/bmeditor.d:150
msgid "Edit Bookmark"
msgstr ""
#: source/gx/tilix/bookmark/bmeditor.d:231
#: source/gx/tilix/bookmark/bmtreeview.d:73 source/gx/tilix/session.d:1572
#: source/gx/tilix/terminal/password.d:137
#: source/gx/tilix/terminal/password.d:431
msgid "Name"
msgstr "Izena"
#: source/gx/tilix/bookmark/bmeditor.d:292
#: source/gx/tilix/bookmark/manager.d:687
msgid "Path"
msgstr ""
#: source/gx/tilix/bookmark/bmeditor.d:294
msgid "Select Path"
msgstr ""
#: source/gx/tilix/bookmark/bmeditor.d:333
#: source/gx/tilix/bookmark/bmeditor.d:428
#: source/gx/tilix/bookmark/manager.d:687
#: source/gx/tilix/prefeditor/advdialog.d:106
#: source/gx/tilix/prefeditor/profileeditor.d:98
#: source/gx/tilix/prefeditor/profileeditor.d:1136
#: source/gx/tilix/terminal/layout.d:89
msgid "Command"
msgstr "Agindua"
#: source/gx/tilix/bookmark/bmeditor.d:382
msgid "Protocol"
msgstr ""
#: source/gx/tilix/bookmark/bmeditor.d:398
msgid "Host"
msgstr ""
#: source/gx/tilix/bookmark/bmeditor.d:414
msgid "User"
msgstr ""
#: source/gx/tilix/bookmark/bmeditor.d:421
msgid "Parameters"
msgstr ""
#: source/gx/tilix/bookmark/bmtreeview.d:70 source/gx/tilix/closedialog.d:129
#: source/gx/tilix/prefeditor/profileeditor.d:447
msgid "Icon"
msgstr "Ikonoa"
#: source/gx/tilix/bookmark/manager.d:233
msgid "Error deserializing bookmark"
msgstr ""
#: source/gx/tilix/bookmark/manager.d:537
msgid "Root"
msgstr ""
#: source/gx/tilix/bookmark/manager.d:615
msgid "Could not load bookmarks due to unexpected error"
msgstr ""
#: source/gx/tilix/bookmark/manager.d:687
msgid "Folder"
msgstr ""
#: source/gx/tilix/bookmark/manager.d:687
msgid "Remote"
msgstr ""
#: source/gx/tilix/closedialog.d:123 source/gx/tilix/constants.d:152
#: source/gx/tilix/terminal/layout.d:54
msgid "Title"
msgstr "Titulua"
#: source/gx/tilix/closedialog.d:170
#, c-format
msgid "Window (%s)"
msgstr "(%s) leihoa"
#: source/gx/tilix/closedialog.d:173
#, c-format
msgid "Session (%s)"
msgstr "(%s) saioa"
#: source/gx/tilix/closedialog.d:189
msgid "Close Application"
msgstr "Itxi aplikazioa"
#: source/gx/tilix/closedialog.d:191
msgid "Close Window"
msgstr "Itxi leihoa"
#: source/gx/tilix/closedialog.d:193 source/gx/tilix/closedialog.d:195
msgid "Close Session"
msgstr "Itxi saioa"
#: source/gx/tilix/cmdparams.d:119 source/gx/tilix/cmdparams.d:123
#, c-format
msgid "Ignoring as '%s' is not a directory"
msgstr ""
#: source/gx/tilix/cmdparams.d:152
#, c-format
msgid "Geometry string '%s' is invalid and could not be parsed"
msgstr ""
#: source/gx/tilix/cmdparams.d:186
msgid ""
"You cannot load a session and set a profile/working directory/execute "
"command option, please choose one or the other"
msgstr ""
#: source/gx/tilix/cmdparams.d:193
msgid "You can only use the action parameter within Tilix"
msgstr ""
#: source/gx/tilix/cmdparams.d:215
msgid ""
"You cannot use the quake mode with maximize, minimize or geometry parameters"
msgstr ""
#: source/gx/tilix/colorschemes.d:188
#, c-format
msgid "File %s is not a color scheme compliant JSON file"
msgstr ""
#: source/gx/tilix/colorschemes.d:251
msgid "Color scheme palette requires 16 colors"
msgstr ""
#: source/gx/tilix/constants.d:72
msgid "A VTE based terminal emulator for Linux"
msgstr ""
#: source/gx/tilix/constants.d:73
msgid ""
"This Source Code Form is subject to the terms of the Mozilla Public License, "
"v. 2.0. If a copy of the MPL was not distributed with this file, You can "
"obtain one at http://mozilla.org/MPL/2.0/."
msgstr ""
#: source/gx/tilix/constants.d:78
msgid "GTK VTE widget team, Tilix would not be possible without their work"
msgstr ""
#: source/gx/tilix/constants.d:79
msgid "GtkD for providing such an excellent GTK wrapper"
msgstr ""
#: source/gx/tilix/constants.d:80
msgid "Dlang.org for such an excellent language, D"
msgstr ""
#: source/gx/tilix/constants.d:153
msgid "Icon title"
msgstr ""
#: source/gx/tilix/constants.d:154 source/gx/tilix/terminal/password.d:140
msgid "ID"
msgstr "Id."
#: source/gx/tilix/constants.d:155
msgid "Directory"
msgstr ""
#: source/gx/tilix/constants.d:156
msgid "Hostname"
msgstr ""
#: source/gx/tilix/constants.d:157
msgid "Username"
msgstr ""
#: source/gx/tilix/constants.d:158
msgid "Columns"
msgstr ""
#: source/gx/tilix/constants.d:159
msgid "Rows"
msgstr ""
#: source/gx/tilix/constants.d:160
msgid "Process"
msgstr ""
#: source/gx/tilix/constants.d:161
msgid "Status.Read-Only"
msgstr ""
#: source/gx/tilix/constants.d:162
msgid "Status.Silence"
msgstr ""
#: source/gx/tilix/constants.d:163
msgid "Status.Input-Sync"
msgstr ""
#: source/gx/tilix/constants.d:178
msgid "Terminal count"
msgstr ""
#: source/gx/tilix/constants.d:179
msgid "Terminal number"
msgstr ""
#: source/gx/tilix/constants.d:180
msgid "Active terminal title"
msgstr ""
#: source/gx/tilix/constants.d:197
msgid "Application name"
msgstr ""
#: source/gx/tilix/constants.d:198
msgid "Session name"
msgstr ""
#: source/gx/tilix/constants.d:199
msgid "Session number"
msgstr ""
#: source/gx/tilix/constants.d:200
msgid "Session count"
msgstr ""
#: source/gx/tilix/encoding.d:18 source/gx/tilix/encoding.d:31
#: source/gx/tilix/encoding.d:45 source/gx/tilix/encoding.d:67
#: source/gx/tilix/encoding.d:78
msgid "Western"
msgstr ""
#: source/gx/tilix/encoding.d:19 source/gx/tilix/encoding.d:46
#: source/gx/tilix/encoding.d:57 source/gx/tilix/encoding.d:76
msgid "Central European"
msgstr ""
#: source/gx/tilix/encoding.d:20
msgid "South European"
msgstr ""
#: source/gx/tilix/encoding.d:21 source/gx/tilix/encoding.d:29
#: source/gx/tilix/encoding.d:83
msgid "Baltic"
msgstr "Baltikoa"
#: source/gx/tilix/encoding.d:22 source/gx/tilix/encoding.d:47
#: source/gx/tilix/encoding.d:53 source/gx/tilix/encoding.d:54
#: source/gx/tilix/encoding.d:59 source/gx/tilix/encoding.d:77
msgid "Cyrillic"
msgstr ""
#: source/gx/tilix/encoding.d:23 source/gx/tilix/encoding.d:50
#: source/gx/tilix/encoding.d:56 source/gx/tilix/encoding.d:82
msgid "Arabic"
msgstr "Arabiera"
#: source/gx/tilix/encoding.d:24 source/gx/tilix/encoding.d:62
#: source/gx/tilix/encoding.d:79
msgid "Greek"
msgstr "Greziera"
#: source/gx/tilix/encoding.d:25
msgid "Hebrew Visual"
msgstr ""
#: source/gx/tilix/encoding.d:26 source/gx/tilix/encoding.d:49
#: source/gx/tilix/encoding.d:65 source/gx/tilix/encoding.d:81
msgid "Hebrew"
msgstr "Hebreera"
#: source/gx/tilix/encoding.d:27 source/gx/tilix/encoding.d:48
#: source/gx/tilix/encoding.d:69 source/gx/tilix/encoding.d:80
msgid "Turkish"
msgstr "Turkiera"
#: source/gx/tilix/encoding.d:28
msgid "Nordic"
msgstr "Nordikoa"
#: source/gx/tilix/encoding.d:30
msgid "Celtic"
msgstr "Zelta"
#: source/gx/tilix/encoding.d:32 source/gx/tilix/encoding.d:68
msgid "Romanian"
msgstr "Errumaniera"
#: source/gx/tilix/encoding.d:33
msgid "Unicode"
msgstr "Unicode"
#: source/gx/tilix/encoding.d:34
msgid "Armenian"
msgstr "Armeniera"
#: source/gx/tilix/encoding.d:35 source/gx/tilix/encoding.d:36
#: source/gx/tilix/encoding.d:40
msgid "Chinese Traditional"
msgstr "Txinera tradizionala"
#: source/gx/tilix/encoding.d:37
msgid "Cyrillic/Russian"
msgstr "Errusiera"
#: source/gx/tilix/encoding.d:38 source/gx/tilix/encoding.d:51
#: source/gx/tilix/encoding.d:71
msgid "Japanese"
msgstr "Japoniera"
#: source/gx/tilix/encoding.d:39 source/gx/tilix/encoding.d:52
#: source/gx/tilix/encoding.d:74
msgid "Korean"
msgstr "Koreera"
#: source/gx/tilix/encoding.d:41 source/gx/tilix/encoding.d:42
#: source/gx/tilix/encoding.d:43
msgid "Chinese Simplified"
msgstr "Txinera sinplifikatua"
#: source/gx/tilix/encoding.d:44
msgid "Georgian"
msgstr "Georgiera"
#: source/gx/tilix/encoding.d:55 source/gx/tilix/encoding.d:70
msgid "Cyrillic/Ukrainian"
msgstr "Ukraniera"
#: source/gx/tilix/encoding.d:58
msgid "Croatian"
msgstr "Kroaziera"
#: source/gx/tilix/encoding.d:60
msgid "Hindi"
msgstr "Hindi"
#: source/gx/tilix/encoding.d:61
msgid "Persian"
msgstr "Persiera"
#: source/gx/tilix/encoding.d:63
msgid "Gujarati"
msgstr "Gujaratera"
#: source/gx/tilix/encoding.d:64
msgid "Gurmukhi"
msgstr "Gurmukhi"
#: source/gx/tilix/encoding.d:66
msgid "Icelandic"
msgstr "Islandiera"
#: source/gx/tilix/encoding.d:72 source/gx/tilix/encoding.d:75
#: source/gx/tilix/encoding.d:84
msgid "Vietnamese"
msgstr "Vietnamera"
#: source/gx/tilix/encoding.d:73
msgid "Thai"
msgstr "Thailandiera"
#: source/gx/tilix/prefeditor/advdialog.d:94
#: source/gx/tilix/prefeditor/advdialog.d:261
msgid "Regex"
msgstr ""
#: source/gx/tilix/prefeditor/advdialog.d:118
msgid "Case Insensitive"
msgstr ""
#: source/gx/tilix/prefeditor/advdialog.d:134
#: source/gx/tilix/prefeditor/advdialog.d:313
#: source/gx/tilix/prefeditor/profileeditor.d:1303
msgid "Add"
msgstr "Gehitu"
#: source/gx/tilix/prefeditor/advdialog.d:141
#: source/gx/tilix/prefeditor/advdialog.d:319
#: source/gx/tilix/prefeditor/prefdialog.d:556
#: source/gx/tilix/prefeditor/profileeditor.d:1340
#: source/gx/tilix/terminal/password.d:213
msgid "Delete"
msgstr "Ezabatu"
#: source/gx/tilix/prefeditor/advdialog.d:151
msgid "Move up"
msgstr ""
#: source/gx/tilix/prefeditor/advdialog.d:162
msgid "Move down"
msgstr ""
#: source/gx/tilix/prefeditor/advdialog.d:192
#: source/gx/tilix/prefeditor/advdialog.d:362
#: source/gx/tilix/terminal/password.d:371
msgid "Apply"
msgstr "Aplikatu"
#: source/gx/tilix/prefeditor/advdialog.d:192
msgid "Edit Custom Links"
msgstr ""
#: source/gx/tilix/prefeditor/advdialog.d:287
#: source/gx/tilix/prefeditor/prefdialog.d:765
msgid "Action"
msgstr ""
#: source/gx/tilix/prefeditor/advdialog.d:299
msgid "Parameter"
msgstr ""
#: source/gx/tilix/prefeditor/advdialog.d:337
msgid "Limit number of lines for trigger processing to:"
msgstr ""
#: source/gx/tilix/prefeditor/advdialog.d:362
msgid "Edit Triggers"
msgstr ""
#: source/gx/tilix/prefeditor/advdialog.d:405
#, c-format
msgid "Row %d: "
msgstr ""
#: source/gx/tilix/prefeditor/bookmarkeditor.d:62
msgid "Add bookmark"
msgstr "Gehitu laster-marka"
#: source/gx/tilix/prefeditor/bookmarkeditor.d:67
msgid "Edit bookmark"
msgstr "Editatu laster-marka"
#: source/gx/tilix/prefeditor/bookmarkeditor.d:72
msgid "Delete bookmark"
msgstr "Ezabatu laster-marka"
#: source/gx/tilix/prefeditor/bookmarkeditor.d:77
msgid "Unselect bookmark"
msgstr ""
#: source/gx/tilix/prefeditor/common.d:37
msgid "Custom Links"
msgstr ""
#: source/gx/tilix/prefeditor/common.d:43
msgid ""
"A list of user defined links that can be clicked on in the terminal based on "
"regular expression definitions."
msgstr ""
#: source/gx/tilix/prefeditor/common.d:46
#: source/gx/tilix/prefeditor/common.d:77
#: source/gx/tilix/prefeditor/profileeditor.d:1321
#: source/gx/tilix/terminal/password.d:184
msgid "Edit"
msgstr "Editatu"
#: source/gx/tilix/prefeditor/common.d:67
msgid "Triggers"
msgstr ""
#: source/gx/tilix/prefeditor/common.d:74
msgid ""
"Triggers are regular expressions that are used to check against output text "
"in the terminal. When a match is detected the configured action is executed."
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:123
msgid "Tilix Preferences"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:140
#: source/gx/tilix/prefeditor/prefdialog.d:141
#: source/gx/tilix/prefeditor/prefdialog.d:219
msgid "Global"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:144
#: source/gx/tilix/prefeditor/prefdialog.d:145
msgid "Appearance"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:150
#: source/gx/tilix/prefeditor/prefdialog.d:151
msgid "Quake"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:155
#: source/gx/tilix/prefeditor/prefdialog.d:156
msgid "Bookmarks"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:162
#: source/gx/tilix/prefeditor/prefdialog.d:163
#: source/gx/tilix/prefeditor/prefdialog.d:299
msgid "Shortcuts"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:166
#: source/gx/tilix/prefeditor/prefdialog.d:167
#: source/gx/tilix/prefeditor/prefdialog.d:463
#: source/gx/tilix/prefeditor/prefdialog.d:681
#: source/gx/tilix/prefeditor/profileeditor.d:1087
#: source/gx/tilix/terminal/terminal.d:858
msgid "Encoding"
msgstr "Kodeketa"
#: source/gx/tilix/prefeditor/prefdialog.d:170
#: source/gx/tilix/prefeditor/prefdialog.d:171
#: source/gx/tilix/prefeditor/profileeditor.d:105
#: source/gx/tilix/prefeditor/profileeditor.d:575
msgid "Advanced"
msgstr "Aurreratua"
#: source/gx/tilix/prefeditor/prefdialog.d:176 source/gx/tilix/session.d:1583
msgid "Profile"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:189
msgid "Add profile"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:194
msgid "Delete profile"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:283
#: source/gx/tilix/terminal/terminal.d:842
msgid "Profiles"
msgstr "Profilak"
#: source/gx/tilix/prefeditor/prefdialog.d:312
#: source/gx/tilix/prefeditor/prefdialog.d:320
#, c-format
msgid "Profile: %s"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:366
#, c-format
msgid "Are you sure you want to delete '%s'?"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:557
msgid "Clone"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:561
msgid "Use for new terminals"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:637
msgid "Encodings showing in menu:"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:679
msgid "Enabled"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:789
msgid "Shortcut Key"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:801
msgid "Enable shortcuts"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:805
msgid "Restore default shortcut for this action"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:916
msgid "Overwrite Existing Shortcut"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:917
#, c-format
msgid ""
"The shortcut %s is already assigned to %s.\n"
"Disable the shortcut for the other action and assign here instead?"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1172
msgid "Window style"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1174
msgid "Borderless"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1174
msgid "Disable CSD"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1174
msgid "Disable CSD, hide toolbar"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1174
#: source/gx/tilix/prefeditor/prefdialog.d:1188
msgid "Normal"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1178
msgid "Window restart required"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1187
msgid "Terminal title style"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1188
#: source/gx/tilix/prefeditor/profileeditor.d:447
msgid "None"
msgstr "Bat ere ez"
#: source/gx/tilix/prefeditor/prefdialog.d:1188
msgid "Small"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1193
#: source/gx/tilix/prefeditor/prefdialog.d:1387
msgid "Tab position"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1194
#: source/gx/tilix/prefeditor/prefdialog.d:1388
#: source/gx/tilix/prefeditor/prefdialog.d:1395
msgid "Bottom"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1194
#: source/gx/tilix/prefeditor/prefdialog.d:1381
#: source/gx/tilix/prefeditor/prefdialog.d:1388
msgid "Left"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1194
#: source/gx/tilix/prefeditor/prefdialog.d:1381
#: source/gx/tilix/prefeditor/prefdialog.d:1388
msgid "Right"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1194
#: source/gx/tilix/prefeditor/prefdialog.d:1388
#: source/gx/tilix/prefeditor/prefdialog.d:1395
msgid "Top"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1200
msgid "Theme variant"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1201
msgid "Dark"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1201
msgid "Light"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1207
msgid "Background image"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1209
msgid "Select Image"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1212
msgid "All Image Files"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1233
msgid "Reset background image"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1239
#: source/gx/tilix/prefeditor/prefdialog.d:1381
msgid "Center"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1239
msgid "Scale"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1239
msgid "Stretch"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1239
msgid "Tile"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1258
msgid "Default session name"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1273
msgid "Application title"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1291
msgid "Enable transparency, requires re-start"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1297
msgid "Use a wide handle for splitters"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1302
msgid "Place the sidebar on the right"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1306
msgid "Show the terminal title even if it's the only terminal"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1311
msgid "Use overlay scrollbars (Application restart required)"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1316
msgid "Use tabs instead of sidebar (Application restart required)"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1348
msgid "Size"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1359
msgid "Height percent"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1370
msgid "Width percent"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1380
msgid "Alignment"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1394
msgid "Window position"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1403
#: source/gx/tilix/prefeditor/profileeditor.d:556
msgid "Options"
msgstr "Aukerak"
#: source/gx/tilix/prefeditor/prefdialog.d:1411
msgid "Show terminal on all workspaces"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1423
msgid "Hide window when focus is lost"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1427
msgid "Delay hiding window by (ms)"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1440
msgid "Hide the toolbar of the window"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1455
msgid "Keep window always on top"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1460
msgid "Display terminal on active monitor"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1467
msgid "Display on specific monitor"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1470
msgid "Primary Monitor"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1473
msgid "Monitor "
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1533
msgid "Behavior"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1539
msgid "Prompt when creating a new session"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1544
msgid "Focus a terminal when the mouse moves over it"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1549
msgid "Autohide the mouse pointer when typing"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1554
msgid "Close terminal by clicking middle mouse button on title"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1559
msgid "Zoom the terminal using <Control> and scroll wheel"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1564
msgid "Require the <Control> modifier to edit title on click"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1569
msgid "Close window when last session is closed"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1574
msgid "Save and restore window state"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1579
msgid "Always search using regular expressions"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1585
msgid "Send desktop notification on process complete"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1593
msgid "On new instance"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1596
msgid "Focus Window"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1596
msgid "Split Down"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1596
msgid "Split Right"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1602
#: source/gx/tilix/terminal/terminal.d:1851
msgid "Clipboard"
msgstr "Arbela"
#: source/gx/tilix/prefeditor/prefdialog.d:1608
msgid "Always use advanced paste dialog"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1613
msgid "Warn when attempting unsafe paste"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1618
msgid "Strip first character of paste if comment or variable declaration"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1623
msgid "Strip trailing whitespaces and linebreak characters on paste"
msgstr ""
#: source/gx/tilix/prefeditor/prefdialog.d:1628
msgid "Automatically copy text to clipboard when selecting"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:97
msgid "General"
msgstr "Orokorra"
#: source/gx/tilix/prefeditor/profileeditor.d:99
msgid "Color"
msgstr "Kolorea"
#: source/gx/tilix/prefeditor/profileeditor.d:100
msgid "Scrolling"
msgstr "Desplazamendua"
#: source/gx/tilix/prefeditor/profileeditor.d:101
msgid "Compatibility"
msgstr "Bateragarritasuna"
#: source/gx/tilix/prefeditor/profileeditor.d:103
#: source/gx/tilix/prefeditor/profileeditor.d:693
#: source/gx/tilix/prefeditor/profileeditor.d:1175
#: source/gx/tilix/terminal/layout.d:68
msgid "Badge"
msgstr "Txartela"
#: source/gx/tilix/prefeditor/profileeditor.d:217
msgid "Profile name"
msgstr "Profil izena"
#: source/gx/tilix/prefeditor/profileeditor.d:241
msgid "Terminal title"
msgstr "Terminalaren izenburua"
#: source/gx/tilix/prefeditor/profileeditor.d:254
msgid "Text Appearance"
msgstr "Testuaren itxura"
#: source/gx/tilix/prefeditor/profileeditor.d:262
msgid "Terminal size"
msgstr "Terminalaren tamaina"
#: source/gx/tilix/prefeditor/profileeditor.d:272
msgid "columns"
msgstr "zutabeak"
#: source/gx/tilix/prefeditor/profileeditor.d:281
msgid "rows"
msgstr "errenkadak"
#: source/gx/tilix/prefeditor/profileeditor.d:289
#: source/gx/tilix/prefeditor/profileeditor.d:328
#: source/gx/tilix/terminal/terminal.d:853
msgid "Reset"
msgstr "Berrabiarazi"
#: source/gx/tilix/prefeditor/profileeditor.d:301
msgid "Cell spacing"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:311
msgid "width"
msgstr "zabalera"
#: source/gx/tilix/prefeditor/profileeditor.d:320
msgid "height"
msgstr "altuera"
#: source/gx/tilix/prefeditor/profileeditor.d:347
msgid "Margin"
msgstr "Marjina"
#: source/gx/tilix/prefeditor/profileeditor.d:358
msgid "Text blink mode"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:361
msgid "Always"
msgstr "Beti"
#: source/gx/tilix/prefeditor/profileeditor.d:361
msgid "Focused"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:361
msgid "Never"
msgstr "Inoiz"
#: source/gx/tilix/prefeditor/profileeditor.d:361
msgid "Unfocused"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:380
#: source/gx/tilix/prefeditor/profileeditor.d:1199
msgid "Custom font"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:392
msgid "Choose A Terminal Font"
msgstr "Aukeratu letra-tipoa terminalarentzat"
#: source/gx/tilix/prefeditor/profileeditor.d:401
msgid "Word-wise select chars"
msgstr "Aukeraketa karaktereak hitz bakoitzeko"
#: source/gx/tilix/prefeditor/profileeditor.d:409
#: source/gx/tilix/prefeditor/profileeditor.d:417
#: source/gx/tilix/prefeditor/profileeditor.d:659
msgid "Cursor"
msgstr "Kurtsorea"
#: source/gx/tilix/prefeditor/profileeditor.d:420
msgid "Block"
msgstr "Blokea"
#: source/gx/tilix/prefeditor/profileeditor.d:420
msgid "IBeam"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:420
msgid "Underline"
msgstr "Azpimarraketa"
#: source/gx/tilix/prefeditor/profileeditor.d:428
msgid "Cursor blink mode"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:431
msgid "Off"
msgstr "Desgaituta"
#: source/gx/tilix/prefeditor/profileeditor.d:431
msgid "On"
msgstr "Gaituta"
#: source/gx/tilix/prefeditor/profileeditor.d:431
msgid "System"
msgstr "Sistema"
#: source/gx/tilix/prefeditor/profileeditor.d:436
msgid "Notification"
msgstr "Jakinarazpena"
#: source/gx/tilix/prefeditor/profileeditor.d:444
#: source/gx/tilix/terminal/terminal.d:422
msgid "Terminal bell"
msgstr "Terminalaren kanpaia"
#: source/gx/tilix/prefeditor/profileeditor.d:447
msgid "Icon and sound"
msgstr "Ikonoa eta soinua"
#: source/gx/tilix/prefeditor/profileeditor.d:447
msgid "Sound"
msgstr "Soinua"
#: source/gx/tilix/prefeditor/profileeditor.d:465
#, c-format
msgid "ID: %s"
msgstr "Id.: %s"
#: source/gx/tilix/prefeditor/profileeditor.d:513
msgid "Color scheme"
msgstr "Kolore eskema"
#: source/gx/tilix/prefeditor/profileeditor.d:523
#: source/gx/tilix/prefeditor/profileeditor.d:988
msgid "Custom"
msgstr "Pertsonalizatua"
#: source/gx/tilix/prefeditor/profileeditor.d:536
msgid "Export"
msgstr "Esportatu"
#: source/gx/tilix/prefeditor/profileeditor.d:548
msgid "Color palette"
msgstr "Kolore-paleta"
#: source/gx/tilix/prefeditor/profileeditor.d:570
msgid "Use theme colors for foreground/background"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:580
msgid "Show bold text in bright colors"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:592
msgid "Transparency"
msgstr "Gardentasuna"
#: source/gx/tilix/prefeditor/profileeditor.d:606
msgid "Unfocused dim"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:654
msgid "Text"
msgstr "Testua"
#: source/gx/tilix/prefeditor/profileeditor.d:655
#: source/gx/tilix/prefeditor/profileeditor.d:757
msgid "Background"
msgstr "Atzeko planoa"
#: source/gx/tilix/prefeditor/profileeditor.d:664
msgid "Select Cursor Foreground Color"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:666
msgid "Select Cursor Background Color"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:671
msgid "Highlight"
msgstr "Bereiztu"
#: source/gx/tilix/prefeditor/profileeditor.d:676
msgid "Select Highlight Foreground Color"
msgstr "Aukeratu bereizketarako aurreko kolorea"
#: source/gx/tilix/prefeditor/profileeditor.d:678
msgid "Select Highlight Background Color"
msgstr "Aukeratu bereizketarako atzeko kolorea"
#: source/gx/tilix/prefeditor/profileeditor.d:683
msgid "Bold"
msgstr "Lodia"
#: source/gx/tilix/prefeditor/profileeditor.d:688
msgid "Select Bold Color"
msgstr "Aukeratu lodiaren kolorea"
#: source/gx/tilix/prefeditor/profileeditor.d:697
msgid "Select Badge Color"
msgstr "Aukeratu txartelaren kolorea"
#: source/gx/tilix/prefeditor/profileeditor.d:746
msgid "Select Background Color"
msgstr "Aukeratu atzeko planoaren kolorea"
#: source/gx/tilix/prefeditor/profileeditor.d:762
#: source/gx/tilix/prefeditor/profileeditor.d:778
msgid "Select Foreground Color"
msgstr "Aukeratu aurreko planoaren kolorea"
#: source/gx/tilix/prefeditor/profileeditor.d:777
msgid "Foreground"
msgstr "Aurreko planoa"
#: source/gx/tilix/prefeditor/profileeditor.d:781
msgid "Black"
msgstr "Beltza"
#: source/gx/tilix/prefeditor/profileeditor.d:781
msgid "Blue"
msgstr "Urdina"
#: source/gx/tilix/prefeditor/profileeditor.d:781
msgid "Green"
msgstr "Berdea"
#: source/gx/tilix/prefeditor/profileeditor.d:781
msgid "Grey"
msgstr "Grisa"
#: source/gx/tilix/prefeditor/profileeditor.d:781
msgid "Orange"
msgstr "Laranja"
#: source/gx/tilix/prefeditor/profileeditor.d:781
msgid "Purple"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:781
msgid "Red"
msgstr "Gorria"
#: source/gx/tilix/prefeditor/profileeditor.d:781
msgid "Turquoise"
msgstr "Turkesa"
#: source/gx/tilix/prefeditor/profileeditor.d:787
#, c-format
msgid "Select %s Color"
msgstr "Aukeratu %s kolorea"
#: source/gx/tilix/prefeditor/profileeditor.d:794
#, c-format
msgid "Select %s Light Color"
msgstr "Aukeratu %s kolore argia"
#: source/gx/tilix/prefeditor/profileeditor.d:945
msgid "Export Color Scheme"
msgstr "Esportatu kolore eskema"
#: source/gx/tilix/prefeditor/profileeditor.d:1022
msgid "Show scrollbar"
msgstr "Erakutsi scroll barra"
#: source/gx/tilix/prefeditor/profileeditor.d:1026
msgid "Scroll on output"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1030
msgid "Scroll on keystroke"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1034
msgid "Limit scrollback to:"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1069
msgid "Backspace key generates"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1072
#: source/gx/tilix/prefeditor/profileeditor.d:1081
msgid "ASCII DEL"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1072
#: source/gx/tilix/prefeditor/profileeditor.d:1081
msgid "Automatic"
msgstr "Automatikoa"
#: source/gx/tilix/prefeditor/profileeditor.d:1072
#: source/gx/tilix/prefeditor/profileeditor.d:1081
msgid "Control-H"
msgstr "Kontrol-H"
#: source/gx/tilix/prefeditor/profileeditor.d:1072
#: source/gx/tilix/prefeditor/profileeditor.d:1081
msgid "Escape sequence"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1072
#: source/gx/tilix/prefeditor/profileeditor.d:1081
msgid "TTY"
msgstr "TTY"
#: source/gx/tilix/prefeditor/profileeditor.d:1078
msgid "Delete key generates"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1102
msgid "Ambiguous-width characters"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1105
msgid "Narrow"
msgstr "Estuak"
#: source/gx/tilix/prefeditor/profileeditor.d:1105
msgid "Wide"
msgstr "Zabalak"
#: source/gx/tilix/prefeditor/profileeditor.d:1126
msgid "Run command as a login shell"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1130
msgid "Run a custom command instead of my shell"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1147
msgid "When command exits"
msgstr "Agindua amaitzen denean"
#: source/gx/tilix/prefeditor/profileeditor.d:1149
msgid "Exit the terminal"
msgstr "Irten terminaletik"
#: source/gx/tilix/prefeditor/profileeditor.d:1149
msgid "Hold the terminal open"
msgstr "Mantendu terminala irekita"
#: source/gx/tilix/prefeditor/profileeditor.d:1149
msgid "Restart the command"
msgstr "Berrabiarazi agindua"
#: source/gx/tilix/prefeditor/profileeditor.d:1189
msgid "Badge position"
msgstr "Txartelaren posizioa"
#: source/gx/tilix/prefeditor/profileeditor.d:1193
msgid "Northeast"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1193
msgid "Northwest"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1193
msgid "Southeast"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1193
msgid "Southwest"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1211
msgid "Choose A Badge Font"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1249
msgid "Notify New Activity"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1256
msgid ""
"A notification can be raised when new activity occurs after a specified "
"period of silence."
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1269
msgid "Automatic Profile Switching"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1278
msgid ""
"Profiles are automatically selected based on the values entered here.\n"
"Values are entered using a <i>username@hostname:directory</i> format. Either "
"the hostname or directory can be omitted but the colon must be present. "
"Entries with neither hostname or directory are not permitted."
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1280
msgid ""
"Profiles are automatically selected based on the values entered here.\n"
"Values are entered using a <i>hostname:directory</i> format. Either the "
"hostname or directory can be omitted but the colon must be present. Entries "
"with neither hostname or directory are not permitted."
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1292
msgid "Match"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1307
msgid "Enter username@hostname:directory to match"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1309
msgid "Enter hostname:directory to match"
msgstr "Sartu parekatzeko ostalaria:direktorioa"
#: source/gx/tilix/prefeditor/profileeditor.d:1311
msgid "Add New Match"
msgstr "Gehitu parekatze berria"
#: source/gx/tilix/prefeditor/profileeditor.d:1328
msgid "Edit username@hostname:directory to match"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1330
msgid "Edit hostname:directory to match"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1332
msgid "Edit Match"
msgstr "Editatu parekatzea"
#: source/gx/tilix/prefeditor/profileeditor.d:1363
msgid "Enable by default"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1372
msgid "Threshold for continuous silence"
msgstr ""
#: source/gx/tilix/prefeditor/profileeditor.d:1381
msgid "(seconds)"
msgstr ""
#: source/gx/tilix/prefeditor/titleeditor.d:105
#: source/gx/tilix/terminal/terminal.d:348
#: source/gx/tilix/terminal/terminal.d:1309
msgid "Terminal"
msgstr "Terminala"
#: source/gx/tilix/prefeditor/titleeditor.d:110
msgid "Session"
msgstr ""
#: source/gx/tilix/prefeditor/titleeditor.d:116
msgid "Window"
msgstr ""
#: source/gx/tilix/prefeditor/titleeditor.d:126
#: source/gx/tilix/prefeditor/titleeditor.d:127
msgid "Help"
msgstr ""
#: source/gx/tilix/preferences.d:256
msgid "UpdateState"
msgstr ""
#: source/gx/tilix/preferences.d:257
msgid "ExecuteCommand"
msgstr ""
#: source/gx/tilix/preferences.d:258
msgid "SendNotification"
msgstr ""
#: source/gx/tilix/preferences.d:259
msgid "UpdateTitle"
msgstr ""
#: source/gx/tilix/preferences.d:260
msgid "PlayBell"
msgstr ""
#: source/gx/tilix/preferences.d:261
msgid "SendText"
msgstr ""
#: source/gx/tilix/preferences.d:262
msgid "InsertPassword"
msgstr ""
#: source/gx/tilix/preferences.d:263
msgid "UpdateBadge"
msgstr ""
#: source/gx/tilix/preferences.d:264
msgid "RunProcess"
msgstr ""
#: source/gx/tilix/preferences.d:374
#, c-format
msgid "%s (Copy)"
msgstr ""
#: source/gx/tilix/session.d:568
msgid "Could not locate dropped terminal"
msgstr ""
#: source/gx/tilix/session.d:573
msgid "Could not locate session for dropped terminal"
msgstr ""
#: source/gx/tilix/sidebar.d:546 source/gx/tilix/terminal/terminal.d:383
#: source/gx/tilix/terminal/terminal.d:1861
msgid "Close"
msgstr "Itxi"
#: source/gx/tilix/terminal/advpaste.d:33
msgid "This command is asking for Administrative access to your computer"
msgstr ""
"Agindu hau zure ordenagailuari administrazio baimenak eskatzen ari zaizkio"
#: source/gx/tilix/terminal/advpaste.d:34
msgid "Copying commands from the internet can be dangerous. "
msgstr "Komandoak internetetik kopiatzea arriskutsua izan daiteke. "
#: source/gx/tilix/terminal/advpaste.d:35
msgid "Be sure you understand what each part of this command does."
msgstr "Ziurtatu komandoaren zati bakoitzak zer egiten duen ulertzen duzula."
#: source/gx/tilix/terminal/advpaste.d:96
msgid "Transform"
msgstr "Eraldatu"
#: source/gx/tilix/terminal/advpaste.d:104
msgid "Convert spaces to tabs"
msgstr ""
#: source/gx/tilix/terminal/advpaste.d:115
msgid "Convert CRLF and CR to LF"
msgstr "CRLF eta CR LF-ra aldatu"
#: source/gx/tilix/terminal/advpaste.d:137
msgid "Advanced Paste"
msgstr "Itsaspen aurreratua"
#: source/gx/tilix/terminal/advpaste.d:137
#: source/gx/tilix/terminal/terminal.d:1825
#: source/gx/tilix/terminal/terminal.d:1843
msgid "Paste"
msgstr "Itsatsi"
#: source/gx/tilix/terminal/layout.d:33
msgid "Layout Options"
msgstr "Diseinu aukerak"
#: source/gx/tilix/terminal/layout.d:48
msgid "Active"
msgstr "Aktibatu"
#: source/gx/tilix/terminal/layout.d:82
msgid "Session Load"
msgstr "Kargatu sesioa"
#: source/gx/tilix/terminal/layout.d:98
msgid ""
"Active options are always in effect and apply immediately.\n"
"Session Load options only apply when loading a session file."
msgstr ""
#: source/gx/tilix/terminal/monitor.d:112
msgid "Process monitoring is not enabled, this should never be called"
msgstr ""
"Prozesu monitorizazioa ez dago gaituta, hau ez litzateke inoiz deitu beharko"
#: source/gx/tilix/terminal/password.d:161
msgid "New"
msgstr "Berria"
#: source/gx/tilix/terminal/password.d:235
msgid "Include return character with password"
msgstr "Gehitu enter karakterea pasahitzarekin"
#: source/gx/tilix/terminal/password.d:371
msgid "Insert Password"
msgstr "Sartu pasahitza"
#: source/gx/tilix/terminal/password.d:441
msgid "Password"
msgstr "Pasahitza"
#: source/gx/tilix/terminal/password.d:451
msgid "Confirm Password"
msgstr "Egiaztatu pasahitza"
#: source/gx/tilix/terminal/password.d:499
msgid "Add Password"
msgstr "Gehitu pasahitza"
#: source/gx/tilix/terminal/password.d:504
msgid "Edit Password"
msgstr "Editatu pasahitza"
#: source/gx/tilix/terminal/search.d:128
msgid "Search Options"
msgstr "Bilaketa aukerak"
#: source/gx/tilix/terminal/search.d:141
msgid "Find next"
msgstr "Bilatu hurrengoa"
#: source/gx/tilix/terminal/search.d:147
msgid "Find previous"
msgstr "Bilatu aurrekoa"
#: source/gx/tilix/terminal/search.d:155
#, fuzzy
msgid "Close search box"
msgstr "Itxi saioa"
#: source/gx/tilix/terminal/search.d:205
msgid "Match case"
msgstr ""
#: source/gx/tilix/terminal/search.d:206
msgid "Match entire word only"
msgstr "Hitz osoarekin soilik bat egin"
#: source/gx/tilix/terminal/search.d:207
msgid "Wrap around"
msgstr "Hasierara bueltatu"
#: source/gx/tilix/terminal/search.d:208
msgid "Match as regular expression"
msgstr ""
#: source/gx/tilix/terminal/search.d:243
#, c-format
msgid ""
"Search '%s' is not a valid regex\n"
"%s"
msgstr ""
#: source/gx/tilix/terminal/terminal.d:391
#: source/gx/tilix/terminal/terminal.d:1349
#: source/gx/tilix/terminal/terminal.d:1860
msgid "Maximize"
msgstr "Maximizatu"
#: source/gx/tilix/terminal/terminal.d:401
#: source/gx/tilix/terminal/terminal.d:692
msgid "Disable input synchronization for this terminal"
msgstr "Desgaitu sarbide sinkronizazioa terminal honetan"
#: source/gx/tilix/terminal/terminal.d:410
#: source/gx/tilix/terminal/terminal.d:829
msgid "Read-Only"
msgstr "Irakurtzeko soilik"
#: source/gx/tilix/terminal/terminal.d:416
msgid "New output"
msgstr "Irteera berria"
#: source/gx/tilix/terminal/terminal.d:467
msgid "Edit Profile"
msgstr "Editatu profila"
#: source/gx/tilix/terminal/terminal.d:485
msgid "Edit Encodings"
msgstr "Editatu kodeketa"
#: source/gx/tilix/terminal/terminal.d:694
msgid "Enable input synchronization for this terminal"
msgstr "Gaitu sarrera sinkronizazioa terminal honentzat"
#: source/gx/tilix/terminal/terminal.d:729
msgid "Library Not Loaded"
msgstr "Liburutegia ez da kargatu"
#: source/gx/tilix/terminal/terminal.d:729
#, c-format
msgid ""
"The library %s could not be loaded, password functionality is unavailable."
msgstr ""
#: source/gx/tilix/terminal/terminal.d:828
msgid "Find…"
msgstr "Bilatu…"
#: source/gx/tilix/terminal/terminal.d:835
msgid "Password..."
msgstr "Pasahitza..."
#: source/gx/tilix/terminal/terminal.d:836
msgid "Bookmark..."
msgstr "Laster-marka..."
#: source/gx/tilix/terminal/terminal.d:837
msgid "Add Bookmark..."
msgstr "Gehitu laster-marka..."
#: source/gx/tilix/terminal/terminal.d:841
msgid "Assistants"
msgstr "Morroiak"
#: source/gx/tilix/terminal/terminal.d:848
msgid "Show File Browser..."
msgstr "Erakutsi fitxategi kudeatzailea..."
#: source/gx/tilix/terminal/terminal.d:852
msgid "Save Output…"
msgstr "Gorde irteera…"
#: source/gx/tilix/terminal/terminal.d:854
msgid "Reset and Clear"
msgstr "Berrabiarazi eta garbitu"
#: source/gx/tilix/terminal/terminal.d:859
msgid "Layout Options…"
msgstr "Diseinu aukerak…"
#: source/gx/tilix/terminal/terminal.d:863
msgid "Monitor Silence"
msgstr ""
#: source/gx/tilix/terminal/terminal.d:866
msgid "Other"
msgstr "Besteak"
#: source/gx/tilix/terminal/terminal.d:875
msgid "Add Right"
msgstr "Gehitu eskuinera"
#: source/gx/tilix/terminal/terminal.d:879
msgid "Add Down"
msgstr "Gehitu behean"
#: source/gx/tilix/terminal/terminal.d:989
msgid "Terminal Activity"
msgstr "Terminalaren aktibitatea"
#: source/gx/tilix/terminal/terminal.d:1325
msgid "Not Enabled"
msgstr "Ez dago gaituta"
#: source/gx/tilix/terminal/terminal.d:1346
#: source/gx/tilix/terminal/terminal.d:1860
msgid "Restore"
msgstr "Berrezarri"
#: source/gx/tilix/terminal/terminal.d:1709
msgid "Tilix Custom Notification"
msgstr "Tilix jakinarazpen pertsonalizatua"
#: source/gx/tilix/terminal/terminal.d:1810
msgid "Open Link"
msgstr "Ireki esteka"
#: source/gx/tilix/terminal/terminal.d:1811
msgid "Copy Link Address"
msgstr "Kopiatu estekaren helbidea"
#: source/gx/tilix/terminal/terminal.d:1821
#: source/gx/tilix/terminal/terminal.d:1831
msgid "Copy"
msgstr "Kopiatu"
#: source/gx/tilix/terminal/terminal.d:1823
#: source/gx/tilix/terminal/terminal.d:1837
msgid "Copy as HTML"
msgstr "Kopiatu HTML bezala"
#: source/gx/tilix/terminal/terminal.d:1826
#: source/gx/tilix/terminal/terminal.d:1848
msgid "Select All"
msgstr "Aukeratu guztia"
#: source/gx/tilix/terminal/terminal.d:1865
msgid "Synchronize input"
msgstr "Sinkronizatu sarrera"
#: source/gx/tilix/terminal/terminal.d:2018
#, c-format
msgid "Could not check file '%s' due to error '%s'"
msgstr ""
#: source/gx/tilix/terminal/terminal.d:2025
#, c-format
msgid ""
"Remote file URIs are not supported with hyperlinks.\n"
"URI was '%s'"
msgstr ""
#: source/gx/tilix/terminal/terminal.d:2026
msgid "Remote File URI Unsupported"
msgstr "Urruneko fitxategiaren URIa ez da bateragarria"
#: source/gx/tilix/terminal/terminal.d:2059
#: source/gx/tilix/terminal/terminal.d:2613
#, c-format
msgid "Custom link regex '%s' has an error, ignoring"
msgstr ""
#: source/gx/tilix/terminal/terminal.d:2060
msgid "Regular Expression Error"
msgstr "Errorea adierazpen erregularrean"
#: source/gx/tilix/terminal/terminal.d:2073
#, c-format
msgid "Could not open match '%s'"
msgstr ""
#: source/gx/tilix/terminal/terminal.d:2074
msgid "Error Opening Match"
msgstr ""
#: source/gx/tilix/terminal/terminal.d:2573
#, c-format
msgid "Unexpected error occurred when adding link regex: %s"
msgstr ""
#: source/gx/tilix/terminal/terminal.d:2773
msgid "Unexpected error occurred, no additional information available"
msgstr ""
#: source/gx/tilix/terminal/terminal.d:2783
#, c-format
msgid "Unexpected error occurred: %s"
msgstr "Ezusteko errorea gertatu da: %s"
#: source/gx/tilix/terminal/terminal.d:3662
msgid "Save Terminal Output"
msgstr "Gorde terminalaren irteera"
#: source/gx/tilix/terminal/terminal.d:3671
msgid "All Text Files"
msgstr "Testu fitxategi guztiak"
#: source/gx/tilix/terminal/terminal.d:4001
msgid "Unknown"
msgstr "Ezezaguna"
#: source/gx/tilix/terminal/terminal.d:4265
#, c-format
msgid "The child process exited normally with status %d"
msgstr ""
#: source/gx/tilix/terminal/terminal.d:4266
#, c-format
msgid "The child process was aborted by signal %d."
msgstr ""
#: source/gx/tilix/terminal/terminal.d:4267
msgid "The child process was aborted."
msgstr ""
#: source/gx/tilix/terminal/terminal.d:4273
msgid "Relaunch"
msgstr "Berrabiarazi"
#: source/gx/tilix/terminal/terminal.d:4340
msgid "Don't Paste"
msgstr "Ez itsatsi"
#: source/gx/tilix/terminal/terminal.d:4341
msgid "Paste Anyway"
msgstr "Edonola itsatsi"
#~ msgid "Gerald Nunn"
#~ msgstr "Gerald Nunn"
#~ msgid "com.gexperts.Tilix"
#~ msgstr "com.gexperts.Tilix"
|