93 lines
1.4 KiB
C
93 lines
1.4 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/* Language Support Module */
|
|
|
|
/* Language name: Korean */
|
|
/* ISO language code (2 chars): KO */
|
|
/* Codepage: ???? */
|
|
|
|
#include "hbdefs.h"
|
|
|
|
char *hb_monthsname[ 12 ] =
|
|
{
|
|
"1월",
|
|
"2월",
|
|
"3월",
|
|
"4월",
|
|
"5월",
|
|
"6월",
|
|
"7월",
|
|
"8월",
|
|
"9월",
|
|
"10월",
|
|
"11월",
|
|
"12월"
|
|
};
|
|
|
|
char *hb_daysname[ 7 ] =
|
|
{
|
|
"일요일",
|
|
"월요일",
|
|
"화요일",
|
|
"수요일",
|
|
"목요일",
|
|
"금요일",
|
|
"토요일"
|
|
};
|
|
|
|
static char *genericErrors[] =
|
|
{
|
|
"Unknown error",
|
|
"Argument error",
|
|
"Bound error",
|
|
"String overflow",
|
|
"Numeric overflow",
|
|
"Divide by zero",
|
|
"Numeric error",
|
|
"Syntax error",
|
|
"Operation too complex",
|
|
"",
|
|
"",
|
|
"Memory low",
|
|
"Undefined function",
|
|
"No exported method",
|
|
"Variable does not exists",
|
|
"Alias does not exists",
|
|
"No exported variable",
|
|
"Incorrect alias name",
|
|
"Duplicated alias name",
|
|
"",
|
|
"Create error",
|
|
"Open error",
|
|
"Close error",
|
|
"Read error",
|
|
"Write error",
|
|
"Print error",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Unsupported operation",
|
|
"Limit exeeded",
|
|
"Index corruption detected",
|
|
"Incorrect type of data",
|
|
"Data width too long",
|
|
"Workarea not in use",
|
|
"Workarea not indexed",
|
|
"Exclusive use required",
|
|
"Lock required",
|
|
"Write not allowed",
|
|
"Append lock failed",
|
|
"Lock failure",
|
|
"",
|
|
"",
|
|
"",
|
|
"Incorrect number of arguments",
|
|
"array access",
|
|
"array assign",
|
|
"not an array",
|
|
"conditional"
|
|
};
|