diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 00da1b38dc..bc7a84f00a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,9 @@ +19990624-23:20 CET Kwon, Oh-Chul + * source/rtl/natmsg.xxx + Korean added + * source/rtl/natmsg/msgkor.c + Korean language file + 19990624-15:40 EDT David G. Holm * doc/hdr_tpl.txt - Added proposed HRL/HVM license exception for executables. diff --git a/harbour/source/rtl/msgxxx.c b/harbour/source/rtl/msgxxx.c index 07ed44d85c..ad7f52a3de 100644 --- a/harbour/source/rtl/msgxxx.c +++ b/harbour/source/rtl/msgxxx.c @@ -16,6 +16,8 @@ #include "natmsg/msgger.c" #elif (HB_LANGUAGE == HU) #include "natmsg/msghu.c" +#elif (HB_LANGUAGE == KOR) +#include "natmsg/msgkor.c" #elif (HB_LANGUAGE == POR) #include "natmsg/msgpor.c" #elif (HB_LANGUAGE == R1251) diff --git a/harbour/source/rtl/natmsg/msgkor.c b/harbour/source/rtl/natmsg/msgkor.c new file mode 100644 index 0000000000..5517ed464a --- /dev/null +++ b/harbour/source/rtl/natmsg/msgkor.c @@ -0,0 +1,19 @@ +/* + * $Id$ + */ + +/* Korea language module */ + +#include +#include + +char *hb_monthsname[ 12 ] = { + "1¿ù", "2¿ù", "3¿ù", + "4¿ù", "5¿ù", "6¿ù", "7¿ù", + "8¿ù", "9¿ù", "10¿ù", + "11¿ù", "12¿ù" }; + +char *hb_daysname[ 7 ] = { + "ÀÏ¿äÀÏ", "¿ù¿äÀÏ", "È­¿äÀÏ", + "¼ö¿äÀÏ", "¸ñ¿äÀÏ", "±Ý¿äÀÏ", + "Åä¿äÀÏ" };