Changeset 97 for trunk/UCore.pas


Ignore:
Timestamp:
Aug 22, 2016, 1:16:56 PM (8 years ago)
Author:
chronos
Message:
  • Added: Add support for acronym category selection in import source format.
  • Modified: Optimalized export speed.
  • Fixed: Export to MediaWiki tables was not correctly generated for multi line strings.
  • Fixed: Add back links from categories to import sources.
  • Added: Multi select support in category list.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UCore.pas

    r96 r97  
    77uses
    88  Classes, SysUtils, FileUtil, UAcronym, UCoolTranslator, UPersistentForm,
    9   Forms, Controls, LazFileUtils;
     9  UJobProgressView, Forms, Controls, LazFileUtils;
    1010
    1111type
     
    1515  TCore = class(TDataModule)
    1616    CoolTranslator1: TCoolTranslator;
     17    JobProgressView1: TJobProgressView;
    1718    PersistentForm1: TPersistentForm;
     19    procedure CoolTranslator1Translate(Sender: TObject);
    1820    procedure DataModuleCreate(Sender: TObject);
    1921    procedure DataModuleDestroy(Sender: TObject);
     
    5860begin
    5961  FreeAndNil(AcronymDb);
     62end;
     63
     64procedure TCore.CoolTranslator1Translate(Sender: TObject);
     65begin
     66  UAcronym.Translate;
    6067end;
    6168
Note: See TracChangeset for help on using the changeset viewer.