diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7ea400b072..4b6c43eeac 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,13 @@ +2001-11-20 21:02 UTC+0100 Viktor Szakats + + * source/lang/Makefile + + Added missing language. + + * source/lang/msgruwin.c + * source/lang/msgzhb5.c + * source/lang/msgzhgb.c + * Small changes. + 2001-11-20 16:36 GMT-3 Horacio Roldan * source/rdd/dbfcdx/dbfcdx1.c + added support for AUTO OPEN diff --git a/harbour/source/lang/Makefile b/harbour/source/lang/Makefile index 6b97cba17c..447028643a 100644 --- a/harbour/source/lang/Makefile +++ b/harbour/source/lang/Makefile @@ -37,6 +37,8 @@ C_SOURCES=\ msgruwin.c \ msgsr852.c \ msgsriso.c \ + msgzhb5.c \ + msgzhgb.c \ LIBNAME=lang diff --git a/harbour/source/lang/msgruwin.c b/harbour/source/lang/msgruwin.c index 2cc7b1aed3..2a18a5b4fb 100644 --- a/harbour/source/lang/msgruwin.c +++ b/harbour/source/lang/msgruwin.c @@ -4,7 +4,7 @@ /* * Harbour Project source code: - * Language Support Module (RU1251) + * Language Support Module (RUWIN) * * Copyright 2000 Alexander S.Kresin * www - http://www.harbour-project.org @@ -61,7 +61,7 @@ static HB_LANG s_lang = { /* Identification */ - "RU1251", /* ID */ + "RUWIN", /* ID */ "Russian", /* Name (in English) */ "Ðóññêèé", /* Name (in native language) */ "RU", /* RFC ID */ diff --git a/harbour/source/lang/msgzhb5.c b/harbour/source/lang/msgzhb5.c index fe429fe3d9..0fa06e13ff 100644 --- a/harbour/source/lang/msgzhb5.c +++ b/harbour/source/lang/msgzhb5.c @@ -4,7 +4,7 @@ /* * Harbour Project source code: - * Language Support Module (ZH_BIG5) + * Language Support Module (ZHB5) * * Copyright 1999-2001 dongming * or @@ -63,10 +63,10 @@ static HB_LANG s_lang = { /* Identification */ - "ZH", /* ID */ + "ZHB5", /* ID */ "Chinese Traditional", /* Name (in English) */ "¤¤¤åÁcÅéBIG5", /* Name (in native language) */ - "ZH", /* RFC ID */ + "ZH", /* RFC ID */ "950", /* Codepage */ "$Revision$ $Date$", /* Version */ @@ -199,12 +199,12 @@ static HB_LANG s_lang = } }; -HB_LANG_ANNOUNCE( ZH_BIG5 ); +HB_LANG_ANNOUNCE( ZHB5 ); -HB_CALL_ON_STARTUP_BEGIN( hb_lang_Init_ZH_BIG5 ) +HB_CALL_ON_STARTUP_BEGIN( hb_lang_Init_ZHB5 ) hb_langRegister( &s_lang ); -HB_CALL_ON_STARTUP_END( hb_lang_Init_ZH_BIG5 ) +HB_CALL_ON_STARTUP_END( hb_lang_Init_ZHB5 ) #if ! defined(__GNUC__) && ! defined(_MSC_VER) - #pragma startup hb_lang_Init_ZH_BIG5 + #pragma startup hb_lang_Init_ZHB5 #endif diff --git a/harbour/source/lang/msgzhgb.c b/harbour/source/lang/msgzhgb.c index 7431adf5ba..6bef62d253 100644 --- a/harbour/source/lang/msgzhgb.c +++ b/harbour/source/lang/msgzhgb.c @@ -4,7 +4,7 @@ /* * Harbour Project source code: - * Language Support Module (ZH_GB) + * Language Support Module (ZHGB) * * Copyright 1999-2001 dongming * or @@ -64,7 +64,7 @@ static HB_LANG s_lang = { /* Identification */ - "ZH", /* ID */ + "ZHGB", /* ID */ "Chinese Simplified", /* Name (in English) */ "ÖÐÎļòÌåGB", /* Name (in native language) */ "ZH", /* RFC ID */ @@ -200,12 +200,12 @@ static HB_LANG s_lang = } }; -HB_LANG_ANNOUNCE( ZH_GB ); +HB_LANG_ANNOUNCE( ZHGB ); -HB_CALL_ON_STARTUP_BEGIN( hb_lang_Init_ZH_GB ) +HB_CALL_ON_STARTUP_BEGIN( hb_lang_Init_ZHGB ) hb_langRegister( &s_lang ); -HB_CALL_ON_STARTUP_END( hb_lang_Init_ZH_GB ) +HB_CALL_ON_STARTUP_END( hb_lang_Init_ZHGB ) #if ! defined(__GNUC__) && ! defined(_MSC_VER) - #pragma startup hb_lang_Init_ZH_GB + #pragma startup hb_lang_Init_ZHGB #endif