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