blob: 97814eccd6011262517b18d529d00f2c1c041326 [file] [log] [blame]
Alexandre Julliarddcf55482011-01-04 11:20:30 +01001msgid ""
2msgstr ""
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"
12
13#: clock.rc:28
14msgid "&Properties"
15msgstr ""
16
17#: clock.rc:29
18msgid "Ana&log"
19msgstr ""
20
21#: clock.rc:30
22msgid "Digi&tal"
23msgstr ""
24
25#: clock.rc:32
26msgid "&Font..."
27msgstr ""
28
29#: clock.rc:34
30msgid "&Without Titlebar"
31msgstr ""
32
33#: clock.rc:36
34msgid "&Seconds"
35msgstr ""
36
37#: clock.rc:37
38msgid "&Date"
39msgstr ""
40
41#: clock.rc:39
42msgid "&Always on Top"
43msgstr ""
44
45#: clock.rc:41
46msgid "Inf&o"
47msgstr ""
48
49#: clock.rc:42
50msgid "&About Clock..."
51msgstr ""
52
53#: clock.rc:48
54msgid "Clock"
55msgstr ""
Alexandre Julliard68647162011-01-04 00:03:40 +010056
57#: cmd.rc:30
58msgid "ATTRIB shows or changes DOS file attributes.\n"
59msgstr ""
60
61#: cmd.rc:38
62msgid ""
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"
70msgstr ""
71
72#: cmd.rc:41
73msgid ""
74"CD <dir> is the short version of CHDIR. It changes the current\n"
75"default directory.\n"
76msgstr ""
77
78#: cmd.rc:42
79msgid "CHDIR <dir> changes the current default directory.\n"
80msgstr ""
81
82#: cmd.rc:44
83msgid "CLS clears the console screen.\n"
84msgstr ""
85
86#: cmd.rc:46
87msgid "COPY <filename> copies a file.\n"
88msgstr ""
89
90#: cmd.rc:47
91msgid "CTTY changes the input/output device.\n"
92msgstr ""
93
94#: cmd.rc:48
95msgid "DATE shows or changes the system date.\n"
96msgstr ""
97
98#: cmd.rc:49
99msgid "DEL <filename> deletes a file or set of files.\n"
100msgstr ""
101
102#: cmd.rc:50
103msgid "DIR lists the contents of a directory.\n"
104msgstr ""
105
106#: cmd.rc:60
107msgid ""
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"
116msgstr ""
117
118#: cmd.rc:62
119msgid "ERASE <filename> deletes a file or set of files.\n"
120msgstr ""
121
122#: cmd.rc:70
123msgid ""
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"
130msgstr ""
131
132#: cmd.rc:82
133msgid ""
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"
144msgstr ""
145
146#: cmd.rc:85
147msgid ""
148"HELP <command> shows brief help details on a topic.\n"
149"HELP without an argument shows all CMD built-in commands.\n"
150msgstr ""
151
152#: cmd.rc:95
153msgid ""
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"
162msgstr ""
163
164#: cmd.rc:101
165msgid ""
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"
171msgstr ""
172
173#: cmd.rc:104
174msgid "MD <name> is the short version of MKDIR. It creates a subdirectory.\n"
175msgstr ""
176
177#: cmd.rc:105
178msgid "MKDIR <name> creates a subdirectory.\n"
179msgstr ""
180
181#: cmd.rc:112
182msgid ""
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"
190msgstr ""
191
192#: cmd.rc:123
193msgid ""
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"
203msgstr ""
204
205#: cmd.rc:129
206msgid ""
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"
211msgstr ""
212
213#: cmd.rc:150
214msgid ""
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"
234msgstr ""
235
236#: cmd.rc:154
237msgid ""
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"
240msgstr ""
241
242#: cmd.rc:157
243msgid "REN <filename> is the short version of RENAME. It renames a file.\n"
244msgstr ""
245
246#: cmd.rc:158
247msgid "RENAME <filename> renames a file\n"
248msgstr ""
249
250#: cmd.rc:160
251msgid "RD <dir> is the short version of RMDIR. It deletes a subdirectory.\n"
252msgstr ""
253
254#: cmd.rc:161
255msgid "RMDIR <dir> deletes a subdirectory.\n"
256msgstr ""
257
258#: cmd.rc:179
259msgid ""
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"
276msgstr ""
277
278#: cmd.rc:184
279msgid ""
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"
283msgstr ""
284
285#: cmd.rc:186
286msgid "TIME sets or shows the current system time.\n"
287msgstr ""
288
289#: cmd.rc:188
290msgid "Sets the window title for the cmd window, syntax TITLE [string]\n"
291msgstr ""
292
293#: cmd.rc:192
294msgid ""
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"
297msgstr ""
298
299#: cmd.rc:201
300msgid ""
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"
308msgstr ""
309
310#: cmd.rc:204
311msgid "VER displays the version of cmd you are running\n"
312msgstr ""
313
314#: cmd.rc:206
315msgid "VOL shows the volume label of a disk device.\n"
316msgstr ""
317
318#: cmd.rc:209
319msgid ""
320"PUSHD <directoryname> saves the current directory onto a\n"
321"stack, and then changes the current directory to the supplied one.\n"
322msgstr ""
323
324#: cmd.rc:212
325msgid ""
326"POPD changes current directory to the last one saved with\n"
327"PUSHD.\n"
328msgstr ""
329
330#: cmd.rc:214
331msgid "MORE displays output of files or piped input in pages.\n"
332msgstr ""
333
334#: cmd.rc:218
335msgid ""
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"
339msgstr ""
340
341#: cmd.rc:222
342msgid ""
343"EXIT terminates the current command session and returns\n"
344"to the operating system or shell from which you invoked cmd.\n"
345msgstr ""
346
347#: cmd.rc:253
348msgid ""
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"
380msgstr ""
381
382#: cmd.rc:255
383msgid "Are you sure"
384msgstr ""
385
386#: cmd.rc:256
387msgctxt "Yes key"
388msgid "Y"
389msgstr ""
390
391#: cmd.rc:257
392msgctxt "No key"
393msgid "N"
394msgstr ""
395
396#: cmd.rc:258
397msgid "File association missing for extension %s\n"
398msgstr ""
399
400#: cmd.rc:259
401msgid "No open command associated with file type '%s'\n"
402msgstr ""
403
404#: cmd.rc:260
405msgid "Overwrite %s"
406msgstr ""
407
408#: cmd.rc:261
409msgid "More..."
410msgstr ""
411
412#: cmd.rc:262
413msgid "Line in Batch processing possibly truncated. Using:\n"
414msgstr ""
415
416#: cmd.rc:263
417msgid ""
418"Not Yet Implemented\n"
419"\n"
420msgstr ""
421
422#: cmd.rc:264
423msgid "Argument missing\n"
424msgstr ""
425
426#: cmd.rc:265
427msgid "Syntax error\n"
428msgstr ""
429
430#: cmd.rc:266
431msgid "%s : File Not Found\n"
432msgstr ""
433
434#: cmd.rc:267
435msgid "No help available for %s\n"
436msgstr ""
437
438#: cmd.rc:268
439msgid "Target to GOTO not found\n"
440msgstr ""
441
442#: cmd.rc:269
443msgid "Current Date is %s\n"
444msgstr ""
445
446#: cmd.rc:270
447msgid "Current Time is %s\n"
448msgstr ""
449
450#: cmd.rc:271
451msgid "Enter new date: "
452msgstr ""
453
454#: cmd.rc:272
455msgid "Enter new time: "
456msgstr ""
457
458#: cmd.rc:273
459msgid "Environment variable %s not defined\n"
460msgstr ""
461
462#: cmd.rc:274
463msgid "Failed to open '%s'\n"
464msgstr ""
465
466#: cmd.rc:275
467msgid "Cannot call batch label outside of a batch script\n"
468msgstr ""
469
470#: cmd.rc:276
471msgctxt "All key"
472msgid "A"
473msgstr ""
474
475#: cmd.rc:277
476msgid "%s, Delete"
477msgstr ""
478
479#: cmd.rc:278
480msgid "Echo is %s\n"
481msgstr ""
482
483#: cmd.rc:279
484msgid "Verify is %s\n"
485msgstr ""
486
487#: cmd.rc:280
488msgid "Verify must be ON or OFF\n"
489msgstr ""
490
491#: cmd.rc:281
492msgid "Parameter error\n"
493msgstr ""
494
495#: cmd.rc:282
496msgid ""
497"Volume in drive %c is %s\n"
498"Volume Serial Number is %04x-%04x\n"
499"\n"
500msgstr ""
501
502#: cmd.rc:283
503msgid "Volume label (11 characters, ENTER for none)?"
504msgstr ""
505
506#: cmd.rc:284
507msgid "PATH not found\n"
508msgstr ""
509
510#: cmd.rc:285
511msgid "Press Return key to continue: "
512msgstr ""
513
514#: cmd.rc:286
515msgid "Wine Command Prompt"
516msgstr ""
517
518#: cmd.rc:287
519msgid ""
520"CMD Version %s\n"
521"\n"
522msgstr ""
523
524#: cmd.rc:288
525msgid "More? "
526msgstr ""
527
528#: cmd.rc:289
529msgid "The input line is too long.\n"
530msgstr ""
Alexandre Julliard6ec2a532011-01-04 10:49:45 +0100531
532#: ipconfig.rc:27
533msgid "Usage: ipconfig [ /? | /all ]\n"
534msgstr ""
535
536#: ipconfig.rc:28
537msgid "Error: Unknown or invalid command line parameters specified\n"
538msgstr ""
539
540#: ipconfig.rc:29
541msgid "%s adapter %s\n"
542msgstr ""
543
544#: ipconfig.rc:30
545msgid "Ethernet"
546msgstr ""
547
548#: ipconfig.rc:31
549msgid "Unknown"
550msgstr ""
551
552#: ipconfig.rc:32
553msgid "Connection-specific DNS suffix"
554msgstr ""
555
556#: ipconfig.rc:33
557msgid "IP address"
558msgstr ""
559
560#: ipconfig.rc:34
561msgid "Hostname"
562msgstr ""
563
564#: ipconfig.rc:35
565msgid "Node type"
566msgstr ""
567
568#: ipconfig.rc:36
569msgid "Broadcast"
570msgstr ""
571
572#: ipconfig.rc:37
573msgid "Peer-to-peer"
574msgstr ""
575
576#: ipconfig.rc:38
577msgid "Mixed"
578msgstr ""
579
580#: ipconfig.rc:39
581msgid "Hybrid"
582msgstr ""
583
584#: ipconfig.rc:40
585msgid "IP routing enabled"
586msgstr ""
587
588#: ipconfig.rc:41
589msgid "Description"
590msgstr ""
591
592#: ipconfig.rc:42
593msgid "Physical address"
594msgstr ""
595
596#: ipconfig.rc:43
597msgid "DHCP enabled"
598msgstr ""
599
600#: ipconfig.rc:44
601msgid "Yes"
602msgstr ""
603
604#: ipconfig.rc:45
605msgid "No"
606msgstr ""
607
608#: ipconfig.rc:46
609msgid "Default gateway"
610msgstr ""
Alexandre Julliardb8c80c92011-01-04 17:55:21 +0100611
612#: net.rc:27
613msgid ""
614"The syntax of this command is:\n"
615"\n"
616"NET [ HELP | START | STOP | USE ]\n"
617msgstr ""
618
619#: net.rc:28
620msgid "Specify service name to start.\n"
621msgstr ""
622
623#: net.rc:29
624msgid "Specify service name to stop.\n"
625msgstr ""
626
627#: net.rc:30
628msgid "Stopping dependent service: %s\n"
629msgstr ""
630
631#: net.rc:31
632msgid "Could not stop service %s\n"
633msgstr ""
634
635#: net.rc:32
636msgid "Could not get handle to service control manager.\n"
637msgstr ""
638
639#: net.rc:33
640msgid "Could not get handle to service.\n"
641msgstr ""
642
643#: net.rc:34
644msgid "The %s service is starting.\n"
645msgstr ""
646
647#: net.rc:35
648msgid "The %s service was started successfully.\n"
649msgstr ""
650
651#: net.rc:36
652msgid "The %s service failed to start.\n"
653msgstr ""
654
655#: net.rc:37
656msgid "The %s service is stopping.\n"
657msgstr ""
658
659#: net.rc:38
660msgid "The %s service was stopped successfully.\n"
661msgstr ""
662
663#: net.rc:39
664msgid "The %s service failed to stop.\n"
665msgstr ""
666
667#: net.rc:40
668msgid ""
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"
677msgstr ""
678
679#: net.rc:42
680msgid "There are no entries in the list.\n"
681msgstr ""
682
683#: net.rc:43
684msgid ""
685"\n"
686"Status Local Remote\n"
687"---------------------------------------------------------------\n"
688msgstr ""
689
690#: net.rc:44
691msgid "%s %S %S Open resources: %lu\n"
692msgstr ""
Alexandre Julliard7ca71382011-01-04 18:03:01 +0100693
694#: reg.rc:27
695msgid ""
696"The syntax of this command is:\n"
697"\n"
698"REG [ ADD | DELETE | QUERY ]\n"
699"REG command /?\n"
700msgstr ""
701
702#: reg.rc:28
703msgid ""
704"REG ADD key_name [/v value_name | /ve] [/t type] [/s separator] [/d data] [/"
705"f]\n"
706msgstr ""
707
708#: reg.rc:29
709msgid "REG DELETE key_name [/v value_name | /ve | /va] [/f]\n"
710msgstr ""
711
712#: reg.rc:30
713msgid "REG QUERY key_name [/v value_name | /ve] [/s]\n"
714msgstr ""
715
716#: reg.rc:31
717msgid "The operation completed successfully\n"
718msgstr ""
719
720#: reg.rc:32
721msgid "Error: Invalid key name\n"
722msgstr ""
723
724#: reg.rc:33
725msgid "Error: Invalid command line parameters\n"
726msgstr ""
727
728#: reg.rc:34
729msgid "Error: Unable to add keys to remote machine\n"
730msgstr ""
731
732#: reg.rc:35
733msgid ""
734"Error: The system was unable to find the specified registry key or value\n"
735msgstr ""
Alexandre Julliard1d3ef692011-01-04 19:24:34 +0100736
737#: start.rc:45
738msgid ""
739"Start a program, or open a document in the program normally used for files "
740"with that suffix.\n"
741"Usage:\n"
742"start [options] program_filename [...]\n"
743"start [options] document_filename\n"
744"\n"
745"Options:\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 "
750"code.\n"
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"
754"\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"
759msgstr ""
760
761#: start.rc:63
762msgid ""
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"
768"\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"
773"\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"
777"\n"
778"See the COPYING.LIB file for license information.\n"
779msgstr ""
780
781#: start.rc:65
782msgid ""
783"Application could not be started, or no application associated with the "
784"specified file.\n"
785"ShellExecuteEx failed"
786msgstr ""
787
788#: start.rc:67
789msgid "Could not translate the specified Unix filename to a DOS filename."
790msgstr ""
Alexandre Julliardf0673012011-01-04 19:30:25 +0100791
792#: taskkill.rc:27
793msgid "Usage: taskkill [/?] [/f] [/im ProcessName | /pid ProcessID]\n"
794msgstr ""
795
796#: taskkill.rc:28
797msgid "Error: Unknown or invalid command line option specified.\n"
798msgstr ""
799
800#: taskkill.rc:29
801msgid "Error: Invalid command line parameter specified.\n"
802msgstr ""
803
804#: taskkill.rc:30
805msgid "Error: One of options /im or /pid must be specified.\n"
806msgstr ""
807
808#: taskkill.rc:31
809msgid "Error: Option %s expects a command line parameter.\n"
810msgstr ""
811
812#: taskkill.rc:32
813msgid "Error: Options /im and /pid are mutually exclusive.\n"
814msgstr ""
815
816#: taskkill.rc:33
817msgid "Close message sent to top-level windows of process with PID %u.\n"
818msgstr ""
819
820#: taskkill.rc:34
821msgid ""
822"Close message sent to top-level windows of process \"%s\" with PID %u.\n"
823msgstr ""
824
825#: taskkill.rc:35
826msgid "Process with PID %u was forcibly terminated.\n"
827msgstr ""
828
829#: taskkill.rc:36
830msgid "Process \"%s\" with PID %u was forcibly terminated.\n"
831msgstr ""
832
833#: taskkill.rc:37
834msgid "Error: Could not find process \"%s\".\n"
835msgstr ""
836
837#: taskkill.rc:38
838msgid "Error: Unable to enumerate the process list.\n"
839msgstr ""
840
841#: taskkill.rc:39
842msgid "Error: Unable to terminate process \"%s\".\n"
843msgstr ""
844
845#: taskkill.rc:40
846msgid "Error: Process self-termination is not permitted.\n"
847msgstr ""
Alexandre Julliard4bca3342011-01-04 19:38:45 +0100848
849#: uninstaller.rc:26
850msgid "Wine Application Uninstaller"
851msgstr ""
852
853#: uninstaller.rc:27
854msgid ""
855"Execution of uninstall command '%s' failed, perhaps due to missing "
856"executable.\n"
857"Do you want to remove the uninstall entry from the registry ?"
858msgstr ""