Hi Rathinagiri !
I have found some problems on HMG translations ...
Because now in Harbour 3.2 When select Languages we can use any codepage...
Set_Language Return value as: "language.codepage" (and need to code for correc language and CP Messages Show )
*** Return expected for HMG is only "Language" ( ES, PT, EN, Etc...)
Samples for Portuguese Language ( I spect a value of: "pt.PT850" ):
REQUEST HB_LANG_PT
REQUEST HB_CODEPAGE_PT850
HB_CDPSELECT( "PT850" )
HB_LANGSELECT( 'PT' ) // Result is: pt.DE850
HB_LANGSELECT( hb_UserLang() ) // Result is: pt.DE850
HB_LANGSELECT( 'pt-BR' ) // First call result is: pt.DE850
HB_LANGSELECT( 'pt-BR' ) // Second call result is: pt.PT850
HB_LANGSELECT( 'PT', "PT850" ) // Result is: pt.PT850
Then I think needed alwais use: HB_LANGSELECT( 'PT', "PT850" )
files to fix:
i_lang.ch
h_controlmisc.prg
h_init.prg
h_windows.prg
HFCL\Source\gridprint.prg
Best regards
HMG 3.0.42
Moderator: Rathinagiri
Re: HMG 3.0.42
M., Ronaldo
By: IMATECH
Imation Tecnologia
By: IMATECH
Imation Tecnologia
Re: HMG 3.0.42
Best regards rathinagiri !