Changeset 526 for CoolTranslator/UCoolTranslator.pas
- Timestamp:
- May 6, 2019, 10:05:59 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CoolTranslator/UCoolTranslator.pas
r495 r526 127 127 I, J: Integer; 128 128 Po: TPoFile; 129 Item: TPOFileItem; 129 130 begin 130 131 TranslateComponentRecursive(Application); … … 136 137 with TPoFile(FPoFiles[I]) do 137 138 for J := 0 to Items.Count - 1 do 138 with TPoFileItem(Items[J]) do 139 Po.Add(IdentifierLow, Original, Translation, Comments, Context, 139 with TPoFileItem(Items[J]) do begin 140 Item := nil; 141 Po.FillItem(Item, IdentifierLow, Original, Translation, Comments, Context, 140 142 Flags, PreviousID); 143 end; 141 144 Translations.TranslateResourceStrings(Po); 142 145 finally … … 197 200 PropInfo: PPropInfo; 198 201 PropList: PPropList; 199 Excludes: TComponentExcludes;200 202 begin 201 203 Count := GetTypeData(Component.ClassInfo)^.PropCount; … … 250 252 if (UpperCase(PropType.Name) = 'TTRANSLATESTRING') then 251 253 //if not IsExcluded(Component, PropInfo^.Name) then 252 SetStrProp(Component, PropInfo, TranslateText(PropInfo^.Name, GetWideStrProp(Component, PropInfo)));254 SetStrProp(Component, PropInfo, TranslateText(PropInfo^.Name, string(GetWideStrProp(Component, PropInfo)))); 253 255 end; 254 256 tkClass: begin … … 295 297 Result := FPOFilesFolder; 296 298 if Copy(Result, 1, 1) <> DirectorySeparator then 297 Result := ExtractFileDir( UTF8Encode(Application.ExeName)) +299 Result := ExtractFileDir(Application.ExeName) + 298 300 DirectorySeparator + Result; 299 301 end; … … 412 414 Lang := ParamStr(i + 1); 413 415 end; 414 if Lang = '' then 416 if Lang = '' then begin 417 T := ''; 415 418 LazGetLanguageIDs(Lang, T); 419 end; 416 420 417 421 if Assigned(Language) and (Language.Code = '') and Assigned(FOnAutomaticLanguage) then begin … … 429 433 function TCoolTranslator.FindLocaleFileName(LCExt: string): string; 430 434 var 431 T: string;432 435 Lang: string; 433 436 begin
Note:
See TracChangeset
for help on using the changeset viewer.