- Timestamp:
- Feb 29, 2012, 11:16:44 AM (13 years ago)
- Location:
- trunk/IDE
- Files:
-
- 3 added
- 2 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE/Forms/UMainForm.lfm
r41 r42 89 89 Top = 26 90 90 Width = 200 91 ActivePage = TabSheet Project91 ActivePage = TabSheetCompiledProject 92 92 Align = alRight 93 TabIndex = 093 TabIndex = 2 94 94 TabOrder = 3 95 95 TabPosition = tpRight … … 148 148 object MainMenu1: TMainMenu 149 149 Images = ImageList1 150 left = 624151 top = 8150 left = 115 151 top = 160 152 152 object MenuItem1: TMenuItem 153 153 Caption = 'Project' … … 474 474 end 475 475 object MenuItemProducer: TMenuItem 476 Caption = ' Producer'476 Caption = 'Target' 477 477 end 478 478 end … … 540 540 end 541 541 object MenuItem24: TMenuItem 542 Action = AView Producers542 Action = AViewTargets 543 543 end 544 544 end … … 591 591 object ActionList1: TActionList 592 592 Images = ImageList1 593 left = 624594 top = 64593 left = 112 594 top = 216 595 595 object AProjectNew: TAction 596 596 Category = 'Project' … … 688 688 OnExecute = AViewCompiledSoruceExecute 689 689 end 690 object AView Producers: TAction690 object AViewTargets: TAction 691 691 Category = 'View' 692 Caption = ' Producers'693 OnExecute = AView ProducersExecute692 Caption = 'Targets' 693 OnExecute = AViewTargetsExecute 694 694 end 695 695 end … … 707 707 end 708 708 object ImageList1: TImageList 709 left = 624710 top = 1 12709 left = 344 710 top = 184 711 711 Bitmap = { 712 712 4C690E0000001000000010000000000000000000000000000000000000000000 -
trunk/IDE/Forms/UMainForm.lrt
r41 r42 11 11 TMAINFORM.MENUITEM12.CAPTION=- 12 12 TMAINFORM.MENUITEM7.CAPTION=Run 13 TMAINFORM.MENUITEMPRODUCER.CAPTION= Producer13 TMAINFORM.MENUITEMPRODUCER.CAPTION=Target 14 14 TMAINFORM.MENUITEM15.CAPTION=View 15 15 TMAINFORM.MENUITEM22.CAPTION=- … … 36 36 TMAINFORM.AVIEWCODETREE.CAPTION=Code tree 37 37 TMAINFORM.AVIEWCOMPILEDSORUCE.CAPTION=Compiled source 38 TMAINFORM.AVIEW PRODUCERS.CAPTION=Producers38 TMAINFORM.AVIEWTARGETS.CAPTION=Targets -
trunk/IDE/Forms/UMainForm.pas
r41 r42 29 29 TMainForm = class(TForm) 30 30 ABuild: TAction; 31 AView Producers: TAction;31 AViewTargets: TAction; 32 32 AViewCompiledSoruce: TAction; 33 33 AViewCodeTree: TAction; … … 114 114 procedure AViewMessagesExecute(Sender: TObject); 115 115 procedure AViewOptionsExecute(Sender: TObject); 116 procedure AView ProducersExecute(Sender: TObject);116 procedure AViewTargetsExecute(Sender: TObject); 117 117 procedure AViewProjectExecute(Sender: TObject); 118 118 procedure AViewSourceEditorExecute(Sender: TObject); … … 156 156 uses 157 157 UMessagesForm, UCodeForm, UProjectManager, UCommon, UAboutForm, UFormOptions, 158 U CompilersForm, UTarget, UAnalyzer, UProducer;158 UFormTargets, UTarget, UAnalyzer, UProducer; 159 159 160 160 resourcestring … … 250 250 end; 251 251 252 procedure TMainForm.AView ProducersExecute(Sender: TObject);253 begin 254 Form Producers.Show;252 procedure TMainForm.AViewTargetsExecute(Sender: TObject); 253 begin 254 FormTargets.Show; 255 255 end; 256 256 -
trunk/IDE/Languages/Transpascal.cs.po
r41 r42 102 102 msgstr "Cesta vykonání" 103 103 104 #: tformtargets.caption 105 msgctxt "tformtargets.caption" 106 msgid "Targets" 107 msgstr "" 108 109 #: tformtargets.listview1.columns[0].caption 110 msgctxt "tformtargets.listview1.columns[0].caption" 111 msgid "Name" 112 msgstr "Jméno" 113 114 #: tformtargets.listview1.columns[1].caption 115 msgctxt "tformtargets.listview1.columns[1].caption" 116 msgid "Execution path" 117 msgstr "Cesta vykonání" 118 104 119 #: tmainform.aabout.caption 105 120 msgid "About..." … … 183 198 msgstr "Volby" 184 199 185 #: tmainform.aviewproducers.caption186 msgctxt "tmainform.aviewproducers.caption"187 msgid "Producers"188 msgstr "Tvůrci"189 190 200 #: tmainform.aviewproject.caption 191 201 msgctxt "tmainform.aviewproject.caption" … … 197 207 msgstr "Zdrojový editor" 198 208 209 #: tmainform.aviewtargets.caption 210 msgctxt "tmainform.aviewtargets.caption" 211 msgid "Targets" 212 msgstr "" 213 199 214 #: tmainform.caption 200 215 msgid "Transpascal IDE" … … 234 249 235 250 #: tmainform.menuitemproducer.caption 236 msgid "Producer" 251 #, fuzzy 252 #| msgid "Producer" 253 msgid "Target" 237 254 msgstr "Tvůrce" 238 255 … … 317 334 318 335 #: ucompilersform.scompilerpath 336 msgctxt "ucompilersform.scompilerpath" 337 msgid "Compiler path" 338 msgstr "Cesta překladače" 339 340 #: uformtargets.scompileroptions 341 msgctxt "uformtargets.scompileroptions" 342 msgid "Compiler options" 343 msgstr "Volby překladače" 344 345 #: uformtargets.scompilerpath 346 msgctxt "uformtargets.scompilerpath" 319 347 msgid "Compiler path" 320 348 msgstr "Cesta překladače" -
trunk/IDE/Languages/Transpascal.po
r41 r42 94 94 msgstr "" 95 95 96 #: tformtargets.caption 97 msgctxt "tformtargets.caption" 98 msgid "Targets" 99 msgstr "" 100 101 #: tformtargets.listview1.columns[0].caption 102 msgctxt "TFORMTARGETS.LISTVIEW1.COLUMNS[0].CAPTION" 103 msgid "Name" 104 msgstr "" 105 106 #: tformtargets.listview1.columns[1].caption 107 msgctxt "TFORMTARGETS.LISTVIEW1.COLUMNS[1].CAPTION" 108 msgid "Execution path" 109 msgstr "" 110 96 111 #: tmainform.aabout.caption 97 112 msgid "About..." … … 175 190 msgstr "" 176 191 177 #: tmainform.aviewproducers.caption178 msgctxt "TMAINFORM.AVIEWPRODUCERS.CAPTION"179 msgid "Producers"180 msgstr ""181 182 192 #: tmainform.aviewproject.caption 183 193 msgctxt "tmainform.aviewproject.caption" … … 189 199 msgstr "" 190 200 201 #: tmainform.aviewtargets.caption 202 msgctxt "TMAINFORM.AVIEWTARGETS.CAPTION" 203 msgid "Targets" 204 msgstr "" 205 191 206 #: tmainform.caption 192 207 msgid "Transpascal IDE" … … 226 241 227 242 #: tmainform.menuitemproducer.caption 228 msgid " Producer"243 msgid "Target" 229 244 msgstr "" 230 245 … … 309 324 310 325 #: ucompilersform.scompilerpath 326 msgctxt "ucompilersform.scompilerpath" 327 msgid "Compiler path" 328 msgstr "" 329 330 #: uformtargets.scompileroptions 331 msgctxt "uformtargets.scompileroptions" 332 msgid "Compiler options" 333 msgstr "" 334 335 #: uformtargets.scompilerpath 336 msgctxt "uformtargets.scompilerpath" 311 337 msgid "Compiler path" 312 338 msgstr "" -
trunk/IDE/Transpascal.lpi
r41 r42 190 190 </Unit11> 191 191 <Unit12> 192 <Filename Value="Forms\U CompilersForm.pas"/>193 <IsPartOfProject Value="True"/> 194 <ComponentName Value="Form Producers"/>195 <HasResources Value="True"/> 196 <ResourceBaseClass Value="Form"/> 197 <UnitName Value="U CompilersForm"/>192 <Filename Value="Forms\UFormTargets.pas"/> 193 <IsPartOfProject Value="True"/> 194 <ComponentName Value="FormTargets"/> 195 <HasResources Value="True"/> 196 <ResourceBaseClass Value="Form"/> 197 <UnitName Value="UFormTargets"/> 198 198 </Unit12> 199 199 <Unit13> -
trunk/IDE/Transpascal.lpr
r40 r42 11 11 UTextSource, UProject, UApplicationInfo, TranspascalCompiler, UProjectManager, UCodeForm, UMessagesForm, 12 12 UCompiledForm, UCodeTreeForm, TemplateGenerics, CoolTranslator, Common, 13 UAboutForm, UFormOptions, U CompilersForm, UCompilerSettingsForm;13 UAboutForm, UFormOptions, UFormTargets, UCompilerSettingsForm; 14 14 15 15 {$R *.res} … … 38 38 Application.CreateForm(TFormOptions, FormOptions); 39 39 Application.CreateForm(TCompilerSettingsForm, CompilerSettingsForm); 40 Application.CreateForm(TForm Producers, FormProducers);40 Application.CreateForm(TFormTargets, FormTargets); 41 41 Application.Run; 42 42 end.
Note:
See TracChangeset
for help on using the changeset viewer.