3 "Project-Id-Version: Wine\n"
4 "Report-Msgid-Bugs-To: http://bugs.winehq.org\n"
5 "POT-Creation-Date: N/A\n"
6 "PO-Revision-Date: N/A\n"
7 "Last-Translator: Automatically generated\n"
8 "Language-Team: none\n"
10 "Content-Type: text/plain; charset=UTF-8\n"
11 "Content-Transfer-Encoding: 8bit\n"
30 msgid "&Without Titlebar"
42 msgid "&Always on Top"
50 msgid "&About Clock..."
58 msgid "ATTRIB shows or changes DOS file attributes.\n"
63 "CALL <batchfilename> is used within a batch file to execute commands\n"
64 "from another batch file. When the batch file exits, control returns to\n"
65 "the file which called it. The CALL command may supply parameters to the\n"
68 "Changes to default directory, environment variables etc made within a\n"
69 "called procedure are inherited by the caller.\n"
74 "CD <dir> is the short version of CHDIR. It changes the current\n"
75 "default directory.\n"
79 msgid "CHDIR <dir> changes the current default directory.\n"
83 msgid "CLS clears the console screen.\n"
87 msgid "COPY <filename> copies a file.\n"
91 msgid "CTTY changes the input/output device.\n"
95 msgid "DATE shows or changes the system date.\n"
99 msgid "DEL <filename> deletes a file or set of files.\n"
103 msgid "DIR lists the contents of a directory.\n"
108 "ECHO <string> displays <string> on the current terminal device.\n"
110 "ECHO ON causes all subsequent commands in a batch file to be displayed\n"
111 "on the terminal device before they are executed.\n"
113 "ECHO OFF reverses the effect of a previous ECHO ON (ECHO is OFF by\n"
114 "default). The ECHO OFF command can be prevented from displaying by\n"
115 "preceding it with an @ sign.\n"
119 msgid "ERASE <filename> deletes a file or set of files.\n"
124 "The FOR command is used to execute a command for each of a set of files.\n"
126 "Syntax: FOR %variable IN (set) DO command\n"
128 "The requirement to double the % sign when using FOR in a batch file does\n"
129 "not exist in wine's cmd.\n"
134 "The GOTO command transfers execution to another statement within a\n"
137 "The label which is the target of a GOTO may be up to 255 characters\n"
138 "long but may not include spaces (this is different from other operating\n"
139 "systems). If two or more identical labels exist in a batch file the\n"
140 "first one will always be executed. Attempting to GOTO a nonexistent\n"
141 "label terminates the batch file execution.\n"
143 "GOTO has no effect when used interactively.\n"
148 "HELP <command> shows brief help details on a topic.\n"
149 "HELP without an argument shows all CMD built-in commands.\n"
154 "IF is used to conditionally execute a command.\n"
156 "Syntax:\tIF [NOT] EXIST filename command\n"
157 "IF [NOT] string1==string2 command\n"
158 "IF [NOT] ERRORLEVEL number command\n"
160 "In the second form of the command, string1 and string2 must be in double\n"
161 "quotes. The comparison is not case-sensitive.\n"
166 "LABEL is used to set a disk volume label.\n"
168 "Syntax: LABEL [drive:]\n"
169 "The command will prompt you for the new volume label for the given drive.\n"
170 "You can display the disk volume label with the VOL command.\n"
174 msgid "MD <name> is the short version of MKDIR. It creates a subdirectory.\n"
178 msgid "MKDIR <name> creates a subdirectory.\n"
183 "MOVE relocates a file or directory to a new point within the file system.\n"
185 "If the item being moved is a directory then all the files and "
187 "below the item are moved as well.\n"
189 "MOVE fails if the old and new locations are on different DOS drive letters.\n"
194 "PATH displays or changes the cmd search path.\n"
196 "Entering PATH will display the current PATH setting (initially taken\n"
197 "from the registry). To change the setting follow the\n"
198 "PATH command with the new value.\n"
200 "It is also possible to modify the PATH by using the PATH environment\n"
201 "variable, for example:\n"
202 "PATH %PATH%;c:\\temp\n"
207 "PAUSE displays a message on the screen 'Press Return key to continue'\n"
208 "and waits for the user to press the Return key. It is mainly useful in\n"
209 "batch files to allow the user to read the output of a previous command\n"
210 "before it scrolls off the screen.\n"
215 "PROMPT sets the command-line prompt.\n"
217 "The string following the PROMPT command (and the space immediately after)\n"
218 "appears at the beginning of the line when cmd is waiting for input.\n"
220 "The following character strings have the special meaning shown:\n"
222 "$$ Dollar sign $_ Linefeed $b Pipe sign (|)\n"
223 "$d Current date $e Escape $g > sign\n"
224 "$l < sign $n Current drive $p Current path\n"
225 "$q Equal sign $t Current time $v cmd version\n"
227 "Note that entering the PROMPT command without a prompt-string resets the\n"
228 "prompt to the default, which is the current directory (which includes the\n"
229 "current drive letter) followed by a greater-than (>) sign.\n"
230 "(like a command PROMPT $p$g).\n"
232 "The prompt can also be changed by altering the PROMPT environment variable,\n"
233 "so the command 'SET PROMPT=text' has the same effect as 'PROMPT text'\n"
238 "A command line beginning REM (followed by a space) performs no\n"
239 "action, and can therefore be used as a comment in a batch file.\n"
243 msgid "REN <filename> is the short version of RENAME. It renames a file.\n"
247 msgid "RENAME <filename> renames a file\n"
251 msgid "RD <dir> is the short version of RMDIR. It deletes a subdirectory.\n"
255 msgid "RMDIR <dir> deletes a subdirectory.\n"
260 "SET displays or changes the cmd environment variables.\n"
262 "SET without parameters shows all of the current environment.\n"
264 "To create or modify an environment variable the syntax is:\n"
266 "SET <variable>=<value>\n"
268 "where <variable> and <value> are character strings. There must be no\n"
269 "spaces before the equals sign, nor can the variable name\n"
270 "have embedded spaces.\n"
272 "Under Wine, the environment of the underlying operating system is\n"
273 "included into the Win32 environment, there will generally therefore be\n"
274 "many more values than in a native Win32 implementation. Note that it is\n"
275 "not possible to affect the operating system environment from within cmd.\n"
280 "SHIFT is used in a batch file to remove one parameter from the head of\n"
281 "the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
282 "if called from the command line.\n"
286 msgid "TIME sets or shows the current system time.\n"
290 msgid "Sets the window title for the cmd window, syntax TITLE [string]\n"
295 "TYPE <filename> copies <filename> to the console device (or elsewhere\n"
296 "if redirected). No check is made that the file is readable text.\n"
301 "VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
303 "VERIFY ON\tSet the flag\n"
304 "VERIFY OFF\tClear the flag\n"
305 "VERIFY\t\tDisplays ON or OFF as appropriate.\n"
307 "The verify flag has no function in Wine.\n"
311 msgid "VER displays the version of cmd you are running\n"
315 msgid "VOL shows the volume label of a disk device.\n"
320 "PUSHD <directoryname> saves the current directory onto a\n"
321 "stack, and then changes the current directory to the supplied one.\n"
326 "POPD changes current directory to the last one saved with\n"
331 msgid "MORE displays output of files or piped input in pages.\n"
336 "CHOICE displays a text and waits, until the User\n"
337 "presses an allowed Key from a selectable list.\n"
338 "CHOICE is mainly used to build a menu selection in a batch file.\n"
343 "EXIT terminates the current command session and returns\n"
344 "to the operating system or shell from which you invoked cmd.\n"
349 "CMD built-in commands are:\n"
350 "ATTRIB\t\tShow or change DOS file attributes\n"
351 "CALL\t\tInvoke a batch file from inside another\n"
352 "CD (CHDIR)\tChange current default directory\n"
353 "CHOICE\t\tWait for an keypress from a selectable list\n"
354 "CLS\t\tClear the console screen\n"
355 "COPY\t\tCopy file\n"
356 "CTTY\t\tChange input/output device\n"
357 "DATE\t\tShow or change the system date\n"
358 "DEL (ERASE)\tDelete a file or set of files\n"
359 "DIR\t\tList the contents of a directory\n"
360 "ECHO\t\tCopy text directly to the console output\n"
361 "HELP\t\tShow brief help details on a topic\n"
362 "MD (MKDIR)\tCreate a subdirectory\n"
363 "MORE\t\tDisplay output in pages\n"
364 "MOVE\t\tMove a file, set of files or directory tree\n"
365 "PATH\t\tSet or show the search path\n"
366 "POPD\t\tRestores the directory to the last one saved with PUSHD\n"
367 "PROMPT\t\tChange the command prompt\n"
368 "PUSHD\t\tChanges to a new directory, saving the current one\n"
369 "REN (RENAME)\tRename a file\n"
370 "RD (RMDIR)\tDelete a subdirectory\n"
371 "SET\t\tSet or show environment variables\n"
372 "TIME\t\tSet or show the current system time\n"
373 "TITLE\t\tSet the window title for the CMD session\n"
374 "TYPE\t\tType the contents of a text file\n"
375 "VER\t\tShow the current version of CMD\n"
376 "VOL\t\tShow the volume label of a disk device\n"
377 "EXIT\t\tClose down CMD\n"
379 "Enter HELP <command> for further information on any of the above commands\n"
397 msgid "File association missing for extension %s\n"
401 msgid "No open command associated with file type '%s'\n"
413 msgid "Line in Batch processing possibly truncated. Using:\n"
418 "Not Yet Implemented\n"
423 msgid "Argument missing\n"
427 msgid "Syntax error\n"
431 msgid "%s : File Not Found\n"
435 msgid "No help available for %s\n"
439 msgid "Target to GOTO not found\n"
443 msgid "Current Date is %s\n"
447 msgid "Current Time is %s\n"
451 msgid "Enter new date: "
455 msgid "Enter new time: "
459 msgid "Environment variable %s not defined\n"
463 msgid "Failed to open '%s'\n"
467 msgid "Cannot call batch label outside of a batch script\n"
484 msgid "Verify is %s\n"
488 msgid "Verify must be ON or OFF\n"
492 msgid "Parameter error\n"
497 "Volume in drive %c is %s\n"
498 "Volume Serial Number is %04x-%04x\n"
503 msgid "Volume label (11 characters, ENTER for none)?"
507 msgid "PATH not found\n"
511 msgid "Press Return key to continue: "
515 msgid "Wine Command Prompt"
529 msgid "The input line is too long.\n"
533 msgid "Usage: ipconfig [ /? | /all ]\n"
537 msgid "Error: Unknown or invalid command line parameters specified\n"
541 msgid "%s adapter %s\n"
553 msgid "Connection-specific DNS suffix"
585 msgid "IP routing enabled"
593 msgid "Physical address"
609 msgid "Default gateway"