File size: 25,677 Bytes
72268ee |
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 |
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the mintty package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: https://github.com/mintty/mintty/issues/700\n"
"POT-Creation-Date: 2022-12-18 01:37+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: charset.c:226 charset.c:237 winmain.c:5619 winmain.c:5732 winmain.c:5739
msgid "(Default)"
msgstr ""
#: charset.c:248
msgid "(OEM codepage)"
msgstr ""
#: charset.c:252
msgid "(ANSI codepage)"
msgstr ""
#: child.c:96
msgid "There are no available terminals"
msgstr ""
#: child.c:171
msgid "Error: Could not open log file"
msgstr ""
#: child.c:305
msgid "Error: Could not fork child process"
msgstr ""
#: child.c:307
msgid "DLL rebasing may be required; see 'rebaseall / rebase --help'"
msgstr ""
#. __ %1$s: client command (e.g. shell) to be run; %2$s: error message
#: child.c:397
msgid "Failed to run '%s': %s"
msgstr ""
#. __ %1$s: client command (e.g. shell) terminated, %2$i: exit code
#: child.c:528
msgid "%s: Exit %i"
msgstr ""
#. __ default inline notification if ExitWrite=yes
#: child.c:535
msgid "TERMINATED"
msgstr ""
#: child.c:1148
msgid "Error: Could not fork child daemon"
msgstr ""
#. __ Options - Text - Emojis - Placement
#: config.c:659
msgid "stretch"
msgstr ""
#. __ Options - Text - Emojis - Placement
#: config.c:661
msgid "align"
msgstr ""
#. __ Options - Text - Emojis - Placement
#: config.c:663
msgid "middle"
msgstr ""
#. __ Options - Text - Emojis - Placement
#: config.c:665
msgid "full"
msgstr ""
#. __ %s: unknown option name
#: config.c:824
msgid "Ignoring unknown option '%s'"
msgstr ""
#: config.c:869 config.c:898
msgid "Internal error: too many options"
msgstr ""
#: config.c:885
msgid "Internal error: too many options/comments"
msgstr ""
#. __ %2$s: option name, %1$s: invalid value
#. report errors only during initialisation
#: config.c:1055
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr ""
#. __ %s: option name
#: config.c:1067
msgid "Ignoring option '%s' with missing value"
msgstr ""
#. __ %1$s: config file name, %2$s: error message
#: config.c:1737
msgid ""
"Could not save options to '%s':\n"
"%s."
msgstr ""
#: config.c:2176
msgid "◇ None (printing disabled) ◇"
msgstr ""
#: config.c:2178
msgid "◆ Default printer ◆"
msgstr ""
#. __ UI language
#: config.c:2287
msgid "– None –"
msgstr ""
#: config.c:2288
msgid "@ Windows language @"
msgstr ""
#: config.c:2289
msgid "* Locale environm. *"
msgstr ""
#: config.c:2290
msgid "= cfg. Text Locale ="
msgstr ""
#: config.c:2395
msgid "simple beep"
msgstr ""
#: config.c:2396
msgid "no beep"
msgstr ""
#: config.c:2397
msgid "Default Beep"
msgstr ""
#: config.c:2398
msgid "Critical Stop"
msgstr ""
#: config.c:2399
msgid "Question"
msgstr ""
#: config.c:2400
msgid "Exclamation"
msgstr ""
#: config.c:2401
msgid "Asterisk"
msgstr ""
#: config.c:2444
msgid "◇ None (system sound) ◇"
msgstr ""
#. __ terminal theme / colour scheme
#. __ emojis style
#: config.c:2814 config.c:3364
msgid "◇ None ◇"
msgstr ""
#. __ indicator of unsaved downloaded colour scheme
#: config.c:2817
msgid "downloaded / give me a name!"
msgstr ""
#: config.c:2922
msgid "Could not load web theme"
msgstr ""
#: config.c:2979
msgid "Cannot write theme file"
msgstr ""
#: config.c:2984
msgid "Cannot store theme file"
msgstr ""
#. __ Options - Text:
#: config.c:3441 config.c:3779 config.c:3869
msgid "as font"
msgstr ""
#. __ Options - Text:
#: config.c:3442 config.c:3784 config.c:3874
msgid "as colour"
msgstr ""
#: config.c:3443
msgid "as font & as colour"
msgstr ""
#. __ Options - Text:
#: config.c:3444 config.c:3789 config.c:3879
msgid "xterm"
msgstr ""
#. __ Dialog button - show About text
#: config.c:3592
msgid "About..."
msgstr ""
#. __ Dialog button - save changes
#: config.c:3595
msgid "Save"
msgstr ""
#. __ Dialog button - cancel
#: config.c:3599 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr ""
#. __ Dialog button - apply changes
#: config.c:3603
msgid "Apply"
msgstr ""
#. __ Dialog button - take notice
#: config.c:3607 windialog.c:869
msgid "I see"
msgstr ""
#. __ Dialog button - confirm action
#: config.c:3609 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr ""
#. __ Options - Looks: treeview label
#: config.c:3616 config.c:3647 config.c:3706
msgid "Looks"
msgstr ""
#. __ Options - Looks: panel title
#: config.c:3618
msgid "Looks in Terminal"
msgstr ""
#. __ Options - Looks: section title
#: config.c:3620
msgid "Colours"
msgstr ""
#. __ Options - Looks:
#: config.c:3624
msgid "&Foreground..."
msgstr ""
#. __ Options - Looks:
#: config.c:3628
msgid "&Background..."
msgstr ""
#. __ Options - Looks:
#: config.c:3632
msgid "&Cursor..."
msgstr ""
#. __ Options - Looks:
#: config.c:3636
msgid "&Theme"
msgstr ""
#. __ Options - Looks: name of web service
#: config.c:3641
msgid "Color Scheme Designer"
msgstr ""
#. __ Options - Looks: store colour scheme
#: config.c:3644 winctrls.c:461
msgid "Store"
msgstr ""
#. __ Options - Looks: section title
#: config.c:3649
msgid "Transparency"
msgstr ""
#. __ Options - Looks: transparency
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
#: config.c:3655 config.c:4013 config.c:4176 config.c:4373
msgid "&Off"
msgstr ""
#. __ Options - Looks: transparency
#: config.c:3657
msgid "&Low"
msgstr ""
#. __ Options - Looks: transparency, short form of radio button label "Medium"
#: config.c:3659
msgid "&Med."
msgstr ""
#. __ Options - Looks: transparency
#: config.c:3661
msgid "&Medium"
msgstr ""
#. __ Options - Looks: transparency
#: config.c:3663
msgid "&High"
msgstr ""
#. __ Options - Looks: transparency
#: config.c:3665
msgid "Gla&ss"
msgstr ""
#. __ Options - Looks: transparency
#: config.c:3672 config.c:3684 config.c:3691
msgid "Opa&que when focused"
msgstr ""
#. __ Options - Looks: transparency
#: config.c:3677
msgid "Blu&r"
msgstr ""
#: config.c:3698
msgid "◄"
msgstr ""
#: config.c:3701
msgid "►"
msgstr ""
#. __ Options - Looks: section title
#: config.c:3708
msgid "Cursor"
msgstr ""
#. __ Options - Looks: cursor type
#: config.c:3713
msgid "Li&ne"
msgstr ""
#. __ Options - Looks: cursor type
#: config.c:3715
msgid "Bloc&k"
msgstr ""
#. __ Options - Looks: cursor type
#: config.c:3718
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
#: config.c:3721
msgid "&Underscore"
msgstr ""
#. __ Options - Looks: cursor feature
#: config.c:3726
msgid "Blinkin&g"
msgstr ""
#. __ Options - Text: treeview label
#: config.c:3733 config.c:3758 config.c:3773 config.c:3813 config.c:3863
#: config.c:3887 config.c:3900 config.c:3913 config.c:3921
msgid "Text"
msgstr ""
#. __ Options - Text: panel title
#: config.c:3735
msgid "Text and Font properties"
msgstr ""
#. __ Options - Text: section title
#: config.c:3737
msgid "Font"
msgstr ""
#. __ Options - Text:
#. __ Font chooser:
#: config.c:3745 winctrls.c:1264
msgid "Font st&yle:"
msgstr ""
#. __ Font chooser:
#: config.c:3750 winctrls.c:1266
msgid "&Size:"
msgstr ""
#. __ Options - Text:
#: config.c:3762 config.c:3832
msgid "Sho&w bold as font"
msgstr ""
#. __ Options - Text:
#: config.c:3767 config.c:3837
msgid "Show &bold as colour"
msgstr ""
#. __ Options - Text:
#: config.c:3775 config.c:3796 config.c:3865 config.c:3890
msgid "Show bold"
msgstr ""
#. __ Options - Text:
#: config.c:3800 config.c:3842 config.c:3894
msgid "&Allow blinking"
msgstr ""
#. __ Options - Text:
#: config.c:3817 config.c:3850 config.c:3885
msgid "Font smoothing"
msgstr ""
#. __ Options - Text:
#: config.c:3820 config.c:3853 config.c:4064 config.c:4103 config.c:4258
#: config.c:4271
msgid "&Default"
msgstr ""
#. __ Options - Text:
#. __ Options - Window: scrollbar
#: config.c:3822 config.c:3855 config.c:4062 config.c:4101 config.c:4256
#: config.c:4269 config.c:4354
msgid "&None"
msgstr ""
#. __ Options - Text:
#: config.c:3824 config.c:3857 config.c:4063 config.c:4102 config.c:4257
#: config.c:4270
msgid "&Partial"
msgstr ""
#. __ Options - Text:
#: config.c:3826 config.c:3859 config.c:4065 config.c:4104 config.c:4259
#: config.c:4272
msgid "&Full"
msgstr ""
#: config.c:3903
msgid "&Locale"
msgstr ""
#: config.c:3906
msgid "&Character set"
msgstr ""
#. __ Options - Text - Emojis:
#. __ Options - Text:
#: config.c:3917 config.c:3923
msgid "Emojis"
msgstr ""
#. __ Options - Text - Emojis:
#: config.c:3927
msgid "Style"
msgstr ""
#. __ Options - Text - Emojis:
#: config.c:3932
msgid "Placement"
msgstr ""
#. __ Options - Keys: treeview label
#: config.c:3940 config.c:3965 config.c:4000 config.c:4018
msgid "Keys"
msgstr ""
#. __ Options - Keys: panel title
#: config.c:3942
msgid "Keyboard features"
msgstr ""
#. __ Options - Keys:
#: config.c:3946
msgid "&Backarrow sends ^H"
msgstr ""
#. __ Options - Keys:
#: config.c:3951
msgid "&Delete sends DEL"
msgstr ""
#. __ Options - Keys:
#: config.c:3956
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr ""
#. __ Options - Keys:
#: config.c:3961
msgid "AltGr is also Alt"
msgstr ""
#. __ Options - Keys: section title
#: config.c:3967
msgid "Shortcuts"
msgstr ""
#. __ Options - Keys:
#: config.c:3970
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr ""
#. __ Options - Keys:
#: config.c:3975
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr ""
#. __ Options - Keys:
#: config.c:3980
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr ""
#. __ Options - Keys:
#: config.c:3985
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr ""
#. __ Options - Keys:
#: config.c:3990
msgid "&Alt+Fn shortcuts"
msgstr ""
#. __ Options - Keys:
#: config.c:3995
msgid "&Ctrl+Shift+letter shortcuts"
msgstr ""
#. __ Options - Keys: section title
#: config.c:4002 config.c:4020
msgid "Compose key"
msgstr ""
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
#: config.c:4007 config.c:4168 config.c:4187 config.c:4365 config.c:4384
msgid "&Shift"
msgstr ""
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
#: config.c:4009 config.c:4170 config.c:4195 config.c:4367 config.c:4392
msgid "&Ctrl"
msgstr ""
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
#: config.c:4011 config.c:4172 config.c:4191 config.c:4369 config.c:4388
msgid "&Alt"
msgstr ""
#. __ Options - Mouse: treeview label
#: config.c:4027 config.c:4116 config.c:4148
msgid "Mouse"
msgstr ""
#. __ Options - Mouse: panel title
#: config.c:4029
msgid "Mouse functions"
msgstr ""
#. __ Options - Mouse:
#. __ Options - Selection:
#: config.c:4037 config.c:4070 config.c:4086 config.c:4236
msgid "Cop&y on select"
msgstr ""
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
#: config.c:4042 config.c:4075 config.c:4241 wininput.c:667
msgid "Copy with TABs"
msgstr ""
#. __ Options - Mouse:
#. __ Options - Selection:
#: config.c:4047 config.c:4080 config.c:4092 config.c:4248
msgid "Copy as &rich text"
msgstr ""
#. __ Options - Mouse:
#. __ Options - Selection:
#: config.c:4053 config.c:4060 config.c:4099 config.c:4254 config.c:4267
msgid "Copy as &HTML"
msgstr ""
#. __ Options - Mouse:
#: config.c:4112
msgid "Clic&ks place command line cursor"
msgstr ""
#. __ Options - Mouse: section title
#: config.c:4118
msgid "Click actions"
msgstr ""
#. __ Options - Mouse:
#: config.c:4121
msgid "Right mouse button"
msgstr ""
#. __ Options - Mouse:
#: config.c:4124 config.c:4138
msgid "&Paste"
msgstr ""
#. __ Options - Mouse:
#: config.c:4126 config.c:4140
msgid "E&xtend"
msgstr ""
#. __ Options - Mouse:
#: config.c:4128
msgid "&Menu"
msgstr ""
#. __ Options - Mouse:
#: config.c:4130 config.c:4144
msgid "Ente&r"
msgstr ""
#. __ Options - Mouse:
#: config.c:4135
msgid "Middle mouse button"
msgstr ""
#. __ Options - Mouse:
#: config.c:4142
msgid "&Nothing"
msgstr ""
#. __ Options - Mouse: section title
#: config.c:4150
msgid "Application mouse mode"
msgstr ""
#. __ Options - Mouse:
#: config.c:4153
msgid "Default click target"
msgstr ""
#. __ Options - Mouse: application mouse mode click target
#: config.c:4156
msgid "&Window"
msgstr ""
#. __ Options - Mouse: application mouse mode click target
#: config.c:4158
msgid "&Application"
msgstr ""
#. __ Options - Mouse:
#: config.c:4165 config.c:4183
msgid "Modifier for overriding default"
msgstr ""
#. __ Options - Window:
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
#: config.c:4174 config.c:4199 config.c:4371 config.c:4396
msgid "&Win"
msgstr ""
#. __ Options - Modifier - Super:
#: config.c:4203 config.c:4400
msgid "&Sup"
msgstr ""
#. __ Options - Modifier - Hyper:
#: config.c:4207 config.c:4404
msgid "&Hyp"
msgstr ""
#. __ Options - Selection: treeview label
#: config.c:4217 config.c:4230 config.c:4291
msgid "Selection"
msgstr ""
#. __ Options - Selection: panel title
#: config.c:4219
msgid "Selection and clipboard"
msgstr ""
#. __ Options - Selection:
#: config.c:4223
msgid "Clear selection on input"
msgstr ""
#. __ Options - Selection: section title
#: config.c:4232
msgid "Clipboard"
msgstr ""
#. __ Options - Selection:
#: config.c:4281
msgid "Trim space from selection"
msgstr ""
#. __ Options - Selection:
#: config.c:4286
msgid "Allow setting selection"
msgstr ""
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
#: config.c:4293 config.c:4315 config.c:4340 config.c:4413
msgid "Window"
msgstr ""
#. __ Options - Selection:
#: config.c:4298
msgid "Show size while selecting (0..12)"
msgstr ""
#. __ Options - Selection:
#: config.c:4305
msgid "Suspend output while selecting"
msgstr ""
#. __ Options - Window: panel title
#: config.c:4317
msgid "Window properties"
msgstr ""
#. __ Options - Window: section title
#: config.c:4319
msgid "Default size"
msgstr ""
#. __ Options - Window:
#: config.c:4323
msgid "Colu&mns"
msgstr ""
#. __ Options - Window:
#: config.c:4327
msgid "Ro&ws"
msgstr ""
#. __ Options - Window:
#: config.c:4331
msgid "C&urrent size"
msgstr ""
#. __ Options - Window:
#: config.c:4336
msgid "Re&wrap on resize"
msgstr ""
#. __ Options - Window:
#: config.c:4344
msgid "Scroll&back lines"
msgstr ""
#. __ Options - Window:
#: config.c:4349
msgid "Scrollbar"
msgstr ""
#. __ Options - Window: scrollbar
#: config.c:4352
msgid "&Left"
msgstr ""
#. __ Options - Window: scrollbar
#: config.c:4356
msgid "&Right"
msgstr ""
#. __ Options - Window:
#: config.c:4362 config.c:4380
msgid "Modifier for scrolling"
msgstr ""
#. __ Options - Window:
#: config.c:4409
msgid "&PgUp and PgDn scroll without modifier"
msgstr ""
#. __ Options - Window: section title
#: config.c:4415
msgid "UI language"
msgstr ""
#. __ Options - Terminal: treeview label
#: config.c:4425 config.c:4438 config.c:4499 config.c:4513
msgid "Terminal"
msgstr ""
#. __ Options - Terminal: panel title
#: config.c:4427
msgid "Terminal features"
msgstr ""
#. __ Options - Terminal:
#: config.c:4431
msgid "&Type"
msgstr ""
#. __ Options - Terminal:
#: config.c:4435
msgid "&Answerback"
msgstr ""
#. __ Options - Terminal: section title
#: config.c:4440
msgid "Bell"
msgstr ""
#. __ Options - Terminal: bell
#: config.c:4447
msgid "► &Play"
msgstr ""
#. __ Options - Terminal: bell
#: config.c:4453
msgid "&Wave"
msgstr ""
#. __ Options - Terminal: bell
#: config.c:4475 config.c:4488
msgid "&Flash"
msgstr ""
#. __ Options - Terminal: bell
#: config.c:4477 config.c:4492
msgid "&Highlight in taskbar"
msgstr ""
#. __ Options - Terminal: bell
#: config.c:4479 config.c:4496
msgid "&Popup"
msgstr ""
#. __ Options - Terminal: section title
#: config.c:4501
msgid "Printer"
msgstr ""
#. __ Options - Terminal:
#: config.c:4516
msgid "Prompt about running processes on &close"
msgstr ""
#: textprint.c:44 textprint.c:122
msgid "[Printing...] "
msgstr ""
#. __ Options - Text: font chooser activation button
#: winctrls.c:912
msgid "&Select..."
msgstr ""
#. __ Font chooser: title bar label
#: winctrls.c:1258
msgid "Font "
msgstr ""
#. __ Font chooser: button
#: winctrls.c:1260
msgid "&Apply"
msgstr ""
#. __ Font chooser:
#: winctrls.c:1262
msgid "&Font:"
msgstr ""
#. __ Font chooser:
#: winctrls.c:1268
msgid "Sample"
msgstr ""
#. __ Font chooser: text sample ("AaBbYyZz" by default)
#: winctrls.c:1272 winctrls.c:1531 winctrls.c:1696
msgid "Ferqœm’4€"
msgstr ""
#. __ Font chooser: this field is only shown with FontMenu=1
#: winctrls.c:1289
msgid "Sc&ript:"
msgstr ""
#. __ Font chooser: this field is only shown with FontMenu=1
#: winctrls.c:1291
msgid "<A>Show more fonts</A>"
msgstr ""
#. __ Colour chooser: title bar label
#: winctrls.c:1296
msgid "Colour "
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1309 winctrls.c:1321
msgid "B&asic colours:"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1330
msgid "&Custom colours:"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1337
msgid "De&fine Custom Colours >>"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1340
msgid "Colour"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1342
msgid "|S&olid"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1344
msgid "&Hue:"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1347
msgid "&Sat:"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1349
msgid "&Lum:"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1351
msgid "&Red:"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1353
msgid "&Green:"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1355
msgid "&Blue:"
msgstr ""
#. __ Colour chooser:
#: winctrls.c:1358
msgid "A&dd to Custom Colours"
msgstr ""
#. __ Options: dialog title
#: windialog.c:243 windialog.c:816
msgid "Options"
msgstr ""
#. __ Options: dialog title: "mintty <release> available (for download)"
#: windialog.c:245
msgid "available"
msgstr ""
#. __ Options: dialog width scale factor (80...200)
#: windialog.c:760
msgid "100"
msgstr ""
#: windialog.c:901 windialog.c:928
msgid "Error"
msgstr ""
#. __ Context menu, session switcher ("virtual tabs") menu label
#: wininput.c:290
msgid "Session switcher"
msgstr ""
#. __ Context menu, session launcher ("virtual tabs") menu label
#: wininput.c:310
msgid "Session launcher"
msgstr ""
#: wininput.c:419 wininput.c:425
msgid "Ctrl+"
msgstr ""
#: wininput.c:420 wininput.c:426
msgid "Alt+"
msgstr ""
#: wininput.c:421 wininput.c:427
msgid "Shift+"
msgstr ""
#. __ System menu:
#: wininput.c:452
msgid "&Restore"
msgstr ""
#. __ System menu:
#: wininput.c:454
msgid "&Move"
msgstr ""
#. __ System menu:
#: wininput.c:456
msgid "&Size"
msgstr ""
#. __ System menu:
#: wininput.c:458
msgid "Mi&nimize"
msgstr ""
#. __ System menu:
#: wininput.c:460
msgid "Ma&ximize"
msgstr ""
#. __ System menu:
#: wininput.c:462
msgid "&Close"
msgstr ""
#. __ System menu:
#: wininput.c:467
msgid "New &Window"
msgstr ""
#. __ System menu:
#: wininput.c:473
msgid "New &Tab"
msgstr ""
#. __ Context menu:
#: wininput.c:480
msgid "&Copy"
msgstr ""
#. __ Context menu:
#: wininput.c:499
msgid "&Paste "
msgstr ""
#. __ Context menu:
#: wininput.c:504
msgid "Copy → Paste"
msgstr ""
#. __ Context menu:
#: wininput.c:509
msgid "S&earch"
msgstr ""
#. __ Context menu:
#: wininput.c:516
msgid "&Log to File"
msgstr ""
#. __ Context menu:
#: wininput.c:522
msgid "Character &Info"
msgstr ""
#. __ Context menu:
#: wininput.c:528
msgid "VT220 Keyboard"
msgstr ""
#. __ Context menu:
#: wininput.c:533
msgid "&Reset"
msgstr ""
#. __ Context menu:
#: wininput.c:541
msgid "&Default Size"
msgstr ""
#. __ Context menu:
#: wininput.c:551
msgid "Scroll&bar"
msgstr ""
#. __ Context menu:
#: wininput.c:557
msgid "&Full Screen"
msgstr ""
#. __ Context menu:
#: wininput.c:563
msgid "Flip &Screen"
msgstr ""
#. __ System menu:
#: wininput.c:573 wininput.c:744
msgid "Copy &Title"
msgstr ""
#. __ System menu:
#. __ Context menu:
#. __ System menu:
#: wininput.c:575 wininput.c:728 wininput.c:746
msgid "&Options..."
msgstr ""
#. __ Context menu:
#: wininput.c:660
msgid "Ope&n"
msgstr ""
#. __ Context menu:
#: wininput.c:665
msgid "Copy as text"
msgstr ""
#. __ Context menu:
#: wininput.c:669
msgid "Copy as RTF"
msgstr ""
#. __ Context menu:
#: wininput.c:671
msgid "Copy as HTML text"
msgstr ""
#. __ Context menu:
#: wininput.c:673
msgid "Copy as HTML"
msgstr ""
#. __ Context menu:
#: wininput.c:675
msgid "Copy as HTML full"
msgstr ""
#. __ Context menu:
#: wininput.c:682
msgid "Select &All"
msgstr ""
#. __ Context menu:
#: wininput.c:684
msgid "Save as &Image"
msgstr ""
#. __ Context menu: write terminal window contents as HTML file
#: wininput.c:696
msgid "HTML Screen Dump"
msgstr ""
#. __ Context menu: clear scrollback buffer (lines scrolled off the window)
#: wininput.c:704
msgid "Clear Scrollback"
msgstr ""
#. __ Context menu: generate a TTY BRK condition (tty line interrupt)
#: wininput.c:714
msgid "Send Break"
msgstr ""
#. __ Context menu, user commands
#: wininput.c:813
msgid "User commands"
msgstr ""
#: wininput.c:1460 wininput.c:1481 wininput.c:1483 wininput.c:1485
#: wininput.c:1522
msgid "[NO SCROLL] "
msgstr ""
#: wininput.c:1473 wininput.c:1482 wininput.c:1487 wininput.c:1543
msgid "[SCROLL MODE] "
msgstr ""
#: winmain.c:3095
msgid "Processes are running in session:"
msgstr ""
#: winmain.c:3096
msgid "Close anyway?"
msgstr ""
#: winmain.c:3120
msgid "Reset terminal?"
msgstr ""
#: winmain.c:3322
msgid "Try '--help' for more information"
msgstr ""
#: winmain.c:3330
msgid "Could not load icon"
msgstr ""
#: winmain.c:5447
msgid "Usage:"
msgstr ""
#: winmain.c:5448
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr ""
#. __ help text (output of -H / --help), after initial line ("synopsis")
#: winmain.c:5451
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
"If a dash is given instead of a program, invoke the shell as a login shell.\n"
"\n"
"Options:\n"
" -c, --config FILE Load specified config file (cf. -C or -o ThemeFile)\n"
" -e, --exec ... Treat remaining arguments as the command to execute\n"
" -h, --hold never|start|error|always Keep window open after command "
"finishes\n"
" -p, --position X,Y Open window at specified coordinates\n"
" -p, --position center|left|right|top|bottom Open window at special "
"position\n"
" -p, --position @N Open window on monitor N\n"
" -s, --size COLS,ROWS Set screen size in characters (also COLSxROWS)\n"
" -s, --size maxwidth|maxheight Set max screen size in given dimension\n"
" -t, --title TITLE Set window title (default: the invoked command) (cf. "
"-T)\n"
" -w, --window normal|min|max|full|hide Set initial window state\n"
" -i, --icon FILE[,IX] Load window icon from file, optionally with index\n"
" -l, --log FILE|- Log output to file or stdout\n"
" --nobidi|--nortl Disable bidi (right-to-left support)\n"
" -o, --option OPT=VAL Set/Override config file option with given value\n"
" -B, --Border frame|void Use thin/no window border\n"
" -R, --Report s|o Report window position (short/long) after exit\n"
" --nopin Make this instance not pinnable to taskbar\n"
" -D, --daemon Start new instance with Windows shortcut key\n"
" -H, --help Display help and exit\n"
" -V, --version Print version information and exit\n"
"See manual page for further command line options and configuration.\n"
msgstr ""
#: winmain.c:5619 winmain.c:5732 winmain.c:5739
msgid "WSL distribution '%s' not found"
msgstr ""
#: winmain.c:5770
msgid "Duplicate option '%s'"
msgstr ""
#: winmain.c:5778 winmain.c:5864
msgid "Unknown option '%s'"
msgstr ""
#: winmain.c:5780
msgid "Option '%s' requires an argument"
msgstr ""
#: winmain.c:5807
msgid "Syntax error in position argument '%s'"
msgstr ""
#: winmain.c:5818
msgid "Syntax error in size argument '%s'"
msgstr ""
#: winmain.c:5973
msgid "Syntax error in geometry argument '%s'"
msgstr ""
#: winmain.c:6070
msgid "Mintty could not detach from caller, starting anyway"
msgstr ""
#: winmain.c:6385
msgid "Using default title due to invalid characters in program name"
msgstr ""
#: winsearch.c:232
msgid "◀"
msgstr ""
#: winsearch.c:233
msgid "▶"
msgstr ""
#: winsearch.c:234
msgid "X"
msgstr ""
#. __ Options - Text: font properties information: "Leading": total line padding (see option RowSpacing), Bold/Underline modes (font or manual, see options BoldAsFont/UnderlineManual/UnderlineColour)
#: wintext.c:158
msgid "Leading: %d, Bold: %s, Underline: %s"
msgstr ""
#. __ Options - Text: font properties: value taken from font
#: wintext.c:160
msgid "font"
msgstr ""
#. __ Options - Text: font properties: value affected by option
#: wintext.c:162
msgid "manual"
msgstr ""
#: wintext.c:484
msgid "Font not found, using system substitute"
msgstr ""
#: wintext.c:499
msgid "Font has limited support for character ranges"
msgstr ""
#: wintext.c:607
msgid "Font installation corrupt, using system substitute"
msgstr ""
#: wintext.c:620
msgid "Font does not support system locale"
msgstr ""
#: appinfo.h:60
msgid "There is no warranty, to the extent permitted by law."
msgstr ""
#. __ %s: WEBSITE (URL)
#: appinfo.h:65
msgid ""
"Please report bugs or request enhancements through the issue tracker on the "
"mintty project page located at\n"
"%s.\n"
"See also the Wiki there for further hints, thanks and credits."
msgstr ""
|