On Thursday 09 August 2012 21:56:30 you wrote:
> Please, reproduce the problem:
> 1) run msei18n,
> 2) "make",
> 3) run msei18n.
> Now interface is Russian, but in project *.trp no directories and empty of
> items in msei18n - project is unworked.
> Problem is saved.
> I tested make - no problem.
> Problem, when *.trp is lost, only if file .so exists.

Please call loadlangunit() *before* loading the forms.
"
begin
 Gettext.GetLanguageIDs(MSELang,MSEFallbackLang);
 //Ukrainian, Belarusian, Bashkir (Украинский, Белорусский, Башкирский)
 if (MSEFallbackLang='uk') or (MSEFallbackLang='be') or (MSEFallbackLang='ba') 
 //Bulgarian, Chechen, Church Slavic (Болгарский, Чеченский, 
Церковнославянский)
 or (MSEFallbackLang='bg') or (MSEFallbackLang='ce') or (MSEFallbackLang='cu')
 //Chuvash, Kazakh, Komi (Чувашский, Казахский, Коми)
 or (MSEFallbackLang='cv') or (MSEFallbackLang='kk') or (MSEFallbackLang='kv')
 //Moldavian, Tatar (Молдавский, Татарский)
 or (MSEFallbackLang='mo') or (MSEFallbackLang='tt')
                                                then MSEFallbackLang:='ru';
 MSEFallbacklang:='ru';//for debug
 If loadlangunit('i18n_'+MSEFallbackLang,true) then
                                                
setlangconsts(MSEFallbackLang); 
 application.createForm(tmainfo,mainfo);
 application.createForm(tmessagesfo,messagesfo);
 application.run;
end.

"

Martin
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to