Reactos
1LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
2
3STRINGTABLE
4{
5 STRING_USAGE, "Usage: taskkill [/?] [/f] [/im ProcessName | /pid ProcessID] [/t]\n"
6 STRING_INVALID_OPTION, "Error: Unknown or invalid command line option specified.\n"
7 STRING_INVALID_PARAM, "Error: Invalid command line parameter specified.\n"
8 STRING_MISSING_OPTION, "Error: One of options /im or /pid must be specified.\n"
9 STRING_MISSING_PARAM, "Error: Option %1 expects a command line parameter.\n"
10 STRING_MUTUAL_EXCLUSIVE, "Error: Options /im and /pid are mutually exclusive.\n"
11 STRING_CLOSE_PID_SEARCH, "Close message sent to top-level windows of process with PID %1!u!.\n"
12 STRING_CLOSE_PROC_SRCH, "Close message sent to top-level windows of process ""%1"" with PID %2!u!.\n"
13 STRING_TERM_PID_SEARCH, "The process with PID %1!u! has been terminated.\n"
14 STRING_TERM_PROC_SEARCH, "The process ""%1"" with PID %2!u! has been terminated.\n"
15 STRING_SEARCH_FAILED, "Error: Could not find process ""%1"".\n"
16 STRING_ENUM_FAILED, "Error: Unable to enumerate the process list.\n"
17 STRING_TERMINATE_FAILED, "Error: Unable to terminate process ""%1"".\n"
18 STRING_SELF_TERMINATION, "Error: Process self-termination is not permitted.\n"
19 // STRING_CLOSE_CHILD, "Sent termination signal to process with PID %1!u!, child of PID %2!u!.\n"
20 STRING_CLOSE_CHILD, "Close message sent to top-level windows of process with PID %1!u!, child of PID %2!u!.\n"
21 STRING_TERM_CHILD, "The process with PID %1!u! (child process of PID %2!u!) has been terminated.\n"
22 STRING_TERM_CHILD_FAILED, "Error: Unable to terminate process with PID %1!u!, child of PID %2!u!.\n"
23 STRING_PARAM_TOO_MUCH, "Error: Invalid syntax. '%1' option is not allowed more than '%2!d!' time(s).\n"
24 STRING_INVALID_SYNTAX, "Error: Invalid syntax.\n"
25}