See changelog

This commit is contained in:
Eddie Runia
1999-06-24 22:32:46 +00:00
parent de4326a70c
commit b4cea433de
3 changed files with 27 additions and 0 deletions

View File

@@ -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 <dholm@jsd-llc.com>
* doc/hdr_tpl.txt
- Added proposed HRL/HVM license exception for executables.

View File

@@ -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)

View File

@@ -0,0 +1,19 @@
/*
* $Id$
*/
/* Korea language module */
#include <extend.h>
#include <ctype.h>
char *hb_monthsname[ 12 ] = {
"1월", "2월", "3월",
"4월", "5월", "6월", "7월",
"8월", "9월", "10월",
"11월", "12월" };
char *hb_daysname[ 7 ] = {
"일요일", "월요일", "화요일",
"수요일", "목요일", "금요일",
"토요일" };