wineconsole: Update Korean resource.
[wine.git] / po / en_US.po
blob1cfdd60ebd7d1b2d296d085b6f0bc44b0f7d80b7
1 # English (United States) translations for Wine
3 msgid ""
4 msgstr ""
5 "Project-Id-Version: Wine\n"
6 "Report-Msgid-Bugs-To: http://bugs.winehq.org\n"
7 "POT-Creation-Date: N/A\n"
8 "PO-Revision-Date: N/A\n"
9 "Last-Translator: Automatically generated\n"
10 "Language-Team: none\n"
11 "Language: English (United States)\n"
12 "MIME-Version: 1.0\n"
13 "Content-Type: text/plain; charset=UTF-8\n"
14 "Content-Transfer-Encoding: 8bit\n"
16 #: clock.rc:28
17 msgid "&Properties"
18 msgstr "&Properties"
20 #: clock.rc:29
21 msgid "Ana&log"
22 msgstr "Ana&log"
24 #: clock.rc:30
25 msgid "Digi&tal"
26 msgstr "Digi&tal"
28 #: clock.rc:32
29 msgid "&Font..."
30 msgstr "&Font..."
32 #: clock.rc:34
33 msgid "&Without Titlebar"
34 msgstr "&Without Titlebar"
36 #: clock.rc:36
37 msgid "&Seconds"
38 msgstr "&Seconds"
40 #: clock.rc:37
41 msgid "&Date"
42 msgstr "&Date"
44 #: clock.rc:39
45 msgid "&Always on Top"
46 msgstr "&Always on Top"
48 #: clock.rc:41
49 msgid "Inf&o"
50 msgstr "Inf&o"
52 #: clock.rc:42
53 msgid "&About Clock..."
54 msgstr "&About Clock..."
56 #: clock.rc:48
57 msgid "Clock"
58 msgstr "Clock"
60 #: cmd.rc:30
61 msgid "ATTRIB shows or changes DOS file attributes.\n"
62 msgstr "ATTRIB shows or changes DOS file attributes.\n"
64 #: cmd.rc:38
65 msgid ""
66 "CALL <batchfilename> is used within a batch file to execute commands\n"
67 "from another batch file. When the batch file exits, control returns to\n"
68 "the file which called it. The CALL command may supply parameters to the\n"
69 "called procedure.\n"
70 "\n"
71 "Changes to default directory, environment variables etc made within a\n"
72 "called procedure are inherited by the caller.\n"
73 msgstr ""
74 "CALL <batchfilename> is used within a batch file to execute commands\n"
75 "from another batch file. When the batch file exits, control returns to\n"
76 "the file which called it. The CALL command may supply parameters to the\n"
77 "called procedure.\n"
78 "\n"
79 "Changes to default directory, environment variables etc made within a\n"
80 "called procedure are inherited by the caller.\n"
82 #: cmd.rc:41
83 msgid ""
84 "CD <dir> is the short version of CHDIR. It changes the current\n"
85 "default directory.\n"
86 msgstr ""
87 "CD <dir> is the short version of CHDIR. It changes the current\n"
88 "default directory.\n"
90 #: cmd.rc:42
91 msgid "CHDIR <dir> changes the current default directory.\n"
92 msgstr "CHDIR <dir> changes the current default directory.\n"
94 #: cmd.rc:44
95 msgid "CLS clears the console screen.\n"
96 msgstr "CLS clears the console screen.\n"
98 #: cmd.rc:46
99 msgid "COPY <filename> copies a file.\n"
100 msgstr "COPY <filename> copies a file.\n"
102 #: cmd.rc:47
103 msgid "CTTY changes the input/output device.\n"
104 msgstr "CTTY changes the input/output device.\n"
106 #: cmd.rc:48
107 msgid "DATE shows or changes the system date.\n"
108 msgstr "DATE shows or changes the system date.\n"
110 #: cmd.rc:49
111 msgid "DEL <filename> deletes a file or set of files.\n"
112 msgstr "DEL <filename> deletes a file or set of files.\n"
114 #: cmd.rc:50
115 msgid "DIR lists the contents of a directory.\n"
116 msgstr "DIR lists the contents of a directory.\n"
118 #: cmd.rc:60
119 msgid ""
120 "ECHO <string> displays <string> on the current terminal device.\n"
121 "\n"
122 "ECHO ON causes all subsequent commands in a batch file to be displayed\n"
123 "on the terminal device before they are executed.\n"
124 "\n"
125 "ECHO OFF reverses the effect of a previous ECHO ON (ECHO is OFF by\n"
126 "default). The ECHO OFF command can be prevented from displaying by\n"
127 "preceding it with an @ sign.\n"
128 msgstr ""
129 "ECHO <string> displays <string> on the current terminal device.\n"
130 "\n"
131 "ECHO ON causes all subsequent commands in a batch file to be displayed\n"
132 "on the terminal device before they are executed.\n"
133 "\n"
134 "ECHO OFF reverses the effect of a previous ECHO ON (ECHO is OFF by\n"
135 "default). The ECHO OFF command can be prevented from displaying by\n"
136 "preceding it with an @ sign.\n"
138 #: cmd.rc:62
139 msgid "ERASE <filename> deletes a file or set of files.\n"
140 msgstr "ERASE <filename> deletes a file or set of files.\n"
142 #: cmd.rc:70
143 msgid ""
144 "The FOR command is used to execute a command for each of a set of files.\n"
145 "\n"
146 "Syntax: FOR %variable IN (set) DO command\n"
147 "\n"
148 "The requirement to double the % sign when using FOR in a batch file does\n"
149 "not exist in wine's cmd.\n"
150 msgstr ""
151 "The FOR command is used to execute a command for each of a set of files.\n"
152 "\n"
153 "Syntax: FOR %variable IN (set) DO command\n"
154 "\n"
155 "The requirement to double the % sign when using FOR in a batch file does\n"
156 "not exist in wine's cmd.\n"
158 #: cmd.rc:82
159 msgid ""
160 "The GOTO command transfers execution to another statement within a\n"
161 "batch file.\n"
162 "\n"
163 "The label which is the target of a GOTO may be up to 255 characters\n"
164 "long but may not include spaces (this is different from other operating\n"
165 "systems). If two or more identical labels exist in a batch file the\n"
166 "first one will always be executed. Attempting to GOTO a nonexistent\n"
167 "label terminates the batch file execution.\n"
168 "\n"
169 "GOTO has no effect when used interactively.\n"
170 msgstr ""
171 "The GOTO command transfers execution to another statement within a\n"
172 "batch file.\n"
173 "\n"
174 "The label which is the target of a GOTO may be up to 255 characters\n"
175 "long but may not include spaces (this is different from other operating\n"
176 "systems). If two or more identical labels exist in a batch file the\n"
177 "first one will always be executed. Attempting to GOTO a nonexistent\n"
178 "label terminates the batch file execution.\n"
179 "\n"
180 "GOTO has no effect when used interactively.\n"
182 #: cmd.rc:85
183 msgid ""
184 "HELP <command> shows brief help details on a topic.\n"
185 "HELP without an argument shows all CMD built-in commands.\n"
186 msgstr ""
187 "HELP <command> shows brief help details on a topic.\n"
188 "HELP without an argument shows all CMD built-in commands.\n"
190 #: cmd.rc:95
191 msgid ""
192 "IF is used to conditionally execute a command.\n"
193 "\n"
194 "Syntax:\tIF [NOT] EXIST filename command\n"
195 "IF [NOT] string1==string2 command\n"
196 "IF [NOT] ERRORLEVEL number command\n"
197 "\n"
198 "In the second form of the command, string1 and string2 must be in double\n"
199 "quotes. The comparison is not case-sensitive.\n"
200 msgstr ""
201 "IF is used to conditionally execute a command.\n"
202 "\n"
203 "Syntax:\tIF [NOT] EXIST filename command\n"
204 "IF [NOT] string1==string2 command\n"
205 "IF [NOT] ERRORLEVEL number command\n"
206 "\n"
207 "In the second form of the command, string1 and string2 must be in double\n"
208 "quotes. The comparison is not case-sensitive.\n"
210 #: cmd.rc:101
211 msgid ""
212 "LABEL is used to set a disk volume label.\n"
213 "\n"
214 "Syntax: LABEL [drive:]\n"
215 "The command will prompt you for the new volume label for the given drive.\n"
216 "You can display the disk volume label with the VOL command.\n"
217 msgstr ""
218 "LABEL is used to set a disk volume label.\n"
219 "\n"
220 "Syntax: LABEL [drive:]\n"
221 "The command will prompt you for the new volume label for the given drive.\n"
222 "You can display the disk volume label with the VOL command.\n"
224 #: cmd.rc:104
225 msgid "MD <name> is the short version of MKDIR. It creates a subdirectory.\n"
226 msgstr "MD <name> is the short version of MKDIR. It creates a subdirectory.\n"
228 #: cmd.rc:105
229 msgid "MKDIR <name> creates a subdirectory.\n"
230 msgstr "MKDIR <name> creates a subdirectory.\n"
232 #: cmd.rc:112
233 msgid ""
234 "MOVE relocates a file or directory to a new point within the file system.\n"
235 "\n"
236 "If the item being moved is a directory then all the files and "
237 "subdirectories\n"
238 "below the item are moved as well.\n"
239 "\n"
240 "MOVE fails if the old and new locations are on different DOS drive letters.\n"
241 msgstr ""
242 "MOVE relocates a file or directory to a new point within the file system.\n"
243 "\n"
244 "If the item being moved is a directory then all the files and "
245 "subdirectories\n"
246 "below the item are moved as well.\n"
247 "\n"
248 "MOVE fails if the old and new locations are on different DOS drive letters.\n"
250 #: cmd.rc:123
251 msgid ""
252 "PATH displays or changes the cmd search path.\n"
253 "\n"
254 "Entering PATH will display the current PATH setting (initially taken\n"
255 "from the registry). To change the setting follow the\n"
256 "PATH command with the new value.\n"
257 "\n"
258 "It is also possible to modify the PATH by using the PATH environment\n"
259 "variable, for example:\n"
260 "PATH %PATH%;c:\\temp\n"
261 msgstr ""
262 "PATH displays or changes the cmd search path.\n"
263 "\n"
264 "Entering PATH will display the current PATH setting (initially taken\n"
265 "from the registry). To change the setting follow the\n"
266 "PATH command with the new value.\n"
267 "\n"
268 "It is also possible to modify the PATH by using the PATH environment\n"
269 "variable, for example:\n"
270 "PATH %PATH%;c:\\temp\n"
272 #: cmd.rc:129
273 msgid ""
274 "PAUSE displays a message on the screen 'Press Return key to continue'\n"
275 "and waits for the user to press the Return key. It is mainly useful in\n"
276 "batch files to allow the user to read the output of a previous command\n"
277 "before it scrolls off the screen.\n"
278 msgstr ""
279 "PAUSE displays a message on the screen 'Press Return key to continue'\n"
280 "and waits for the user to press the Return key. It is mainly useful in\n"
281 "batch files to allow the user to read the output of a previous command\n"
282 "before it scrolls off the screen.\n"
284 #: cmd.rc:150
285 msgid ""
286 "PROMPT sets the command-line prompt.\n"
287 "\n"
288 "The string following the PROMPT command (and the space immediately after)\n"
289 "appears at the beginning of the line when cmd is waiting for input.\n"
290 "\n"
291 "The following character strings have the special meaning shown:\n"
292 "\n"
293 "$$    Dollar sign         $_    Linefeed            $b    Pipe sign (|)\n"
294 "$d    Current date        $e    Escape              $g    > sign\n"
295 "$l    < sign              $n    Current drive       $p    Current path\n"
296 "$q    Equal sign          $t    Current time        $v    cmd version\n"
297 "\n"
298 "Note that entering the PROMPT command without a prompt-string resets the\n"
299 "prompt to the default, which is the current directory (which includes the\n"
300 "current drive letter) followed by a greater-than (>) sign.\n"
301 "(like a command PROMPT $p$g).\n"
302 "\n"
303 "The prompt can also be changed by altering the PROMPT environment variable,\n"
304 "so the command 'SET PROMPT=text' has the same effect as 'PROMPT text'\n"
305 msgstr ""
306 "PROMPT sets the command-line prompt.\n"
307 "\n"
308 "The string following the PROMPT command (and the space immediately after)\n"
309 "appears at the beginning of the line when cmd is waiting for input.\n"
310 "\n"
311 "The following character strings have the special meaning shown:\n"
312 "\n"
313 "$$    Dollar sign         $_    Linefeed            $b    Pipe sign (|)\n"
314 "$d    Current date        $e    Escape              $g    > sign\n"
315 "$l    < sign              $n    Current drive       $p    Current path\n"
316 "$q    Equal sign          $t    Current time        $v    cmd version\n"
317 "\n"
318 "Note that entering the PROMPT command without a prompt-string resets the\n"
319 "prompt to the default, which is the current directory (which includes the\n"
320 "current drive letter) followed by a greater-than (>) sign.\n"
321 "(like a command PROMPT $p$g).\n"
322 "\n"
323 "The prompt can also be changed by altering the PROMPT environment variable,\n"
324 "so the command 'SET PROMPT=text' has the same effect as 'PROMPT text'\n"
326 #: cmd.rc:154
327 msgid ""
328 "A command line beginning REM (followed by a space) performs no\n"
329 "action, and can therefore be used as a comment in a batch file.\n"
330 msgstr ""
331 "A command line beginning REM (followed by a space) performs no\n"
332 "action, and can therefore be used as a comment in a batch file.\n"
334 #: cmd.rc:157
335 msgid "REN <filename> is the short version of RENAME. It renames a file.\n"
336 msgstr "REN <filename> is the short version of RENAME. It renames a file.\n"
338 #: cmd.rc:158
339 msgid "RENAME <filename> renames a file\n"
340 msgstr "RENAME <filename> renames a file\n"
342 #: cmd.rc:160
343 msgid "RD <dir> is the short version of RMDIR. It deletes a subdirectory.\n"
344 msgstr "RD <dir> is the short version of RMDIR. It deletes a subdirectory.\n"
346 #: cmd.rc:161
347 msgid "RMDIR <dir> deletes a subdirectory.\n"
348 msgstr "RMDIR <dir> deletes a subdirectory.\n"
350 #: cmd.rc:179
351 msgid ""
352 "SET displays or changes the cmd environment variables.\n"
353 "\n"
354 "SET without parameters shows all of the current environment.\n"
355 "\n"
356 "To create or modify an environment variable the syntax is:\n"
357 "\n"
358 "SET <variable>=<value>\n"
359 "\n"
360 "where <variable> and <value> are character strings. There must be no\n"
361 "spaces before the equals sign, nor can the variable name\n"
362 "have embedded spaces.\n"
363 "\n"
364 "Under Wine, the environment of the underlying operating system is\n"
365 "included into the Win32 environment, there will generally therefore be\n"
366 "many more values than in a native Win32 implementation. Note that it is\n"
367 "not possible to affect the operating system environment from within cmd.\n"
368 msgstr ""
369 "SET displays or changes the cmd environment variables.\n"
370 "\n"
371 "SET without parameters shows all of the current environment.\n"
372 "\n"
373 "To create or modify an environment variable the syntax is:\n"
374 "\n"
375 "SET <variable>=<value>\n"
376 "\n"
377 "where <variable> and <value> are character strings. There must be no\n"
378 "spaces before the equals sign, nor can the variable name\n"
379 "have embedded spaces.\n"
380 "\n"
381 "Under Wine, the environment of the underlying operating system is\n"
382 "included into the Win32 environment, there will generally therefore be\n"
383 "many more values than in a native Win32 implementation. Note that it is\n"
384 "not possible to affect the operating system environment from within cmd.\n"
386 #: cmd.rc:184
387 msgid ""
388 "SHIFT is used in a batch file to remove one parameter from the head of\n"
389 "the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
390 "if called from the command line.\n"
391 msgstr ""
392 "SHIFT is used in a batch file to remove one parameter from the head of\n"
393 "the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
394 "if called from the command line.\n"
396 #: cmd.rc:186
397 msgid "TIME sets or shows the current system time.\n"
398 msgstr "TIME sets or shows the current system time.\n"
400 #: cmd.rc:188
401 msgid "Sets the window title for the cmd window, syntax TITLE [string]\n"
402 msgstr "Sets the window title for the cmd window, syntax TITLE [string]\n"
404 #: cmd.rc:192
405 msgid ""
406 "TYPE <filename> copies <filename> to the console device (or elsewhere\n"
407 "if redirected). No check is made that the file is readable text.\n"
408 msgstr ""
409 "TYPE <filename> copies <filename> to the console device (or elsewhere\n"
410 "if redirected). No check is made that the file is readable text.\n"
412 #: cmd.rc:201
413 msgid ""
414 "VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
415 "\n"
416 "VERIFY ON\tSet the flag\n"
417 "VERIFY OFF\tClear the flag\n"
418 "VERIFY\t\tDisplays ON or OFF as appropriate.\n"
419 "\n"
420 "The verify flag has no function in Wine.\n"
421 msgstr ""
422 "VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
423 "\n"
424 "VERIFY ON\tSet the flag\n"
425 "VERIFY OFF\tClear the flag\n"
426 "VERIFY\t\tDisplays ON or OFF as appropriate.\n"
427 "\n"
428 "The verify flag has no function in Wine.\n"
430 #: cmd.rc:204
431 msgid "VER displays the version of cmd you are running\n"
432 msgstr "VER displays the version of cmd you are running\n"
434 #: cmd.rc:206
435 msgid "VOL shows the volume label of a disk device.\n"
436 msgstr "VOL shows the volume label of a disk device.\n"
438 #: cmd.rc:209
439 msgid ""
440 "PUSHD <directoryname> saves the current directory onto a\n"
441 "stack, and then changes the current directory to the supplied one.\n"
442 msgstr ""
443 "PUSHD <directoryname> saves the current directory onto a\n"
444 "stack, and then changes the current directory to the supplied one.\n"
446 #: cmd.rc:212
447 msgid ""
448 "POPD changes current directory to the last one saved with\n"
449 "PUSHD.\n"
450 msgstr ""
451 "POPD changes current directory to the last one saved with\n"
452 "PUSHD.\n"
454 #: cmd.rc:214
455 msgid "MORE displays output of files or piped input in pages.\n"
456 msgstr "MORE displays output of files or piped input in pages.\n"
458 #: cmd.rc:218
459 msgid ""
460 "CHOICE displays a text and waits, until the User\n"
461 "presses an allowed Key from a selectable list.\n"
462 "CHOICE is mainly used to build a menu selection in a batch file.\n"
463 msgstr ""
464 "CHOICE displays a text and waits, until the User\n"
465 "presses an allowed Key from a selectable list.\n"
466 "CHOICE is mainly used to build a menu selection in a batch file.\n"
468 #: cmd.rc:222
469 msgid ""
470 "EXIT terminates the current command session and returns\n"
471 "to the operating system or shell from which you invoked cmd.\n"
472 msgstr ""
473 "EXIT terminates the current command session and returns\n"
474 "to the operating system or shell from which you invoked cmd.\n"
476 #: cmd.rc:253
477 msgid ""
478 "CMD built-in commands are:\n"
479 "ATTRIB\t\tShow or change DOS file attributes\n"
480 "CALL\t\tInvoke a batch file from inside another\n"
481 "CD (CHDIR)\tChange current default directory\n"
482 "CHOICE\t\tWait for an keypress from a selectable list\n"
483 "CLS\t\tClear the console screen\n"
484 "COPY\t\tCopy file\n"
485 "CTTY\t\tChange input/output device\n"
486 "DATE\t\tShow or change the system date\n"
487 "DEL (ERASE)\tDelete a file or set of files\n"
488 "DIR\t\tList the contents of a directory\n"
489 "ECHO\t\tCopy text directly to the console output\n"
490 "HELP\t\tShow brief help details on a topic\n"
491 "MD (MKDIR)\tCreate a subdirectory\n"
492 "MORE\t\tDisplay output in pages\n"
493 "MOVE\t\tMove a file, set of files or directory tree\n"
494 "PATH\t\tSet or show the search path\n"
495 "POPD\t\tRestores the directory to the last one saved with PUSHD\n"
496 "PROMPT\t\tChange the command prompt\n"
497 "PUSHD\t\tChanges to a new directory, saving the current one\n"
498 "REN (RENAME)\tRename a file\n"
499 "RD (RMDIR)\tDelete a subdirectory\n"
500 "SET\t\tSet or show environment variables\n"
501 "TIME\t\tSet or show the current system time\n"
502 "TITLE\t\tSet the window title for the CMD session\n"
503 "TYPE\t\tType the contents of a text file\n"
504 "VER\t\tShow the current version of CMD\n"
505 "VOL\t\tShow the volume label of a disk device\n"
506 "EXIT\t\tClose down CMD\n"
507 "\n"
508 "Enter HELP <command> for further information on any of the above commands\n"
509 msgstr ""
510 "CMD built-in commands are:\n"
511 "ATTRIB\t\tShow or change DOS file attributes\n"
512 "CALL\t\tInvoke a batch file from inside another\n"
513 "CD (CHDIR)\tChange current default directory\n"
514 "CHOICE\t\tWait for an keypress from a selectable list\n"
515 "CLS\t\tClear the console screen\n"
516 "COPY\t\tCopy file\n"
517 "CTTY\t\tChange input/output device\n"
518 "DATE\t\tShow or change the system date\n"
519 "DEL (ERASE)\tDelete a file or set of files\n"
520 "DIR\t\tList the contents of a directory\n"
521 "ECHO\t\tCopy text directly to the console output\n"
522 "HELP\t\tShow brief help details on a topic\n"
523 "MD (MKDIR)\tCreate a subdirectory\n"
524 "MORE\t\tDisplay output in pages\n"
525 "MOVE\t\tMove a file, set of files or directory tree\n"
526 "PATH\t\tSet or show the search path\n"
527 "POPD\t\tRestores the directory to the last one saved with PUSHD\n"
528 "PROMPT\t\tChange the command prompt\n"
529 "PUSHD\t\tChanges to a new directory, saving the current one\n"
530 "REN (RENAME)\tRename a file\n"
531 "RD (RMDIR)\tDelete a subdirectory\n"
532 "SET\t\tSet or show environment variables\n"
533 "TIME\t\tSet or show the current system time\n"
534 "TITLE\t\tSet the window title for the CMD session\n"
535 "TYPE\t\tType the contents of a text file\n"
536 "VER\t\tShow the current version of CMD\n"
537 "VOL\t\tShow the volume label of a disk device\n"
538 "EXIT\t\tClose down CMD\n"
539 "\n"
540 "Enter HELP <command> for further information on any of the above commands\n"
542 #: cmd.rc:255
543 msgid "Are you sure"
544 msgstr "Are you sure"
546 #: cmd.rc:256 xcopy.rc:40
547 msgctxt "Yes key"
548 msgid "Y"
549 msgstr "Y"
551 #: cmd.rc:257 xcopy.rc:41
552 msgctxt "No key"
553 msgid "N"
554 msgstr ""
556 #: cmd.rc:258
557 msgid "File association missing for extension %s\n"
558 msgstr "File association missing for extension %s\n"
560 #: cmd.rc:259
561 msgid "No open command associated with file type '%s'\n"
562 msgstr "No open command associated with file type '%s'\n"
564 #: cmd.rc:260
565 msgid "Overwrite %s"
566 msgstr "Overwrite %s"
568 #: cmd.rc:261
569 msgid "More..."
570 msgstr "More..."
572 #: cmd.rc:262
573 msgid "Line in Batch processing possibly truncated. Using:\n"
574 msgstr "Line in Batch processing possibly truncated. Using:\n"
576 #: cmd.rc:263
577 msgid ""
578 "Not Yet Implemented\n"
579 "\n"
580 msgstr ""
581 "Not Yet Implemented\n"
582 "\n"
584 #: cmd.rc:264
585 msgid "Argument missing\n"
586 msgstr "Argument missing\n"
588 #: cmd.rc:265
589 msgid "Syntax error\n"
590 msgstr "Syntax error\n"
592 #: cmd.rc:266
593 msgid "%s : File Not Found\n"
594 msgstr "%s : File Not Found\n"
596 #: cmd.rc:267
597 msgid "No help available for %s\n"
598 msgstr "No help available for %s\n"
600 #: cmd.rc:268
601 msgid "Target to GOTO not found\n"
602 msgstr "Target to GOTO not found\n"
604 #: cmd.rc:269
605 msgid "Current Date is %s\n"
606 msgstr "Current Date is %s\n"
608 #: cmd.rc:270
609 msgid "Current Time is %s\n"
610 msgstr "Current Time is %s\n"
612 #: cmd.rc:271
613 msgid "Enter new date: "
614 msgstr "Enter new date: "
616 #: cmd.rc:272
617 msgid "Enter new time: "
618 msgstr "Enter new time: "
620 #: cmd.rc:273
621 msgid "Environment variable %s not defined\n"
622 msgstr "Environment variable %s not defined\n"
624 #: cmd.rc:274 xcopy.rc:38
625 msgid "Failed to open '%s'\n"
626 msgstr "Failed to open '%s'\n"
628 #: cmd.rc:275
629 msgid "Cannot call batch label outside of a batch script\n"
630 msgstr "Cannot call batch label outside of a batch script\n"
632 #: cmd.rc:276 xcopy.rc:42
633 msgctxt "All key"
634 msgid "A"
635 msgstr "A"
637 #: cmd.rc:277
638 msgid "%s, Delete"
639 msgstr "%s, Delete"
641 #: cmd.rc:278
642 msgid "Echo is %s\n"
643 msgstr "Echo is %s\n"
645 #: cmd.rc:279
646 msgid "Verify is %s\n"
647 msgstr "Verify is %s\n"
649 #: cmd.rc:280
650 msgid "Verify must be ON or OFF\n"
651 msgstr "Verify must be ON or OFF\n"
653 #: cmd.rc:281
654 msgid "Parameter error\n"
655 msgstr "Parameter error\n"
657 #: cmd.rc:282
658 msgid ""
659 "Volume in drive %c is %s\n"
660 "Volume Serial Number is %04x-%04x\n"
661 "\n"
662 msgstr ""
663 "Volume in drive %c is %s\n"
664 "Volume Serial Number is %04x-%04x\n"
665 "\n"
667 #: cmd.rc:283
668 msgid "Volume label (11 characters, ENTER for none)?"
669 msgstr "Volume label (11 characters, ENTER for none)?"
671 #: cmd.rc:284
672 msgid "PATH not found\n"
673 msgstr "PATH not found\n"
675 #: cmd.rc:285
676 msgid "Press Return key to continue: "
677 msgstr "Press Return key to continue: "
679 #: cmd.rc:286
680 msgid "Wine Command Prompt"
681 msgstr "Wine Command Prompt"
683 #: cmd.rc:287
684 msgid ""
685 "CMD Version %s\n"
686 "\n"
687 msgstr ""
688 "CMD Version %s\n"
689 "\n"
691 #: cmd.rc:288
692 msgid "More? "
693 msgstr "More? "
695 #: cmd.rc:289
696 msgid "The input line is too long.\n"
697 msgstr "The input line is too long.\n"
699 #: ipconfig.rc:27
700 msgid "Usage: ipconfig [ /? | /all ]\n"
701 msgstr "Usage: ipconfig [ /? | /all ]\n"
703 #: ipconfig.rc:28
704 msgid "Error: Unknown or invalid command line parameters specified\n"
705 msgstr "Error: Unknown or invalid command line parameters specified\n"
707 #: ipconfig.rc:29
708 msgid "%s adapter %s\n"
709 msgstr "%s adapter %s\n"
711 #: ipconfig.rc:30
712 msgid "Ethernet"
713 msgstr "Ethernet"
715 #: ipconfig.rc:31
716 msgid "Unknown"
717 msgstr "Unknown"
719 #: ipconfig.rc:32
720 msgid "Connection-specific DNS suffix"
721 msgstr "Connection-specific DNS suffix"
723 #: ipconfig.rc:33
724 msgid "IP address"
725 msgstr "IP address"
727 #: ipconfig.rc:34
728 msgid "Hostname"
729 msgstr "Hostname"
731 #: ipconfig.rc:35
732 msgid "Node type"
733 msgstr "Node type"
735 #: ipconfig.rc:36
736 msgid "Broadcast"
737 msgstr "Broadcast"
739 #: ipconfig.rc:37
740 msgid "Peer-to-peer"
741 msgstr "Peer-to-peer"
743 #: ipconfig.rc:38
744 msgid "Mixed"
745 msgstr "Mixed"
747 #: ipconfig.rc:39
748 msgid "Hybrid"
749 msgstr "Hybrid"
751 #: ipconfig.rc:40
752 msgid "IP routing enabled"
753 msgstr "IP routing enabled"
755 #: ipconfig.rc:41
756 msgid "Description"
757 msgstr "Description"
759 #: ipconfig.rc:42
760 msgid "Physical address"
761 msgstr "Physical address"
763 #: ipconfig.rc:43
764 msgid "DHCP enabled"
765 msgstr "DHCP enabled"
767 #: ipconfig.rc:44
768 msgid "Yes"
769 msgstr "Yes"
771 #: ipconfig.rc:45
772 msgid "No"
773 msgstr "No"
775 #: ipconfig.rc:46
776 msgid "Default gateway"
777 msgstr "Default gateway"
779 #: net.rc:27
780 msgid ""
781 "The syntax of this command is:\n"
782 "\n"
783 "NET [ HELP | START | STOP | USE ]\n"
784 msgstr ""
785 "The syntax of this command is:\n"
786 "\n"
787 "NET [ HELP | START | STOP | USE ]\n"
789 #: net.rc:28
790 msgid "Specify service name to start.\n"
791 msgstr "Specify service name to start.\n"
793 #: net.rc:29
794 msgid "Specify service name to stop.\n"
795 msgstr "Specify service name to stop.\n"
797 #: net.rc:30
798 msgid "Stopping dependent service: %s\n"
799 msgstr "Stopping dependent service: %s\n"
801 #: net.rc:31
802 msgid "Could not stop service %s\n"
803 msgstr "Could not stop service %s\n"
805 #: net.rc:32
806 msgid "Could not get handle to service control manager.\n"
807 msgstr "Could not get handle to service control manager.\n"
809 #: net.rc:33
810 msgid "Could not get handle to service.\n"
811 msgstr "Could not get handle to service.\n"
813 #: net.rc:34
814 msgid "The %s service is starting.\n"
815 msgstr "The %s service is starting.\n"
817 #: net.rc:35
818 msgid "The %s service was started successfully.\n"
819 msgstr "The %s service was started successfully.\n"
821 #: net.rc:36
822 msgid "The %s service failed to start.\n"
823 msgstr "The %s service failed to start.\n"
825 #: net.rc:37
826 msgid "The %s service is stopping.\n"
827 msgstr "The %s service is stopping.\n"
829 #: net.rc:38
830 msgid "The %s service was stopped successfully.\n"
831 msgstr "The %s service was stopped successfully.\n"
833 #: net.rc:39
834 msgid "The %s service failed to stop.\n"
835 msgstr "The %s service failed to stop.\n"
837 #: net.rc:40
838 msgid ""
839 "The syntax of this command is:\n"
840 "\n"
841 "NET HELP command\n"
842 "    -or-\n"
843 "NET command /HELP\n"
844 "\n"
845 "   Commands available are:\n"
846 "   NET HELP    NET START    NET STOP    NET USE\n"
847 msgstr ""
848 "The syntax of this command is:\n"
849 "\n"
850 "NET HELP command\n"
851 "    -or-\n"
852 "NET command /HELP\n"
853 "\n"
854 "   Commands available are:\n"
855 "   NET HELP    NET START    NET STOP    NET USE\n"
857 #: net.rc:42
858 msgid "There are no entries in the list.\n"
859 msgstr "There are no entries in the list.\n"
861 #: net.rc:43
862 msgid ""
863 "\n"
864 "Status  Local   Remote\n"
865 "---------------------------------------------------------------\n"
866 msgstr ""
867 "\n"
868 "Status  Local   Remote\n"
869 "---------------------------------------------------------------\n"
871 #: net.rc:44
872 msgid "%s      %S      %S      Open resources: %lu\n"
873 msgstr "%s      %S      %S      Open resources: %lu\n"
875 #: reg.rc:27
876 msgid ""
877 "The syntax of this command is:\n"
878 "\n"
879 "REG [ ADD | DELETE | QUERY ]\n"
880 "REG command /?\n"
881 msgstr ""
882 "The syntax of this command is:\n"
883 "\n"
884 "REG [ ADD | DELETE | QUERY ]\n"
885 "REG command /?\n"
887 #: reg.rc:28
888 msgid ""
889 "REG ADD key_name [/v value_name | /ve] [/t type] [/s separator] [/d data] [/"
890 "f]\n"
891 msgstr ""
892 "REG ADD key_name [/v value_name | /ve] [/t type] [/s separator] [/d data] [/"
893 "f]\n"
895 #: reg.rc:29
896 msgid "REG DELETE key_name [/v value_name | /ve | /va] [/f]\n"
897 msgstr "REG DELETE key_name [/v value_name | /ve | /va] [/f]\n"
899 #: reg.rc:30
900 msgid "REG QUERY key_name [/v value_name | /ve] [/s]\n"
901 msgstr "REG QUERY key_name [/v value_name | /ve] [/s]\n"
903 #: reg.rc:31
904 msgid "The operation completed successfully\n"
905 msgstr "The operation completed successfully\n"
907 #: reg.rc:32
908 msgid "Error: Invalid key name\n"
909 msgstr "Error: Invalid key name\n"
911 #: reg.rc:33
912 msgid "Error: Invalid command line parameters\n"
913 msgstr "Error: Invalid command line parameters\n"
915 #: reg.rc:34
916 msgid "Error: Unable to add keys to remote machine\n"
917 msgstr "Error: Unable to add keys to remote machine\n"
919 #: reg.rc:35
920 msgid ""
921 "Error: The system was unable to find the specified registry key or value\n"
922 msgstr ""
923 "Error: The system was unable to find the specified registry key or value\n"
925 #: start.rc:45
926 msgid ""
927 "Start a program, or open a document in the program normally used for files "
928 "with that suffix.\n"
929 "Usage:\n"
930 "start [options] program_filename [...]\n"
931 "start [options] document_filename\n"
932 "\n"
933 "Options:\n"
934 "/M[inimized] Start the program minimized.\n"
935 "/MAX[imized] Start the program maximized.\n"
936 "/R[estored]  Start the program normally (neither minimized nor maximized).\n"
937 "/W[ait]      Wait for started program to finish, then exit with its exit "
938 "code.\n"
939 "/Unix        Use a Unix filename and start the file like windows explorer.\n"
940 "/ProgIDOpen  Open a document using the following progID.\n"
941 "/L           Show end-user license.\n"
942 "\n"
943 "start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
944 "Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
945 "This is free software, and you are welcome to redistribute it\n"
946 "under certain conditions; run 'start /L' for details.\n"
947 msgstr ""
948 "Start a program, or open a document in the program normally used for files "
949 "with that suffix.\n"
950 "Usage:\n"
951 "start [options] program_filename [...]\n"
952 "start [options] document_filename\n"
953 "\n"
954 "Options:\n"
955 "/M[inimized] Start the program minimized.\n"
956 "/MAX[imized] Start the program maximized.\n"
957 "/R[estored]  Start the program normally (neither minimized nor maximized).\n"
958 "/W[ait]      Wait for started program to finish, then exit with its exit "
959 "code.\n"
960 "/Unix        Use a Unix filename and start the file like windows explorer.\n"
961 "/ProgIDOpen  Open a document using the following progID.\n"
962 "/L           Show end-user license.\n"
963 "\n"
964 "start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
965 "Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
966 "This is free software, and you are welcome to redistribute it\n"
967 "under certain conditions; run 'start /L' for details.\n"
969 #: start.rc:63
970 msgid ""
971 "start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
972 "This program is free software; you can redistribute it and/or\n"
973 "modify it under the terms of the GNU Lesser Public License\n"
974 "as published by the Free Software Foundation; either version 2.1\n"
975 "of the License, or (at your option) any later version.\n"
976 "\n"
977 "This program is distributed in the hope that it will be useful,\n"
978 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
979 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
980 "GNU Lesser Public License for more details.\n"
981 "\n"
982 "You should have received a copy of the GNU Lesser Public License\n"
983 "along with this program; if not, write to the Free Software\n"
984 "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
985 "\n"
986 "See the COPYING.LIB file for license information.\n"
987 msgstr ""
988 "start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
989 "This program is free software; you can redistribute it and/or\n"
990 "modify it under the terms of the GNU Lesser Public License\n"
991 "as published by the Free Software Foundation; either version 2.1\n"
992 "of the License, or (at your option) any later version.\n"
993 "\n"
994 "This program is distributed in the hope that it will be useful,\n"
995 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
996 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
997 "GNU Lesser Public License for more details.\n"
998 "\n"
999 "You should have received a copy of the GNU Lesser Public License\n"
1000 "along with this program; if not, write to the Free Software\n"
1001 "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
1002 "\n"
1003 "See the COPYING.LIB file for license information.\n"
1005 #: start.rc:65
1006 msgid ""
1007 "Application could not be started, or no application associated with the "
1008 "specified file.\n"
1009 "ShellExecuteEx failed"
1010 msgstr ""
1011 "Application could not be started, or no application associated with the "
1012 "specified file.\n"
1013 "ShellExecuteEx failed"
1015 #: start.rc:67
1016 msgid "Could not translate the specified Unix filename to a DOS filename."
1017 msgstr "Could not translate the specified Unix filename to a DOS filename."
1019 #: taskkill.rc:27
1020 msgid "Usage: taskkill [/?] [/f] [/im ProcessName | /pid ProcessID]\n"
1021 msgstr "Usage: taskkill [/?] [/f] [/im ProcessName | /pid ProcessID]\n"
1023 #: taskkill.rc:28
1024 msgid "Error: Unknown or invalid command line option specified.\n"
1025 msgstr "Error: Unknown or invalid command line option specified.\n"
1027 #: taskkill.rc:29
1028 msgid "Error: Invalid command line parameter specified.\n"
1029 msgstr "Error: Invalid command line parameter specified.\n"
1031 #: taskkill.rc:30
1032 msgid "Error: One of options /im or /pid must be specified.\n"
1033 msgstr "Error: One of options /im or /pid must be specified.\n"
1035 #: taskkill.rc:31
1036 msgid "Error: Option %s expects a command line parameter.\n"
1037 msgstr "Error: Option %s expects a command line parameter.\n"
1039 #: taskkill.rc:32
1040 msgid "Error: Options /im and /pid are mutually exclusive.\n"
1041 msgstr "Error: Options /im and /pid are mutually exclusive.\n"
1043 #: taskkill.rc:33
1044 msgid "Close message sent to top-level windows of process with PID %u.\n"
1045 msgstr "Close message sent to top-level windows of process with PID %u.\n"
1047 #: taskkill.rc:34
1048 msgid ""
1049 "Close message sent to top-level windows of process \"%s\" with PID %u.\n"
1050 msgstr ""
1051 "Close message sent to top-level windows of process \"%s\" with PID %u.\n"
1053 #: taskkill.rc:35
1054 msgid "Process with PID %u was forcibly terminated.\n"
1055 msgstr "Process with PID %u was forcibly terminated.\n"
1057 #: taskkill.rc:36
1058 msgid "Process \"%s\" with PID %u was forcibly terminated.\n"
1059 msgstr "Process \"%s\" with PID %u was forcibly terminated.\n"
1061 #: taskkill.rc:37
1062 msgid "Error: Could not find process \"%s\".\n"
1063 msgstr "Error: Could not find process \"%s\".\n"
1065 #: taskkill.rc:38
1066 msgid "Error: Unable to enumerate the process list.\n"
1067 msgstr "Error: Unable to enumerate the process list.\n"
1069 #: taskkill.rc:39
1070 msgid "Error: Unable to terminate process \"%s\".\n"
1071 msgstr "Error: Unable to terminate process \"%s\".\n"
1073 #: taskkill.rc:40
1074 msgid "Error: Process self-termination is not permitted.\n"
1075 msgstr "Error: Process self-termination is not permitted.\n"
1077 #: uninstaller.rc:26
1078 msgid "Wine Application Uninstaller"
1079 msgstr "Wine Application Uninstaller"
1081 #: uninstaller.rc:27
1082 msgid ""
1083 "Execution of uninstall command '%s' failed, perhaps due to missing "
1084 "executable.\n"
1085 "Do you want to remove the uninstall entry from the registry ?"
1086 msgstr ""
1087 "Execution of uninstall command '%s' failed, perhaps due to missing "
1088 "executable.\n"
1089 "Do you want to remove the uninstall entry from the registry ?"
1091 #: write.rc:27
1092 msgid "Starting Wordpad failed"
1093 msgstr "Starting Wordpad failed"
1095 #: xcopy.rc:27
1096 msgid "Invalid number of parameters - Use xcopy /? for help\n"
1097 msgstr "Invalid number of parameters - Use xcopy /? for help\n"
1099 #: xcopy.rc:28
1100 msgid "Invalid parameter '%s' -  Use xcopy /? for help\n"
1101 msgstr "Invalid parameter '%s' -  Use xcopy /? for help\n"
1103 #: xcopy.rc:29
1104 msgid "Press <enter> to begin copying\n"
1105 msgstr "Press <enter> to begin copying\n"
1107 #: xcopy.rc:30
1108 msgid "%d file(s) would be copied\n"
1109 msgstr "%d file(s) would be copied\n"
1111 #: xcopy.rc:31
1112 msgid "%d file(s) copied\n"
1113 msgstr "%d file(s) copied\n"
1115 #: xcopy.rc:34
1116 msgid ""
1117 "Is '%s' a filename or directory\n"
1118 "on the target?\n"
1119 "(F - File, D - Directory)\n"
1120 msgstr ""
1121 "Is '%s' a filename or directory\n"
1122 "on the target?\n"
1123 "(F - File, D - Directory)\n"
1125 #: xcopy.rc:35
1126 msgid "%s? (Yes|No)\n"
1127 msgstr "%s? (Yes|No)\n"
1129 #: xcopy.rc:36
1130 msgid "Overwrite %s? (Yes|No|All)\n"
1131 msgstr "Overwrite %s? (Yes|No|All)\n"
1133 #: xcopy.rc:37
1134 msgid "Copying of '%s' to '%s' failed with r/c %d\n"
1135 msgstr "Copying of '%s' to '%s' failed with r/c %d\n"
1137 #: xcopy.rc:39
1138 msgid "Failed during reading of '%s'\n"
1139 msgstr "Failed during reading of '%s'\n"
1141 #: xcopy.rc:43
1142 msgctxt "File key"
1143 msgid "F"
1144 msgstr "F"
1146 #: xcopy.rc:44
1147 msgctxt "Directory key"
1148 msgid "D"
1149 msgstr "D"
1151 #: xcopy.rc:77
1152 msgid ""
1153 "XCOPY - Copies source files or directory trees to a destination\n"
1154 "\n"
1155 "Syntax:\n"
1156 "XCOPY source [dest] [/I] [/S] [/Q] [/F] [/L] [/W] [/T] [/N] [/U]\n"
1157 "\t     [/R] [/H] [/C] [/P] [/A] [/M] [/E] [/D] [/Y] [/-Y]\n"
1158 "\n"
1159 "Where:\n"
1160 "\n"
1161 "[/I]  Assume directory if destination does not exist and copying two or\n"
1162 "\tmore files\n"
1163 "[/S]  Copy directories and subdirectories\n"
1164 "[/E]  Copy directories and subdirectories, including any empty ones\n"
1165 "[/Q]  Do not list names during copy, ie quiet.\n"
1166 "[/F]  Show full source and destination names during copy\n"
1167 "[/L]  Simulate operation, showing names which would be copied\n"
1168 "[/W]  Prompts before beginning the copy operation\n"
1169 "[/T]  Creates empty directory structure but does not copy files\n"
1170 "[/Y]  Suppress prompting when overwriting files\n"
1171 "[/-Y] Enable prompting when overwriting files\n"
1172 "[/P]  Prompts on each source file before copying\n"
1173 "[/N]  Copy using short names\n"
1174 "[/U]  Copy only files which already exist in destination\n"
1175 "[/R]  Overwrite any read only files\n"
1176 "[/H]  Include hidden and system files in the copy\n"
1177 "[/C]  Continue even if an error occurs during the copy\n"
1178 "[/A]  Only copy files with archive attribute set\n"
1179 "[/M]  Only copy files with archive attribute set, removes\n"
1180 "\tarchive attribute\n"
1181 "[/D | /D:m-d-y] Copy new files or those modified after the supplied date.\n"
1182 "\t\tIf no date is supplied, only copy if destination is older\n"
1183 "\t\tthan source\n"
1184 "\n"
1185 msgstr ""
1186 "XCOPY - Copies source files or directory trees to a destination\n"
1187 "\n"
1188 "Syntax:\n"
1189 "XCOPY source [dest] [/I] [/S] [/Q] [/F] [/L] [/W] [/T] [/N] [/U]\n"
1190 "\t     [/R] [/H] [/C] [/P] [/A] [/M] [/E] [/D] [/Y] [/-Y]\n"
1191 "\n"
1192 "Where:\n"
1193 "\n"
1194 "[/I]  Assume directory if destination does not exist and copying two or\n"
1195 "\tmore files\n"
1196 "[/S]  Copy directories and subdirectories\n"
1197 "[/E]  Copy directories and subdirectories, including any empty ones\n"
1198 "[/Q]  Do not list names during copy, ie quiet.\n"
1199 "[/F]  Show full source and destination names during copy\n"
1200 "[/L]  Simulate operation, showing names which would be copied\n"
1201 "[/W]  Prompts before beginning the copy operation\n"
1202 "[/T]  Creates empty directory structure but does not copy files\n"
1203 "[/Y]  Suppress prompting when overwriting files\n"
1204 "[/-Y] Enable prompting when overwriting files\n"
1205 "[/P]  Prompts on each source file before copying\n"
1206 "[/N]  Copy using short names\n"
1207 "[/U]  Copy only files which already exist in destination\n"
1208 "[/R]  Overwrite any read only files\n"
1209 "[/H]  Include hidden and system files in the copy\n"
1210 "[/C]  Continue even if an error occurs during the copy\n"
1211 "[/A]  Only copy files with archive attribute set\n"
1212 "[/M]  Only copy files with archive attribute set, removes\n"
1213 "\tarchive attribute\n"
1214 "[/D | /D:m-d-y] Copy new files or those modified after the supplied date.\n"
1215 "\t\tIf no date is supplied, only copy if destination is older\n"
1216 "\t\tthan source\n"
1217 "\n"