Changeset 380
- Timestamp:
- Jan 4, 2025, 12:07:24 AM (4 days ago)
- Location:
- trunk/Packages/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Forms/FormAbout.lfm
r365 r380 13 13 object LabelDescription: TLabel 14 14 Left = 30 15 Height = 2 616 Top = 015 Height = 25 16 Top = 135 17 17 Width = 654 18 18 Align = alTop … … 27 27 object LabelContent: TLabel 28 28 Left = 30 29 Height = 2 630 Top = 22129 Height = 25 30 Top = 190 31 31 Width = 654 32 32 Align = alTop … … 39 39 Left = 0 40 40 Height = 135 41 Top = 5641 Top = 0 42 42 Width = 714 43 43 Align = alTop -
trunk/Packages/Common/Translator.pas
r315 r380 322 322 Result[I] := StringReplace(Result[I], '/', DirectorySeparator, [rfReplaceAll]); 323 323 Result[I] := StringReplace(Result[I], '\', DirectorySeparator, [rfReplaceAll]); 324 if Copy(Result[I], 1, 1) <> DirectorySeparatorthen324 if (Copy(Result[I], 1, 1) <> DirectorySeparator) and (Copy(Result[I], 2, 2) <> ':\') then 325 325 Result[I] := ExtractFileDir(Application.ExeName) + 326 326 DirectorySeparator + Result[I];
Note:
See TracChangeset
for help on using the changeset viewer.