unit LCLTranslator; { /*************************************************************************** LCLTranslator.pas ----------------- LCL resource string translation unit Copyright (C) 2004-2019 V.I.Volchenko and Lazarus Developers Team ***************************************************************************/ ***************************************************************************** This file is part of the Lazarus Component Library (LCL) See the file COPYING.modifiedLGPL.txt, included in this distribution, for details about the license. ***************************************************************************** } { This unit is needed for using translated form strings made by Lazarus IDE. It searches for translated .po/.mo files in some common places and user specified ones. If you need standard translation, just use this unit in your project and enable i18n in project options. Note that you will have to call SetDefaultLang manually. If you want it to be called automatically, use DefaultTranslator unit instead. Another reason for including this unit may be using translated LCL messages. This unit localizes LCL too, if it finds lclstrconsts.xx.po/lclstrconsts.xx.mo. } {$mode objfpc}{$H+} interface uses // RTL + FCL Classes, SysUtils, typinfo, GetText, // LCL LResources, Forms, LCLType, // LazUtils {$IFDEF VerbosePOTranslator} LazLoggerBase, {$ENDIF} Translations, LazFileUtils, LazUTF8; type { TUpdateTranslator } TUpdateTranslator = class(TAbstractTranslator) private FStackPath: string; procedure IntUpdateTranslation(AnInstance: TPersistent; Level: integer = 0); public procedure UpdateTranslation(AnInstance: TPersistent); end; TDefaultTranslator = class(TUpdateTranslator) private FMOFile: TMOFile; public constructor Create(MOFileName: string); destructor Destroy; override; procedure TranslateStringProperty(Sender: TObject; const Instance: TPersistent; PropInfo: PPropInfo; var Content: string); override; end; { TPOTranslator } TPOTranslator = class(TUpdateTranslator) private FPOFile: TPOFile; public constructor Create(POFileName: string); constructor Create(aPOFile: TPOFile); destructor Destroy; override; procedure TranslateStringProperty(Sender: TObject; const Instance: TPersistent; PropInfo: PPropInfo; var Content: string); override; end; function TranslateLCLResourceStrings(Lang, Dir: string): string; function TranslateUnitResourceStringsEx(Lang, Dir, LocaleFileName: string; LocaleUnitName: string = ''): string; function SetDefaultLang(Lang: string; Dir: string = ''; LocaleFileName: string = ''; ForceUpdate: boolean = true): string; implementation type TPersistentAccess = class(TPersistent); function FindLang(var Lang: string): TLanguageID; var CurParam: string; i: integer; begin if Lang = '' then for i := 1 to ParamCount do begin CurParam := ParamStrUTF8(i); if (CurParam = '-l') or (UTF8LowerCase(CurParam) = '--lang') then begin if i < ParamCount then Lang := ParamStrUTF8(i + 1); end else if UTF8StartsText('--lang=', CurParam) then begin Lang := CurParam; UTF8Delete(Lang, 1, Length('--lang=')); end; end; if Lang = '' then begin Result := GetLanguageID; Lang := Result.LanguageID; end else Result := GetLanguageIDFromLocaleName(Lang); end; function FindLocaleFileName(LCExt, LangID, Dir, LocaleFileName: string; out FoundLang: string): string; var LangData: TLanguageID; AppDir, LCFileName, FullLCFileName: string; function GetLCFileName: string; begin if LocaleFileName = '' then Result := ExtractFileName(ParamStrUTF8(0)) else Result := LocaleFileName; end; begin Result := ''; LangData := FindLang(LangID); FoundLang := LangID; AppDir := ExtractFilePath(ParamStrUTF8(0)); LCFileName := ChangeFileExt(GetLCFileName, LCExt); if Dir<>'' then begin Dir := AppendPathDelim(Dir); if not FilenameIsAbsolute(Dir) then Dir := AppDir + Dir; end; if LangID <> '' then begin FullLCFileName := ChangeFileExt(GetLCFileName, '.' + LangID) + LCExt; if Dir<>'' then begin Result := Dir + LangID + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; end; //ParamStrUTF8(0) is said not to work properly in linux, but I've tested it Result := AppDir + LangID + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'languages' + DirectorySeparator + LangID + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'locale' + DirectorySeparator + LangID + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'locale' + DirectorySeparator + LangID + DirectorySeparator + 'LC_MESSAGES' + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; {$IFDEF UNIX} //In unix-like systems we can try to search for global locale Result := '/usr/share/locale/' + LangID + '/LC_MESSAGES/' + LCFileName; if FileExistsUTF8(Result) then exit; {$ENDIF} //Let us search for files with short language code (without country code) FoundLang := LangData.LanguageCode; if Dir<>'' then begin Result := Dir + LangData.LanguageCode + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; end; //At first, check all was checked Result := AppDir + LangData.LanguageCode + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'languages' + DirectorySeparator + LangData.LanguageCode + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'locale' + DirectorySeparator + LangData.LanguageCode + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'locale' + DirectorySeparator + LangData.LanguageCode + DirectorySeparator + 'LC_MESSAGES' + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; if Dir<>'' then begin Result := Dir + FullLCFileName; if FileExistsUTF8(Result) then exit; end; Result := AppDir + FullLCFileName; if FileExistsUTF8(Result) then exit; //Common location (like in Lazarus) Result := AppDir + 'locale' + DirectorySeparator + FullLCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'languages' + DirectorySeparator + FullLCFileName; if FileExistsUTF8(Result) then exit; {$IFDEF UNIX} Result := '/usr/share/locale/' + LangData.LanguageCode + '/LC_MESSAGES/' + LCFileName; if FileExistsUTF8(Result) then exit; {$ENDIF} FullLCFileName := ChangeFileExt(GetLCFileName, '.' + LangData.LanguageCode) + LCExt; if Dir<>'' then begin Result := Dir + FullLCFileName; if FileExistsUTF8(Result) then exit; end; Result := AppDir + FullLCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'locale' + DirectorySeparator + FullLCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'languages' + DirectorySeparator + FullLCFileName; if FileExistsUTF8(Result) then exit; end; //master files have .pot extension if LCExt = '.po' then LCFileName := ChangeFileExt(GetLCFileName, '.pot'); if Dir<>'' then begin Result := Dir + LCFileName; if FileExistsUTF8(Result) then exit; end; Result := AppDir + LCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'locale' + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; Result := AppDir + 'languages' + DirectorySeparator + LCFileName; if FileExistsUTF8(Result) then exit; Result := ''; FoundLang := ''; end; function GetIdentifierPath(Sender: TObject; const Instance: TPersistent; PropInfo: PPropInfo): string; var Tmp: TPersistent; Component: TComponent; Reader: TReader; begin Result := ''; if (PropInfo=nil) or (PropInfo^.PropType<>TypeInfo(TTranslateString)) then exit; // do not translate at design time // get the component Tmp := Instance; while Assigned(Tmp) and not (Tmp is TComponent) do Tmp := TPersistentAccess(Tmp).GetOwner; if not Assigned(Tmp) then exit; Component := Tmp as TComponent; if (csDesigning in Component.ComponentState) then exit; if (Sender is TReader) then begin Reader := TReader(Sender); if Reader.Driver is TLRSObjectReader then Result := TLRSObjectReader(Reader.Driver).GetStackPath else Result := Instance.ClassName + '.' + PropInfo^.Name; end else if (Sender is TUpdateTranslator) then Result := TUpdateTranslator(Sender).FStackPath + '.' + PropInfo^.Name; Result := LowerCase(Result); // GetText requires same case as in .po file, which is lowercase end; { TUpdateTranslator } procedure TUpdateTranslator.IntUpdateTranslation(AnInstance: TPersistent; Level: integer = 0); var i,j: integer; APropCount: integer; APropList: PPropList; APropInfo: PPropInfo; TmpStr: string; APersistentProp: TPersistent; StoreStackPath: string; AComponent, SubComponent: TComponent; begin {$IFDEF VerbosePOTranslator} debugln(['TUpdateTranslator.IntUpdateTranslation START ',DbgSName(AnInstance),' Level=',Level]); {$ENDIF} APropCount := GetPropList(AnInstance.ClassInfo, APropList); try for i := 0 to APropCount-1 do begin APropInfo:=APropList^[i]; if Assigned(PPropInfo(APropInfo)^.GetProc) and Assigned(APropInfo^.PropType) then case APropInfo^.PropType^.Kind of tkSString, tkLString, tkAString: if (Assigned(PPropInfo(APropInfo)^.SetProc)) and (APropInfo^.PropType=TypeInfo(TTranslateString)) then begin TmpStr := GetStrProp(AnInstance, APropInfo); {$IFDEF VerbosePOTranslator} debugln(['TUpdateTranslator.IntUpdateTranslation ',GetStrProp(AnInstance,APropInfo)]); {$ENDIF} LRSTranslator.TranslateStringProperty(Self,AnInstance,APropInfo,TmpStr); if TmpStr <>'' then SetStrProp(AnInstance, APropInfo, TmpStr); end; tkClass: begin APersistentProp := TPersistent(GetObjectProp(AnInstance, APropInfo, TPersistent)); if Assigned(APersistentProp) then begin if APersistentProp is TCollection then begin for j := 0 to TCollection(APersistentProp).Count-1 do begin StoreStackPath:=FStackPath; FStackPath:=FStackPath+'.'+APropInfo^.Name+'['+IntToStr(j)+']'; IntUpdateTranslation(TCollection(APersistentProp).Items[j],Level+1); FStackPath:=StoreStackPath; end; end else begin if APersistentProp is TComponent then begin AComponent:=TComponent(APersistentProp); if (csSubComponent in AComponent.ComponentStyle) then begin StoreStackPath:=FStackPath; FStackPath:=FStackPath+'.'+APropInfo^.Name; IntUpdateTranslation(APersistentProp,Level+1); FStackPath:=StoreStackPath; end end else begin StoreStackPath:=FStackPath; FStackPath:=FStackPath+'.'+APropInfo^.Name; IntUpdateTranslation(APersistentProp,Level+1); FStackPath:=StoreStackPath; end; end; end; end; end; end; finally Freemem(APropList); end; if (Level=0) and (AnInstance is TComponent) then begin AComponent:=TComponent(AnInstance); for i := 0 to AComponent.ComponentCount-1 do begin SubComponent:=AComponent.Components[i]; StoreStackPath:=FStackPath; if SubComponent is TCustomFrame then UpdateTranslation(SubComponent); if SubComponent.Name='' then continue; FStackPath:=StoreStackPath+'.'+SubComponent.Name; IntUpdateTranslation(SubComponent,Level+1); FStackPath:=StoreStackPath; end; end; end; procedure TUpdateTranslator.UpdateTranslation(AnInstance: TPersistent); begin FStackPath:=AnInstance.ClassName; IntUpdateTranslation(AnInstance); end; { TDefaultTranslator } constructor TDefaultTranslator.Create(MOFileName: string); begin inherited Create; FMOFile := TMOFile.Create(UTF8ToSys(MOFileName)); end; destructor TDefaultTranslator.Destroy; begin FMOFile.Free; //If someone will use this class incorrectly, it can be destroyed //before Reader destroying. It is a very bad thing, but in THIS situation //in this case is impossible. Maybe, in future we can overcome this difficulty inherited Destroy; end; procedure TDefaultTranslator.TranslateStringProperty(Sender: TObject; const Instance: TPersistent; PropInfo: PPropInfo; var Content: string); var s, ContentStr: string; begin if Assigned(FMOFile) then begin s := GetIdentifierPath(Sender, Instance, PropInfo); if s <> '' then begin //If the string has lineendings, convert them to Unix style. //This is needed, because incoming string may have lineendings in any style, //and MO format seems to always store them in Unix style. //More elaborate processing of linendings is not needed (they are consistent), //because input string to this procedure is maintained by IDE. ContentStr := AdjustLineBreaks(Content, tlbsLF); s := FMoFile.Translate(s + #4 + ContentStr); if s = '' then s := FMOFile.Translate(ContentStr); if s <> '' then Content := s; end; end; end; { TPOTranslator } constructor TPOTranslator.Create(POFileName: string); begin inherited Create; // TPOFile expects AFileName in UTF-8 encoding, no conversion required FPOFile := TPOFile.Create(POFileName, true); end; constructor TPOTranslator.Create(aPOFile: TPOFile); begin inherited Create; FPOFile := aPOFile; end; destructor TPOTranslator.Destroy; begin FPOFile.Free; //If someone will use this class incorrectly, it can be destroyed //before Reader destroying. It is a very bad thing, but in THIS situation //in this case is impossible. May be, in future we can overcome this difficulty inherited Destroy; end; procedure TPOTranslator.TranslateStringProperty(Sender: TObject; const Instance: TPersistent; PropInfo: PPropInfo; var Content: string); var s: string; begin if Assigned(FPOFile) then begin s := GetIdentifierPath(Sender, Instance, PropInfo); {$IFDEF VerbosePOTranslator} debugln(['TPOTranslator.TranslateStringProperty Content="',Content,'" s="',s,'" Instance=',Instance.ClassName,' PropInfo.Name=',PropInfo^.Name]); {$ENDIF} if s <> '' then begin s := FPOFile.Translate(s, Content); if s <> '' then Content := s; end; end; end; function TranslateLCLResourceStrings(Lang, Dir: string): string; begin Result:=LCLTranslator.TranslateUnitResourceStringsEx(Lang, Dir, 'lclstrconsts'); end; function TranslateUnitResourceStringsEx(Lang, Dir, LocaleFileName: string; LocaleUnitName: string = ''): string; var UnitPath: string; begin Result:=''; if LocaleFileName='' then exit; if LocaleUnitName='' then LocaleUnitName:=LocaleFileName; try UnitPath:=FindLocaleFileName('.po', Lang, ExtractFilePath(Dir), LocaleFileName, Result); if UnitPath<>'' then Translations.TranslateUnitResourceStrings(LocaleUnitName, UnitPath) else begin UnitPath:=FindLocaleFileName('.mo', Lang, ExtractFilePath(Dir), LocaleFileName, Result); if UnitPath<>'' then GetText.TranslateResourceStrings(UTF8ToSys(UnitPath)); end; except Result:=''; end; end; function SetDefaultLang(Lang: string; Dir: string = ''; LocaleFileName: string = ''; ForceUpdate: boolean = true): string; { Arguments: Lang - language (e.g. 'ru', 'de', 'zh_CN'); empty argument is default language. Dir - custom translation files subdirectory (e.g. 'mylng'); empty argument means searching only in predefined subdirectories. LocaleFileName - custom translation file name; empty argument means that the name is the same as the one of executable. ForceUpdate - true means forcing immediate interface update. Only should be set to false when the procedure is called from unit Initialization section. User code normally should not specify it. } var lcfn: string; LocalTranslator: TUpdateTranslator; i: integer; begin Result := ''; LocalTranslator := nil; // search first po translation resources try lcfn := FindLocaleFileName('.po', Lang, Dir, LocaleFileName, Result); if lcfn <> '' then begin Translations.TranslateResourceStrings(lcfn); LocalTranslator := TPOTranslator.Create(lcfn); end else begin // try now with MO translation resources lcfn := FindLocaleFileName('.mo', Lang, Dir, LocaleFileName, Result); if lcfn <> '' then begin GetText.TranslateResourceStrings(UTF8ToSys(lcfn)); LocalTranslator := TDefaultTranslator.Create(lcfn); end; end; except Result := ''; lcfn := ''; end; if lcfn<>'' then TranslateLCLResourceStrings(Lang, lcfn); if LocalTranslator<>nil then begin if Assigned(LRSTranslator) then LRSTranslator.Free; LRSTranslator := LocalTranslator; // Do not update the translations when this function is called from within // the unit initialization. if ForceUpdate=true then begin for i := 0 to Screen.CustomFormCount-1 do LocalTranslator.UpdateTranslation(Screen.CustomForms[i]); for i := 0 to Screen.DataModuleCount-1 do LocalTranslator.UpdateTranslation(Screen.DataModules[i]); end; end; end; finalization LRSTranslator.Free; end.