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
|
# Chinese translations for x package.
# Copyright (C) 2019 THE x'S COPYRIGHT HOLDER
# This file is distributed under the same license as the x package.
# Automatically generated, 2019.
#
msgid ""
msgstr ""
"Project-Id-Version: PyHoca-GUI VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-07-23 21:59+0200\n"
"PO-Revision-Date: 2019-02-04 13:56+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: zh_HK\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../pyhoca/wxgui/brokerlogon.py:55
msgid "Logon"
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:58
msgid "Broker URL"
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:61 ../pyhoca/wxgui/logon.py:88
#: ../pyhoca/wxgui/logon.py:100
msgid "Username"
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:64 ../pyhoca/wxgui/logon.py:90
#: ../pyhoca/wxgui/logon.py:102
msgid "Password"
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:85 ../pyhoca/wxgui/logon.py:93
msgid "Authenticate"
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:87 ../pyhoca/wxgui/logon.py:125
#: ../pyhoca/wxgui/passphrase.py:94 ../pyhoca/wxgui/profilemanager.py:398
#: ../pyhoca/wxgui/listdesktops.py:84 ../pyhoca/wxgui/messages.py:134
#: ../pyhoca/wxgui/printingprefs.py:149 ../pyhoca/wxgui/sessiontitle.py:72
msgid "Cancel"
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:166
#, python-format
msgid "%s - success"
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:166
msgid ""
"Authentication to session broker has been\n"
"successful."
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:168
#, python-format
msgid "%s - failure"
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:168
msgid "Authentication to session broker failed."
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:172
#, python-format
msgid "%s: Connection refused error"
msgstr ""
#: ../pyhoca/wxgui/brokerlogon.py:172
#, python-format
msgid "Connection to %s failed. Retry?"
msgstr ""
#: ../pyhoca/wxgui/logon.py:82
#, python-format
msgid "%s (via %s)"
msgstr ""
#: ../pyhoca/wxgui/logon.py:105
msgid "Start SSH tunnel"
msgstr ""
#: ../pyhoca/wxgui/logon.py:113
msgid "Session login"
msgstr ""
#: ../pyhoca/wxgui/logon.py:114
msgid "SSH proxy server login"
msgstr ""
#: ../pyhoca/wxgui/logon.py:297 ../pyhoca/wxgui/logon.py:350
#: ../pyhoca/wxgui/passphrase.py:217 ../pyhoca/wxgui/passphrase.py:224
#: ../pyhoca/wxgui/passphrase.py:231 ../pyhoca/wxgui/passphrase.py:238
#: ../pyhoca/wxgui/frontend.py:643
#, python-format
msgid "%s - connect failure"
msgstr ""
#: ../pyhoca/wxgui/logon.py:298 ../pyhoca/wxgui/frontend.py:643
msgid "User is not allowed to start X2Go sessions!"
msgstr ""
#: ../pyhoca/wxgui/logon.py:303 ../pyhoca/wxgui/passphrase.py:199
#: ../pyhoca/wxgui/frontend.py:650
#, python-format
msgid "%s - connect"
msgstr ""
#: ../pyhoca/wxgui/logon.py:304 ../pyhoca/wxgui/passphrase.py:200
msgid "Authentication has been successful."
msgstr ""
#: ../pyhoca/wxgui/logon.py:346 ../pyhoca/wxgui/logon.py:446
msgid "SSH tunnel started"
msgstr ""
#: ../pyhoca/wxgui/logon.py:351 ../pyhoca/wxgui/passphrase.py:232
msgid "Authentication failed!"
msgstr ""
#: ../pyhoca/wxgui/logon.py:359
#, python-format
msgid "%s - SSH proxy"
msgstr ""
#: ../pyhoca/wxgui/logon.py:360 ../pyhoca/wxgui/passphrase.py:239
msgid "Authentication to the SSH proxy server failed!"
msgstr ""
#: ../pyhoca/wxgui/logon.py:387 ../pyhoca/wxgui/passphrase.py:245
#: ../pyhoca/wxgui/frontend.py:755
#, python-format
msgid "%s - socket error"
msgstr ""
#: ../pyhoca/wxgui/logon.py:394 ../pyhoca/wxgui/passphrase.py:252
#: ../pyhoca/wxgui/frontend.py:734 ../pyhoca/wxgui/frontend.py:741
#, python-format
msgid "%s - host key error"
msgstr ""
#: ../pyhoca/wxgui/logon.py:395 ../pyhoca/wxgui/passphrase.py:253
#: ../pyhoca/wxgui/frontend.py:734
msgid ""
"The remote server's host key is invalid or has not been accepted by the user"
msgstr ""
#: ../pyhoca/wxgui/logon.py:402 ../pyhoca/wxgui/passphrase.py:260
#: ../pyhoca/wxgui/frontend.py:769
#, python-format
msgid "%s - missing home directory"
msgstr ""
#: ../pyhoca/wxgui/logon.py:403 ../pyhoca/wxgui/passphrase.py:261
#: ../pyhoca/wxgui/frontend.py:769
msgid "The remote user's home directory does not exist."
msgstr ""
#: ../pyhoca/wxgui/logon.py:410 ../pyhoca/wxgui/passphrase.py:283
#, python-format
msgid "%s - key error"
msgstr ""
#: ../pyhoca/wxgui/logon.py:418 ../pyhoca/wxgui/passphrase.py:291
#: ../pyhoca/wxgui/frontend.py:776
#, python-format
msgid "%s - auth error"
msgstr ""
#: ../pyhoca/wxgui/logon.py:450 ../pyhoca/wxgui/passphrase.py:279
#: ../pyhoca/wxgui/passphrase.py:310 ../pyhoca/wxgui/frontend.py:704
msgid ""
"Host key verification failed. The X2Go server may have been compromised.\n"
"\n"
"It is also possible that the host key has just been changed.\n"
"\n"
"However, for security reasons the connection will not be established!!!"
msgstr ""
#: ../pyhoca/wxgui/logon.py:455 ../pyhoca/wxgui/passphrase.py:315
#: ../pyhoca/wxgui/frontend.py:712 ../pyhoca/wxgui/frontend.py:732
#, python-format
msgid "%s - SSH error"
msgstr ""
#: ../pyhoca/wxgui/logon.py:465 ../pyhoca/wxgui/passphrase.py:323
#, python-format
msgid "%s - unknown error"
msgstr ""
#: ../pyhoca/wxgui/logon.py:466 ../pyhoca/wxgui/passphrase.py:324
msgid "An unknown error occured during authentication!"
msgstr ""
#: ../pyhoca/wxgui/passphrase.py:70
#, python-format
msgid "%s (SSH proxy)"
msgstr ""
#: ../pyhoca/wxgui/passphrase.py:72
#, python-format
msgid "%s (X2Go Server)"
msgstr ""
#: ../pyhoca/wxgui/passphrase.py:82
#, python-format
msgid "Unlock SSH private key (%s)..."
msgstr ""
#: ../pyhoca/wxgui/passphrase.py:84
msgid "Unlock auto-discovered SSH private key..."
msgstr ""
#: ../pyhoca/wxgui/passphrase.py:86
msgid "Passphrase"
msgstr ""
#: ../pyhoca/wxgui/passphrase.py:89
msgid "Unlock SSH key"
msgstr ""
#: ../pyhoca/wxgui/passphrase.py:218
msgid "SSH key file (for X2Go server) could not be unlocked!"
msgstr ""
#: ../pyhoca/wxgui/passphrase.py:225
msgid "SSH key file (for SSH proxy) could not be unlocked!"
msgstr ""
#: ../pyhoca/wxgui/taskbar.py:119
#, python-format
msgid ""
"%s\n"
"Connecting you to ,,%s''"
msgstr ""
#: ../pyhoca/wxgui/taskbar.py:123
#, python-format
msgid ""
"%s\n"
"Currently connecting you to remote X2Go server ,,%s''"
msgstr ""
#: ../pyhoca/wxgui/taskbar.py:133
#, python-format
msgid ""
"%s\n"
"Connecting you to X2Go..."
msgstr ""
#: ../pyhoca/wxgui/taskbar.py:137
#, python-format
msgid ""
"%s\n"
"Client for connecting you to a remote X2Go server"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:82
msgid "Cinnamon Desktop (CINNAMON)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:83
msgid "GNOME Desktop (GNOME)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:84
msgid "MATE Desktop (MATE)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:85
msgid "K Desktop Environment (KDE)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:86
msgid "Lightweight X Desktop (LXDE, based on GTK-2)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:87
msgid "Lightweight X Desktop (LXQt, based on Qt5)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:88
msgid "IceWM Desktop"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:89
msgid "Trinity X Desktop (KDE3-like)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:90
msgid "Unity X Desktop Shell (UNITY)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:91
msgid "XFCE Desktop (XFCE)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:92
msgid "Published Applications"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:93
msgid "Single Application"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:94
msgid "X2Go/X11 Desktop Sharing (SHADOW)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:95
msgid "XDMCP Query"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:96
msgid "Windows Terminal Server (X2Go-proxied RDP)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:97
msgid "Windows Terminal Server (Direct RDP)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:98 ../pyhoca/wxgui/profilemanager.py:267
msgid "Custom command"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:103 ../pyhoca/wxgui/menus_taskbar.py:414
msgid "Internet Browser"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:104 ../pyhoca/wxgui/menus_taskbar.py:415
msgid "Email Client"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:105 ../pyhoca/wxgui/menus_taskbar.py:416
msgid "Office"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:106 ../pyhoca/wxgui/menus_taskbar.py:417
msgid "Terminal"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:109
msgid "between client and server"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:110
msgid "from server to client only"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:111
msgid "from client to server only"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:112
msgid "not at all"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:130
msgid "Open file with system's default application"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:131
msgid "Open application chooser dialog"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:132
msgid "Save incoming file as ..."
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:160
msgid "settings derived from "
msgstr ""
#. boxes for all tabs
#: ../pyhoca/wxgui/profilemanager.py:208
msgid "Session Title"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:209
msgid "Session Window"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:210
msgid "Session Startup"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:211
msgid "Server"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:212
msgid "Proxy"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:213
msgid "Connection Link Speed"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:214
msgid "Compression"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:215
msgid "Display"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:216
msgid "Clipboard"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:217
msgid "Keyboard"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:218
msgid "Sound"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:219
msgid "Printing"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:220
msgid "Folder Exports"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:221
msgid "File Import"
msgstr ""
#. ##
#. ## widgets for the PROFILE tab
#. ##
#: ../pyhoca/wxgui/profilemanager.py:226
msgid "Name"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:233
msgid "Set session window title"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:234
msgid "Use a default session window title"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:235
msgid "Custom session window title"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:254
msgid "Window Icon"
msgstr ""
#. ##
#. ## widgets for the SESSION tab
#. ##
#: ../pyhoca/wxgui/profilemanager.py:260
msgid "Start session automatically after login"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:261
#, python-format
msgid "Login automatically after %s has started (needs --auto-connect)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:262
msgid "Type"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:264
msgid "Use X2Go KDrive graphical backend (experimental)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:265
msgid "Application"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:269
msgid "XDMCP server"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:271
msgid "RDP server"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:273
msgid "RDP options"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:275
msgid "Integrate remote application(s) into local desktop (rootless mode)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:276
msgid "Menu of published applications"
msgstr ""
#. ##
#. ## widgets for the CONNECTION tab
#. ##
#: ../pyhoca/wxgui/profilemanager.py:283 ../pyhoca/wxgui/profilemanager.py:297
msgid "User"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:285 ../pyhoca/wxgui/profilemanager.py:304
msgid "Host"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:287 ../pyhoca/wxgui/profilemanager.py:306
msgid "Port"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:289
msgid "Key"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:292
msgid "Discover SSH keys or use SSH agent for X2Go authentication"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:294
msgid "Enable forwarding of SSH authentication agent connections"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:295
msgid "Store SSH host keys under (unique) X2Go session profile ID"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:296
msgid "Server behind SSH proxy"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:299
msgid "Use same username for X2Go and proxy host"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:300
msgid "Use same authentication for X2Go and proxy host"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:301
msgid "Key file"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:308
msgid "Discover SSH keys or use SSH agent for proxy authentication"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:311
msgid "Modem"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:312
msgid "ISDN"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:313
msgid "ADSL"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:314
msgid "WAN"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:315
msgid "LAN"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:317
msgid "Method"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:319
msgid "Image quality"
msgstr ""
#. ##
#. ## wigdets for the IO tab
#. ##
#: ../pyhoca/wxgui/profilemanager.py:325
msgid "Fullscreen"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:326
msgid "Maximized"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:327
msgid "Custom Size"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:332
msgid "Set display DPI"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:334
msgid "Xinerama extension (support for two or more physical displays)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:335
msgid "Allow copy'n'paste"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:337
msgid "Do not set (use server-side tools to configure the keyboard)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:338
msgid ""
"Automatically detect and use client-side keyboard configuration inside the "
"session"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:339
msgid "Use custom keyboard settings as provided below"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:340
msgid "Keyboard model"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:342
msgid "Layout"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:344
msgid "Layout variant"
msgstr ""
#. ##
#. ## wigdets for the MEDIA tab
#. ##
#: ../pyhoca/wxgui/profilemanager.py:349
msgid "Enable sound support"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:350
msgid "Pulse Audio"
msgstr ""
#. Arts daemon is not supported by PyHoca-GUI / Python X2Go as it is outdated.
#. However, config files can contain an Arts configuration, so we will honour this
#: ../pyhoca/wxgui/profilemanager.py:354
msgid "Arts (not supported)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:357
msgid "esd"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:358
msgid "Use default sound port"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:359
msgid "Custom sound port"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:362
msgid "Client Side printing"
msgstr ""
#. ##
#. ## wigdets for the SHARING tab
#. ##
#: ../pyhoca/wxgui/profilemanager.py:368
msgid "Use local folder sharing"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:369
msgid "Store share list at end of session"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:370
msgid "Path"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:373 ../pyhoca/wxgui/profilemanager.py:392
msgid "Add"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:375
msgid "Local Path"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:376
msgid "Connect Method"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:377
msgid "Delete"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:379
msgid "Convert between client and server encodings"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:380
msgid "Client encoding"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:382
msgid "Server encoding"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:385
msgid "Use file MIME box for local file import"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:386
msgid "Extensions"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:388
msgid "Action"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:393
msgid "Defaults"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:395
msgid "Save"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:396
msgid "Reset"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:397 ../pyhoca/wxgui/printingprefs.py:145
msgid "Apply"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:458 ../pyhoca/wxgui/profilemanager.py:1217
#: ../pyhoca/wxgui/profilemanager.py:2419
msgid "automatically"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:460 ../pyhoca/wxgui/profilemanager.py:1219
msgid "manually"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:469
#, python-format
msgid "%s Profile Manager - new profile"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:472
#, python-format
msgid "%s Profile Manager - %s (connected)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:474
#, python-format
msgid "%s Profile Manager - %s (connected, immutable)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:477
#, python-format
msgid "%s Profile Manager - %s"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:479
#, python-format
msgid "%s Profile Manager - %s (immutable)"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:866
msgid "Profile"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:867
msgid "Session"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:868
msgid "Connection"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:869
msgid "Link Quality"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:870
msgid "Input/Output"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:871
msgid "Media"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:872
msgid "Sharing"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:1069
msgid "<xkbtype>"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:1070
msgid "<xkblayout>"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:1071
msgid "<xkbvariant>"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:1540
msgid "Icon Files (*.png)|*.png|All files (*.*)|*"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:1543
msgid "Choose an icon for this session profile"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:2011
msgid "All files (*.*)|*"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:2013
#: ../pyhoca/wxgui/profilemanager.py:2037
msgid "Choose a public SSH key"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:2371
msgid "Choose a folder to share within a session"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:2499
#: ../pyhoca/wxgui/profilemanager.py:2502
#: ../pyhoca/wxgui/profilemanager.py:2505 ../pyhoca/wxgui/menus_taskbar.py:123
msgid "Profile Manager"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:2499
msgid "Profile name is missing, profile unusable!!!"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:2502
#: ../pyhoca/wxgui/profilemanager.py:2505
#, python-format
msgid "Profile name %s already exists!!!"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:2533
#, python-format
msgid "%s - profile added"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:2534
msgid "A new session profile has been added."
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:2538
#, python-format
msgid "%s - modified"
msgstr ""
#: ../pyhoca/wxgui/profilemanager.py:2539
msgid "Changes to profile have been saved."
msgstr ""
#: ../pyhoca/wxgui/listdesktops.py:67
#, python-format
msgid "Share Desktop Session - %s"
msgstr ""
#: ../pyhoca/wxgui/listdesktops.py:69
msgid "Select one of the available desktop sessions on this server"
msgstr ""
#: ../pyhoca/wxgui/listdesktops.py:75
msgid "View session only"
msgstr ""
#: ../pyhoca/wxgui/listdesktops.py:76
msgid "Gain full access"
msgstr ""
#: ../pyhoca/wxgui/listdesktops.py:80
msgid "Share Desktop"
msgstr ""
#: ../pyhoca/wxgui/listdesktops.py:83
msgid "Refresh list"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:66
msgid "Edit Profile"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:68
msgid "View Profile"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:76
msgid "Use as Template for New Profile"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:80
msgid "Export Profile"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:84
msgid "Delete Profile"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:110 ../pyhoca/wxgui/menus_taskbar.py:111
#, python-format
msgid "About %s (%s)..."
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:140
msgid "Manage Session Profile"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:149
msgid "Disconnect from session broker"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:154
msgid "Printing Preferences"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:162
msgid "Client Options"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:170 ../pyhoca/wxgui/menus_taskbar.py:858
#: ../pyhoca/wxgui/menus_taskbar.py:1079
msgid "E&xit"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:242
msgid "Window title"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:248 ../pyhoca/wxgui/menus_taskbar.py:658
msgid "Resume Session"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:250
msgid "Resume Session (not possible)"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:261
msgid "Transfer Session"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:263
msgid "Transfer Session (not possible)"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:268 ../pyhoca/wxgui/menus_taskbar.py:649
msgid "Suspend Session (and disconnect/exit)"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:270 ../pyhoca/wxgui/menus_taskbar.py:651
msgid "Suspend Session (and disconnect)"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:272 ../pyhoca/wxgui/menus_taskbar.py:653
msgid "Suspend Session"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:278 ../pyhoca/wxgui/menus_taskbar.py:662
msgid "Terminate Session (and disconnect/exit)"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:280 ../pyhoca/wxgui/menus_taskbar.py:664
msgid "Terminate Session (and disconnect)"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:282 ../pyhoca/wxgui/menus_taskbar.py:666
msgid "Terminate Session"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:285
msgid "End Desktop Sharing (and disconnect/exit)"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:287
msgid "End Desktop Sharing (and disconnect)"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:289
msgid "End Desktop Sharing"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:293 ../pyhoca/wxgui/menus_taskbar.py:646
msgid "Refresh menu tree"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:302
msgid "Rename Session Window"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:303
msgid "Show Session Window"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:345
msgid "&Share custom local folder"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:357
msgid "Share:"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:367
msgid "Unshare:"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:375
msgid "Unshare &all local folders"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:381
msgid "Restore shares in next session"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:462
msgid "Multimedia"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:463
msgid "Development"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:464
msgid "Education"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:465
msgid "Games"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:466
msgid "Graphics"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:467
msgid "Internet"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:468
msgid "Office Applications"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:469
msgid "System"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:470
msgid "Utilities"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:471
msgid "Other Applications"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:554 ../pyhoca/wxgui/menus_taskbar.py:1044
msgid "Connect to"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:559 ../pyhoca/wxgui/menus_taskbar.py:574
#, python-format
msgid "Connect %s"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:568
msgid "Currently connecting..."
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:583
msgid "Start &new Desktop Session"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:587 ../pyhoca/wxgui/menus_taskbar.py:687
msgid "Start Desktop Sharing Session"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:593 ../pyhoca/wxgui/menus_taskbar.py:737
msgid "Retrieving Application Menu..."
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:597 ../pyhoca/wxgui/menus_taskbar.py:740
msgid "Retrieve Application Menu"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:600
msgid "Start &new RDP Session"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:603
msgid "Start &new Session"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:683
msgid "Launch Single Application"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:724
msgid "Manage Application Menu"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:779
msgid "Running"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:781
msgid "Suspended"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:800
msgid "&Clean all sessions"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:807
msgid "Customize &profile"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:809
msgid "View &profile"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:824
msgid "Shared &folders"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:836
msgid "Server Information"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:843
msgid "&Disconnect from Server"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:850
msgid "Suspend Session and E&xit application"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:854
msgid "Disconnect and E&xit application"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:908
msgid "Add Profile"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:985
msgid "Session broker is not connected"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:987
msgid "No session profiles defined"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:998
msgid "Export all Profiles"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:1000
msgid "Export Profile Group"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:1006
msgid "Import Session Profiles"
msgstr ""
#: ../pyhoca/wxgui/menus_taskbar.py:1049
msgid "Connect Server"
msgstr ""
#: ../pyhoca/wxgui/about.py:79 ../pyhoca/wxgui/about.py:81
#, python-format
msgid "About %s ..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:494
msgid "Suspending sessions and exiting application..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:497
#, python-format
msgid "Disconnecting %s and exiting application..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:499
msgid "Exiting application..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:599
#, python-format
msgid "%s - server warning"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:599
msgid "The X2Go Server does not publish an application menu."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:650
msgid "SSH key authentication has been successful."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:724
msgid ""
"Host key verification failed. The SSH proxy server may have been "
"compromised.\n"
"\n"
"It is also possible that the host key has just been changed.\n"
"\n"
"However, for security reasons the connection will not be established!!!"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:741
msgid ""
"The SSH proxy's host key is invalid or has not been accepted by the user"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:762
#, python-format
msgid "%s - EOF error"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:762
msgid "Authentication protocol communication incomplete! Try again..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:783
msgid "An unknown error occurred during authentication!"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:812
#, python-format
msgid "%s: DirectRDP not supported yet"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:813
#, python-format
msgid ""
"We apologize for the inconvenience...\n"
"\n"
"Session profiles of type ,,DirectRDP'' are not\n"
"supported by %s (%s), yet!!\n"
"\n"
"DirectRDP support will be available in %s (>= 1.0.0.0)."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:828
msgid "Unknown session profile, configure before using it..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:889
#, python-format
msgid "Desktop Sharing with %s not supported by server"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:890
#, python-format
msgid ""
"We apologize for the inconvenience...\n"
"\n"
"Session profiles of type ,,SHADOW'' are not\n"
"supported by X2Go Server (v%s)!!!\n"
"\n"
"Desktop Sharing with %s requires\n"
"X2Go Server 4.0.1.21 and above."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:948 ../pyhoca/wxgui/frontend.py:1735
#, python-format
msgid "%s - session warning"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:948
#, python-format
msgid "Execution of command ,,%s'' failed."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1089
msgid "Cleaning X2Go sessions..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1137
#, python-format
msgid "%s - disconnect"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1137
msgid "X2Go Profile is now disconnected."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1158
msgid "New Session Profile"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1213
#, python-format
msgid "Really Delete Session Profile ,,%s''?"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1218
#, python-format
msgid "%s - profile deleted"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1218
msgid "The session profile has been deleted."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1230
msgid "import session profile(s)"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1242
#, python-format
msgid "%s: Import of session profile(s) failed"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1243
#, python-format
msgid ""
"The selected session profile(s) could not be imported from \n"
"file »%s«.\n"
"\n"
"Are you sure the session profiles file has the correct format?"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1271
#, python-format
msgid "%s: Write failure after import"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1272
msgid ""
"The session profiles configuration could not be written to file after "
"import\n"
"\n"
"Check for common problems (disk full, insufficient access, etc.)."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1277
msgid "None of the session profiles could be imported..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1280 ../pyhoca/wxgui/frontend.py:1290
#, python-format
msgid "For details, start %s from the command line and retry the import."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1284
msgid "Only these session profiles could be imported..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1287
msgid "Whereas these session profiles failed to import..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1293
msgid "New session profiles have been imported..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1298
msgid "New session profile has been imported..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1327
#, python-format
msgid "%s - export session profiles"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1332
#, python-format
msgid "%s - export session profile"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1344
#, python-format
msgid "%s: Export file already exists"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1345
#, python-format
msgid ""
"The file »%s« already exists in this folder.\n"
"\n"
"Do you want to replace it?"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1366
#, python-format
msgid "%s - profiles exported"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1366
#, python-format
msgid "Successfully exported session profile group »%s« to file »%s«."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1368
#, python-format
msgid "%s - profile exported"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1368
#, python-format
msgid "Successfully exported single session profile »%s« to file »%s«."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1372
#, python-format
msgid "%s: Exporting session profile(s) failed"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1373
#, python-format
msgid ""
"The selected session profile(s) could not be exported to the \n"
"file »%s«.\n"
"\n"
"Check for common problems (disk full, insufficient access, etc.)."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1392
#, python-format
msgid "%s - share local folder with sessions of this profile"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1558
#, python-format
msgid ""
"The authenticity of host [%s]:%s can't be established.\n"
"%s key fingerprint is ,,%s''.\n"
"\n"
"Are you sure you want to continue connecting?"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1566
#, python-format
msgid "%s: Confirm Host Authorization"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1612
#, python-format
msgid "%s - channel error"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1612
#, python-format
msgid ""
"Lost connection to server %s unexpectedly!\n"
"\n"
"Try to re-authenticate to the server..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1630
#, python-format
msgid "%s - SFTP client error"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1630
msgid ""
"New X2Go session will lack SFTP client support.\n"
"Check your server setup.\n"
"\n"
"Avoid echoing ~/.*shrc files on server!!!\n"
"\n"
"Not starting new session..."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1647 ../pyhoca/wxgui/frontend.py:1660
#: ../pyhoca/wxgui/frontend.py:1716 ../pyhoca/wxgui/frontend.py:1718
#: ../pyhoca/wxgui/frontend.py:1761
#, python-format
msgid "%s - session failure"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1647
msgid "The session startup failed."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1660
msgid "The session initialization failed."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1673
#, python-format
msgid "%s - desktop sharing failure"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1673
msgid ""
"Desktop sharing was denied by the other user or\n"
"both of you have insufficient privileges to share one another's desktop."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1686
#, python-format
msgid "%s - timeout"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1686
msgid ""
"The server took long to provide a list of sharable desktops.\n"
"This can happen from time to time, please try again"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1698
#, python-format
msgid "%s - desktop sharing failed"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1698
#, python-format
msgid "The desktop %s is not available for sharing (anymore)."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1716
#, python-format
msgid "The command ,,%s'' is not available on X2Go server."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1718
#, python-format
msgid ""
"The command ,,%s'' is not available on X2Go server\n"
"%s."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1735
#, python-format
msgid ""
"Reverse TCP port forwarding request for session %s to server port %s has "
"been denied."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1761
#, python-format
msgid ""
"Forwarding tunnel request to [%s]:%s for session %s was denied by remote "
"X2Go/SSH server. Subsystem %sstartup failed."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1780
#, python-format
msgid "%s - audio warning"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1780
msgid ""
"The X2Go PulseAudio system is not available within Remote Desktop sessions."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1787 ../pyhoca/wxgui/frontend.py:1794
#, python-format
msgid "%s - audio error"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1787
msgid "The X2Go PulseAudio system could not be started."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1794
msgid "The X2Go PulseAudio system has died unexpectedly."
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1806
#, python-format
msgid "%s - audio problem"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1806
#, python-format
msgid ""
"The audio connection could not be set up for this session.\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1818
#, python-format
msgid "%s - client-side printing not available"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1818
#, python-format
msgid ""
"The server denies client-side printing from within this session.\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1830
#, python-format
msgid "%s - MIME box not available"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1830
#, python-format
msgid ""
"The server does not support the X2Go MIME box.\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1842
#, python-format
msgid "%s - client-side folders not sharable"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1842
#, python-format
msgid ""
"The server denies client-side folder sharing with this session.\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1854
#, python-format
msgid "%s - client resources not sharable"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1854
#, python-format
msgid ""
"Client-side folders and printers cannot be shared with this session.\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1873 ../pyhoca/wxgui/frontend.py:1875
#, python-format
msgid "%s - print error"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1873
#, python-format
msgid ""
"%s\n"
"...caused on printer %s by session\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1875
#, python-format
msgid ""
"%s\n"
"...caused by session\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1890 ../pyhoca/wxgui/frontend.py:1905
#, python-format
msgid "%s - start"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1890
#, python-format
msgid ""
"New X2Go session starting up...\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1905
#, python-format
msgid ""
"Another client started X2Go session\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1920 ../pyhoca/wxgui/frontend.py:1935
#, python-format
msgid "%s - resume"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1920
#, python-format
msgid ""
"Resuming X2Go session...\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1935
#, python-format
msgid ""
"Another client resumed X2Go session\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1950
#, python-format
msgid "%s - running"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1950
#, python-format
msgid ""
"Found already running session\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1970
#, python-format
msgid "%s - suspend"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1970
#, python-format
msgid ""
"X2Go Session has been suspended\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1997
#, python-format
msgid "%s - terminate"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:1997
#, python-format
msgid ""
"X2Go Session has terminated\n"
"%s"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:2021 ../pyhoca/wxgui/frontend.py:2027
#, python-format
msgid "%s: connection failure"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:2022
#, python-format
msgid ""
"While initializing a session for profile '%s' the connection\n"
"to %s has failed.\n"
"\n"
"It is possible to attempt session initialization anyway. Do you\n"
"want to continue?"
msgstr ""
#: ../pyhoca/wxgui/frontend.py:2028
#, python-format
msgid ""
"While connecting to profile '%s' the connection\n"
"to %s has failed.\n"
"\n"
"It is possible to attempt session initialization anyway. Do you\n"
"want to continue?"
msgstr ""
#: ../pyhoca/wxgui/messages.py:71
#, python-format
msgid ""
"Are you really sure you want to\n"
"delete the session profile ,,%s''?"
msgstr ""
#: ../pyhoca/wxgui/messages.py:72
#, python-brace-format
msgid ""
"{appname} is already running for user ,,{username}''!\n"
"\n"
"Only one instance of {appname} can be started per\n"
"user. The {appname} icon can be found in your desktop's\n"
"notification area/systray."
msgstr ""
#: ../pyhoca/wxgui/messages.py:110
msgid "Yes"
msgstr ""
#: ../pyhoca/wxgui/messages.py:111
msgid "No"
msgstr ""
#: ../pyhoca/wxgui/messages.py:128 ../pyhoca/wxgui/printingprefs.py:144
msgid "Ok"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:68
#, python-format
msgid "%s - Printing Preferences"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:70
#, python-format
msgid "%s - Incoming Print Job from %s (%s)"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:75
msgid "Open this dialog window"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:76
msgid "Open with PDF viewer"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:77
msgid "Save to a local folder"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:78
msgid "Print to a local printer"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:79
msgid "Run custom print command"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:82
msgid "<Select a print action here>"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:116
msgid "Print action"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:118
msgid "Default action for incoming print jobs"
msgstr ""
#. widgets for print action PDFVIEW
#: ../pyhoca/wxgui/printingprefs.py:122
msgid "PDF viewer command"
msgstr ""
#. widgets for print action PDFSAVE
#: ../pyhoca/wxgui/printingprefs.py:129
msgid "Save PDFs to folder"
msgstr ""
#. widgets for print action PRINT
#: ../pyhoca/wxgui/printingprefs.py:136
msgid "Use this printer"
msgstr ""
#. widgets for print action PRINTCMD
#: ../pyhoca/wxgui/printingprefs.py:140
msgid "Custom print command"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:147
msgid "Print"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:251
msgid "- no printers installed -"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:256
msgid "- print system is not available -"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:410
msgid "Choose PDF viewer application"
msgstr ""
#: ../pyhoca/wxgui/printingprefs.py:433
msgid "Choose PDF saving location"
msgstr ""
#: ../pyhoca/wxgui/sessiontitle.py:66
#, python-format
msgid "Session Title - %s"
msgstr ""
#: ../pyhoca/wxgui/sessiontitle.py:68
msgid "Change session title to"
msgstr ""
#: ../pyhoca/wxgui/sessiontitle.py:70
msgid "OK"
msgstr ""
#: ../pyhoca/wxgui/serverinfo.py:62
#, python-format
msgid "Server Information - %s"
msgstr ""
#: ../pyhoca/wxgui/serverinfo.py:64
#, python-format
msgid ""
"Session Profile: %s\n"
"\n"
"List of X2Go Server components, add-ons and their versions..."
msgstr ""
#: ../pyhoca/wxgui/serverinfo.py:69
msgid "Refresh"
msgstr ""
#: ../pyhoca/wxgui/serverinfo.py:70
msgid "Close"
msgstr ""
#: ../pyhoca/wxgui/serverinfo.py:139
msgid "X2Go Server"
msgstr ""
#: ../pyhoca/wxgui/serverinfo.py:140
msgid "Server Core"
msgstr ""
#: ../pyhoca/wxgui/serverinfo.py:148
msgid "Server Extensions"
msgstr ""
#: ../pyhoca/wxgui/serverinfo.py:154
msgid "X2Go Server Add-ons"
msgstr ""
#: ../pyhoca/wxgui/serverinfo.py:158
msgid "X2Go Server Features"
msgstr ""
|