Added a German translation to wcmd.
[wine] / programs / wcmd / De.rc
1 /*
2  * Wine command prompt
3  * German Language Support
4  *
5  * Copyright 2004 Henning Gerhardt
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
23
24 STRINGTABLE
25 {
26   WCMD_ATTRIB, "Hilfe für ATTRIB\n"
27   WCMD_CALL,
28 "CALL <batchfilename> is used within a batch file to execute commands\n\
29 from another batch file. When the batch file exits, control returns to\n\
30 the file which called it. The CALL command may supply parameters to the\n\
31 called procedure.\n\
32 \n\
33 Changes to default directory, environment variables etc made within a\n\
34 called procedure are inherited by the caller.\n"
35
36   WCMD_CD,     "Hilfe für CD\n"
37   WCMD_CHDIR,  "Hilfe für CHDIR\n"
38
39   WCMD_CLS,    "CLS löscht den Inhalt der Konsole\n"
40
41   WCMD_COPY,   "Hilfe für COPY\n"
42   WCMD_CTTY,   "Hilfe für CTTY\n"
43   WCMD_DATE,   "Hilfe für DATE\n"
44   WCMD_DEL,    "Hilfe für DEL\n"
45   WCMD_DIR,    "Hilfe für DIR\n"
46
47   WCMD_ECHO,
48 "ECHO <string> displays <string> on the current terminal device.\n\
49 \n\
50 ECHO ON causes all subsequent commands in a batch file to be displayed\n\
51 on the terminal device before they are executed.\n\
52 \n\
53 ECHO OFF reverses the effect of a previous ECHO ON (ECHO is OFF by\n\
54 default). The ECHO OFF command can be prevented from displaying by\n\
55 preceding it with an @ sign.\n"
56
57   WCMD_ERASE,  "Hilfe für ERASE\n"
58
59   WCMD_FOR,
60 "The FOR command is used to execute a command for each of a set of files.\n\
61 \n\
62 Syntax: FOR %variable IN (set) DO command\n\
63 \n\
64 The requirement to double the % sign when using FOR in a batch file does\n\
65 not exist in wcmd.\n"
66
67   WCMD_GOTO,
68 "The GOTO command transfers execution to another statement within a\n\
69 batch file.\n\
70 \n\
71 The label which is the target of a GOTO may be up to 255 characters\n\
72 long but may not include spaces (this is different to other operating\n\
73 systems). If two or more identical labels exist in a batch file the\n\
74 first one will always be executed. Attempting to GOTO a non-existent\n\
75 label terminates the batch file execution.\n\
76 \n\
77 GOTO has no effect when used interactively.\n"
78
79   WCMD_HELP,   "Hilfe für HELP\n"
80
81   WCMD_IF,
82 "IF is used to conditionally execute a command.\n\
83 \n\
84 Syntax: IF [NOT] EXIST filename command\n\
85         IF [NOT] string1==string2 command\n\
86         IF [NOT] ERRORLEVEL number command\n\
87 \n\
88 In the second form of the command, string1 and string2 must be in double\n\
89 quotes. The comparison is not case-sensitive.\n"
90
91   WCMD_LABEL,  
92 "LABEL wird benutzt, um die Laufwerksbezeichnung festzulegen.\n\
93 \n\
94 Syntax: LABEL [Laufwerk:]\n\
95 \n\
96 Der Befehl wartet auf die Eingabe einer neuen Bezeichnung für das angegebene\n\
97 Laufwerk. Sie können sich auch die Laufwerksbezeicnung mit dem VOL - Befehl\n\
98 anzeigen lassen.\n"
99
100   WCMD_MD,     "Hilfe für MD\n"
101   WCMD_MKDIR,  "Hilfe für MKDIR\n"
102   WCMD_MOVE,
103 "MOVE relocates a file or directory to a new point within the file system.\n\
104 \n\
105 If the item being moved is a directory then all the files and subdirectories\n\
106 below the item are moved as well.\n\
107 \n\
108 MOVE fails if the old and new locations are on different DOS drive letters.\n"
109
110   WCMD_PATH,
111 "PATH displays or changes the wcmd search path.\n\
112 \n\
113 Entering PATH will display the current PATH setting (initially this is\n\
114 the value given in your wine.conf file). To change the setting follow the\n\
115 PATH command with the new value.\n\
116 \n\
117 It is also possible to modify the PATH by using the PATH environment\n\
118 variable, for example:\n\
119                 PATH %PATH%;c:\\temp \n"
120
121   WCMD_PAUSE,
122 "PAUSE displays a message on the screen 'Press Return key to continue'\n\
123 and waits for the user to press the Return key. It is mainly useful in\n\
124 batch files to allow the user to read the output of a previous command\n\
125 before it scrolls off the screen.\n"
126
127   WCMD_PROMPT,
128 "PROMPT sets the command-line prompt.\n\
129 \n\
130 The string following the PROMPT command (and the space immediately after)\n\
131 appears at the beginning of the line when wcmd is waiting for input.\n\
132 \n\
133 The following character strings have the special meaning shown:\n\
134 \n\
135 $$    Dollar sign         $_    Linefeed            $b    Pipe sign (|)\n\
136 $d    Current date        $e    Escape              $g    > sign\n\
137 $l    < sign              $n    Current drive       $p    Current path\n\
138 $q    Equal sign          $t    Current time        $v    wcmd version\n\
139 \n\
140 Note that entering the PROMPT command without a prompt-string resets the\n\
141 prompt to the default, which is the current directory (which includes the\n\
142 current drive letter) followed by a greater-than (>) sign.\n\
143 (like a command PROMPT $p$g).\n\
144 \n\
145 The prompt can also be changed by altering the PROMPT environment variable,\n\
146 so the command 'SET PROMPT=text' has the same effect as 'PROMPT text'\n"
147
148   WCMD_REM,
149 "A command line beginning REM (followed by a space) performs no\n\
150 action, and can therefore be used as a comment in a batch file.\n"
151
152   WCMD_REN,    "Hilfe für REN\n"
153   WCMD_RENAME, "Hilfe für RENAME\n"
154   WCMD_RD,     "Hilfe für RD\n"
155   WCMD_RMDIR,  "Hilfe für RMDIR\n"
156
157   WCMD_SET,
158 "SET displays or changes the wcmd environment variables.\n\
159 \n\
160 SET without parameters shows all of the current environment.\n\
161 \n\
162 To create or modify an environment variable the syntax is:\n\
163 \n\
164       SET <variable>=<value>\n\
165 \n\
166 where <variable> and <value> are character strings. There must be no\n\
167 spaces before the equals sign, nor can the variable name\n\
168 have embedded spaces.\n\
169 \n\
170 Under Wine, the environment of the underlying operating system is\n\
171 included into the Win32 environment, there will generally therefore be\n\
172 many more values than in a native Win32 implementation. Note that it is\n\
173 not possible to affect the operating system environment from within wcmd.\n"
174
175   WCMD_SHIFT,
176 "SHIFT is used in a batch file to remove one parameter from the head of\n\
177 the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n\
178 if called from the command line.\n"
179
180   WCMD_TIME,   "Hilfe für TIME\n"
181
182   WCMD_TITLE,  
183 "Setzt den Fenstertitel für das WCMD - Fenster.\n\
184 \n\
185 Syntax: TITLE [Zeichenkette]\n"
186
187   WCMD_TYPE,
188 "TYPE <filename> copies <filename> to the console device (or elsewhere\n\
189 if redirected). No check is made that the file is readable text.\n"
190
191   WCMD_VERIFY,
192 "VERIFY is used to set, clear or test the verify flag. Valid forms are:\n\
193 \n\
194 VERIFY ON       Set the flag\n\
195 VERIFY OFF      Clear the flag\n\
196 VERIFY          Displays ON or OFF as appropriate.\n\
197 \n\
198 The verify flag has no function in Wine.\n"
199
200   WCMD_VER,
201 "VER displays the version of wcmd you are running\n"
202
203   WCMD_VOL,    "Hilfe für VOL\n"
204
205   WCMD_EXIT,
206 "EXIT terminates the current command session and returns\n\
207 to the operating system or shell from which you invoked wcmd.\n"
208
209   1000, "WCMD eingebauten Befehle sind:\n\
210 ATTRIB\t\tZeigt an oder ändert die DOS Dateieigenschaften\n\
211 CALL\t\tRuft eine Batch-Datei innerhalb einer anderen auf\n\
212 CD (CHDIR)\tWechselt in das Verzeichnis\n\
213 CLS\t\tLöscht den Inhalt der Konsole\n\
214 COPY\t\tKopiert eine Datei\n\
215 CTTY\t\tÄndert das Eingabe/Ausgabe - Gerät\n\
216 DATE\t\tZeigt an oder ändert das Systemdatum\n\
217 DEL (ERASE)\tLöscht eine oder mehrere Dateien\n\
218 DIR\t\tListet den Inhalt eines Verzeichnisses\n\
219 ECHO\t\tKopiert den Text direkt zur Konsolenausgabe\n\
220 HELP\t\tZeigt detalierte Informationen zu einen Thema\n\
221 MD (MKDIR)\tErzeugt ein Unterverzeichnis\n\
222 MOVE\t\tBewegt eine oder mehrere Dateien oder einen Verzeichnisbaum\n\
223 PATH\t\tSetzt oder zeigt den Suchpfad an\n\
224 PROMPT\t\tÄndert den Befehlszeilenprompt\n\
225 REN (RENAME)\tBenennt eine Datei um\n\
226 RD (RMDIR)\tLöscht ein Unterverzeichnis\n\
227 SET\t\tSetzt oder zeigt die Umgebungsvariablen an\n\
228 TIME\t\tSetzt oder zeigt die aktuelle Systemzeit an\n\
229 TITLE\t\tSetzt den Fenstertitel für die WCMD - Sitzung\n\
230 TYPE\t\tGibt den Inhalt einer Textdatei aus\n\
231 VER\t\tZeigt die aktuelle Version von WCMD an\n\
232 VOL\t\tZeigt die Bezeichnung eines Laufwerkes an\n\
233 EXIT\t\tBeendet den WCMD\n\n\
234 Geben Sie HELP <Befehl> ein, damit Sie weitere Informationen für einen der\n\
235 obigen Befehle erhalten.\n"
236 }