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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the iputils package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: iputils\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-25 19:34+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: arping.c:113
#, c-format
msgid ""
"\n"
"Usage:\n"
" arping [options] <destination>\n"
"\n"
"Options:\n"
" -f quit on first reply\n"
" -q be quiet\n"
" -b keep on broadcasting, do not unicast\n"
" -D duplicate address detection mode\n"
" -U unsolicited ARP mode, update your neighbours\n"
" -A ARP answer mode, update your neighbours\n"
" -V print version and exit\n"
" -c <count> how many packets to send\n"
" -w <timeout> how long to wait for a reply\n"
" -i <interval> set interval between packets (default: 1 second)\n"
" -I <device> which ethernet device to use"
msgstr ""
#: arping.c:132
#, c-format
msgid ""
"\n"
" -s <source> source ip address\n"
" <destination> dns name or ip address\n"
"\n"
"For more details see arping(8).\n"
msgstr ""
#: arping.c:285
#, c-format
msgid "Sent %d probes (%d broadcast(s))\n"
msgstr ""
#: arping.c:286
#, c-format
msgid "Received %d response(s)"
msgstr ""
#: arping.c:290
#, c-format
msgid "%d request(s)"
msgstr ""
#: arping.c:292
#, c-format
msgid "%s%d broadcast(s)"
msgstr ""
#: arping.c:387
msgid "Unicast"
msgstr ""
#: arping.c:387
msgid "Broadcast"
msgstr ""
#: arping.c:388
#, c-format
msgid "%s from "
msgstr ""
#: arping.c:388
msgid "reply"
msgstr ""
#: arping.c:388
msgid "request"
msgstr ""
#: arping.c:393
#, c-format
msgid "for %s "
msgstr ""
#: arping.c:398
#, c-format
msgid "for "
msgstr ""
#: arping.c:408
#, c-format
msgid " %ld.%03ldms\n"
msgstr ""
#: arping.c:410
#, c-format
msgid " UNSOLICITED?\n"
msgstr ""
#: arping.c:561
#, c-format
msgid "Interface \"%s\" is down\n"
msgstr ""
#: arping.c:569
#, c-format
msgid "Interface \"%s\" is not ARPable\n"
msgstr ""
#: arping.c:662
#, c-format
msgid "WARNING: using default broadcast address.\n"
msgstr ""
#: arping.c:872 arping.c:875 arping.c:878 ping/ping.c:369 ping/ping.c:415
#: ping/ping.c:423 ping/ping.c:465 ping/ping.c:468 ping/ping.c:471
#: ping/ping.c:484 tracepath.c:472 tracepath.c:475 tracepath.c:478
#: tracepath.c:499 traceroute6.c:688 traceroute6.c:694 traceroute6.c:697
msgid "invalid argument"
msgstr ""
#: arping.c:944
#, c-format
msgid "Device %s not available."
msgstr ""
#: arping.c:945
msgid "Suitable device could not be determined. Please, use option -I."
msgstr ""
#: arping.c:965 traceroute6.c:822
msgid "WARNING: interface is ignored"
msgstr ""
#: arping.c:984
msgid "WARNING: setsockopt(SO_DONTROUTE)"
msgstr ""
#: arping.c:1008
#, c-format
msgid "Interface \"%s\" is not ARPable (no ll address)\n"
msgstr ""
#: arping.c:1017
#, c-format
msgid "ARPING %s "
msgstr ""
#: arping.c:1018
#, c-format
msgid "from %s %s\n"
msgstr ""
#: arping.c:1022
msgid "no source address in not-DAD mode"
msgstr ""
#: clockdiff.c:240
#, c-format
msgid "Wrong timestamp %d\n"
msgstr ""
#: clockdiff.c:245
#, c-format
msgid "Overflow %d hops\n"
msgstr ""
#: clockdiff.c:270
#, c-format
msgid "wrong timestamps\n"
msgstr ""
#: clockdiff.c:451
#, c-format
msgid ""
"\n"
"Usage:\n"
" clockdiff [options] <destination>\n"
"\n"
"Options:\n"
" without -o, use icmp timestamp only (see RFC0792, page 16)\n"
" -o use ip timestamp and icmp echo\n"
" -o1 use three-term ip timestamp and icmp echo\n"
" -T, --time-format <ctime|iso>\n"
" specify display time format, ctime is the default\n"
" -I alias of --time-format=iso\n"
" -h, --help display this help\n"
" -V, --version print version and exit\n"
" <destination> dns name or ip address\n"
"\n"
"For more details see clockdiff(8).\n"
msgstr ""
#: clockdiff.c:589
msgid "measure: unknown failure"
msgstr ""
#: clockdiff.c:594
#, c-format
msgid "%s is down"
msgstr ""
#: clockdiff.c:597
#, c-format
msgid "%s time transmitted in a non-standard format"
msgstr ""
#: clockdiff.c:600
#, c-format
msgid "%s is unreachable"
msgstr ""
#: clockdiff.c:618
#, c-format
msgid ""
"\n"
"host=%s rtt=%ld(%ld)ms/%ldms delta=%dms/%dms %s"
msgstr ""
#: ping/node_info.c:166
#, c-format
msgid "Qtype conflict\n"
msgstr ""
#: ping/node_info.c:218
#, c-format
msgid "Subject type conflict\n"
msgstr ""
#: ping/node_info.c:309
#, c-format
msgid "IDN encoding error: %s"
msgstr ""
#: ping/node_info.c:320
msgid "too long scope name"
msgstr ""
#: ping/node_info.c:344 ping/node_info.c:386 ping/ping6_common.c:266
#: ping/ping.c:452 ping/ping.c:515 ping/ping.c:925
msgid "memory allocation failed"
msgstr ""
#: ping/node_info.c:356
#, c-format
msgid "inappropriate subject name: %s"
msgstr ""
#: ping/node_info.c:359
msgid "dn_comp() returned too long result"
msgstr ""
#: ping/node_info.c:399
#, c-format
msgid ""
"ping -6 -N <nodeinfo opt>\n"
"Help:\n"
" help\n"
"Query:\n"
" name\n"
" ipv6\n"
" ipv6-all\n"
" ipv6-compatible\n"
" ipv6-global\n"
" ipv6-linklocal\n"
" ipv6-sitelocal\n"
" ipv4\n"
" ipv4-all\n"
"Subject:\n"
" subject-ipv6=addr\n"
" subject-ipv4=addr\n"
" subject-name=name\n"
" subject-fqdn=name\n"
msgstr ""
#: ping/ping6_common.c:95 ping/ping.c:691 ping/ping.c:800
#, c-format
msgid "unknown iface: %s"
msgstr ""
#: ping/ping6_common.c:141
msgid "scope discrepancy among the nodes"
msgstr ""
#: ping/ping6_common.c:214 ping/ping.c:756
#, c-format
msgid "Warning: source address might be selected on device other than: %s"
msgstr ""
#: ping/ping6_common.c:241
#, c-format
msgid "multicast ping with too short interval: %d"
msgstr ""
#: ping/ping6_common.c:244
msgid "multicast ping does not fragment"
msgstr ""
#: ping/ping6_common.c:288
msgid "setsockopt(RAW_CHECKSUM) failed - try to continue"
msgstr ""
#: ping/ping6_common.c:314
msgid "can't disable multicast loopback"
msgstr ""
#: ping/ping6_common.c:319
msgid "can't set multicast hop limit"
msgstr ""
#: ping/ping6_common.c:322
msgid "can't set unicast hop limit"
msgstr ""
#: ping/ping6_common.c:334
msgid "can't receive hop limit"
msgstr ""
#: ping/ping6_common.c:339
msgid "setsockopt(IPV6_TCLASS)"
msgstr ""
#: ping/ping6_common.c:341
msgid "traffic class is not supported"
msgstr ""
#: ping/ping6_common.c:357
msgid "can't set flowlabel"
msgstr ""
#: ping/ping6_common.c:361
msgid "can't send flowinfo"
msgstr ""
#: ping/ping6_common.c:364
#, c-format
msgid "PING %s(%s) "
msgstr ""
#: ping/ping6_common.c:366
#, c-format
msgid ", flow 0x%05x, "
msgstr ""
#: ping/ping6_common.c:371 ping/ping.c:929
#, c-format
msgid "from %s %s: "
msgstr ""
#: ping/ping6_common.c:374
#, c-format
msgid "%zu data bytes\n"
msgstr ""
#: ping/ping6_common.c:389
#, c-format
msgid "Destination unreachable: "
msgstr ""
#: ping/ping6_common.c:392
#, c-format
msgid "No route"
msgstr ""
#: ping/ping6_common.c:395
#, c-format
msgid "Administratively prohibited"
msgstr ""
#: ping/ping6_common.c:398
#, c-format
msgid "Beyond scope of source address"
msgstr ""
#: ping/ping6_common.c:401
#, c-format
msgid "Address unreachable"
msgstr ""
#: ping/ping6_common.c:404
#, c-format
msgid "Port unreachable"
msgstr ""
#: ping/ping6_common.c:407
#, c-format
msgid "Unknown code %d"
msgstr ""
#: ping/ping6_common.c:412
#, c-format
msgid "Packet too big: mtu=%u"
msgstr ""
#: ping/ping6_common.c:414
#, c-format
msgid ", code=%d"
msgstr ""
#: ping/ping6_common.c:417
#, c-format
msgid "Time exceeded: "
msgstr ""
#: ping/ping6_common.c:419
#, c-format
msgid "Hop limit"
msgstr ""
#: ping/ping6_common.c:421
#, c-format
msgid "Defragmentation failure"
msgstr ""
#: ping/ping6_common.c:423
#, c-format
msgid "code %d"
msgstr ""
#: ping/ping6_common.c:426
#, c-format
msgid "Parameter problem: "
msgstr ""
#: ping/ping6_common.c:428
#, c-format
msgid "Wrong header field "
msgstr ""
#: ping/ping6_common.c:430
#, c-format
msgid "Unknown header "
msgstr ""
#: ping/ping6_common.c:432
#, c-format
msgid "Unknown option "
msgstr ""
#: ping/ping6_common.c:434
#, c-format
msgid "code %d "
msgstr ""
#: ping/ping6_common.c:435
#, c-format
msgid "at %u"
msgstr ""
#: ping/ping6_common.c:438
#, c-format
msgid "Echo request"
msgstr ""
#: ping/ping6_common.c:441
#, c-format
msgid "Echo reply"
msgstr ""
#: ping/ping6_common.c:444
#, c-format
msgid "MLD Query"
msgstr ""
#: ping/ping6_common.c:447
#, c-format
msgid "MLD Report"
msgstr ""
#: ping/ping6_common.c:450
#, c-format
msgid "MLD Reduction"
msgstr ""
#: ping/ping6_common.c:453
#, c-format
msgid "unknown icmp type: %u"
msgstr ""
#: ping/ping6_common.c:507
msgid "local error"
msgstr ""
#: ping/ping6_common.c:509
#, c-format
msgid "local error: message too long, mtu: %u"
msgstr ""
#: ping/ping6_common.c:531 ping/ping.c:1376
#, c-format
msgid "From %s icmp_seq=%u "
msgstr ""
#: ping/ping6_common.c:638 ping/ping.c:1490
#, c-format
msgid " icmp_seq=%u"
msgstr ""
#: ping/ping6_common.c:662 ping/ping6_common.c:723
#, c-format
msgid " parse error (too short)"
msgstr ""
#: ping/ping6_common.c:676 ping/ping6_common.c:732
#, c-format
msgid " parse error (truncated)"
msgstr ""
#: ping/ping6_common.c:736
#, c-format
msgid " unexpected error in inet_ntop(%s)"
msgstr ""
#: ping/ping6_common.c:745
#, c-format
msgid " (truncated)"
msgstr ""
#: ping/ping6_common.c:764
#, c-format
msgid " unknown qtype(0x%02x)"
msgstr ""
#: ping/ping6_common.c:768
#, c-format
msgid " refused"
msgstr ""
#: ping/ping6_common.c:771
#, c-format
msgid " unknown"
msgstr ""
#: ping/ping6_common.c:774
#, c-format
msgid " unknown code(%02x)"
msgstr ""
#: ping/ping6_common.c:776
#, c-format
msgid "; seq=%u;"
msgstr ""
#: ping/ping6_common.c:816
#, c-format
msgid "packet too short: %d bytes"
msgstr ""
#: ping/ping6_common.c:883 ping/ping.c:1619
#, c-format
msgid "From %s: "
msgstr ""
#: ping/ping6_common.c:924 ping/ping.c:1704
msgid "WARNING: failed to install socket filter"
msgstr ""
#: ping/ping.c:191
#, c-format
msgid "option argument contains garbage: %s"
msgstr ""
#: ping/ping.c:192
msgid "this will become fatal error in the future"
msgstr ""
#: ping/ping.c:224
#, c-format
msgid "bad value for flowinfo: %s"
msgstr ""
#: ping/ping.c:227
#, c-format
msgid "flow value is greater than 20 bits: %s"
msgstr ""
#: ping/ping.c:247
#, c-format
msgid "bad TOS value: %s"
msgstr ""
#: ping/ping.c:250
#, c-format
msgid "the decimal value of TOS bits must be in range 0-255: %d"
msgstr ""
#: ping/ping.c:319 ping/ping.c:346
msgid "only one -4 or -6 option may be specified"
msgstr ""
#: ping/ping.c:327 ping/ping.c:332
msgid "only one of -T or -R may be used"
msgstr ""
#: ping/ping.c:341
#, c-format
msgid "invalid timestamp type: %s"
msgstr ""
#: ping/ping.c:381
msgid "bad timing interval"
msgstr ""
#: ping/ping.c:383
#, c-format
msgid "bad timing interval: %s"
msgstr ""
#: ping/ping.c:394
#, c-format
msgid "cannot copy: %s"
msgstr ""
#: ping/ping.c:403
#, c-format
msgid "invalid source address: %s"
msgstr ""
#: ping/ping.c:417
#, c-format
msgid "cannot set preload to value greater than 3: %d"
msgstr ""
#: ping/ping.c:434
#, c-format
msgid "invalid -M argument: %s"
msgstr ""
#: ping/ping.c:490
msgid "bad linger time"
msgstr ""
#: ping/ping.c:492
#, c-format
msgid "bad linger time: %s"
msgstr ""
#: ping/ping.c:581
#, c-format
msgid "unknown protocol family: %d"
msgstr ""
#: ping/ping.c:705
msgid "warning: QOS sockopts"
msgstr ""
#: ping/ping.c:714
msgid ""
"Do you want to ping broadcast? Then -b. If not, check your local firewall "
"rules"
msgstr ""
#: ping/ping.c:715
#, c-format
msgid "WARNING: pinging broadcast address\n"
msgstr ""
#: ping/ping.c:718 ping/ping.c:905
msgid "cannot set broadcasting"
msgstr ""
#: ping/ping.c:738
msgid "gatifaddrs failed"
msgstr ""
#: ping/ping.c:780
msgid "unknown interface"
msgstr ""
#: ping/ping.c:807
#, c-format
msgid "broadcast ping with too short interval: %d"
msgstr ""
#: ping/ping.c:809
msgid "broadcast ping does not fragment"
msgstr ""
#: ping/ping.c:833
msgid "WARNING: setsockopt(ICMP_FILTER)"
msgstr ""
#: ping/ping.c:838
msgid "WARNING: your kernel is veeery old. No problems."
msgstr ""
#: ping/ping.c:842
msgid "WARNING: setsockopt(IP_RECVTTL)"
msgstr ""
#: ping/ping.c:844
msgid "WARNING: setsockopt(IP_RETOPTS)"
msgstr ""
#: ping/ping.c:911
msgid "cannot disable multicast loopback"
msgstr ""
#: ping/ping.c:916
msgid "cannot set multicast time-to-live"
msgstr ""
#: ping/ping.c:918
msgid "cannot set unicast time-to-live"
msgstr ""
#: ping/ping.c:927
#, c-format
msgid "PING %s (%s) "
msgstr ""
#: ping/ping.c:930
#, c-format
msgid "%zu(%zu) bytes of data.\n"
msgstr ""
#: ping/ping.c:956
#, c-format
msgid ""
"\n"
"NOP"
msgstr ""
#: ping/ping.c:967
#, c-format
msgid ""
"\n"
"%cSRR: "
msgstr ""
#: ping/ping.c:1005
#, c-format
msgid "\t(same route)"
msgstr ""
#: ping/ping.c:1010
#, c-format
msgid ""
"\n"
"RR: "
msgstr ""
#: ping/ping.c:1046
#, c-format
msgid ""
"\n"
"TS: "
msgstr ""
#: ping/ping.c:1078
#, c-format
msgid "\t%ld absolute not-standard"
msgstr ""
#: ping/ping.c:1080
#, c-format
msgid "\t%ld not-standard"
msgstr ""
#: ping/ping.c:1084
#, c-format
msgid "\t%ld absolute"
msgstr ""
#: ping/ping.c:1095
#, c-format
msgid "Unrecorded hops: %d\n"
msgstr ""
#: ping/ping.c:1099
#, c-format
msgid ""
"\n"
"unknown option %x"
msgstr ""
#: ping/ping.c:1119
#, c-format
msgid "Vr HL TOS Len ID Flg off TTL Pro cks Src Dst Data\n"
msgstr ""
#: ping/ping.c:1120
#, c-format
msgid " %1x %1x %02x %04x %04x"
msgstr ""
#: ping/ping.c:1122
#, c-format
msgid " %1x %04x"
msgstr ""
#: ping/ping.c:1124
#, c-format
msgid " %02x %02x %04x"
msgstr ""
#: ping/ping.c:1140
#, c-format
msgid "Echo Reply\n"
msgstr ""
#: ping/ping.c:1146
#, c-format
msgid "Destination Net Unreachable\n"
msgstr ""
#: ping/ping.c:1149
#, c-format
msgid "Destination Host Unreachable\n"
msgstr ""
#: ping/ping.c:1152
#, c-format
msgid "Destination Protocol Unreachable\n"
msgstr ""
#: ping/ping.c:1155
#, c-format
msgid "Destination Port Unreachable\n"
msgstr ""
#: ping/ping.c:1158
#, c-format
msgid "Frag needed and DF set (mtu = %u)\n"
msgstr ""
#: ping/ping.c:1161
#, c-format
msgid "Source Route Failed\n"
msgstr ""
#: ping/ping.c:1164
#, c-format
msgid "Destination Net Unknown\n"
msgstr ""
#: ping/ping.c:1167
#, c-format
msgid "Destination Host Unknown\n"
msgstr ""
#: ping/ping.c:1170
#, c-format
msgid "Source Host Isolated\n"
msgstr ""
#: ping/ping.c:1173
#, c-format
msgid "Destination Net Prohibited\n"
msgstr ""
#: ping/ping.c:1176
#, c-format
msgid "Destination Host Prohibited\n"
msgstr ""
#: ping/ping.c:1179
#, c-format
msgid "Destination Net Unreachable for Type of Service\n"
msgstr ""
#: ping/ping.c:1182
#, c-format
msgid "Destination Host Unreachable for Type of Service\n"
msgstr ""
#: ping/ping.c:1185
#, c-format
msgid "Packet filtered\n"
msgstr ""
#: ping/ping.c:1188
#, c-format
msgid "Precedence Violation\n"
msgstr ""
#: ping/ping.c:1191
#, c-format
msgid "Precedence Cutoff\n"
msgstr ""
#: ping/ping.c:1194
#, c-format
msgid "Dest Unreachable, Bad Code: %d\n"
msgstr ""
#: ping/ping.c:1201
#, c-format
msgid "Source Quench\n"
msgstr ""
#: ping/ping.c:1208
#, c-format
msgid "Redirect Network"
msgstr ""
#: ping/ping.c:1211
#, c-format
msgid "Redirect Host"
msgstr ""
#: ping/ping.c:1214
#, c-format
msgid "Redirect Type of Service and Network"
msgstr ""
#: ping/ping.c:1217
#, c-format
msgid "Redirect Type of Service and Host"
msgstr ""
#: ping/ping.c:1220
#, c-format
msgid "Redirect, Bad Code: %d"
msgstr ""
#: ping/ping.c:1231
#, c-format
msgid "(New nexthop: %s)\n"
msgstr ""
#: ping/ping.c:1237
#, c-format
msgid "Echo Request\n"
msgstr ""
#: ping/ping.c:1243
#, c-format
msgid "Time to live exceeded\n"
msgstr ""
#: ping/ping.c:1246
#, c-format
msgid "Frag reassembly time exceeded\n"
msgstr ""
#: ping/ping.c:1249
#, c-format
msgid "Time exceeded, Bad Code: %d\n"
msgstr ""
#: ping/ping.c:1256
#, c-format
msgid "Parameter problem: pointer = %u\n"
msgstr ""
#: ping/ping.c:1262
#, c-format
msgid "Timestamp\n"
msgstr ""
#: ping/ping.c:1266
#, c-format
msgid "Timestamp Reply\n"
msgstr ""
#: ping/ping.c:1270
#, c-format
msgid "Information Request\n"
msgstr ""
#: ping/ping.c:1274
#, c-format
msgid "Information Reply\n"
msgstr ""
#: ping/ping.c:1279
#, c-format
msgid "Address Mask Request\n"
msgstr ""
#: ping/ping.c:1284
#, c-format
msgid "Address Mask Reply\n"
msgstr ""
#: ping/ping.c:1288
#, c-format
msgid "Bad ICMP type: %d\n"
msgstr ""
#: ping/ping.c:1340
#, c-format
msgid "local error: %s"
msgstr ""
#: ping/ping.c:1342
#, c-format
msgid "local error: message too long, mtu=%u"
msgstr ""
#: ping/ping.c:1514
#, c-format
msgid "packet too short (%d bytes) from %s"
msgstr ""
#: ping/ping.c:1594
#, c-format
msgid "From %s: icmp_seq=%u "
msgstr ""
#: ping/ping.c:1597
#, c-format
msgid "(BAD CHECKSUM)"
msgstr ""
#: ping/ping.c:1621
#, c-format
msgid "(BAD CHECKSUM)\n"
msgstr ""
#: ping/ping_common.c:208
#, c-format
msgid "patterns must be specified as hex digits: %s"
msgstr ""
#: ping/ping_common.c:225
#, c-format
msgid "PATTERN: 0x"
msgstr ""
#: ping/ping_common.c:345
#, c-format
msgid "no answer yet for icmp_seq=%lu\n"
msgstr ""
#: ping/ping_common.c:445
msgid "WARNING: probably, rcvbuf is not enough to hold preload"
msgstr ""
#: ping/ping_common.c:461
#, c-format
msgid "cannot flood; minimal interval allowed for user is %dms"
msgstr ""
#: ping/ping_common.c:464
#, c-format
msgid "illegal preload and/or interval: %d"
msgstr ""
#: ping/ping_common.c:476
msgid "Warning: no SO_TIMESTAMP support, falling back to SIOCGSTAMP"
msgstr ""
#: ping/ping_common.c:491
#, c-format
msgid "Warning: Failed to set mark: %d"
msgstr ""
#: ping/ping_common.c:750
#, c-format
msgid "Warning: time of day goes back (%ldus), taking countermeasures"
msgstr ""
#: ping/ping_common.c:800
#, c-format
msgid "%d bytes from %s:"
msgstr ""
#: ping/ping_common.c:806
#, c-format
msgid " ttl=%d"
msgstr ""
#: ping/ping_common.c:809
#, c-format
msgid " (truncated)\n"
msgstr ""
#: ping/ping_common.c:814
#, c-format
msgid " time=%ld ms"
msgstr ""
#: ping/ping_common.c:816
#, c-format
msgid " time=%ld.%01ld ms"
msgstr ""
#: ping/ping_common.c:819
#, c-format
msgid " time=%ld.%02ld ms"
msgstr ""
#: ping/ping_common.c:822
#, c-format
msgid " time=%ld.%03ld ms"
msgstr ""
#: ping/ping_common.c:826
#, c-format
msgid " (DUP!)"
msgstr ""
#: ping/ping_common.c:828
#, c-format
msgid " (BAD CHECKSUM!)"
msgstr ""
#: ping/ping_common.c:835
#, c-format
msgid ""
"\n"
"wrong data byte #%zu should be 0x%x but was 0x%x"
msgstr ""
#: ping/ping_common.c:878
#, c-format
msgid "--- %s ping statistics ---\n"
msgstr ""
#: ping/ping_common.c:879
#, c-format
msgid "%ld packets transmitted, "
msgstr ""
#: ping/ping_common.c:880
#, c-format
msgid "%ld received"
msgstr ""
#: ping/ping_common.c:882
#, c-format
msgid ", +%ld duplicates"
msgstr ""
#: ping/ping_common.c:884
#, c-format
msgid ", +%ld corrupted"
msgstr ""
#: ping/ping_common.c:886
#, c-format
msgid ", +%ld errors"
msgstr ""
#: ping/ping_common.c:892
#, c-format
msgid ", %g%% packet loss"
msgstr ""
#: ping/ping_common.c:894
#, c-format
msgid ", time %ldms"
msgstr ""
#: ping/ping_common.c:914
#, c-format
msgid "rtt min/avg/max/mdev = %ld.%03ld/%lu.%03ld/%ld.%03ld/%ld.%03ld ms"
msgstr ""
#: ping/ping_common.c:922
#, c-format
msgid "%spipe %d"
msgstr ""
#: ping/ping_common.c:929
#, c-format
msgid "%sipg/ewma %d.%03d/%d.%03d ms"
msgstr ""
#: ping/ping_common.c:947
#, c-format
msgid "%ld/%ld packets, %d%% loss"
msgstr ""
#: ping/ping_common.c:952
#, c-format
msgid ", min/avg/ewma/max = %ld.%03ld/%lu.%03ld/%d.%03d/%ld.%03ld ms"
msgstr ""
#: tracepath.c:215
#, c-format
msgid ""
"cmsg6:%d\n"
" "
msgstr ""
#: tracepath.c:227
#, c-format
msgid ""
"cmsg4:%d\n"
" "
msgstr ""
#: tracepath.c:232
#, c-format
msgid "no info\n"
msgstr ""
#: tracepath.c:236
msgid "[LOCALHOST]"
msgstr ""
#: tracepath.c:284
#, c-format
msgid "%3ld.%03ldms "
msgstr ""
#: tracepath.c:287
#, c-format
msgid "(This broken router returned corrupted payload) "
msgstr ""
#: tracepath.c:302
#, c-format
msgid "pmtu %d\n"
msgstr ""
#: tracepath.c:307
#, c-format
msgid "reached\n"
msgstr ""
#: tracepath.c:323 tracepath.c:326
#, c-format
msgid "asymm %2d "
msgstr ""
#: tracepath.c:341
msgid "NET ERROR"
msgstr ""
#: tracepath.c:386
#, c-format
msgid "%2d?: reply received 8)\n"
msgstr ""
#: tracepath.c:392
#, c-format
msgid "%2d: send failed\n"
msgstr ""
#: tracepath.c:399
#, c-format
msgid ""
"\n"
"Usage\n"
" tracepath [options] <destination>\n"
"\n"
"Options:\n"
" -4 use IPv4\n"
" -6 use IPv6\n"
" -b print both name and ip\n"
" -l <length> use packet <length>\n"
" -m <hops> use maximum <hops>\n"
" -n no dns name resolution\n"
" -p <port> use destination <port>\n"
" -V print version and exit\n"
" <destination> dns name or ip address\n"
"\n"
"For more details see tracepath(8).\n"
msgstr ""
#: tracepath.c:457 tracepath.c:462
msgid "Only one -4 or -6 option may be specified"
msgstr ""
#: tracepath.c:603
#, c-format
msgid "%2d: no reply\n"
msgstr ""
#: tracepath.c:610
#, c-format
msgid " Resume: pmtu %d "
msgstr ""
#: tracepath.c:612
#, c-format
msgid "hops %d "
msgstr ""
#: tracepath.c:614
#, c-format
msgid "back %d "
msgstr ""
#: tracepath.c:619
#, c-format
msgid "pktlen must be within: %d < value <= %d"
msgstr ""
#: traceroute6.c:437
#, c-format
msgid "traceroute: wrote %s %d chars, ret=%d\n"
msgstr ""
#: traceroute6.c:466
msgid "Error"
msgstr ""
#: traceroute6.c:468
msgid "Destination Unreachable"
msgstr ""
#: traceroute6.c:470
msgid "Packet Too Big"
msgstr ""
#: traceroute6.c:472
msgid "Time Exceeded in Transit"
msgstr ""
#: traceroute6.c:474
msgid "Parameter Problem"
msgstr ""
#: traceroute6.c:476
msgid "Echo Request"
msgstr ""
#: traceroute6.c:478
msgid "Echo Reply"
msgstr ""
#: traceroute6.c:480
msgid "Membership Query"
msgstr ""
#: traceroute6.c:482
msgid "Membership Report"
msgstr ""
#: traceroute6.c:484
msgid "Membership Reduction"
msgstr ""
#: traceroute6.c:486
msgid "Router Solicitation"
msgstr ""
#: traceroute6.c:488
msgid "Router Advertisement"
msgstr ""
#: traceroute6.c:490
msgid "Neighbor Solicitation"
msgstr ""
#: traceroute6.c:492
msgid "Neighbor Advertisement"
msgstr ""
#: traceroute6.c:494
msgid "Redirect"
msgstr ""
#: traceroute6.c:496
msgid "Neighbor Query"
msgstr ""
#: traceroute6.c:498
msgid "Neighbor Reply"
msgstr ""
#: traceroute6.c:500
msgid "Multicast Listener Report packet"
msgstr ""
#: traceroute6.c:502
msgid "Home Agent Address Discovery Request Message"
msgstr ""
#: traceroute6.c:504
msgid "Home Agent Address Discovery Reply message"
msgstr ""
#: traceroute6.c:506
msgid "Mobile Prefix Solicitation Message"
msgstr ""
#: traceroute6.c:508
msgid "Mobile Prefix Solicitation Advertisement"
msgstr ""
#: traceroute6.c:510
msgid "OUT-OF-RANGE"
msgstr ""
#: traceroute6.c:600
#, c-format
msgid ""
"\n"
"Usage:\n"
" traceroute6 [options] <destination>\n"
"\n"
"Options:\n"
" -d use SO_DEBUG socket option\n"
" -i <device> bind to <device>\n"
" -m <hops> use maximum <hops>\n"
" -n no dns name resolution\n"
" -p <port> use destination <port>\n"
" -q <nprobes> number of probes\n"
" -r use SO_DONTROUTE socket option\n"
" -s <address> use source <address>\n"
" -v verbose output\n"
" -w <timeout> time to wait for response\n"
"\n"
"For more details see traceroute6(8).\n"
msgstr ""
#: traceroute6.c:718
msgid "wait must be >1 sec"
msgstr ""
#: traceroute6.c:795
#, c-format
msgid "setsockopt(RAW_CHECKSUM) failed - try to continue."
msgstr ""
#: traceroute6.c:837
#, c-format
msgid "unknown addr %s"
msgstr ""
#: traceroute6.c:845
#, c-format
msgid "traceroute to %s (%s)"
msgstr ""
#: traceroute6.c:848
#, c-format
msgid " from %s"
msgstr ""
#: traceroute6.c:849
#, c-format
msgid ", %d hops max, %d byte packets\n"
msgstr ""
#: traceroute6.c:875
#, c-format
msgid " %.4f ms"
msgstr ""
|