1/** @file 2 String definitions for the Shell Ping6 application. 3 4 Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR> 5 6 This program and the accompanying materials 7 are licensed and made available under the terms and conditions of the BSD License 8 which accompanies this distribution. The full text of the license may be found at 9 http://opensource.org/licenses/bsd-license.php. 10 11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 14**/ 15 16#langdef en-US "English" 17 18#string STR_PING6_INVALID_IP #language en-US "%Ping6: Invalid IP6 address, %s\n" 19#string STR_PING6_INVALID_INPUT #language en-US "%Ping6: Invalid input, please type 'Ping6 -?'for help\n" 20#string STR_PING6_INVALID_SEND_NUMBER #language en-US "%Ping6: Invalid send number, %s\n" 21#string STR_PING6_INVALID_BUFFER_SIZE #language en-US "%Ping6: Invalid buffer size, %s\n" 22#string STR_PING6_INVALID_SOURCE #language en-US "%Ping6: Require source interface option\n" 23#string STR_PING6_IP6_CONFIG #language en-US "%Ping6: Ip6->Config %r\n" 24#string STR_PING6_IP6_GETMODE #language en-US "%Ping6: Ip6->GetModeData %r\n" 25#string STR_PING6_IP6CFG_GETDATA #language en-US "%Ping6: Ip6Config->GetData %r\n" 26#string STR_PING6_SEND_REQUEST #language en-US "Echo request sequence %d fails.\n" 27#string STR_PING6_SOURCE_NOT_FOUND #language en-US "Source %s not found.\n" 28#string STR_PING6_NOSOURCE_INDOMAIN #language en-US "No sources in %s's multicast domain.\n" 29#string STR_PING6_START #language en-US "Ping %s %d data bytes\n\n" 30#string STR_PING6_TIMEOUT #language en-US "Echo request sequence %d timeout.\n" 31#string STR_PING6_REPLY_INFO #language en-US "%d bytes from %s : icmp_seq=%d ttl=%d time%c%dms\n" 32#string STR_PING6_STAT #language en-US "\n%d packets transmitted, %d received, %d%% packet loss, time %dms\n" 33#string STR_PING6_RTT #language en-US "\nRtt(round trip time) min=%dms max=%dms avg=%dms\n" 34#string STR_PING6_LINE_HELP #language en-US "Ping a target machine with UEFI IPv6 network stack" 35#string STR_PING6_HELP #language en-US "Ping a target machine with UEFI IPv6 network stack.\n\n" 36 "Usage: Ping6 [-l size] [-n count] [-s SourceIp] TargetIp\n" 37 " Use ESC and Ctrl+C to interrupt Ping6 process.\n" 38 "\n" 39 "Options:\n" 40 " -l size Send buffer size, in bytes(default=16, min=16, max=32768).\n" 41 " -n count Send request count, (default=10, min=1, max=10000).\n" 42 " -s SourceIp Source IPv6 address.\n" 43 " TargetIp Target IPv6 address.\n" 44 " -? Help document.\n" 45 "\n" 46 "Examples:\n" 47 " Ping6 -s 2002::1 2002::2 -l 1000 -n 5\n" 48 " Ping6 2002::2 -l 1000\n"