mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 09:18:02 +02:00
LazResExplorer example: migrated to using GetLanguageID function from Translations unit
This commit is contained in:
parent
53bda35072
commit
62623bb589
@ -4,7 +4,7 @@ unit reConstsUnit;
|
||||
|
||||
interface
|
||||
|
||||
uses gettext, translations, LCLPlatformDef, InterfaceBase;
|
||||
uses Translations, LCLPlatformDef, InterfaceBase;
|
||||
|
||||
resourcestring
|
||||
sResourceExplorer = 'Resource explorer';
|
||||
@ -58,10 +58,10 @@ end;
|
||||
|
||||
procedure TranslateResStrings;
|
||||
var
|
||||
Lang, FallbackLang: String;
|
||||
LangID: TLanguageID;
|
||||
begin
|
||||
GetLanguageIDs(Lang,FallbackLang); // in unit gettext
|
||||
TranslateUnitResourceStrings('reConstsUnit','languages'+DirectorySeparator+'resexplorer.%s.po', Lang,FallbackLang);
|
||||
LangID := GetLanguageID;
|
||||
TranslateUnitResourceStrings('reConstsUnit','languages'+DirectorySeparator+'resexplorer.%s.po', LangID.LanguageID, LangID.LanguageCode);
|
||||
end;
|
||||
|
||||
initialization
|
||||
|
Loading…
Reference in New Issue
Block a user