| /* |
| * Wine command prompt |
| * Korean Language Support |
| * |
| * Copyright (C) 1999 D A Pickles |
| * Copyright 2005 YunSong Hwang |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Lesser General Public |
| * License as published by the Free Software Foundation; either |
| * version 2.1 of the License, or (at your option) any later version. |
| * |
| * This library is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| * Lesser General Public License for more details. |
| * |
| * You should have received a copy of the GNU Lesser General Public |
| * License along with this library; if not, write to the Free Software |
| * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| */ |
| |
| LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT |
| |
| STRINGTABLE |
| { |
| WCMD_ATTRIB, "ATTRIB µµ¿ò¸»\n" |
| WCMD_CALL, |
| "<¹èÄ¡ÆÄÀÏ À̸§>À» È£Ãâ(CALL)ÇÏ´Â °ÍÀº ¹èÄ¡ ÆÄÀϾȿ¡¼ ´Ù¸¥ ¹èÄ¡ ÆÄÀÏ ¾ÈÀÇ \n\ |
| ¸í·ÉÀ» »ç¿ëÇÏ´Â °ÍÀÔ´Ï´Ù. ¹èÄ¡ ÆÄÀÏÀÌ Á¾·áÇϸé , Á¦¾î±ÇÀº ±×°ÍÀ» È£ÃâÇÑ \n\ |
| ÆÄÀÏÇÑÅ× µ¹¾Æ°©´Ï´Ù. CALL ¸í·ÉÀº È£ÃâÇÏ´Â °úÁ¤¿¡¼ ¸Å°³º¯¼ö¸¦ °¡Áý´Ï´Ù.\n\ |
| \n\ |
| ±âº» µð·ºÅ丮³ª ȯ°æº¯¼ö³ª ±âŸ¸¦ ¹Ù²Ù´Â °ÍÀº È£ÃâÀÚ¿¡ ÀÇÇØ »ó¼ÓµÇ¾î¼ È£ÃâµÈ \n\ |
| °úÁ¤¿¡¸¸ Àû¿ëµË´Ï´Ù.\n" |
| |
| WCMD_CD, " CD µµ¿ò¸»\n" |
| WCMD_CHDIR, " CHDIR µµ¿ò¸»\n" |
| |
| WCMD_CLS, "CLS clears the console screen\n" |
| |
| WCMD_COPY, "COPY µµ¿ò¸»\n" |
| WCMD_CTTY, "CTTY µµ¿ò¸»\n" |
| WCMD_DATE, "DATE µµ¿ò¸»\n" |
| WCMD_DEL, "DEL \n" |
| WCMD_DIR, "DIR µµ¿ò¸» \n" |
| |
| WCMD_ECHO, |
| "ECHO <¹®ÀÚ¿>Àº <¹®ÀÚ¿>À» ÇöÀç Å͹̳ο¡ º¸¿©ÁÝ´Ï´Ù.\n\ |
| \n\ |
| ECHO ON´Â lÄ¡ÆÄÀÏ¿¡¼ ´ÙÀ½¿¡ ¿À´Â ¸ðµç ¸í·ÉÀ» ½ÇÇ౫±â Àü¿¡ Å͹̳ο¡ º¸¿©ÁÝ´Ï´Ù\n\ |
| \n\ |
| ECHO OFF ´Â ECHO ON°ú ¹Ý´ëÀÇ ÀÏÀ» ÇÕ´Ï´Ù. (ECHO is OFF°¡ ±âº»)\n\ |
| ECHO OFF ¸í·ÉÀº ½ÅÈ£°¡ ÁøÇàµÇ´Â °É º¸¿©ÁÖ´Â°É ¸·½À´Ï´Ù.\n" |
| |
| WCMD_ERASE, "ERASE µµ¿ò¸»\n" |
| |
| WCMD_FOR, |
| "FOR ¸í·ÉÀº ÆÄÀÏ ÇÑ ¼ÂÆ®¿¡¼ °¢°¢ÀÇ ¸í·ÉÀ» ½ÇÇà½Ãų ¶§ »ç¿ë.\n\ |
| \n\ |
| ¹®¹ý: FOR %variable IN (set) DO command\n\ |
| \n\ |
| The requirement to double the % sign when using FOR in a batch file does\n\ |
| not exist in wcmd.\n" |
| |
| WCMD_GOTO, |
| "The GOTO command transfers execution to another statement within a\n\ |
| batch file.\n\ |
| \n\ |
| The label which is the target of a GOTO may be up to 255 characters\n\ |
| long but may not include spaces (this is different from other operating\n\ |
| systems). If two or more identical labels exist in a batch file the\n\ |
| first one will always be executed. Attempting to GOTO a nonexistent\n\ |
| label terminates the batch file execution.\n\ |
| \n\ |
| GOTO has no effect when used interactively.\n" |
| |
| WCMD_HELP, "HELP µµ¿ò¸»\n" |
| |
| WCMD_IF, |
| "IF is used to conditionally execute a command.\n\ |
| \n\ |
| Syntax: IF [NOT] EXIST filename command\n\ |
| IF [NOT] string1==string2 command\n\ |
| IF [NOT] ERRORLEVEL number command\n\ |
| \n\ |
| In the second form of the command, string1 and string2 must be in double\n\ |
| quotes. The comparison is not case-sensitive.\n" |
| |
| WCMD_LABEL, "LABEL is used to set a disk volume label. \n\ |
| \n\ |
| Syntax: LABEL [drive:]\n\ |
| The command will prompt you for the new volume label for the given drive.\n\ |
| You can display the disk volume label with the VOL command.\n" |
| |
| WCMD_MD, "MD µµ¿ò¸»\n" |
| WCMD_MKDIR, "MKDIR µµ¿ò¸»\n" |
| WCMD_MOVE, |
| "MOVE relocates a file or directory to a new point within the file system.\n\ |
| \n\ |
| If the item being moved is a directory then all the files and subdirectories\n\ |
| below the item are moved as well.\n\ |
| \n\ |
| MOVE fails if the old and new locations are on different DOS drive letters.\n" |
| |
| WCMD_PATH, |
| "PATH displays or changes the wcmd search path.\n\ |
| \n\ |
| Entering PATH will display the current PATH setting (initially this is\n\ |
| the value given in your wine.conf file). To change the setting follow the\n\ |
| PATH command with the new value.\n\ |
| \n\ |
| It is also possible to modify the PATH by using the PATH environment\n\ |
| variable, for example:\n\ |
| PATH %PATH%;c:\\temp \n" |
| |
| WCMD_PAUSE, |
| "PAUSE displays a message on the screen 'Press Return key to continue'\n\ |
| and waits for the user to press the Return key. It is mainly useful in\n\ |
| batch files to allow the user to read the output of a previous command\n\ |
| before it scrolls off the screen.\n" |
| |
| WCMD_PROMPT, |
| "PROMPT sets the command-line prompt.\n\ |
| \n\ |
| The string following the PROMPT command (and the space immediately after)\n\ |
| appears at the beginning of the line when wcmd is waiting for input.\n\ |
| \n\ |
| The following character strings have the special meaning shown:\n\ |
| \n\ |
| $$ Dollar sign $_ Linefeed $b Pipe sign (|)\n\ |
| $d Current date $e Escape $g > sign\n\ |
| $l < sign $n Current drive $p Current path\n\ |
| $q Equal sign $t Current time $v wcmd version\n\ |
| \n\ |
| Note that entering the PROMPT command without a prompt-string resets the\n\ |
| prompt to the default, which is the current directory (which includes the\n\ |
| current drive letter) followed by a greater-than (>) sign.\n\ |
| (like a command PROMPT $p$g).\n\ |
| \n\ |
| The prompt can also be changed by altering the PROMPT environment variable,\n\ |
| so the command 'SET PROMPT=text' has the same effect as 'PROMPT text'\n" |
| |
| WCMD_REM, |
| "A command line beginning REM (followed by a space) performs no\n\ |
| action, and can therefore be used as a comment in a batch file.\n" |
| |
| WCMD_REN, "REN µµ¿ò¸» \n" |
| WCMD_RENAME, "RENAME µµ¿ò¸»\n" |
| WCMD_RD, "RD µµ¿ò¸»\n" |
| WCMD_RMDIR, "RMDIR µµ¿ò¸»\n" |
| |
| WCMD_SET, |
| "SET displays or changes the wcmd environment variables.\n\ |
| \n\ |
| SET without parameters shows all of the current environment.\n\ |
| \n\ |
| To create or modify an environment variable the syntax is:\n\ |
| \n\ |
| SET <variable>=<value>\n\ |
| \n\ |
| where <variable> and <value> are character strings. There must be no\n\ |
| spaces before the equals sign, nor can the variable name\n\ |
| have embedded spaces.\n\ |
| \n\ |
| Under Wine, the environment of the underlying operating system is\n\ |
| included into the Win32 environment, there will generally therefore be\n\ |
| many more values than in a native Win32 implementation. Note that it is\n\ |
| not possible to affect the operating system environment from within wcmd.\n" |
| |
| WCMD_SHIFT, |
| "SHIFT is used in a batch file to remove one parameter from the head of\n\ |
| the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n\ |
| if called from the command line.\n" |
| |
| WCMD_TIME, "TIME µµ¿ò¸»\n" |
| |
| WCMD_TITLE, "Sets the window title for the wcmd window, syntax TITLE [string]\n" |
| |
| WCMD_TYPE, |
| "TYPE <filename> copies <filename> to the console device (or elsewhere\n\ |
| if redirected). No check is made that the file is readable text.\n" |
| |
| WCMD_VERIFY, |
| "VERIFY is used to set, clear or test the verify flag. Valid forms are:\n\ |
| \n\ |
| VERIFY ON Set the flag\n\ |
| VERIFY OFF Clear the flag\n\ |
| VERIFY Displays ON or OFF as appropriate.\n\ |
| \n\ |
| The verify flag has no function in Wine.\n" |
| |
| WCMD_VER, |
| "VER displays the version of wcmd you are running\n" |
| |
| WCMD_VOL, "VOL µµ¿ò¸»\n" |
| |
| WCMD_EXIT, |
| "EXIT terminates the current command session and returns\n\ |
| to the operating system or shell from which you invoked wcmd.\n" |
| |
| 1000, "WCMD ³»ºÎ ¸í·Éµé:\n\ |
| ATTRIB\t\tµµ½º ÆÄÀÏ ¼Ó º¸¿©Áְųª ¹Ù²Ù±â\n\ |
| CALL\t\tI¹èÄ¡ ÆÄÀÏ ¾È¿¡¼ ´Ù¸¥ ÆÄÀÏ ºÒ·¯¿À±â\n\ |
| CD (CHDIR)\tÇöÁ¦ ±âº» µð·ºÅ丮 ¹Ù²Ù±â\n\ |
| CLS\t\tÄÜ¼Ö È¸é ±ú²ýÇϰÔ\n\ |
| COPY\t\tÆÄÀÏ º¹»ç\n\ |
| CTTY\t\tÀÔÃâ·Â ÀåÄ¡ ¹Ù²Ù±â\n\ |
| DATE\t\t½Ã½ºÅÛ ³¯Â¥ º¸¿©Áְųª ¹Ù²Ù±â\n\ |
| DEL (ERASE)\tÇϳªÀÇ ÆÄÀÏÀ̳ª ¿©·¯ ÆÄÀÏÀ» Áö¿ì±â\n\ |
| DIR\t\tµð·ºÅ丮 ³»¿ë º¸¿©ÁÖ±â\n\ |
| ECHO\t\t¹®ÀÚ¸¦ ¹Ù·Î ȸé Ãâ·ÂÀ¸·Î º¹»ç\n\ |
| HELP\t\tShow brief help details on a topic\n\ |
| MD (MKDIR)\tÇÏÀ§ µð·ºÅ丮 ¸¸µé±â\n\ |
| MOVE\t\tÆÄÀÏ À̳ª ¿©·¯ ÆÄÀÏ,±×¸®°í µð·ºÅ丮 ±¸Á¶ À̵¿\n\ |
| PATH\t\tŽ»ö °æ·Î º¸¿©Áְųª ¼³Á¤Çϱâ\n\ |
| PROMPT\t\t¸í·É ÇÁ·ÒÇÁÆ® ¹Ù²Ù±â\n\ |
| REN (RENAME)\tÆÄÀÏ À̸§ ¹Ù²Ù±â\n\ |
| RD (RMDIR)\tÇÏÀ§ µð·ºÅ丮 Áö¿ì±â\n\ |
| SET\t\tȯ°æ º¯¼ö º¸¿©Áְųª ¹Ù²Ù±â\n\ |
| TIME\t\t½Ã½ºÅÛ ³¯Â¥ ¹Ù²Ù°Å³ª º¸¿©ÁÖ±â\n\ |
| TITLE\t\tWCMD ¼¼¼ÇÀÇ Ã¢ Á¦¸ñ ¼³Á¤ \n\ |
| TYPE\t\tÅØ½ºÆ® ÆÄÀÏÀÇ ³»¿ë º¸¿©ÁÖ±â\n\ |
| VER\t\tWCMD ÇöÀç ¹öÁ¯ º¸¿©ÁÖ±â\n\ |
| VOL\t\tµð½ºÅ© ÀåÄ¡ÀÇ ºÒ·ý ¶óº§ º¸¿©ÁÖ±â\n\ |
| EXIT\t\tWCMD ´Ý±â\n\n\ |
| Enter HELP <command> for further information on any of the above commands\n" |
| } |