Ignore:
Timestamp:
Jan 4, 2025, 12:07:24 AM (5 days ago)
Author:
chronos
Message:
  • Fixed: Language translation on Windows was not working.
  • Fixed: About dialog wrong layout.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/Common/Translator.pas

    r315 r380  
    322322    Result[I] := StringReplace(Result[I], '/', DirectorySeparator, [rfReplaceAll]);
    323323    Result[I] := StringReplace(Result[I], '\', DirectorySeparator, [rfReplaceAll]);
    324     if Copy(Result[I], 1, 1) <> DirectorySeparator then
     324    if (Copy(Result[I], 1, 1) <> DirectorySeparator) and (Copy(Result[I], 2, 2) <> ':\') then
    325325      Result[I] := ExtractFileDir(Application.ExeName) +
    326326        DirectorySeparator + Result[I];
Note: See TracChangeset for help on using the changeset viewer.