• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/** @file
2  String definitions for the Shell application IfConfig6.
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
8  of the BSD License which accompanies this distribution.  The full
9  text of the license may be found at<BR>
10  http://opensource.org/licenses/bsd-license.php
11
12  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15**/
16
17#langdef en-US "English"
18
19#string STR_IFCONFIG6_ERR_IP6CFG_GETDATA       #language en-US    "Ip6Config->GetData return %hr\n"
20#string STR_IFCONFIG6_INFO_BREAK               #language en-US    "-----------------------------------------------------------------"
21#string STR_IFCONFIG6_INFO_COLON               #language en-US    ":"
22#string STR_IFCONFIG6_INFO_JOINT               #language en-US    " >> "
23#string STR_IFCONFIG6_INFO_NEWLINE             #language en-US    "\n"
24#string STR_IFCONFIG6_INFO_IF_NAME             #language en-US    "\n%Hname         : %s%N\n"
25#string STR_IFCONFIG6_INFO_POLICY_AUTO         #language en-US    "%Hpolicy       : automatic%N\n"
26#string STR_IFCONFIG6_INFO_POLICY_MAN          #language en-US    "%Hpolicy       : manual%N\n"
27#string STR_IFCONFIG6_INFO_DAD_TRANSMITS       #language en-US    "%Hdad xmits    : %d%N\n"
28#string STR_IFCONFIG6_INFO_INTERFACE_ID_HEAD   #language en-US    "%Hinterface id : %N"
29#string STR_IFCONFIG6_INFO_MAC_ADDR_HEAD       #language en-US    "%Hmac addr     : %N"
30#string STR_IFCONFIG6_INFO_MAC_ADDR_BODY       #language en-US    "%02x"
31#string STR_IFCONFIG6_INFO_IP_ADDR_HEAD        #language en-US    "\n%Hhost addr    : %N\n"
32#string STR_IFCONFIG6_INFO_DNS_ADDR_HEAD       #language en-US    "\n%Hdns server   : %N\n"
33#string STR_IFCONFIG6_INFO_IP_ADDR_BODY        #language en-US    "%02x"
34#string STR_IFCONFIG6_INFO_IP_ADDR_BODY4BIT    #language en-US    "%x"
35#string STR_IFCONFIG6_INFO_ROUTE_HEAD          #language en-US    "\n%Hroute table  : %N\n"
36#string STR_IFCONFIG6_INFO_PREFIX_LEN          #language en-US    "/%d"
37
38#string STR_IFCONFIG6_LINE_HELP                #language en-US    "Displays or modifies the IPv6 configuration"
39#string STR_IFCONFIG6_HELP                     #language en-US    "Displays or modifies IPv6 configuration for network interface.\n\n"
40                                                                  "Usage:\n"
41                                                                  "  IfConfig6 [-b] [-r {ifname}] [-l {ifname}] [-s {ifname} {command ...}] [-?]\n"
42                                                                  "\n"
43                                                                  "Option:\n"
44                                                                  "  -b (break) enable page break.\n"
45                                                                  "  -r (renew) renew configuration of interface and set automatic policy.\n"
46                                                                  "  -l (list)  list the configuration of interface.\n"
47                                                                  "  -s (set)   set configuration of interface as follows.\n"
48                                                                  "  -? (help)  list the help documentation.\n"
49                                                                  "     |man/auto     manual or automatic policy\n"
50                                                                  "     |id  {mac}    alternative interface id.\n"
51                                                                  "     |dad {num}    dad transmits count.\n"
52                                                                  "     |host{ip}     static host ip address, must under manual policy.\n"
53                                                                  "     |gw  {ip}     gateway ip address, must under manual policy.\n"
54                                                                  "     |dns {ip}     dns server ip address, must under manual policy.\n"
55                                                                  "\n"
56                                                                  "Example:\n"
57                                                                  "  IfConfig6 -l\n"
58                                                                  "  IfConfig6 -b -l\n"
59                                                                  "  IfConfig6 -r eth0\n"
60                                                                  "  IfConfig6 -s eth0 auto dad 10\n"
61                                                                  "  IfConfig6 -s eth0 man id ff:dd:aa:88:66:cc\n"
62                                                                  "  IfConfig6 -s eth1 man host 2002::1/64 2002::2/64 gw 2002::3\n"
63#string STR_IFCONFIG6_ERR_LACK_INTERFACE       #language en-US    "Lack interface name.\n"
64                                                                  "Usage: IfConfig6 -s {ifname} {config options ...}\n"
65                                                                  "Example: IfConfig6 -s eth0 auto\n"
66#string STR_IFCONFIG6_LACK_OPTION              #language en-US    "Flags lack. Please type 'IfConfig6 -?' for help info.\n"
67#string STR_IFCONFIG6_CONFLICT_OPTIONS         #language en-US    "Flags conflict. Please type 'IfConfig6 -?' for help info.\n"
68#string STR_IFCONFIG6_ERR_LACK_COMMAND         #language en-US    "Lack interface config option.\n"
69                                                                  "Usage: IfConfig6 -s {ifname} {config options ...}\n"
70                                                                  "Example: IfConfig6 -s eth0 auto\n"
71#string STR_IFCONFIG6_ERR_INVALID_INTERFACE    #language en-US    "Invalid interface name.\n"
72                                                                  "Hint: Use {IfConfig6 -l} to check existing interface names.\n"
73#string STR_IFCONFIG6_ERR_INVALID_COMMAND      #language en-US    "Invalid command. Bad command %H%s%N is skipped.\n"
74                                                                  "Hint: Incorrect option or arguments. Please type 'IfConfig6 -?' for help info.\n"
75#string STR_IFCONFIG6_ERR_LACK_ARGUMENTS       #language en-US    "Lack arguments. Bad command %H%s%N is skipped.\n"
76                                                                  "Hint: Please type 'IfConfig6 -?' for help info.\n"
77#string STR_IFCONFIG6_ERR_LACK_OPTION          #language en-US    "Lack options.\n"
78                                                                  "Hint: Please type 'IfConfig6 -?' for help info.\n"
79#string STR_IFCONFIG6_ERR_MAN_HOST             #language en-US    "Manual address configuration failed. Please retry.\n"
80#string STR_IFCONFIG6_ERR_DUPLICATE_COMMAND    #language en-US    "Duplicate commands. Bad command %H%s%N is skipped.\n"
81                                                                  "Hint: Please type 'IfConfig6 -?' for help info.\n"
82#string STR_IFCONFIG6_ERR_CONFLICT_COMMAND     #language en-US    "Conflict commands. Bad command %H%s%N is skipped.\n"
83                                                                  "Hint: Please type 'IfConfig6 -?' for help info.\n"
84#string STR_IFCONFIG6_ERR_UNKNOWN_COMMAND      #language en-US    "Unknown commands. Bad command %H%s%N is skipped.\n"
85                                                                  "Hint: Please type 'IfConfig6 -?' for help info.\n"
86#string STR_IFCONFIG6_ERR_ADDRESS_FAILED       #language en-US    "It failed to set .\n"
87#string STR_IFCONFIG6_INVALID_IP               #language en-US    "%IfConfig6: Invalid IP6 address, %s\n"
88