3 * Korean Language Support
5 * Copyright (C) 1999 D A Pickles
6 * Copyright 2005 YunSong Hwang
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
27 WCMD_ATTRIB, "ATTRIB µµ¿ò¸»\n"
29 "<¹èÄ¡ÆÄÀÏ À̸§>À» È£Ãâ(CALL)ÇÏ´Â °ÍÀº ¹èÄ¡ ÆÄÀϾȿ¡¼ ´Ù¸¥ ¹èÄ¡ ÆÄÀÏ ¾ÈÀÇ \n\
30 ¸í·ÉÀ» »ç¿ëÇÏ´Â °ÍÀÔ´Ï´Ù. ¹èÄ¡ ÆÄÀÏÀÌ Á¾·áÇϸé , Á¦¾î±ÇÀº ±×°ÍÀ» È£ÃâÇÑ \n\
31 ÆÄÀÏÇÑÅ× µ¹¾Æ°©´Ï´Ù. CALL ¸í·ÉÀº È£ÃâÇÏ´Â °úÁ¤¿¡¼ ¸Å°³º¯¼ö¸¦ °¡Áý´Ï´Ù.\n\
33 ±âº» µð·ºÅ丮³ª ȯ°æº¯¼ö³ª ±âŸ¸¦ ¹Ù²Ù´Â °ÍÀº È£ÃâÀÚ¿¡ ÀÇÇØ »ó¼ÓµÇ¾î¼ È£ÃâµÈ \n\
34 °úÁ¤¿¡¸¸ Àû¿ëµË´Ï´Ù.\n"
36 WCMD_CD, " CD µµ¿ò¸»\n"
37 WCMD_CHDIR, " CHDIR µµ¿ò¸»\n"
39 WCMD_CLS, "CLS clears the console screen\n"
41 WCMD_COPY, "COPY µµ¿ò¸»\n"
42 WCMD_CTTY, "CTTY µµ¿ò¸»\n"
43 WCMD_DATE, "DATE µµ¿ò¸»\n"
45 WCMD_DIR, "DIR µµ¿ò¸» \n"
48 "ECHO <¹®ÀÚ¿>Àº <¹®ÀÚ¿>À» ÇöÀç Å͹̳ο¡ º¸¿©ÁÝ´Ï´Ù.\n\
50 ECHO ON´Â
\93lÄ¡ÆÄÀÏ¿¡¼ ´ÙÀ½¿¡ ¿À´Â ¸ðµç ¸í·ÉÀ» ½ÇÇ౫±â Àü¿¡ Å͹̳ο¡ º¸¿©ÁÝ´Ï´Ù\n\
52 ECHO OFF ´Â ECHO ON°ú ¹Ý´ëÀÇ ÀÏÀ» ÇÕ´Ï´Ù. (ECHO is OFF°¡ ±âº»)\n\
53 ECHO OFF ¸í·ÉÀº ½ÅÈ£°¡ ÁøÇàµÇ´Â °É º¸¿©ÁÖ´Â°É ¸·½À´Ï´Ù.\n"
55 WCMD_ERASE, "ERASE µµ¿ò¸»\n"
58 "FOR ¸í·ÉÀº ÆÄÀÏ ÇÑ ¼ÂÆ®¿¡¼ °¢°¢ÀÇ ¸í·ÉÀ» ½ÇÇà½Ãų ¶§ »ç¿ë.\n\
60 ¹®¹ý: FOR %variable IN (set) DO command\n\
62 The requirement to double the % sign when using FOR in a batch file does\n\
66 "The GOTO command transfers execution to another statement within a\n\
69 The label which is the target of a GOTO may be up to 255 characters\n\
70 long but may not include spaces (this is different from other operating\n\
71 systems). If two or more identical labels exist in a batch file the\n\
72 first one will always be executed. Attempting to GOTO a nonexistent\n\
73 label terminates the batch file execution.\n\
75 GOTO has no effect when used interactively.\n"
77 WCMD_HELP, "HELP µµ¿ò¸»\n"
80 "IF is used to conditionally execute a command.\n\
82 Syntax: IF [NOT] EXIST filename command\n\
83 IF [NOT] string1==string2 command\n\
84 IF [NOT] ERRORLEVEL number command\n\
86 In the second form of the command, string1 and string2 must be in double\n\
87 quotes. The comparison is not case-sensitive.\n"
89 WCMD_LABEL, "LABEL is used to set a disk volume label. \n\
91 Syntax: LABEL [drive:]\n\
92 The command will prompt you for the new volume label for the given drive.\n\
93 You can display the disk volume label with the VOL command.\n"
95 WCMD_MD, "MD µµ¿ò¸»\n"
96 WCMD_MKDIR, "MKDIR µµ¿ò¸»\n"
98 "MOVE relocates a file or directory to a new point within the file system.\n\
100 If the item being moved is a directory then all the files and subdirectories\n\
101 below the item are moved as well.\n\
103 MOVE fails if the old and new locations are on different DOS drive letters.\n"
106 "PATH displays or changes the wcmd search path.\n\
108 Entering PATH will display the current PATH setting (initially this is\n\
109 the value given in your wine.conf file). To change the setting follow the\n\
110 PATH command with the new value.\n\
112 It is also possible to modify the PATH by using the PATH environment\n\
113 variable, for example:\n\
114 PATH %PATH%;c:\\temp \n"
117 "PAUSE displays a message on the screen 'Press Return key to continue'\n\
118 and waits for the user to press the Return key. It is mainly useful in\n\
119 batch files to allow the user to read the output of a previous command\n\
120 before it scrolls off the screen.\n"
123 "PROMPT sets the command-line prompt.\n\
125 The string following the PROMPT command (and the space immediately after)\n\
126 appears at the beginning of the line when wcmd is waiting for input.\n\
128 The following character strings have the special meaning shown:\n\
130 $$ Dollar sign $_ Linefeed $b Pipe sign (|)\n\
131 $d Current date $e Escape $g > sign\n\
132 $l < sign $n Current drive $p Current path\n\
133 $q Equal sign $t Current time $v wcmd version\n\
135 Note that entering the PROMPT command without a prompt-string resets the\n\
136 prompt to the default, which is the current directory (which includes the\n\
137 current drive letter) followed by a greater-than (>) sign.\n\
138 (like a command PROMPT $p$g).\n\
140 The prompt can also be changed by altering the PROMPT environment variable,\n\
141 so the command 'SET PROMPT=text' has the same effect as 'PROMPT text'\n"
144 "A command line beginning REM (followed by a space) performs no\n\
145 action, and can therefore be used as a comment in a batch file.\n"
147 WCMD_REN, "REN µµ¿ò¸» \n"
148 WCMD_RENAME, "RENAME µµ¿ò¸»\n"
149 WCMD_RD, "RD µµ¿ò¸»\n"
150 WCMD_RMDIR, "RMDIR µµ¿ò¸»\n"
153 "SET displays or changes the wcmd environment variables.\n\
155 SET without parameters shows all of the current environment.\n\
157 To create or modify an environment variable the syntax is:\n\
159 SET <variable>=<value>\n\
161 where <variable> and <value> are character strings. There must be no\n\
162 spaces before the equals sign, nor can the variable name\n\
163 have embedded spaces.\n\
165 Under Wine, the environment of the underlying operating system is\n\
166 included into the Win32 environment, there will generally therefore be\n\
167 many more values than in a native Win32 implementation. Note that it is\n\
168 not possible to affect the operating system environment from within wcmd.\n"
171 "SHIFT is used in a batch file to remove one parameter from the head of\n\
172 the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n\
173 if called from the command line.\n"
175 WCMD_TIME, "TIME µµ¿ò¸»\n"
177 WCMD_TITLE, "Sets the window title for the wcmd window, syntax TITLE [string]\n"
180 "TYPE <filename> copies <filename> to the console device (or elsewhere\n\
181 if redirected). No check is made that the file is readable text.\n"
184 "VERIFY is used to set, clear or test the verify flag. Valid forms are:\n\
186 VERIFY ON Set the flag\n\
187 VERIFY OFF Clear the flag\n\
188 VERIFY Displays ON or OFF as appropriate.\n\
190 The verify flag has no function in Wine.\n"
193 "VER displays the version of wcmd you are running\n"
195 WCMD_VOL, "VOL µµ¿ò¸»\n"
198 "EXIT terminates the current command session and returns\n\
199 to the operating system or shell from which you invoked wcmd.\n"
201 1000, "WCMD ³»ºÎ ¸í·Éµé:\n\
202 ATTRIB\t\tµµ½º ÆÄÀÏ ¼Ó º¸¿©Áְųª ¹Ù²Ù±â\n\
203 CALL\t\tI¹èÄ¡ ÆÄÀÏ ¾È¿¡¼ ´Ù¸¥ ÆÄÀÏ ºÒ·¯¿À±â\n\
204 CD (CHDIR)\tÇöÁ¦ ±âº» µð·ºÅ丮 ¹Ù²Ù±â\n\
205 CLS\t\tÄÜ¼Ö È¸é ±ú²ýÇϰÔ\n\
207 CTTY\t\tÀÔÃâ·Â ÀåÄ¡ ¹Ù²Ù±â\n\
208 DATE\t\t½Ã½ºÅÛ ³¯Â¥ º¸¿©Áְųª ¹Ù²Ù±â\n\
209 DEL (ERASE)\tÇϳªÀÇ ÆÄÀÏÀ̳ª ¿©·¯ ÆÄÀÏÀ» Áö¿ì±â\n\
210 DIR\t\tµð·ºÅ丮 ³»¿ë º¸¿©ÁÖ±â\n\
211 ECHO\t\t¹®ÀÚ¸¦ ¹Ù·Î ȸé Ãâ·ÂÀ¸·Î º¹»ç\n\
212 HELP\t\tShow brief help details on a topic\n\
213 MD (MKDIR)\tÇÏÀ§ µð·ºÅ丮 ¸¸µé±â\n\
214 MOVE\t\tÆÄÀÏ À̳ª ¿©·¯ ÆÄÀÏ,±×¸®°í µð·ºÅ丮 ±¸Á¶ À̵¿\n\
215 PATH\t\tŽ»ö °æ·Î º¸¿©Áְųª ¼³Á¤Çϱâ\n\
216 PROMPT\t\t¸í·É ÇÁ·ÒÇÁÆ® ¹Ù²Ù±â\n\
217 REN (RENAME)\tÆÄÀÏ À̸§ ¹Ù²Ù±â\n\
218 RD (RMDIR)\tÇÏÀ§ µð·ºÅ丮 Áö¿ì±â\n\
219 SET\t\tȯ°æ º¯¼ö º¸¿©Áְųª ¹Ù²Ù±â\n\
220 TIME\t\t½Ã½ºÅÛ ³¯Â¥ ¹Ù²Ù°Å³ª º¸¿©ÁÖ±â\n\
221 TITLE\t\tWCMD ¼¼¼ÇÀÇ Ã¢ Á¦¸ñ ¼³Á¤ \n\
222 TYPE\t\tÅØ½ºÆ® ÆÄÀÏÀÇ ³»¿ë º¸¿©ÁÖ±â\n\
223 VER\t\tWCMD ÇöÀç ¹öÁ¯ º¸¿©ÁÖ±â\n\
224 VOL\t\tµð½ºÅ© ÀåÄ¡ÀÇ ºÒ·ý ¶óº§ º¸¿©ÁÖ±â\n\
225 EXIT\t\tWCMD ´Ý±â\n\n\
226 Enter HELP <command> for further information on any of the above commands\n"