2008-04-22 14:43:33 +02:00
|
|
|
|
/*
|
|
|
|
|
* REG.EXE - Wine-compatible reg program.
|
|
|
|
|
* Korean language support
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2008 Andrew Riedi
|
2009-05-25 02:21:55 +02:00
|
|
|
|
* Copyright 2008 YunSong Hwang
|
2008-04-22 14:43:33 +02:00
|
|
|
|
*
|
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
|
*/
|
|
|
|
|
|
2009-07-02 00:29:26 +02:00
|
|
|
|
#include "reg.h"
|
|
|
|
|
|
2008-04-22 14:43:33 +02:00
|
|
|
|
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
|
|
|
|
|
|
|
|
|
|
STRINGTABLE
|
|
|
|
|
{
|
2008-04-28 02:48:31 +02:00
|
|
|
|
STRING_USAGE, "<22><><EFBFBD>ɾ<EFBFBD> <20><><EFBFBD><EFBFBD>:\n\nREG [ ADD | DELETE | QUERY ]\nREG <20><><EFBFBD>ɾ<EFBFBD> /?\n"
|
|
|
|
|
STRING_ADD_USAGE, "REG ADD <20><> [/v <20><> | /ve] [/t <20><><EFBFBD><EFBFBD>] [/s <20>и<EFBFBD><D0B8><EFBFBD>ȣ] [/d <20><><EFBFBD><EFBFBD>Ÿ] [/f]\n"
|
2009-05-25 02:21:55 +02:00
|
|
|
|
STRING_DELETE_USAGE, "REG DELETE Ű <20≯<EFBFBD> [/v <20><> | /ve | /va] [/f]\n"
|
|
|
|
|
STRING_QUERY_USAGE, "REG QUERY Ű <20≯<EFBFBD> [/v <20><>| /ve] [/s]\n"
|
|
|
|
|
STRING_SUCCESS, "<22>۾<EFBFBD><DBBE><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>\n"
|
|
|
|
|
STRING_INVALID_KEY, "<22><><EFBFBD><EFBFBD>: <20>ùٸ<C3B9><D9B8><EFBFBD> <20><><EFBFBD><EFBFBD> Ű <20≯<EFBFBD>\n"
|
|
|
|
|
STRING_INVALID_CMDLINE, "<22><><EFBFBD><EFBFBD>:<3A>ùٸ<C3B9><D9B8><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>ɶ<EFBFBD><C9B6><EFBFBD> <20>Ű<EFBFBD><C5B0><EFBFBD><EFBFBD><EFBFBD>\n"
|
|
|
|
|
STRING_NO_REMOTE, "<22><><EFBFBD><EFBFBD>: <20><><EFBFBD><EFBFBD> <20>ӽſ<D3BD> Ű<><C5B0> <20><><EFBFBD>ϴ<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʽ<EFBFBD><CABD>ϴ<EFBFBD>\n"
|
|
|
|
|
STRING_CANNOT_FIND, "<22><><EFBFBD><EFBFBD>: <20><> <20>ý<EFBFBD><C3BD>ۿ<EFBFBD><DBBF><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʈ<EFBFBD><C6AE> Ű<><C5B0> <20><><EFBFBD><EFBFBD> ã<><C3A3><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>\n"
|
2008-04-22 14:43:33 +02:00
|
|
|
|
}
|