Changeset 42
- Timestamp:
- Feb 19, 2012, 10:18:56 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormTargets.lfm
r37 r42 1 1 object FormCompilers: TFormCompilers 2 2 Left = 292 3 Height = 2643 Height = 344 4 4 Top = 138 5 Width = 3605 Width = 574 6 6 Caption = 'Compilers' 7 ClientHeight = 2648 ClientWidth = 3607 ClientHeight = 344 8 ClientWidth = 574 9 9 OnShow = FormShow 10 10 LCLVersion = '0.9.31' 11 11 object ListView1: TListView 12 12 Left = 8 13 Height = 24813 Height = 328 14 14 Top = 8 15 Width = 34615 Width = 560 16 16 Anchors = [akTop, akLeft, akRight, akBottom] 17 17 Columns = < … … 22 22 item 23 23 Caption = 'Execution path' 24 Width = 247 24 Width = 200 25 end 26 item 27 Caption = 'Compiler path' 28 Width = 261 25 29 end> 26 30 OwnerData = True -
trunk/Forms/UFormTargets.lrt
r37 r42 2 2 TFORMCOMPILERS.LISTVIEW1.COLUMNS[0].CAPTION=Name 3 3 TFORMCOMPILERS.LISTVIEW1.COLUMNS[1].CAPTION=Execution path 4 TFORMCOMPILERS.LISTVIEW1.COLUMNS[2].CAPTION=Compiler path -
trunk/Forms/UFormTargets.pas
r37 r42 50 50 Item.Caption := Name; 51 51 Item.Data := MainForm.Targets[Item.Index]; 52 Item.SubItems.Add(ExecutorPath); 52 53 Item.SubItems.Add(CompilerPath); 53 54 end; -
trunk/Languages/LazFuckIDE.cs.po
r41 r42 39 39 msgstr "Cesta vykonánÃ" 40 40 41 #: tformcompilers.listview1.columns[2].caption 42 msgctxt "tformcompilers.listview1.columns[2].caption" 43 msgid "Compiler path" 44 msgstr "Cesta pÅekladaÄe" 45 41 46 #: tformcpu.caption 42 47 #| msgid "Interpretter" -
trunk/Languages/LazFuckIDE.po
r41 r42 31 31 msgstr "" 32 32 33 #: tformcompilers.listview1.columns[2].caption 34 msgctxt "TFORMCOMPILERS.LISTVIEW1.COLUMNS[2].CAPTION" 35 msgid "Compiler path" 36 msgstr "" 37 33 38 #: tformcpu.caption 34 39 msgctxt "TFORMCPU.CAPTION" -
trunk/Target/UTargetPHP.pas
r41 r42 32 32 Capabilities := [tcCompile, tcRun]; 33 33 {$IFDEF Windows} 34 CompilerPath := 'c:\Program Files\PHP\php.exe'; 34 CompilerPath := ''; 35 ExecutorPath := 'c:\Program Files\PHP\php.exe'; 35 36 {$ENDIF} 36 37 {$IFDEF Linux} 37 CompilerPath := '/usr/bin/php'; 38 CompilerPath := ''; 39 ExecutorPath := '/usr/bin/php'; 38 40 {$ENDIF} 39 41 end;
Note:
See TracChangeset
for help on using the changeset viewer.