source: tools/Lazarus translator/Translator.lpr

Last change on this file was 9, checked in by george, 15 years ago
  • Upraveno: Program přepracován pro podporu více překladových souborů a hromadného sloučení s novějšími anglickými verzemi z repozitáře Lazarusu.
  • Upraveno: Adresářová struktura překladových souborů přepracována tak, aby souhlasila se strukturou adresářů repozitáře Lazarusu.
  • Upraveno: Překladové soubory aktualizovány na SVN verzi 0.9.27.
File size: 524 bytes
Line 
1program Translator;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}{$IFDEF UseCThreads}
7 cthreads,
8 {$ENDIF}{$ENDIF}
9 Interfaces, // this includes the LCL widgetset
10 Forms
11 { you can add units after this }, UItemListForm, UItemTranslationForm,
12 UTextFileStream, UMainForm;
13
14begin
15 Application.Initialize;
16 Application.CreateForm(TMainForm, MainForm);
17 Application.CreateForm(TItemListForm, ItemListForm);
18 Application.CreateForm(TItemTranslationForm, ItemTranslationForm);
19 Application.Run;
20end.
21
Note: See TracBrowser for help on using the repository browser.