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