1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 2 3STRINGTABLE 4BEGIN 5 STRING_ASSOC_HELP "Modify file extension associations.\n\n\ 6assoc [.ext[=[FileType]]]\n\ 7\n\ 8assoc (print all associations)\n\ 9assoc .ext (print specific association)\n\ 10assoc .ext= (remove specific association)\n\ 11assoc .ext=FileType (add new association)\n" 12 STRING_ALIAS_HELP "Sets, removes or shows aliases.\n\n\ 13ALIAS [alias=[command]]\n\n\ 14 alias Name for an alias.\n\ 15 command Text to be substituted for an alias.\n\n\ 16To list all aliases:\n\ 17 ALIAS\n\n\ 18To set a new or replace an existing alias:\n\ 19 ALIAS da=dir a:\n\n\ 20To remove an alias from the alias list:\n\ 21 ALIAS da=" 22 STRING_BEEP_HELP "Beep the speaker.\n\nBEEP\n" 23 STRING_CALL_HELP "Calls one batch program from another.\n\n\ 24CALL [drive:][path]filename [batch-parameter]\n\n\ 25 batch-parameter Specifies any command-line information required by the\n\ 26 batch program.\n" 27 STRING_CD_HELP "Changes the current directory or displays it's name\n\n\ 28CHDIR [/D][drive:][path]\n\ 29CHDIR[..|.]\n\ 30CD [/D][drive:][path]\n\ 31CD[..|.]\n\n\ 32 .. parent directory\n\ 33 . current directory\n\ 34 /D Will change current drive and current directory.\n\n\ 35Type CD drive: to display the current directory on the specified drive.\n\ 36Type CD without a parameter to display the current drive and directory.\n" 37 STRING_CHOICE_HELP "Waits for the user to choose one of a set of choices.\n\n\ 38CHOICE [/C[:]choices][/N][/S][/T[:]c,nn][text]\n\n\ 39 /C[:]choices Specifies allowable keys. Default is YN.\n\ 40 /N Do not display choices and ? at the end of the prompt string.\n\ 41 /S Treat choice keys as case sensitive.\n\ 42 /T[:]c,nn Default choice to c after nn seconds.\n\ 43 text Prompt string to display.\n\n\ 44ERRORLEVEL is set to offset of key user presses in choices.\n" 45 STRING_CLS_HELP "Clears the screen.\n\nCLS\n" 46 STRING_CMD_HELP1 "\nInternal commands available:\n" 47 STRING_CMD_HELP2 "\nFeatures available:" 48 STRING_CMD_HELP3 " [aliases]" 49 STRING_CMD_HELP4 " [history]" 50 STRING_CMD_HELP5 " [Bash filename completion]" 51 STRING_CMD_HELP6 " [directory stack]" 52 STRING_CMD_HELP7 " [redirections and piping]" 53 STRING_CMD_HELP8 "Starts a new instance of the ReactOS command line interpreter.\n\n\ 54CMD [/[C|K] command][/P][/Q][/T:bf]\n\n\ 55 /C command Runs the specified command and terminates.\n\ 56 /K command Runs the specified command and remains.\n\ 57 /P CMD becomes permanent and runs autoexec.bat\n\ 58 (cannot be terminated).\n\ 59 /T:bf Sets the background/foreground color (see COLOR command).\n" 60 STRING_COLOR_HELP1 "Sets the default foreground and background colors.\n\n\ 61COLOR [attr [/-F]]\n\n\ 62 attr Specifies color attribute of console output.\n\ 63 /-F Does not fill the console blank space with color attribute.\n\n\ 64There are three ways to specify the colors:\n\ 651) [bright] name on [bright] name (only the first three letters are required)\n\ 662) decimal on decimal\n\ 673) two hex digits\n\n\ 68Colors are:\n\ 69dec hex name dec hex name\n\ 700 0 Black 8 8 Gray(Bright black)\n\ 711 1 Blue 9 9 Bright Blue\n\ 722 2 Green 10 A Bright Green\n\ 733 3 Cyan 11 B Bright Cyan\n\ 744 4 Red 12 C Bright Red\n\ 755 5 Magenta 13 D Bright Magenta\n\ 766 6 Yellow 14 E Bright Yellow\n\ 777 7 White 15 F Bright White\n" 78 STRING_COPY_HELP1 "Overwrite %s (Yes/No/All)? " 79 STRING_COPY_HELP2 "Copies one or more files to another location.\n\n\ 80COPY [/V][/Y|/-Y][/A|/B] source [/A|/B]\n\ 81 [+ source [/A|/B] [+ ...]] [destination [/A|/B]]\n\n\ 82 source Specifies the file or files to be copied.\n\ 83 /A Indicates an ASCII text file.\n\ 84 /B Indicates a binary file.\n\ 85 destination Specifies the directory and/or filename for the new file(s).\n\ 86 /V Verifies that new files are written correctly.\n\ 87 /Y Suppresses prompting to confirm you want to overwrite an\n\ 88 existing destination file.\n\ 89 /-Y Causes prompting to confirm you want to overwrite an\n\ 90 existing destination file.\n\n\ 91The switch /Y may be present in the COPYCMD environment variable.\n\ 92...\n" 93 STRING_CTTY_HELP "Changes the standard I/O terminal device to an auxiliary device.\n\n\ 94CTTY device\n\n\ 95 device The terminal device you want to use as the new standard I/O device.\n\ 96 This name must refer to a valid character device:\n\ 97 AUX, COMx (x=1..N), CON, LPTx (x=1..N), PRN, NUL.\n\ 98 CON is usually the default standard I/O device.\n\n\ 99To return control to the standard console, type: CTTY CON on the auxiliary\n\ 100device." 101 STRING_DATE_HELP1 "Enter new date (mm%cdd%cyyyy): " 102 STRING_DATE_HELP2 "Enter new date (dd%cmm%cyyyy): " 103 STRING_DATE_HELP3 "Enter new date (yyyy%cmm%cdd): " 104 STRING_DATE_HELP4 "Displays or sets the date.\n\n\ 105DATE [/T][date]\n\n\ 106 /T display only\n\n\ 107Type DATE without parameters to display the current date setting and\n\ 108a prompt for a new one. Press ENTER to keep the same date.\n" 109 STRING_DEL_HELP1 "Deletes one or more files.\n\n\ 110DEL [/N /P /T /Q /S /W /Y /Z /A[[:]attributes]] file ...\n\ 111DELETE [/N /P /T /Q /S /W /Y /Z /A[[:]attributes]] file ...\n\ 112ERASE [/N /P /T /Q /S /W /Y /Z /A[[:]attributes]] file ...\n\n\ 113 file Specifies the file(s) to delete.\n\n\ 114 /N Nothing.\n\ 115 /P Prompt. Ask before deleting each file.\n\ 116 /T Total. Display total number of deleted files and freed disk space.\n\ 117 /Q Quiet.\n\ 118 /W Wipe. Overwrite the file with random numbers before deleting it.\n\ 119 /Y Yes. Kill even *.* without asking.\n\ 120 /F Force Delete hidden, read-only and system files.\n\ 121 /S Delete file from all sub directory\n\ 122 /A Select files to be deleted based on attributes.\n\ 123 attributes\n\ 124 R Read-only files\n\ 125 S System files\n\ 126 A Archiveable files\n\ 127 H Hidden Files\n\ 128 - prefix meaning not\n" 129 STRING_DEL_HELP2 "All files in the directory will be deleted!\nAre you sure (Y/N)? " 130 STRING_DEL_HELP3 " %lu file deleted\n" 131 STRING_DEL_HELP4 " %lu files deleted\n" 132 STRING_DELAY_HELP "Pause for n seconds or milliseconds.\n\ 133DELAY [/m]n\n\n\ 134 /m Specify that n are in milliseconds,\n\ 135 otherwise n are in seconds.\n" 136 STRING_DIR_HELP1 "DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]\n\ 137 [/O[[:]sortorder]] [/P] [/Q] [/R] [/S] [/T[[:]timefield]] [/W] [/X] [/4]\n\n\ 138 [drive:][path][filename]\n\ 139 Specifies drive, directory, and/or files to list.\n\n\ 140 /A Displays files with specified attributes.\n\ 141 attributes D Directories R Read-only files\n\ 142 H Hidden files A Files ready for archiving\n\ 143 S System files - Prefix meaning not\n\ 144 /B Uses bare format (no heading information or summary).\n\ 145 /C Display the thousand separator in file sizes. This is the\n\ 146 default. Use /-C to disable display of separator.\n\ 147 /D Same as wide but files are list sorted by column.\n\ 148 /L Uses lowercase.\n\ 149 /N New long list format where filenames are on the far right.\n\ 150 /O List by files in sorted order.\n\ 151 sortorder N By name (alphabetic) S By size (smallest first)\n\ 152 E By extension (alphabetic) D By date/time (oldest first)\n\ 153 G Group directories first - Prefix to reverse order\n\ 154 /P Pauses after each screenful of information.\n\ 155 /Q Display the owner of the file.\n\ 156 /R Displays alternate data streams of the files.\n\ 157 /S Displays files in specified directory and all subdirectories.\n\ 158 /T Controls which time field displayed or used for sorting\n\ 159 timefield C Creation\n\ 160 A Last Access\n\ 161 W Last Written\n\ 162 /W Uses wide list format.\n\ 163 /X This displays the short names generated for non-8dot3 file\n\ 164 names. The format is that of /N with the short name inserted\n\ 165 before the long name. If no short name is present, blanks are\n\ 166 displayed in its place.\n\ 167 /4 Displays four-digit years\n\n\ 168Switches may be preset in the DIRCMD environment variable. Override\n\ 169preset switches by prefixing any switch with - (hyphen)--for example, /-W.\n" 170 STRING_DIR_HELP2 " Volume in drive %c is %s\n" 171 STRING_DIR_HELP3 " Volume in drive %c has no label.\n" 172 STRING_DIR_HELP4 " Volume Serial Number is %04X-%04X\n" 173 STRING_DIR_HELP5 "\n Total Files Listed:\n%16i File(s) %14s bytes\n" 174 STRING_DIR_HELP6 "%16i Dir(s) %14s bytes free\n" 175 STRING_DIR_HELP7 "\n Directory of %s\n\n" 176 STRING_DIR_HELP8 "%16i File(s) %14s bytes\n" 177 STRING_DIRSTACK_HELP1 "Stores the current directory for use by the POPD command, then\n\ 178changes to the specified directory.\n\n\ 179PUSHD [path | ..]\n\n\ 180 path Specifies the directory to make the current directory\n" 181 STRING_DIRSTACK_HELP2 "Changes to the directory stored by the PUSHD command.\n\nPOPD" 182 STRING_DIRSTACK_HELP3 "Prints the contents of the directory stack.\n\nDIRS" 183 STRING_DIRSTACK_HELP4 "Directory stack empty" 184 STRING_ECHO_HELP1 "Display a messages without trailing carriage return and line feed.\n\n\ 185 ECHOS message" 186 STRING_ECHO_HELP2 "Displays a message to the standard error output.\n\n\ 187 ECHOERR message\n\ 188 ECHOERR. prints an empty line" 189 STRING_ECHO_HELP3 "Prints a messages to standard error output without trailing carriage return and line feed.\n\n\ 190 ECHOSERR message" 191 STRING_ECHO_HELP4 "Displays a message or switches command echoing on or off.\n\n\ 192 ECHO [ON | OFF]\n\ 193 ECHO [message]\n\ 194 ECHO. prints an empty line\n\n\ 195Type ECHO without a parameter to display the current ECHO setting." 196 STRING_ECHO_HELP5 "ECHO is %s.\n" 197 STRING_EXIT_HELP "Exits the command line interpreter.\n\nEXIT [/b] [ExitCode]\n\n\ 198 /B Exits a batch file only.\n\ 199 If run outside of a batch file it will exit cmd.exe\n\ 200 ExitCode This value will be assigned to ERRORLEVEL on exit\n" 201 STRING_FOR_HELP1 "Runs a specified command for each file in a set of files.\n\n\ 202FOR %variable IN (set) DO command [parameters]\n\ 203FOR /L %variable IN (start,step,end) DO command [parameters]\n\ 204FOR /D %variable IN (set) DO command [parameters]\n\ 205FOR /R [[drive:]path] IN (set) DO command [parameters]\n\ 206FOR /F [""options""] IN (set) DO command [parameters]\n\n\ 207 /L Generates a number sequence from start to end incrementing by step.\n\ 208 /D Modifies the set to refer to directories instead of files.\n\ 209 /R Executes command for files in the set in the specified path (or current\n\ 210 working directory if not specified) and every directory below.\n\ 211 /F Modifies the set to refer to the contents of the files in the set.\n\n\ 212 %variable Specifies a replaceable parameter.\n\ 213 (set) Specifies a set of one or more files. Wildcards may be used.\n\ 214 command Specifies the command to carry out for each file.\n\ 215 parameters Specifies parameters or switches for the specified command.\n\ 216 options Supported options are: eol, skip, delims, tokens, and usebackq.\n\n\ 217Replacable parameters can be modified by adding a ~ and an optional qualifier\n\ 218after the % and before the name (e.g. %~X). Supported qualifiers are:\n\ 219f,d,p,n,x,s,a,t,z.\n\n\ 220To use the FOR command in a batch program, specify %%variable instead of\n\ 221%variable.\n" 222 STRING_FREE_HELP1 "\nVolume in drive %s is %-11s\n\ 223 Serial number is %s\n\ 224 %16s bytes total disk space\n\ 225 %16s bytes used\n\ 226 %16s bytes free\n" 227 STRING_FREE_HELP2 "Displays drive information.\n\nFREE [drive: ...]\n" 228 STRING_GOTO_HELP1 "Directs CMD to a labeled line in a batch script.\n\n\ 229GOTO label\n\n\ 230 label Specifies a text string used in a batch script as a label.\n\n\ 231You type a label on a line by itself, beginning with a colon.\n" 232 STRING_IF_HELP1 "Performs conditional processing in batch programs.\n\n\ 233 IF [NOT] ERRORLEVEL number command\n\ 234 IF [NOT] string1==string2 command\n\ 235 IF [NOT] EXIST filename command\n\ 236 IF [NOT] DEFINED variable command\n\n\ 237NOT Specifies that CMD should carry out the command only if\n\ 238 the condition is false\n\ 239ERRORLEVEL number Specifies a true condition if the last program run returned\n\ 240 an exit code equal or greater than the number specified.\n\ 241command Specifies the command to carry out if the condition is met.\n\ 242string1==string2 Specifies a true condition if the specified text strings\n\ 243 match.\n\ 244EXIST filename Specifies a true condition if the specified filename exists.\n\ 245DEFINED variable Specifies a true condition if the specified variable is\n\ 246 defined.\n" 247 STRING_DATE_NOW "The current date is: " 248 STRING_TIME_NOW "Current time is: " 249 STRING_MKDIR_HELP "Creates a directory.\n\n\ 250MKDIR [drive:]path\nMD [drive:]path" 251 STRING_MKLINK_HELP "Creates a filesystem link object.\n\n\ 252MKLINK [/D | /H | /J] linkname target\n\n\ 253 /D Indicates that the symbolic link target is a directory.\n\ 254 /H Create a hard link.\n\ 255 /J Create a directory junction.\n\n\ 256If neither /H or /J is specified, a symbolic link is created." 257 STRING_MEMORY_HELP1 "Displays the amount of system memory.\n\nMEMORY" 258 STRING_MEMORY_HELP2 "\n %12s%% memory load.\n\n\ 259 %13s bytes total physical RAM.\n\ 260 %13s bytes available physical RAM.\n\n\ 261 %13s bytes total page file.\n\ 262 %13s bytes available page file.\n\n\ 263 %13s bytes total virtual memory.\n\ 264 %13s bytes available virtual memory.\n" 265 STRING_MISC_HELP1 "Press a key to continue..." 266 STRING_MOVE_HELP1 "Overwrite %s (Yes/No/All)? " 267 STRING_MOVE_HELP2 "Moves files and renames files and directories.\n\n\ 268To move one or more files:\n\ 269MOVE [/N][/Y|/-Y][drive:][path]filename1[,...] destination\n\n\ 270To rename a directory:\n\ 271MOVE [/N][/Y|/-Y][drive:][path]dirname1 dirname2\n\n\ 272 [drive:][path]filename1 Specifies the location and name of the file\n\ 273 or files you want to move.\n\ 274 /N Nothing. Do everything but move files or directories.\n\n\ 275Current limitations:\n\ 276 - You can't move a file or directory from one drive to another.\n" 277 STRING_MSGBOX_HELP "display a message box and return user response\n\n\ 278MSGBOX type ['title'] prompt\n\n\ 279type button displayed\n\ 280 possible values are: OK, OKCANCEL,\n\ 281 YESNO, YESNOCANCEL\n\ 282title title of message box\n\ 283prompt text displayed by the message box\n\n\n\ 284ERRORLEVEL is set according the button pressed:\n\n\ 285YES : 10 | NO : 11\n\ 286OK : 10 | CANCEL : 12\n" 287 STRING_PATH_HELP1 "Displays or sets a search path for executable files.\n\n\ 288PATH [[drive:]path[;...]]\nPATH ;\n\n\ 289Type PATH ; to clear all search-path settings and direct the command shell\n\ 290to search only in the current directory.\n\ 291Type PATH without parameters to display the current path.\n" 292 STRING_PAUSE_HELP1 "Stops the execution of a batch file and shows the following message:\n\ 293'Press any key to continue...' or a user defined message.\n\n\ 294PAUSE [message]" 295 STRING_PROMPT_HELP1 "Changes the command prompt.\n\n\ 296PROMPT [text]\n\n\ 297 text Specifies a new command prompt.\n\n\ 298Prompt can be made up of normal characters and the following special codes:\n\n\ 299 $A & (Ampersand)\n\ 300 $B | (pipe)\n\ 301 $C ( (Left parenthesis)\n\ 302 $D Current date\n\ 303 $E Escape code (ASCII code 27)\n\ 304 $F ) (Right parenthesis)\n\ 305 $G > (greater-than sign)\n\ 306 $H Backspace (erases previous character)\n\ 307 $I Information line\n\ 308 $L < (less-than sign)\n\ 309 $N Current drive\n\ 310 $P Current drive and path\n\ 311 $Q = (equal sign)\n\ 312 $S (space)\n\ 313 $T Current time\n\ 314 $V OS version number\n\ 315 $_ Carriage return and linefeed\n\ 316 $$ $ (dollar sign)\n" 317 STRING_PROMPT_HELP2 " $+ Displays the current depth of the directory stack" 318 STRING_PROMPT_HELP3 "\nType PROMPT without parameters to reset the prompt to the default setting." 319 STRING_REM_HELP "Starts a comment line in a batch file.\n\nREM [Comment]" 320 STRING_RMDIR_HELP "Removes a directory.\n\n\ 321RMDIR [/S] [/Q] [drive:]path\nRD [/S] [/Q] [drive:]path\n\ 322 /S Deletes all files and folders within the target.\n\ 323 /Q Doesn't prompt for user.\n" 324 STRING_RMDIR_HELP2 "Directory is not empty!\n" 325 STRING_REN_HELP1 "Renames a file/directory or files/directories.\n\n\ 326RENAME [/E /N /P /Q /S /T] old_name ... new_name\n\ 327REN [/E /N /P /Q /S /T] old_name ... new_name\n\n\ 328 /E No error messages.\n\ 329 /N Nothing.\n\ 330 /P Prompts for confirmation before renaming each file.\n\ 331 (Not implemented yet!)\n\ 332 /Q Quiet.\n\ 333 /S Rename subdirectories.\n\ 334 /T Display total number of renamed files.\n\n\ 335Note that you cannot specify a new drive or path for your destination. Use\n\ 336the MOVE command for that purpose.\n" 337 STRING_REN_HELP2 " %lu file renamed\n" 338 STRING_REN_HELP3 " %lu files renamed\n" 339 STRING_SHIFT_HELP "Changes the position of replaceable parameters in a batch file.\n\n\ 340SHIFT [DOWN]" 341 STRING_SCREEN_HELP "move cursor and optionally print text\n\n\ 342SCREEN row col [text]\n\n\ 343 row row to which move the cursor\n\ 344 col column to which move the cursor" 345 STRING_SET_HELP "Displays, sets, or removes environment variables.\n\n\ 346SET [variable[=][string]]\n\n\ 347 variable Specifies the environment-variable name.\n\ 348 string Specifies a series of characters to assign to the variable.\n\n\ 349Type SET without parameters to display the current environment variables.\n" 350 STRING_START_HELP1 "Starts a command.\n\n\ 351START [""title""] [/D path] [/I] [/B] [/MIN] [/MAX] [/WAIT]\n\ 352 [command/program] [parameters]\n\n\ 353 ""title"" Title of the window.\n\ 354 path Specifies the startup directory.\n\ 355 I Uses the original environment given to cmd.exe,\n\ 356 instead of the current environment.\n\ 357 B Starts the command or program without creating any window.\n\ 358 MIN Starts with a minimized window.\n\ 359 MAX Starts with a maximized window.\n\ 360 WAIT Starts the command or program and waits for its termination.\n\ 361 command Specifies the command or program to run.\n\ 362 parameters Specifies the parameters to be given to the command or program.\n" 363 STRING_TITLE_HELP "Sets the window title for the command prompt window.\n\n\ 364TITLE [string]\n\n\ 365string Specifies the title for the command prompt window.\n" 366 STRING_TIME_HELP1 "Displays or sets the system time.\n\n\ 367TIME [/T][time]\n\n\ 368 /T display only\n\n\ 369Type TIME with no parameters to display the current time setting and a prompt\n\ 370for a new one. Press ENTER to keep the same time.\n" 371 STRING_TIME_HELP2 "Enter new time: " 372 STRING_TIMER_HELP1 "Elapsed %d msecs\n" 373 STRING_TIMER_HELP2 "Elapsed %02d%c%02d%c%02d%c%02d\n" 374 STRING_TIMER_HELP3 "Allow the use of ten stopwatches.\n\n\ 375TIMER [ON|OFF] [/S] [/n] [/Fn]\n\n\ 376 ON set stopwatch ON\n\ 377 OFF set stopwatch OFF\n\ 378 /S Split time. Return stopwatch split\n\ 379 time without changing its value\n\ 380 /n Specify the stopwatch number.\n\ 381 Stopwatches available are 0 to 9\n\ 382 If it is not specified default is 1\n\ 383 /Fn Format for output\n\ 384 n can be:\n\ 385 0 milliseconds\n\ 386 1 hh%cmm%css%cdd\n\n\ 387if none of ON, OFF or /S is specified the command\n\ 388will toggle stopwatch state\n\n" 389 STRING_TYPE_HELP1 "Displays the contents of text files.\n\nTYPE [drive:][path]filename\n\ 390 /P Shows one screen of output at a time.\n" 391 STRING_VERIFY_HELP1 "This command is just a dummy!!\n\ 392Sets whether to verify that your files are written correctly to a\n\ 393disk.\n\n\ 394VERIFY [ON | OFF]\n\n\ 395Type VERIFY without a parameter to display the current VERIFY setting.\n" 396 STRING_VERIFY_HELP2 "VERIFY is %s.\n" 397 STRING_VERIFY_HELP3 "Must specify ON or OFF." 398 STRING_VERSION_HELP1 "Displays shell version information\n\n\ 399VER [/C][/R][/W]\n\n\ 400 /C Displays credits.\n\ 401 /R Displays redistribution information.\n\ 402 /W Displays warranty information." 403 STRING_VERSION_HELP2 " comes with ABSOLUTELY NO WARRANTY; for details\n\ 404type: `ver /w'. This is free software, and you are welcome to redistribute\n\ 405it under certain conditions; type `ver /r' for details. Type `ver /c' for a\n\ 406listing of credits." 407 STRING_VERSION_HELP3 "\n This program is distributed in the hope that it will be useful,\n\ 408 but WITHOUT ANY WARRANTY; without even the implied warranty of\n\ 409 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\ 410 GNU General Public License for more details." 411 STRING_VERSION_HELP4 "\n This program is free software; you can redistribute it and/or modify\n\ 412 it under the terms of the GNU General Public License as published by\n\ 413 the Free Software Foundation; either version 2 of the License, or\n\ 414 (at your option) any later version.\n" 415 STRING_VERSION_HELP5 "\nSend bug reports to <ros-dev@reactos.org>.\n\ 416Updates are available at: https://reactos.org" 417 STRING_VERSION_HELP6 "\nFreeDOS version written by:\n" 418 STRING_VERSION_HELP7 "\nReactOS version written by:\n" 419 STRING_VOL_HELP1 " Volume in drive %c is %s\n" 420 STRING_VOL_HELP2 " Volume in drive %c has no label.\n" 421 STRING_VOL_HELP3 " Volume Serial Number is %04X-%04X\n" 422 STRING_VOL_HELP4 "Displays the disk volume label and serial number, if they exist.\n\nVOL [drive:]" 423 STRING_WINDOW_HELP1 "change console window aspect\n\n\ 424WINDOW [/POS[=]left,top,width,height]\n\ 425 [MIN|MAX|RESTORE] ['title']\n\n\ 426/POS specify window placement and dimensions\n\ 427MIN minimize the window\n\ 428MAX maximize the window\n\ 429RESTORE restore the window" 430 STRING_WINDOW_HELP2 "change console window aspect\n\n\ 431ACTIVATE 'window' [/POS[=]left,top,width,height]\n\ 432 [MIN|MAX|RESTORE] ['title']\n\n\ 433window tile of window on which perform actions\n\ 434/POS specify window placement and dimensions\n\ 435MIN minimize the window\n\ 436MAX maximize the window\n\ 437RESTORE restore the window\n\ 438title new title\n" 439 STRING_CHOICE_OPTION "YN" 440 STRING_COPY_OPTION "YNA" 441 STRING_ALIAS_ERROR "Command line too long after alias expansion!\n" 442 STRING_ASSOC_ERROR "File association not found for extension %s\n" 443 STRING_BATCH_ERROR "Error opening batch file\n" 444 STRING_CHOICE_ERROR "Invalid option. Expected format: /C[:]options\n" 445 STRING_CHOICE_ERROR_TXT "Invalid option. Expected format: /T[:]c,nn\n" 446 STRING_CHOICE_ERROR_OPTION "Illegal Option: %s\n" 447 STRING_CMD_ERROR1 "Can't redirect input from file %s\n" 448 STRING_CMD_ERROR2 "Error creating temporary file for pipe data\n" 449 STRING_CMD_ERROR3 "Can't redirect to file %s\n" 450 STRING_CMD_ERROR4 "Running %s...\n" 451 STRING_CMD_ERROR5 "Running cmdexit.bat...\n" 452 STRING_COLOR_ERROR1 "Same colors error! (Background and foreground can't be the same color)\n" 453 STRING_COLOR_ERROR2 "Error in color specification\n" 454 STRING_CONSOLE_ERROR "Unknown error: %d\n" 455 STRING_COPY_ERROR1 "Error: Cannot open source - %s!\n" 456 STRING_COPY_ERROR2 "Error: Can't copy onto itself!\n" 457 STRING_COPY_ERROR3 "Error writing destination!\n" 458 STRING_COPY_ERROR4 "Error: Not implemented yet!\n" 459 STRING_DATE_ERROR "Invalid date.\n" 460 STRING_DEL_ERROR5 "The file %s will be deleted! " 461 STRING_DEL_ERROR6 "Are you sure (Y/N)? " 462 STRING_DEL_ERROR7 "Deleting: %s\n" 463 STRING_ERROR_ERROR1 "Unknown error! Error code: 0x%lx\n" 464 STRING_ERROR_ERROR2 "Syntax error" 465 STRING_FOR_ERROR1 "'in' missing in for statement.\n" 466 STRING_FOR_ERROR2 "no brackets found.\n" 467 STRING_FOR_ERROR3 "'do' missing.\n" 468 STRING_FOR_ERROR4 "no command after 'do'.\n" 469 STRING_FREE_ERROR1 "Invalid drive" 470 STRING_FREE_ERROR2 "unlabeled" 471 STRING_GOTO_ERROR1 "No label specified for GOTO\n" 472 STRING_GOTO_ERROR2 "Label '%s' not found\n" 473 STRING_MD_ERROR "A subdirectory or file %s already exists.\n" 474 STRING_MD_ERROR2 "The path to the new folder does not exist.\n" 475 STRING_MOVE_ERROR1 "[OK]\n" 476 STRING_MOVE_ERROR2 "[Error]\n" 477 STRING_REN_ERROR "MoveFile() failed. Error: %lu\n" 478 STRING_TIME_ERROR "Invalid time.\n" 479 STRING_TYPE_ERROR "Invalid option '/%s'\n" 480 STRING_WINDOW_ERROR "Window not found\n" 481 STRING_ERROR_PARAMETERF_ERROR "Parameter format not correct - %c\n" 482 STRING_ERROR_INVALID_SWITCH "Invalid switch - /%c\n" 483 STRING_ERROR_TOO_MANY_PARAMETERS "Too many parameters - %s\n" 484 STRING_ERROR_PATH_NOT_FOUND "Path not found\n" 485 STRING_ERROR_FILE_NOT_FOUND "File not found\n" 486 STRING_ERROR_REQ_PARAM_MISSING "Required parameter missing\n" 487 STRING_ERROR_INVALID_DRIVE "Invalid drive specification\n" 488 STRING_ERROR_INVALID_PARAM_FORMAT "Invalid parameter format - %s\n" 489 STRING_ERROR_BADCOMMAND "Bad command or filename - %s\n" 490 STRING_ERROR_OUT_OF_MEMORY "Out of memory error.\n" 491 STRING_ERROR_CANNOTPIPE "Error! Cannot pipe! Cannot open temporary file!\n" 492 STRING_ERROR_D_PAUSEMSG "Press any key to continue . . . " 493 STRING_ERROR_DRIVER_NOT_READY "Drive not ready" 494 STRING_ERROR_INVALID_NUMBER1 "Invalid number. Numeric constants are either decimal (42), hexadecimal (0x2A), or octal (052).\n" 495 STRING_ERROR_INVALID_NUMBER2 "Invalid number. Numbers are limited to 32-bits of precision.\n" 496 STRING_ERROR_DIVISION_BY_ZERO "Division by zero error.\n" 497 STRING_ERROR_INVALID_DEVICE L"Invalid device '%s'\n" 498 STRING_ERROR_CALL_BAD_LABEL "Invalid attempt to call batch label outside of batch script.\n" 499 STRING_ERROR_UNEXPECTED "%s was unexpected.\n" 500 STRING_ERROR_WHILE_PROCESSING "Error occurred while processing: %s.\n" 501 STRING_SET_ENV_ERROR "Environment variable '%s' is not defined\n" 502 STRING_CMD_INFOLINE " ReactOS Command Prompt Type HELP = Help " 503 STRING_CMD_COPYRIGHT "(C) Copyright 1996-%s ReactOS Team.\n" 504 STRING_REACTOS_VERSION "ReactOS [Version %s %s]\n" 505 STRING_CMD_SHELLINFO "\nReactOS Command Line Interpreter\nVersion %s %s" 506 STRING_VERSION_RUNNING_ON "Running on: " 507 STRING_VERSION_RUNVER "%s [Version %d.%d.%d] %s" 508 STRING_COPY_FILE " %d file(s) copied\n" 509 STRING_DELETE_WIPE "wiped" 510 STRING_FOR_ERROR "bad variable specification.\n" 511 STRING_SCREEN_COL "invalid value for col\n" 512 STRING_SCREEN_ROW "invalid value for row\n" 513 STRING_TIMER_TIME "Timer %d is %s: " 514 STRING_MKLINK_CREATED_SYMBOLIC "Symbolic link created for %s <<===>> %s\n" 515 STRING_MKLINK_CREATED_HARD "Hard link created for %s <<===>> %s\n" 516 STRING_MKLINK_CREATED_JUNCTION "Junction created for %s <<===>> %s\n" 517 STRING_MORE "More? " 518 STRING_CANCEL_BATCH_FILE "\r\nCtrl-Break pressed. Cancel batch file? (Yes/No/All) " 519 STRING_INVALID_OPERAND "Invalid operand.\n" 520 STRING_EXPECTED_CLOSE_PAREN "Expected ')'.\n" 521 STRING_EXPECTED_NUMBER_OR_VARIABLE "Expected number or variable name.\n" 522 STRING_SYNTAX_COMMAND_INCORRECT "The syntax of the command is incorrect.\n" 523END 524