net: Convert translations to po files.
[wine.git] / po / wine.pot
blob2de9b4020f38ec1b722036ae320c533284b145dc
1 msgid ""
2 msgstr ""
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"
9 "MIME-Version: 1.0\n"
10 "Content-Type: text/plain; charset=UTF-8\n"
11 "Content-Transfer-Encoding: 8bit\n"
13 #: clock.rc:28
14 msgid "&Properties"
15 msgstr ""
17 #: clock.rc:29
18 msgid "Ana&log"
19 msgstr ""
21 #: clock.rc:30
22 msgid "Digi&tal"
23 msgstr ""
25 #: clock.rc:32
26 msgid "&Font..."
27 msgstr ""
29 #: clock.rc:34
30 msgid "&Without Titlebar"
31 msgstr ""
33 #: clock.rc:36
34 msgid "&Seconds"
35 msgstr ""
37 #: clock.rc:37
38 msgid "&Date"
39 msgstr ""
41 #: clock.rc:39
42 msgid "&Always on Top"
43 msgstr ""
45 #: clock.rc:41
46 msgid "Inf&o"
47 msgstr ""
49 #: clock.rc:42
50 msgid "&About Clock..."
51 msgstr ""
53 #: clock.rc:48
54 msgid "Clock"
55 msgstr ""
57 #: cmd.rc:30
58 msgid "ATTRIB shows or changes DOS file attributes.\n"
59 msgstr ""
61 #: cmd.rc:38
62 msgid ""
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"
66 "called procedure.\n"
67 "\n"
68 "Changes to default directory, environment variables etc made within a\n"
69 "called procedure are inherited by the caller.\n"
70 msgstr ""
72 #: cmd.rc:41
73 msgid ""
74 "CD <dir> is the short version of CHDIR. It changes the current\n"
75 "default directory.\n"
76 msgstr ""
78 #: cmd.rc:42
79 msgid "CHDIR <dir> changes the current default directory.\n"
80 msgstr ""
82 #: cmd.rc:44
83 msgid "CLS clears the console screen.\n"
84 msgstr ""
86 #: cmd.rc:46
87 msgid "COPY <filename> copies a file.\n"
88 msgstr ""
90 #: cmd.rc:47
91 msgid "CTTY changes the input/output device.\n"
92 msgstr ""
94 #: cmd.rc:48
95 msgid "DATE shows or changes the system date.\n"
96 msgstr ""
98 #: cmd.rc:49
99 msgid "DEL <filename> deletes a file or set of files.\n"
100 msgstr ""
102 #: cmd.rc:50
103 msgid "DIR lists the contents of a directory.\n"
104 msgstr ""
106 #: cmd.rc:60
107 msgid ""
108 "ECHO <string> displays <string> on the current terminal device.\n"
109 "\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"
112 "\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"
116 msgstr ""
118 #: cmd.rc:62
119 msgid "ERASE <filename> deletes a file or set of files.\n"
120 msgstr ""
122 #: cmd.rc:70
123 msgid ""
124 "The FOR command is used to execute a command for each of a set of files.\n"
125 "\n"
126 "Syntax: FOR %variable IN (set) DO command\n"
127 "\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"
130 msgstr ""
132 #: cmd.rc:82
133 msgid ""
134 "The GOTO command transfers execution to another statement within a\n"
135 "batch file.\n"
136 "\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"
142 "\n"
143 "GOTO has no effect when used interactively.\n"
144 msgstr ""
146 #: cmd.rc:85
147 msgid ""
148 "HELP <command> shows brief help details on a topic.\n"
149 "HELP without an argument shows all CMD built-in commands.\n"
150 msgstr ""
152 #: cmd.rc:95
153 msgid ""
154 "IF is used to conditionally execute a command.\n"
155 "\n"
156 "Syntax:\tIF [NOT] EXIST filename command\n"
157 "IF [NOT] string1==string2 command\n"
158 "IF [NOT] ERRORLEVEL number command\n"
159 "\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"
162 msgstr ""
164 #: cmd.rc:101
165 msgid ""
166 "LABEL is used to set a disk volume label.\n"
167 "\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"
171 msgstr ""
173 #: cmd.rc:104
174 msgid "MD <name> is the short version of MKDIR. It creates a subdirectory.\n"
175 msgstr ""
177 #: cmd.rc:105
178 msgid "MKDIR <name> creates a subdirectory.\n"
179 msgstr ""
181 #: cmd.rc:112
182 msgid ""
183 "MOVE relocates a file or directory to a new point within the file system.\n"
184 "\n"
185 "If the item being moved is a directory then all the files and "
186 "subdirectories\n"
187 "below the item are moved as well.\n"
188 "\n"
189 "MOVE fails if the old and new locations are on different DOS drive letters.\n"
190 msgstr ""
192 #: cmd.rc:123
193 msgid ""
194 "PATH displays or changes the cmd search path.\n"
195 "\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"
199 "\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"
203 msgstr ""
205 #: cmd.rc:129
206 msgid ""
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"
211 msgstr ""
213 #: cmd.rc:150
214 msgid ""
215 "PROMPT sets the command-line prompt.\n"
216 "\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"
219 "\n"
220 "The following character strings have the special meaning shown:\n"
221 "\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"
226 "\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"
231 "\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"
234 msgstr ""
236 #: cmd.rc:154
237 msgid ""
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"
240 msgstr ""
242 #: cmd.rc:157
243 msgid "REN <filename> is the short version of RENAME. It renames a file.\n"
244 msgstr ""
246 #: cmd.rc:158
247 msgid "RENAME <filename> renames a file\n"
248 msgstr ""
250 #: cmd.rc:160
251 msgid "RD <dir> is the short version of RMDIR. It deletes a subdirectory.\n"
252 msgstr ""
254 #: cmd.rc:161
255 msgid "RMDIR <dir> deletes a subdirectory.\n"
256 msgstr ""
258 #: cmd.rc:179
259 msgid ""
260 "SET displays or changes the cmd environment variables.\n"
261 "\n"
262 "SET without parameters shows all of the current environment.\n"
263 "\n"
264 "To create or modify an environment variable the syntax is:\n"
265 "\n"
266 "SET <variable>=<value>\n"
267 "\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"
271 "\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"
276 msgstr ""
278 #: cmd.rc:184
279 msgid ""
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"
283 msgstr ""
285 #: cmd.rc:186
286 msgid "TIME sets or shows the current system time.\n"
287 msgstr ""
289 #: cmd.rc:188
290 msgid "Sets the window title for the cmd window, syntax TITLE [string]\n"
291 msgstr ""
293 #: cmd.rc:192
294 msgid ""
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"
297 msgstr ""
299 #: cmd.rc:201
300 msgid ""
301 "VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
302 "\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"
306 "\n"
307 "The verify flag has no function in Wine.\n"
308 msgstr ""
310 #: cmd.rc:204
311 msgid "VER displays the version of cmd you are running\n"
312 msgstr ""
314 #: cmd.rc:206
315 msgid "VOL shows the volume label of a disk device.\n"
316 msgstr ""
318 #: cmd.rc:209
319 msgid ""
320 "PUSHD <directoryname> saves the current directory onto a\n"
321 "stack, and then changes the current directory to the supplied one.\n"
322 msgstr ""
324 #: cmd.rc:212
325 msgid ""
326 "POPD changes current directory to the last one saved with\n"
327 "PUSHD.\n"
328 msgstr ""
330 #: cmd.rc:214
331 msgid "MORE displays output of files or piped input in pages.\n"
332 msgstr ""
334 #: cmd.rc:218
335 msgid ""
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"
339 msgstr ""
341 #: cmd.rc:222
342 msgid ""
343 "EXIT terminates the current command session and returns\n"
344 "to the operating system or shell from which you invoked cmd.\n"
345 msgstr ""
347 #: cmd.rc:253
348 msgid ""
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"
378 "\n"
379 "Enter HELP <command> for further information on any of the above commands\n"
380 msgstr ""
382 #: cmd.rc:255
383 msgid "Are you sure"
384 msgstr ""
386 #: cmd.rc:256
387 msgctxt "Yes key"
388 msgid "Y"
389 msgstr ""
391 #: cmd.rc:257
392 msgctxt "No key"
393 msgid "N"
394 msgstr ""
396 #: cmd.rc:258
397 msgid "File association missing for extension %s\n"
398 msgstr ""
400 #: cmd.rc:259
401 msgid "No open command associated with file type '%s'\n"
402 msgstr ""
404 #: cmd.rc:260
405 msgid "Overwrite %s"
406 msgstr ""
408 #: cmd.rc:261
409 msgid "More..."
410 msgstr ""
412 #: cmd.rc:262
413 msgid "Line in Batch processing possibly truncated. Using:\n"
414 msgstr ""
416 #: cmd.rc:263
417 msgid ""
418 "Not Yet Implemented\n"
419 "\n"
420 msgstr ""
422 #: cmd.rc:264
423 msgid "Argument missing\n"
424 msgstr ""
426 #: cmd.rc:265
427 msgid "Syntax error\n"
428 msgstr ""
430 #: cmd.rc:266
431 msgid "%s : File Not Found\n"
432 msgstr ""
434 #: cmd.rc:267
435 msgid "No help available for %s\n"
436 msgstr ""
438 #: cmd.rc:268
439 msgid "Target to GOTO not found\n"
440 msgstr ""
442 #: cmd.rc:269
443 msgid "Current Date is %s\n"
444 msgstr ""
446 #: cmd.rc:270
447 msgid "Current Time is %s\n"
448 msgstr ""
450 #: cmd.rc:271
451 msgid "Enter new date: "
452 msgstr ""
454 #: cmd.rc:272
455 msgid "Enter new time: "
456 msgstr ""
458 #: cmd.rc:273
459 msgid "Environment variable %s not defined\n"
460 msgstr ""
462 #: cmd.rc:274
463 msgid "Failed to open '%s'\n"
464 msgstr ""
466 #: cmd.rc:275
467 msgid "Cannot call batch label outside of a batch script\n"
468 msgstr ""
470 #: cmd.rc:276
471 msgctxt "All key"
472 msgid "A"
473 msgstr ""
475 #: cmd.rc:277
476 msgid "%s, Delete"
477 msgstr ""
479 #: cmd.rc:278
480 msgid "Echo is %s\n"
481 msgstr ""
483 #: cmd.rc:279
484 msgid "Verify is %s\n"
485 msgstr ""
487 #: cmd.rc:280
488 msgid "Verify must be ON or OFF\n"
489 msgstr ""
491 #: cmd.rc:281
492 msgid "Parameter error\n"
493 msgstr ""
495 #: cmd.rc:282
496 msgid ""
497 "Volume in drive %c is %s\n"
498 "Volume Serial Number is %04x-%04x\n"
499 "\n"
500 msgstr ""
502 #: cmd.rc:283
503 msgid "Volume label (11 characters, ENTER for none)?"
504 msgstr ""
506 #: cmd.rc:284
507 msgid "PATH not found\n"
508 msgstr ""
510 #: cmd.rc:285
511 msgid "Press Return key to continue: "
512 msgstr ""
514 #: cmd.rc:286
515 msgid "Wine Command Prompt"
516 msgstr ""
518 #: cmd.rc:287
519 msgid ""
520 "CMD Version %s\n"
521 "\n"
522 msgstr ""
524 #: cmd.rc:288
525 msgid "More? "
526 msgstr ""
528 #: cmd.rc:289
529 msgid "The input line is too long.\n"
530 msgstr ""
532 #: ipconfig.rc:27
533 msgid "Usage: ipconfig [ /? | /all ]\n"
534 msgstr ""
536 #: ipconfig.rc:28
537 msgid "Error: Unknown or invalid command line parameters specified\n"
538 msgstr ""
540 #: ipconfig.rc:29
541 msgid "%s adapter %s\n"
542 msgstr ""
544 #: ipconfig.rc:30
545 msgid "Ethernet"
546 msgstr ""
548 #: ipconfig.rc:31
549 msgid "Unknown"
550 msgstr ""
552 #: ipconfig.rc:32
553 msgid "Connection-specific DNS suffix"
554 msgstr ""
556 #: ipconfig.rc:33
557 msgid "IP address"
558 msgstr ""
560 #: ipconfig.rc:34
561 msgid "Hostname"
562 msgstr ""
564 #: ipconfig.rc:35
565 msgid "Node type"
566 msgstr ""
568 #: ipconfig.rc:36
569 msgid "Broadcast"
570 msgstr ""
572 #: ipconfig.rc:37
573 msgid "Peer-to-peer"
574 msgstr ""
576 #: ipconfig.rc:38
577 msgid "Mixed"
578 msgstr ""
580 #: ipconfig.rc:39
581 msgid "Hybrid"
582 msgstr ""
584 #: ipconfig.rc:40
585 msgid "IP routing enabled"
586 msgstr ""
588 #: ipconfig.rc:41
589 msgid "Description"
590 msgstr ""
592 #: ipconfig.rc:42
593 msgid "Physical address"
594 msgstr ""
596 #: ipconfig.rc:43
597 msgid "DHCP enabled"
598 msgstr ""
600 #: ipconfig.rc:44
601 msgid "Yes"
602 msgstr ""
604 #: ipconfig.rc:45
605 msgid "No"
606 msgstr ""
608 #: ipconfig.rc:46
609 msgid "Default gateway"
610 msgstr ""
612 #: net.rc:27
613 msgid ""
614 "The syntax of this command is:\n"
615 "\n"
616 "NET [ HELP | START | STOP | USE ]\n"
617 msgstr ""
619 #: net.rc:28
620 msgid "Specify service name to start.\n"
621 msgstr ""
623 #: net.rc:29
624 msgid "Specify service name to stop.\n"
625 msgstr ""
627 #: net.rc:30
628 msgid "Stopping dependent service: %s\n"
629 msgstr ""
631 #: net.rc:31
632 msgid "Could not stop service %s\n"
633 msgstr ""
635 #: net.rc:32
636 msgid "Could not get handle to service control manager.\n"
637 msgstr ""
639 #: net.rc:33
640 msgid "Could not get handle to service.\n"
641 msgstr ""
643 #: net.rc:34
644 msgid "The %s service is starting.\n"
645 msgstr ""
647 #: net.rc:35
648 msgid "The %s service was started successfully.\n"
649 msgstr ""
651 #: net.rc:36
652 msgid "The %s service failed to start.\n"
653 msgstr ""
655 #: net.rc:37
656 msgid "The %s service is stopping.\n"
657 msgstr ""
659 #: net.rc:38
660 msgid "The %s service was stopped successfully.\n"
661 msgstr ""
663 #: net.rc:39
664 msgid "The %s service failed to stop.\n"
665 msgstr ""
667 #: net.rc:40
668 msgid ""
669 "The syntax of this command is:\n"
670 "\n"
671 "NET HELP command\n"
672 "    -or-\n"
673 "NET command /HELP\n"
674 "\n"
675 "   Commands available are:\n"
676 "   NET HELP    NET START    NET STOP    NET USE\n"
677 msgstr ""
679 #: net.rc:42
680 msgid "There are no entries in the list.\n"
681 msgstr ""
683 #: net.rc:43
684 msgid ""
685 "\n"
686 "Status  Local   Remote\n"
687 "---------------------------------------------------------------\n"
688 msgstr ""
690 #: net.rc:44
691 msgid "%s      %S      %S      Open resources: %lu\n"
692 msgstr ""