taskkill: Implement graceful termination by process name.
[wine.git] / programs / taskkill / En.rc
bloba37321de116b3b791c2ef9b1833beeaa3569ae6a
1 /*
2  * Task termination utility
3  * English language support
4  *
5  * Copyright 2010 Andrew Nguyen
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
22 #include "taskkill.h"
24 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
26 STRINGTABLE
28     STRING_USAGE, "Usage: taskkill [/?] [/f] [/im ProcessName | /pid ProcessID]\n"
29     STRING_INVALID_OPTION, "Error: Unknown or invalid command line option specified.\n"
30     STRING_INVALID_PARAM, "Error: Invalid command line parameter specified.\n"
31     STRING_MISSING_OPTION, "Error: One of options /im or /pid must be specified.\n"
32     STRING_MISSING_PARAM, "Error: Option %s expects a command line parameter.\n"
33     STRING_MUTUAL_EXCLUSIVE, "Error: Options /im and /pid are mutually exclusive.\n"
34     STRING_CLOSE_PID_SEARCH, "Close message sent to top-level windows of process with PID %u.\n"
35     STRING_CLOSE_PROC_SRCH, "Close message sent to top-level windows of process \"%s\" with PID %u.\n"
36     STRING_SEARCH_FAILED, "Error: Could not find process \"%s\".\n"
37     STRING_ENUM_FAILED, "Error: Unable to enumerate the process list.\n"