| /* | 
 |  * Wine command prompt (Russian resources) | 
 |  * | 
 |  * Copyright 2003 Igor Stepin | 
 |  * | 
 |  * 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_RUSSIAN, SUBLANG_DEFAULT | 
 |  | 
 | STRINGTABLE | 
 | { | 
 |   WCMD_ATTRIB, "Ñïðàâêà îá ATTRIB\n" | 
 |   WCMD_CALL, | 
 | "CALL <èìÿ bat-ôàéëà> èñïîëüçóåòñÿ â bat-ôàéëàõ äëÿ çàïóñêà êîìàíä\n\ | 
 | èç äðóãîãî bat-ôàéëà. When the batch file exits, control returns to\n\ | 
 | the file which called it. The CALL command may supply parameters to the\n\ | 
 | called procedure.\n\ | 
 | \n\ | 
 | Changes to default directory, environment variables etc made within a\n\ | 
 | called procedure are inherited by the caller.\n" | 
 |  | 
 |   WCMD_CD,     "Ñïðàâêà î CD\n" | 
 |   WCMD_CHDIR,  "Ñïðàâêà î CHDIR\n" | 
 |  | 
 |   WCMD_CLS,    "CLS î÷èùàåò ýêðàí êîíñîëè\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 causes all subsequent commands in a batch file to be displayed\n\ | 
 | on the terminal device before they are executed.\n\ | 
 | \n\ | 
 | ECHO OFF reverses the effect of a previous ECHO ON (ECHO is OFF by\n\ | 
 | default). The ECHO OFF command can be prevented from displaying by\n\ | 
 | preceding it with an @ sign.\n" | 
 |  | 
 |   WCMD_ERASE,  "Ñïðàâêà îá ERASE\n" | 
 |  | 
 |   WCMD_FOR, | 
 | "The FOR command is used to execute a command for each of a set of files.\n\ | 
 | \n\ | 
 | Syntax: 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 to 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 non-existent\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\ | 
 | $$    Çíàê äîëëàðà        $_    Linefeed            $b    Çíàê Pipe (|)\n\ | 
 | $d    Òåêóùàÿ äàòà        $e    Escape              $g    Çíàê >\n\ | 
 | $l    Çíàê <              $n    Òåêóùèé äèñê        $p    Òåêóùèé ïóòü\n\ | 
 | $q    Çíàê ðàâíî          $t    Òåêóùåå âðåìÿ       $v    Âåðñèÿ wcmd\n\ | 
 | \n\ | 
 | Note that entering the PROMPT command without a prompt-string resets the\n\ | 
 | prompt to the default, which is the current drive letter followed by its\n\ | 
 | current directory and 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, | 
 | "Êîìàíäíàÿ òðîêà, íà÷èíàþùàÿñÿ ñ REM (ñ ïîñëåäóþùèì ïðîáåëîì) íå âûïîëíÿåò\n\ | 
 | íèêàêèõ äåéñòâèé è ñëåäîâàòåëüíî èñïîëüçóåòñÿ äëÿ êîììåíòàðèåâ â bat-ôàéëàõ.\n" | 
 |  | 
 |   WCMD_REN,    "Ñïðàâêà î REN\n" | 
 |   WCMD_RENAME, "Ñïðàâêà î RENAME\n" | 
 |   WCMD_RD,     "Ñïðàâêà î RD\n" | 
 |   WCMD_RMDIR,  "Ñïðàâêà î RMDIR\n" | 
 |  | 
 |   WCMD_SET, | 
 | "SET ïîêàçûâàåò èëè èçìåíÿåò ïåðåìåííûå îêðóæåíèÿ wcmd.\n\ | 
 | \n\ | 
 | SET áåç ïàðàìåòðîâ ïîêàçûâàåò âñ¸ òåêóùåå îêðóæåíèå.\n\ | 
 | \n\ | 
 | Äëÿ ñîçäàíèÿ èëè èçìåíåíèÿ ïåðåìåííîé îêðóæåíèÿ èñïîëüçóéòå:\n\ | 
 | \n\ | 
 |       SET <ïåêðåìåííàÿ>=<çíà÷åíèå>\n\ | 
 | \n\ | 
 | ãäå <ïåðåìåííàÿ> è <çàí÷åíèå> ÿâëÿþòñÿ ñèìâîëüíûìè ñòðîêàìè. 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,  "Óñòàíàâëèâàåò çàãîëîâîê îêíà wcmd äëÿ òåêóùåé ñåññèè,\n ñèíòàêñèñ: TITLE [ñòðîêà]\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	Óñòàíîâèòü ôëàã\n\ | 
 | VERIFY OFF	Ñáðîñèòü ôëàã\n\ | 
 | VERIFY		Displays ON or OFF as appropriate.\n\ | 
 | \n\ | 
 | Ôëàã verify íå èñïîëüçóåòñÿ Wine.\n" | 
 |  | 
 |   WCMD_VER, | 
 | "VER îòîáðàæàåò âåðñèþ çàïóùåííîãî wcmd\n" | 
 |  | 
 |   WCMD_VOL,    "Ñïðàâêà î VOL\n" | 
 |  | 
 |   WCMD_EXIT, | 
 | "EXIT çàâåðøàåò òåêóùóþ êîìàíäíóþ ñåññèþ â âîçâðàùàåò\n\ | 
 | â îïåðàöèîííóþ ñèñòåìó èëè îáîëî÷êó èç êîòîðîé áûë çàïóùåí wcmd.\n" | 
 |  | 
 |   1000, "Âñòðîåííûå êîìàíäû WCMD:\n\ | 
 | ATTRIB\t\tÏîêàçàòü èëè èçìåíèòü DOS-àòòðèáóòû ôàéëà\n\ | 
 | CALL\t\tÇàïóñòèòü bat-ôàéë èç äðóãîãî bat-ôàéëà\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\tÏîêàçàòü êðàäêóþ ïîäñêàçêó ïî êîìàíäå\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\tÓñòàíàâèòü çàãîëîâîê îêíà wcmd äëÿ òåêóùåé ñåññèè\n\ | 
 | TYPE\t\tÂûâåñòè ñîäåðæàíèå òåêñòîâîãî ôàéëà\n\ | 
 | VER\t\tÏîêàçàòü òåêóùóþ âåðñèþ WCMD\n\ | 
 | VOL\t\tÏîêàçàòü ìåòêó òîìà äèñêîâîãî óñòðîéñòâà\n\ | 
 | EXIT\t\tÂûéòè èç WCMD\n\n\ | 
 | Âûïîëíèòå HELP <êîìàíäà> äëÿ äîïîëíèòåëüíîé èíôîðìàöèè ïî ïåðå÷èñëåííûì âûøå êîìàíäàì.\n" | 
 | } |