push cc8bc80451cc24f4d7cf75168b569f0ebfe19547
[wine/hacks.git] / programs / cmd / En.rc
blob941d58fb555afe324991308246d4cb8b91f6bc49
1 /*
2  * Wine command prompt
3  * English Language Support
4  *
5  * Copyright (C) 1999 D A Pickles
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 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
24 STRINGTABLE
26   WCMD_ATTRIB, "Help about ATTRIB\n"
27   WCMD_CALL,
28 "CALL <batchfilename> is used within a batch file to execute commands\n\
29 from another batch file. When the batch file exits, control returns to\n\
30 the file which called it. The CALL command may supply parameters to the\n\
31 called procedure.\n\
32 \n\
33 Changes to default directory, environment variables etc made within a\n\
34 called procedure are inherited by the caller.\n"
36   WCMD_CD,     "Help about CD\n"
37   WCMD_CHDIR,  "Help about CHDIR\n"
39   WCMD_CLS,    "CLS clears the console screen\n"
41   WCMD_COPY,   "Help about COPY\n"
42   WCMD_CTTY,   "Help about CTTY\n"
43   WCMD_DATE,   "Help about DATE\n"
44   WCMD_DEL,    "Help about DEL\n"
45   WCMD_DIR,    "Help about DIR\n"
47   WCMD_ECHO,
48 "ECHO <string> displays <string> on the current terminal device.\n\
49 \n\
50 ECHO ON causes all subsequent commands in a batch file to be displayed\n\
51 on the terminal device before they are executed.\n\
52 \n\
53 ECHO OFF reverses the effect of a previous ECHO ON (ECHO is OFF by\n\
54 default). The ECHO OFF command can be prevented from displaying by\n\
55 preceding it with an @ sign.\n"
57   WCMD_ERASE,  "Help about ERASE\n"
59   WCMD_FOR,
60 "The FOR command is used to execute a command for each of a set of files.\n\
61 \n\
62 Syntax: FOR %variable IN (set) DO command\n\
63 \n\
64 The requirement to double the % sign when using FOR in a batch file does\n\
65 not exist in wine's cmd.\n"
67   WCMD_GOTO,
68 "The GOTO command transfers execution to another statement within a\n\
69 batch file.\n\
70 \n\
71 The label which is the target of a GOTO may be up to 255 characters\n\
72 long but may not include spaces (this is different from other operating\n\
73 systems). If two or more identical labels exist in a batch file the\n\
74 first one will always be executed. Attempting to GOTO a nonexistent\n\
75 label terminates the batch file execution.\n\
76 \n\
77 GOTO has no effect when used interactively.\n"
79   WCMD_HELP,   "Help about HELP\n"
81   WCMD_IF,
82 "IF is used to conditionally execute a command.\n\
83 \n\
84 Syntax: IF [NOT] EXIST filename command\n\
85         IF [NOT] string1==string2 command\n\
86         IF [NOT] ERRORLEVEL number command\n\
87 \n\
88 In the second form of the command, string1 and string2 must be in double\n\
89 quotes. The comparison is not case-sensitive.\n"
91   WCMD_LABEL,  "LABEL is used to set a disk volume label.\n\
92 \n\
93 Syntax: LABEL [drive:]\n\
94 The command will prompt you for the new volume label for the given drive.\n\
95 You can display the disk volume label with the VOL command.\n"
97   WCMD_MD,     "Help about MD\n"
98   WCMD_MKDIR,  "Help about MKDIR\n"
99   WCMD_MOVE,
100 "MOVE relocates a file or directory to a new point within the file system.\n\
102 If the item being moved is a directory then all the files and subdirectories\n\
103 below the item are moved as well.\n\
105 MOVE fails if the old and new locations are on different DOS drive letters.\n"
107   WCMD_PATH,
108 "PATH displays or changes the cmd search path.\n\
110 Entering PATH will display the current PATH setting (initially this is\n\
111 the value given in your wine.conf file). To change the setting follow the\n\
112 PATH command with the new value.\n\
114 It is also possible to modify the PATH by using the PATH environment\n\
115 variable, for example:\n\
116                 PATH %PATH%;c:\\temp\n"
118   WCMD_PAUSE,
119 "PAUSE displays a message on the screen 'Press Return key to continue'\n\
120 and waits for the user to press the Return key. It is mainly useful in\n\
121 batch files to allow the user to read the output of a previous command\n\
122 before it scrolls off the screen.\n"
124   WCMD_PROMPT,
125 "PROMPT sets the command-line prompt.\n\
127 The string following the PROMPT command (and the space immediately after)\n\
128 appears at the beginning of the line when cmd is waiting for input.\n\
130 The following character strings have the special meaning shown:\n\
132 $$    Dollar sign         $_    Linefeed            $b    Pipe sign (|)\n\
133 $d    Current date        $e    Escape              $g    > sign\n\
134 $l    < sign              $n    Current drive       $p    Current path\n\
135 $q    Equal sign          $t    Current time        $v    cmd version\n\
137 Note that entering the PROMPT command without a prompt-string resets the\n\
138 prompt to the default, which is the current directory (which includes the\n\
139 current drive letter) followed by a greater-than (>) sign.\n\
140 (like a command PROMPT $p$g).\n\
142 The prompt can also be changed by altering the PROMPT environment variable,\n\
143 so the command 'SET PROMPT=text' has the same effect as 'PROMPT text'\n"
145   WCMD_REM,
146 "A command line beginning REM (followed by a space) performs no\n\
147 action, and can therefore be used as a comment in a batch file.\n"
149   WCMD_REN,    "Help about REN\n"
150   WCMD_RENAME, "Help about RENAME\n"
151   WCMD_RD,     "Help about RD\n"
152   WCMD_RMDIR,  "Help about RMDIR\n"
154   WCMD_SET,
155 "SET displays or changes the cmd environment variables.\n\
157 SET without parameters shows all of the current environment.\n\
159 To create or modify an environment variable the syntax is:\n\
161       SET <variable>=<value>\n\
163 where <variable> and <value> are character strings. There must be no\n\
164 spaces before the equals sign, nor can the variable name\n\
165 have embedded spaces.\n\
167 Under Wine, the environment of the underlying operating system is\n\
168 included into the Win32 environment, there will generally therefore be\n\
169 many more values than in a native Win32 implementation. Note that it is\n\
170 not possible to affect the operating system environment from within cmd.\n"
172   WCMD_SHIFT,
173 "SHIFT is used in a batch file to remove one parameter from the head of\n\
174 the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n\
175 if called from the command line.\n"
177   WCMD_TIME,   "Help about TIME\n"
179   WCMD_TITLE,  "Sets the window title for the cmd window, syntax TITLE [string]\n"
181   WCMD_TYPE,
182 "TYPE <filename> copies <filename> to the console device (or elsewhere\n\
183 if redirected). No check is made that the file is readable text.\n"
185   WCMD_VERIFY,
186 "VERIFY is used to set, clear or test the verify flag. Valid forms are:\n\
188 VERIFY ON       Set the flag\n\
189 VERIFY OFF      Clear the flag\n\
190 VERIFY          Displays ON or OFF as appropriate.\n\
192 The verify flag has no function in Wine.\n"
194   WCMD_VER,
195 "VER displays the version of cmd you are running\n"
197   WCMD_VOL,    "Help about VOL\n"
199   WCMD_PUSHD,  "PUSHD <directoryname> saves the current directory onto a\n\
200 stack, and then changes the current directory to the supplied one.\n"
202   WCMD_POPD,   "POPD changes current directory to the last one saved with\n\
203 PUSHD.\n"
205   WCMD_MORE,   "MORE displays output of files or piped input in pages.\n"
207   WCMD_EXIT,
208 "EXIT terminates the current command session and returns\n\
209 to the operating system or shell from which you invoked cmd.\n"
211   WCMD_ALLHELP, "CMD built-in commands are:\n\
212 ATTRIB\t\tShow or change DOS file attributes\n\
213 CALL\t\tInvoke a batch file from inside another\n\
214 CD (CHDIR)\tChange current default directory\n\
215 CLS\t\tClear the console screen\n\
216 COPY\t\tCopy file\n\
217 CTTY\t\tChange input/output device\n\
218 DATE\t\tShow or change the system date\n\
219 DEL (ERASE)\tDelete a file or set of files\n\
220 DIR\t\tList the contents of a directory\n\
221 ECHO\t\tCopy text directly to the console output\n\
222 HELP\t\tShow brief help details on a topic\n\
223 MD (MKDIR)\tCreate a subdirectory\n\
224 MORE\t\tDisplay output in pages\n\
225 MOVE\t\tMove a file, set of files or directory tree\n\
226 PATH\t\tSet or show the search path\n\
227 POPD\t\tRestores the directory to the last one saved with PUSHD\n\
228 PROMPT\t\tChange the command prompt\n\
229 PUSHD\t\tChanges to a new directory, saving the current one\n\
230 REN (RENAME)\tRename a file\n\
231 RD (RMDIR)\tDelete a subdirectory\n\
232 SET\t\tSet or show environment variables\n\
233 TIME\t\tSet or show the current system time\n\
234 TITLE\t\tSet the window title for the CMD session\n\
235 TYPE\t\tType the contents of a text file\n\
236 VER\t\tShow the current version of CMD\n\
237 VOL\t\tShow the volume label of a disk device\n\
238 EXIT\t\tClose down CMD\n\n\
239 Enter HELP <command> for further information on any of the above commands\n"
241   WCMD_CONFIRM, "Are you sure"
242   WCMD_YES, "Y"
243   WCMD_NO, "N"
244   WCMD_NOASSOC, "File association missing for extension %s\n"
245   WCMD_NOFTYPE, "No open command associated with file type '%s'\n"
246   WCMD_OVERWRITE, "Overwrite %s"
247   WCMD_MORESTR, "More..."
248   WCMD_TRUNCATEDLINE, "Line in Batch processing possibly truncated. Using:\n"
249   WCMD_NYI, "Not Yet Implemented\n\n"
250   WCMD_NOARG, "Argument missing\n"
251   WCMD_SYNTAXERR, "Syntax error\n"
252   WCMD_FILENOTFOUND, "%s : File Not Found\n"
253   WCMD_NOCMDHELP, "No help available for %s\n"
254   WCMD_NOTARGET, "Target to GOTO not found\n"
255   WCMD_CURRENTDATE, "Current Date is %s\n"
256   WCMD_CURRENTTIME, "Current Time is %s\n"
257   WCMD_NEWDATE, "Enter new date: "
258   WCMD_NEWTIME, "Enter new time: "
259   WCMD_MISSINGENV, "Environment variable %s not defined\n"
260   WCMD_READFAIL, "Failed to open '%s'\n"
261   WCMD_CALLINSCRIPT, "Cannot call batch label outside of a batch script\n"
262   WCMD_ALL, "A"
263   WCMD_DELPROMPT, "%s, Delete"
264   WCMD_ECHOPROMPT, "Echo is %s\n"
265   WCMD_VERIFYPROMPT, "Verify is %s\n"
266   WCMD_VERIFYERR, "Verify must be ON or OFF\n";
267   WCMD_ARGERR, "Parameter error\n"
268   WCMD_VOLUMEDETAIL, "Volume in drive %c is %s\nVolume Serial Number is %04x-%04x\n\n"
269   WCMD_VOLUMEPROMPT, "Volume label (11 characters, ENTER for none)?"
270   WCMD_NOPATH, "PATH not found\n"
271   WCMD_ANYKEY,"Press Return key to continue: "
272   WCMD_CONSTITLE,"Wine Command Prompt"
273   WCMD_VERSION,"CMD Version %s\n\n"
274   WCMD_MOREPROMPT, "More? "
275   WCMD_LINETOOLONG, "The input line is too long.\n"