1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2
3STRINGTABLE
4BEGIN
5    IDS_USER_HEADER "USER INFORMATION"
6    IDS_GROU_HEADER "GROUP INFORMATION"
7    IDS_PRIV_HEADER "PRIVILEGES INFORMATION"
8    IDS_COL_USER_NAME "User Name"
9    IDS_COL_GROUP_NAME "Group Name"
10    IDS_COL_TYPE "Type"
11    IDS_COL_SID "SID"
12    IDS_COL_ATTRIB "Attributes"
13    IDS_COL_PRIV_NAME "Privilege Name"
14    IDS_COL_DESCRIPTION "Description"
15    IDS_COL_STATE "State"
16    IDS_TP_WELL_KNOWN_GROUP "Well-known group"
17    IDS_TP_ALIAS "Alias"
18    IDS_TP_LABEL "Label"
19
20    /* [!] important note from the programmer: the program tries to remove
21       the last ', ' after concatenating, so keep than in mind when translating.
22
23       you can test your translation of these attributes by using 'whoami /groups' */
24
25    IDS_ATTR_GROUP_MANDATORY "Mandatory group, "
26    IDS_ATTR_GROUP_ENABLED_BY_DEFAULT "Enabled by default, "
27    IDS_ATTR_GROUP_ENABLED "Enabled group, "
28    IDS_ATTR_GROUP_OWNER "Group owner, "
29    IDS_UNKNOWN_DESCRIPTION "???"
30    IDS_STATE_ENABLED "Enabled"
31    IDS_STATE_DISABLED "Disabled"
32    IDS_ERROR_UPN "ERROR: Unable to get User Principal Name (UPN) as the current logged-on user\nis not a domain user.\n"
33    IDS_ERROR_FQDN "ERROR: Unable to get Fully Qualified Distinguished Name (FQDN) as the current\nlogged-on user is not a domain user.\n"
34    IDS_ERROR_VALUEXPECTED "ERROR: Invalid syntax. Value expected for '/fo'.\nType ""WHOAMI /?"" for usage.\n"
35    IDS_ERROR_VALUENOTALLOWED "ERROR: Invalid syntax. '%s' value is not allowed for '/fo' option.\nType ""WHOAMI /?"" for usage.\n"
36    IDS_ERROR_1TIMES "ERROR: Invalid syntax. '%s' option is not allowed more than '1' time(s).\nType ""WHOAMI /?"" for usage.\n"
37    IDS_ERROR_INVALIDSYNTAX "ERROR: Invalid syntax.\nType ""WHOAMI /?"" for usage.\n"
38    IDS_ERROR_INVALIDARG "ERROR: Invalid argument/option - '%s'.\nType ""WHOAMI /?"" for usage.\n"
39    IDS_ERROR_NH_LIST "ERROR: /NH switch cannot be used with the LIST format.\nType ""WHOAMI /?"" for usage.\n"
40    IDS_HELP "DESCRIPTION:\n\
41  Display user, group and privileges information for the local logged-on user.\n\
42  If no arguments are provided, displays the current domain and user name.\n\
43\n\
44  Available output formats for the '/fo' option are 'csv', 'list' and 'table'.\n\
45  Use '/nh' to hide headers. By default the data is displayed in a table.\n\
46\n\
47SYNTAX:\n\
48  whoami [/upn | /fqdn | /logonid]\n\
49  whoami {[/user] [/groups] [/priv]} [/fo <Format>] [/nh]\n\
50  whoami /all [/fo <Format>] [/nh]\n\
51\n\
52EXAMPLES:\n\
53  whoami /groups /priv /nh /fo csv\n\
54  whoami /logonid\n\
55  whoami\n"
56END
57