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"
386 #: cmd.rc:256 xcopy.rc:40
391 #: cmd.rc:257 xcopy.rc:41
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"
462 #: cmd.rc:274 xcopy.rc:38
463 msgid "Failed to open '%s'\n"
467 msgid "Cannot call batch label outside of a batch script\n"
470 #: cmd.rc:276 xcopy.rc:42
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"
614 "The syntax of this command is:\n"
616 "NET [ HELP | START | STOP | USE ]\n"
620 msgid "Specify service name to start.\n"
624 msgid "Specify service name to stop.\n"
628 msgid "Stopping dependent service: %s\n"
632 msgid "Could not stop service %s\n"
636 msgid "Could not get handle to service control manager.\n"
640 msgid "Could not get handle to service.\n"
644 msgid "The %s service is starting.\n"
648 msgid "The %s service was started successfully.\n"
652 msgid "The %s service failed to start.\n"
656 msgid "The %s service is stopping.\n"
660 msgid "The %s service was stopped successfully.\n"
664 msgid "The %s service failed to stop.\n"
669 "The syntax of this command is:\n"
673 "NET command /HELP\n"
675 " Commands available are:\n"
676 " NET HELP NET START NET STOP NET USE\n"
680 msgid "There are no entries in the list.\n"
686 "Status Local Remote\n"
687 "---------------------------------------------------------------\n"
691 msgid "%s %S %S Open resources: %lu\n"
696 "The syntax of this command is:\n"
698 "REG [ ADD | DELETE | QUERY ]\n"
704 "REG ADD key_name [/v value_name | /ve] [/t type] [/s separator] [/d data] [/"
709 msgid "REG DELETE key_name [/v value_name | /ve | /va] [/f]\n"
713 msgid "REG QUERY key_name [/v value_name | /ve] [/s]\n"
717 msgid "The operation completed successfully\n"
721 msgid "Error: Invalid key name\n"
725 msgid "Error: Invalid command line parameters\n"
729 msgid "Error: Unable to add keys to remote machine\n"
734 "Error: The system was unable to find the specified registry key or value\n"
739 "Start a program, or open a document in the program normally used for files "
740 "with that suffix.\n"
742 "start [options] program_filename [...]\n"
743 "start [options] document_filename\n"
746 "/M[inimized] Start the program minimized.\n"
747 "/MAX[imized] Start the program maximized.\n"
748 "/R[estored] Start the program normally (neither minimized nor maximized).\n"
749 "/W[ait] Wait for started program to finish, then exit with its exit "
751 "/Unix Use a Unix filename and start the file like windows explorer.\n"
752 "/ProgIDOpen Open a document using the following progID.\n"
753 "/L Show end-user license.\n"
755 "start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
756 "Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
757 "This is free software, and you are welcome to redistribute it\n"
758 "under certain conditions; run 'start /L' for details.\n"
763 "start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
764 "This program is free software; you can redistribute it and/or\n"
765 "modify it under the terms of the GNU Lesser Public License\n"
766 "as published by the Free Software Foundation; either version 2.1\n"
767 "of the License, or (at your option) any later version.\n"
769 "This program is distributed in the hope that it will be useful,\n"
770 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
771 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
772 "GNU Lesser Public License for more details.\n"
774 "You should have received a copy of the GNU Lesser Public License\n"
775 "along with this program; if not, write to the Free Software\n"
776 "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
778 "See the COPYING.LIB file for license information.\n"
783 "Application could not be started, or no application associated with the "
785 "ShellExecuteEx failed"
789 msgid "Could not translate the specified Unix filename to a DOS filename."
793 msgid "Usage: taskkill [/?] [/f] [/im ProcessName | /pid ProcessID]\n"
797 msgid "Error: Unknown or invalid command line option specified.\n"
801 msgid "Error: Invalid command line parameter specified.\n"
805 msgid "Error: One of options /im or /pid must be specified.\n"
809 msgid "Error: Option %s expects a command line parameter.\n"
813 msgid "Error: Options /im and /pid are mutually exclusive.\n"
817 msgid "Close message sent to top-level windows of process with PID %u.\n"
822 "Close message sent to top-level windows of process \"%s\" with PID %u.\n"
826 msgid "Process with PID %u was forcibly terminated.\n"
830 msgid "Process \"%s\" with PID %u was forcibly terminated.\n"
834 msgid "Error: Could not find process \"%s\".\n"
838 msgid "Error: Unable to enumerate the process list.\n"
842 msgid "Error: Unable to terminate process \"%s\".\n"
846 msgid "Error: Process self-termination is not permitted.\n"
850 msgid "Wine Application Uninstaller"
855 "Execution of uninstall command '%s' failed, perhaps due to missing "
857 "Do you want to remove the uninstall entry from the registry ?"
861 msgid "Starting Wordpad failed"
865 msgid "Invalid number of parameters - Use xcopy /? for help\n"
869 msgid "Invalid parameter '%s' - Use xcopy /? for help\n"
873 msgid "Press <enter> to begin copying\n"
877 msgid "%d file(s) would be copied\n"
881 msgid "%d file(s) copied\n"
886 "Is '%s' a filename or directory\n"
888 "(F - File, D - Directory)\n"
892 msgid "%s? (Yes|No)\n"
896 msgid "Overwrite %s? (Yes|No|All)\n"
900 msgid "Copying of '%s' to '%s' failed with r/c %d\n"
904 msgid "Failed during reading of '%s'\n"
913 msgctxt "Directory key"
919 "XCOPY - Copies source files or directory trees to a destination\n"
922 "XCOPY source [dest] [/I] [/S] [/Q] [/F] [/L] [/W] [/T] [/N] [/U]\n"
923 "\t [/R] [/H] [/C] [/P] [/A] [/M] [/E] [/D] [/Y] [/-Y]\n"
927 "[/I] Assume directory if destination does not exist and copying two or\n"
929 "[/S] Copy directories and subdirectories\n"
930 "[/E] Copy directories and subdirectories, including any empty ones\n"
931 "[/Q] Do not list names during copy, ie quiet.\n"
932 "[/F] Show full source and destination names during copy\n"
933 "[/L] Simulate operation, showing names which would be copied\n"
934 "[/W] Prompts before beginning the copy operation\n"
935 "[/T] Creates empty directory structure but does not copy files\n"
936 "[/Y] Suppress prompting when overwriting files\n"
937 "[/-Y] Enable prompting when overwriting files\n"
938 "[/P] Prompts on each source file before copying\n"
939 "[/N] Copy using short names\n"
940 "[/U] Copy only files which already exist in destination\n"
941 "[/R] Overwrite any read only files\n"
942 "[/H] Include hidden and system files in the copy\n"
943 "[/C] Continue even if an error occurs during the copy\n"
944 "[/A] Only copy files with archive attribute set\n"
945 "[/M] Only copy files with archive attribute set, removes\n"
946 "\tarchive attribute\n"
947 "[/D | /D:m-d-y] Copy new files or those modified after the supplied date.\n"
948 "\t\tIf no date is supplied, only copy if destination is older\n"