2022-10-14 12:38:21 +00:00
|
|
|
program translations_demo;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2022-10-14 12:46:29 +00:00
|
|
|
Forms, tdmain;
|
2022-10-14 12:38:21 +00:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
RequireDerivedFormResource := True;
|
2022-10-14 12:46:29 +00:00
|
|
|
Application.Scaled:=True;
|
2022-10-14 12:38:21 +00:00
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|