Changeset 45
- Timestamp:
- Mar 4, 2012, 9:56:47 AM (13 years ago)
- Location:
- trunk/IDE
- Files:
-
- 24 added
- 16 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE/Forms/UFormOptions.pas
r35 r45 34 34 35 35 uses 36 U MainForm, ULanguages;36 UFormMain, ULanguages; 37 37 38 38 { TFormOptions } … … 41 41 begin 42 42 if ComboBoxLanguage.ItemIndex <> -1 then 43 MainForm.CoolTranslator1.Language := TLanguage(ComboBoxLanguage.Items.Objects[ComboBoxLanguage.ItemIndex]);44 MainForm.ReopenLastOpenedFile := CheckBoxReopenProject.Checked;43 FormMain.CoolTranslator1.Language := TLanguage(ComboBoxLanguage.Items.Objects[ComboBoxLanguage.ItemIndex]); 44 FormMain.ReopenLastOpenedFile := CheckBoxReopenProject.Checked; 45 45 end; 46 46 47 47 procedure TFormOptions.FormShow(Sender: TObject); 48 48 begin 49 MainForm.CoolTranslator1.LanguageListToStrings(ComboBoxLanguage.Items);50 ComboBoxLanguage.ItemIndex := ComboBoxLanguage.Items.IndexOfObject( MainForm.CoolTranslator1.Language);49 FormMain.CoolTranslator1.LanguageListToStrings(ComboBoxLanguage.Items); 50 ComboBoxLanguage.ItemIndex := ComboBoxLanguage.Items.IndexOfObject(FormMain.CoolTranslator1.Language); 51 51 if ComboBoxLanguage.ItemIndex = -1 then ComboBoxLanguage.ItemIndex := 0; 52 CheckBoxReopenProject.Checked := MainForm.ReopenLastOpenedFile;52 CheckBoxReopenProject.Checked := FormMain.ReopenLastOpenedFile; 53 53 end; 54 54 -
trunk/IDE/Forms/UFormTargets.pas
r42 r45 31 31 32 32 uses 33 U MainForm, UCompiler, UCompilerSettingsForm, UProducer, UTarget;33 UFormMain, UCompiler, UFormCompilerSettings, UProducer, UTarget; 34 34 35 35 resourcestring … … 46 46 procedure TFormTargets.ListView1Data(Sender: TObject; Item: TListItem); 47 47 begin 48 if (Item.Index >= 0) and (Item.Index < MainForm.Compiler.Targets.Count) then49 with TTarget( MainForm.Compiler.Targets[Item.Index]) do begin48 if (Item.Index >= 0) and (Item.Index < FormMain.Compiler.Targets.Count) then 49 with TTarget(FormMain.Compiler.Targets[Item.Index]) do begin 50 50 Item.Caption := Name; 51 Item.Data := MainForm.Compiler.Targets[Item.Index];51 Item.Data := FormMain.Compiler.Targets[Item.Index]; 52 52 //Item.SubItems.Add(Producer.CompilerPath); 53 53 end; … … 57 57 begin 58 58 if Assigned(ListView1.Selected) then begin 59 CompilerSettingsForm.LoadFromProducer(TProducer(ListView1.Selected.Data));60 if CompilerSettingsForm.ShowModal = mrOk then61 CompilerSettingsForm.SaveToProducer(TProducer(ListView1.Selected.Data));59 FormCompilerSettings.LoadFromProducer(TProducer(ListView1.Selected.Data)); 60 if FormCompilerSettings.ShowModal = mrOk then 61 FormCompilerSettings.SaveToProducer(TProducer(ListView1.Selected.Data)); 62 62 ReloadList; 63 63 end; … … 66 66 procedure TFormTargets.ReloadList; 67 67 begin 68 ListView1.Items.Count := MainForm.Compiler.Targets.Count;68 ListView1.Items.Count := FormMain.Compiler.Targets.Count; 69 69 ListView1.Refresh; 70 70 end; -
trunk/IDE/Languages/Transpascal.cs.po
r44 r45 11 11 12 12 #: taboutform.caption 13 msgctxt "taboutform.caption" 13 14 msgid "About" 14 15 msgstr "O programu" 15 16 16 17 #: taboutform.okbutton.caption 18 msgctxt "taboutform.okbutton.caption" 17 19 msgid "OK" 18 20 msgstr "OK" … … 28 30 29 31 #: tcompilersettingsform.button1.caption 32 msgctxt "tcompilersettingsform.button1.caption" 30 33 msgid "Browse" 31 34 msgstr "Procházet..." … … 47 50 48 51 #: tcompilersettingsform.label1.caption 52 msgctxt "tcompilersettingsform.label1.caption" 49 53 msgid "Compiler path:" 50 54 msgstr "Cesta překladače:" 55 56 #: tformabout.caption 57 msgctxt "tformabout.caption" 58 msgid "About" 59 msgstr "O programu" 60 61 #: tformabout.okbutton.caption 62 msgctxt "tformabout.okbutton.caption" 63 msgid "OK" 64 msgstr "OK" 65 66 #: tformcodetree.caption 67 msgctxt "tformcodetree.caption" 68 msgid "Code tree" 69 msgstr "Strom kódu" 51 70 52 71 #: tformcompilers.caption … … 64 83 msgstr "Cesta vykonání" 65 84 85 #: tformcompilersettings.button1.caption 86 msgctxt "tformcompilersettings.button1.caption" 87 msgid "Browse" 88 msgstr "Procházet..." 89 90 #: tformcompilersettings.buttoncancel.caption 91 msgctxt "tformcompilersettings.buttoncancel.caption" 92 msgid "Cancel" 93 msgstr "Zrušit" 94 95 #: tformcompilersettings.buttonok.caption 96 msgctxt "tformcompilersettings.buttonok.caption" 97 msgid "Ok" 98 msgstr "Ok" 99 100 #: tformcompilersettings.caption 101 msgctxt "tformcompilersettings.caption" 102 msgid "Compiler options" 103 msgstr "Volbny překladače" 104 105 #: tformcompilersettings.label1.caption 106 msgctxt "tformcompilersettings.label1.caption" 107 msgid "Compiler path:" 108 msgstr "Cesta překladače:" 109 110 #: tformmain.aabout.caption 111 msgctxt "tformmain.aabout.caption" 112 msgid "About..." 113 msgstr "O aplikaci..." 114 115 #: tformmain.abuild.caption 116 msgctxt "tformmain.abuild.caption" 117 msgid "Build" 118 msgstr "Sestavit" 119 120 #: tformmain.aexit.caption 121 msgctxt "tformmain.aexit.caption" 122 msgid "Exit" 123 msgstr "Ukončit" 124 125 #: tformmain.ahomepage.caption 126 msgctxt "tformmain.ahomepage.caption" 127 msgid "Homepage" 128 msgstr "Domovská stránka" 129 130 #: tformmain.apause.caption 131 msgctxt "tformmain.apause.caption" 132 msgid "Pause" 133 msgstr "Pozastavit" 134 135 #: tformmain.aprojectclose.caption 136 msgctxt "tformmain.aprojectclose.caption" 137 msgid "Close" 138 msgstr "Zavřít" 139 140 #: tformmain.aprojectnew.caption 141 msgctxt "tformmain.aprojectnew.caption" 142 msgid "New" 143 msgstr "Nový" 144 145 #: tformmain.aprojectnew.hint 146 msgctxt "tformmain.aprojectnew.hint" 147 msgid "Create new project" 148 msgstr "Vytvořit nový projekt" 149 150 #: tformmain.aprojectopen.caption 151 msgctxt "tformmain.aprojectopen.caption" 152 msgid "Open..." 153 msgstr "Otevřít..." 154 155 #: tformmain.aprojectopen.hint 156 msgctxt "tformmain.aprojectopen.hint" 157 msgid "Open project" 158 msgstr "Otevřít projekt" 159 160 #: tformmain.aprojectsave.caption 161 msgctxt "tformmain.aprojectsave.caption" 162 msgid "Save" 163 msgstr "Uložit" 164 165 #: tformmain.aprojectsave.hint 166 msgctxt "tformmain.aprojectsave.hint" 167 msgid "Save project to disk" 168 msgstr "Uložit projekt na disk" 169 170 #: tformmain.aprojectsaveas.caption 171 msgctxt "tformmain.aprojectsaveas.caption" 172 msgid "Save as..." 173 msgstr "Uložit jako..." 174 175 #: tformmain.aprojectsaveas.hint 176 msgctxt "tformmain.aprojectsaveas.hint" 177 msgid "Save project with custom name" 178 msgstr "Uložit projekt s vlastním jménem" 179 180 #: tformmain.areset.caption 181 msgctxt "tformmain.areset.caption" 182 msgid "Reset" 183 msgstr "Vynulovat" 184 185 #: tformmain.arun.caption 186 msgctxt "tformmain.arun.caption" 187 msgid "Run" 188 msgstr "Spustit" 189 190 #: tformmain.aruntocursor.caption 191 msgctxt "tformmain.aruntocursor.caption" 192 msgid "Run to cursor" 193 msgstr "Spustit po ukazatel" 194 195 #: tformmain.astepin.caption 196 msgctxt "tformmain.astepin.caption" 197 msgid "Step in" 198 msgstr "Vejít do" 199 200 #: tformmain.astepout.caption 201 msgctxt "tformmain.astepout.caption" 202 msgid "Step out" 203 msgstr "Vyjít ven" 204 205 #: tformmain.astepover.caption 206 msgctxt "tformmain.astepover.caption" 207 msgid "Step over" 208 msgstr "Přejít přes" 209 210 #: tformmain.astop.caption 211 msgctxt "tformmain.astop.caption" 212 msgid "Stop" 213 msgstr "Zastavit" 214 215 #: tformmain.aviewcodetree.caption 216 msgctxt "tformmain.aviewcodetree.caption" 217 msgid "Code tree" 218 msgstr "Strom kódu" 219 220 #: tformmain.aviewcompiledsoruce.caption 221 msgctxt "tformmain.aviewcompiledsoruce.caption" 222 msgid "Compiled source" 223 msgstr "Přeložený zdroj" 224 225 #: tformmain.aviewmessages.caption 226 msgctxt "tformmain.aviewmessages.caption" 227 msgid "Messages" 228 msgstr "Zprávy" 229 230 #: tformmain.aviewobjectinspector.caption 231 msgctxt "tformmain.aviewobjectinspector.caption" 232 msgid "Object inspector" 233 msgstr "Inspektor objektů" 234 235 #: tformmain.aviewoptions.caption 236 msgctxt "tformmain.aviewoptions.caption" 237 msgid "Options" 238 msgstr "Volby" 239 240 #: tformmain.aviewproject.caption 241 msgctxt "tformmain.aviewproject.caption" 242 msgid "Project manager" 243 msgstr "Správce projektu" 244 245 #: tformmain.aviewsourceeditor.caption 246 msgctxt "tformmain.aviewsourceeditor.caption" 247 msgid "Source editor" 248 msgstr "Zdrojový editor" 249 250 #: tformmain.aviewtargets.caption 251 msgctxt "tformmain.aviewtargets.caption" 252 msgid "Targets" 253 msgstr "Cíle" 254 255 #: tformmain.caption 256 msgctxt "tformmain.caption" 257 msgid "Transpascal IDE" 258 msgstr "Transpascal IDE" 259 260 #: tformmain.menuitem1.caption 261 msgctxt "tformmain.menuitem1.caption" 262 msgid "Project" 263 msgstr "Projekt" 264 265 #: tformmain.menuitem12.caption 266 msgctxt "tformmain.menuitem12.caption" 267 msgid "-" 268 msgstr "-" 269 270 #: tformmain.menuitem15.caption 271 msgctxt "tformmain.menuitem15.caption" 272 msgid "View" 273 msgstr "Zobrazit" 274 275 #: tformmain.menuitem22.caption 276 msgctxt "tformmain.menuitem22.caption" 277 msgid "-" 278 msgstr "-" 279 280 #: tformmain.menuitem27.caption 281 msgctxt "tformmain.menuitem27.caption" 282 msgid "-" 283 msgstr "-" 284 285 #: tformmain.menuitem7.caption 286 msgctxt "tformmain.menuitem7.caption" 287 msgid "Run" 288 msgstr "Spustit" 289 290 #: tformmain.menuitem9.caption 291 msgctxt "tformmain.menuitem9.caption" 292 msgid "Help" 293 msgstr "Nápověda" 294 295 #: tformmain.menuitemopenrecent.caption 296 msgctxt "tformmain.menuitemopenrecent.caption" 297 msgid "Open recent" 298 msgstr "Otevřít nedávné" 299 300 #: tformmain.menuitemproducer.caption 301 msgctxt "tformmain.menuitemproducer.caption" 302 msgid "Target" 303 msgstr "Cíl" 304 305 #: tformmain.tabsheetbreakpoints.caption 306 msgctxt "tformmain.tabsheetbreakpoints.caption" 307 msgid "Breakpoints" 308 msgstr "Body zastavení" 309 310 #: tformmain.tabsheetcodetree.caption 311 msgctxt "tformmain.tabsheetcodetree.caption" 312 msgid "Code Tree" 313 msgstr "Strom kódu" 314 315 #: tformmain.tabsheetcompiledproject.caption 316 msgctxt "tformmain.tabsheetcompiledproject.caption" 317 msgid "Target project" 318 msgstr "Cílový projekt" 319 320 #: tformmain.tabsheetmessages.caption 321 msgctxt "tformmain.tabsheetmessages.caption" 322 msgid "Messages" 323 msgstr "Zprávy" 324 325 #: tformmain.tabsheetproject.caption 326 msgctxt "tformmain.tabsheetproject.caption" 327 msgid "Project" 328 msgstr "Projekt" 329 330 #: tformmain.tabsheetsource.caption 331 msgctxt "tformmain.tabsheetsource.caption" 332 msgid "Source code" 333 msgstr "Zdrojový kód" 334 335 #: tformmain.tabsheettarget.caption 336 msgctxt "tformmain.tabsheettarget.caption" 337 msgid "Target code" 338 msgstr "Cílový kód" 339 340 #: tformmessages.caption 341 msgctxt "tformmessages.caption" 342 msgid "Messages" 343 msgstr "Zprávy" 344 345 #: tformmessages.listview1.columns[0].caption 346 msgctxt "tformmessages.listview1.columns[0].caption" 347 msgid "File" 348 msgstr "Soubor" 349 350 #: tformmessages.listview1.columns[1].caption 351 msgctxt "tformmessages.listview1.columns[1].caption" 352 msgid "Position" 353 msgstr "Pozice" 354 355 #: tformmessages.listview1.columns[2].caption 356 msgctxt "tformmessages.listview1.columns[2].caption" 357 msgid "Message" 358 msgstr "Zpráva" 359 66 360 #: tformoptions.buttoncancel.caption 67 361 msgctxt "tformoptions.buttoncancel.caption" … … 102 396 msgstr "Cesta vykonání" 103 397 398 #: tformproject.caption 399 msgctxt "tformproject.caption" 400 msgid "Project manager" 401 msgstr "Správce projektu" 402 403 #: tformsourcecode.caption 404 msgctxt "tformsourcecode.caption" 405 msgid "Source code" 406 msgstr "Zdrojový kód" 407 408 #: tformtargetcode.caption 409 msgctxt "tformtargetcode.caption" 410 msgid "Target code" 411 msgstr "Cílový kód" 412 104 413 #: tformtargets.caption 105 414 msgctxt "tformtargets.caption" … … 118 427 119 428 #: tmainform.aabout.caption 429 msgctxt "tmainform.aabout.caption" 120 430 msgid "About..." 121 431 msgstr "O aplikaci..." 122 432 123 433 #: tmainform.abuild.caption 434 msgctxt "tmainform.abuild.caption" 124 435 msgid "Build" 125 436 msgstr "Sestavit" 126 437 127 438 #: tmainform.aexit.caption 439 msgctxt "tmainform.aexit.caption" 128 440 msgid "Exit" 129 441 msgstr "Ukončit" 130 442 131 443 #: tmainform.ahomepage.caption 444 msgctxt "tmainform.ahomepage.caption" 132 445 msgid "Homepage" 133 446 msgstr "Domovská stránka" 134 447 135 448 #: tmainform.apause.caption 449 msgctxt "tmainform.apause.caption" 136 450 msgid "Pause" 137 451 msgstr "Pozastavit" 138 452 139 453 #: tmainform.aprojectclose.caption 454 msgctxt "tmainform.aprojectclose.caption" 140 455 msgid "Close" 141 456 msgstr "Zavřít" 142 457 143 458 #: tmainform.aprojectnew.caption 459 msgctxt "tmainform.aprojectnew.caption" 144 460 msgid "New" 145 461 msgstr "Nový" 146 462 147 463 #: tmainform.aprojectnew.hint 464 msgctxt "tmainform.aprojectnew.hint" 148 465 msgid "Create new project" 149 466 msgstr "Vytvořit nový projekt" 150 467 151 468 #: tmainform.aprojectopen.caption 469 msgctxt "tmainform.aprojectopen.caption" 152 470 msgid "Open..." 153 471 msgstr "Otevřít..." 154 472 155 473 #: tmainform.aprojectopen.hint 474 msgctxt "tmainform.aprojectopen.hint" 156 475 msgid "Open project" 157 476 msgstr "Otevřít projekt" 158 477 159 478 #: tmainform.aprojectsave.caption 479 msgctxt "tmainform.aprojectsave.caption" 160 480 msgid "Save" 161 481 msgstr "Uložit" 162 482 163 483 #: tmainform.aprojectsave.hint 484 msgctxt "tmainform.aprojectsave.hint" 164 485 msgid "Save project to disk" 165 486 msgstr "Uložit projekt na disk" 166 487 167 488 #: tmainform.aprojectsaveas.caption 489 msgctxt "tmainform.aprojectsaveas.caption" 168 490 msgid "Save as..." 169 491 msgstr "Uložit jako..." 170 492 171 493 #: tmainform.aprojectsaveas.hint 494 msgctxt "tmainform.aprojectsaveas.hint" 172 495 msgid "Save project with custom name" 173 496 msgstr "Uložit projekt s vlastním jménem" 174 497 175 498 #: tmainform.areset.caption 499 msgctxt "tmainform.areset.caption" 176 500 msgid "Reset" 177 501 msgstr "Vynulovat" … … 183 507 184 508 #: tmainform.aruntocursor.caption 509 msgctxt "tmainform.aruntocursor.caption" 185 510 msgid "Run to cursor" 186 511 msgstr "Spustit po ukazatel" 187 512 188 513 #: tmainform.astepin.caption 514 msgctxt "tmainform.astepin.caption" 189 515 msgid "Step in" 190 516 msgstr "Vejít do" 191 517 192 518 #: tmainform.astepout.caption 519 msgctxt "tmainform.astepout.caption" 193 520 msgid "Step out" 194 521 msgstr "Vyjít ven" 195 522 196 523 #: tmainform.astepover.caption 524 msgctxt "tmainform.astepover.caption" 197 525 msgid "Step over" 198 526 msgstr "Přejít přes" 199 527 200 528 #: tmainform.astop.caption 529 msgctxt "tmainform.astop.caption" 201 530 msgid "Stop" 202 531 msgstr "Zastavit" 203 532 204 533 #: tmainform.aviewcodetree.caption 534 msgctxt "tmainform.aviewcodetree.caption" 205 535 msgid "Code tree" 206 536 msgstr "Strom kódu" … … 232 562 233 563 #: tmainform.aviewsourceeditor.caption 564 msgctxt "tmainform.aviewsourceeditor.caption" 234 565 msgid "Source editor" 235 566 msgstr "Zdrojový editor" … … 241 572 242 573 #: tmainform.caption 574 msgctxt "tmainform.caption" 243 575 msgid "Transpascal IDE" 244 576 msgstr "Transpascal IDE" … … 255 587 256 588 #: tmainform.menuitem15.caption 589 msgctxt "tmainform.menuitem15.caption" 257 590 msgid "View" 258 591 msgstr "Zobrazit" … … 274 607 275 608 #: tmainform.menuitem9.caption 609 msgctxt "tmainform.menuitem9.caption" 276 610 msgid "Help" 277 611 msgstr "Nápověda" 278 612 279 613 #: tmainform.menuitemopenrecent.caption 614 msgctxt "tmainform.menuitemopenrecent.caption" 280 615 msgid "Open recent" 281 616 msgstr "Otevřít nedávné" … … 283 618 #: tmainform.menuitemproducer.caption 284 619 #| msgid "Producer" 620 msgctxt "tmainform.menuitemproducer.caption" 285 621 msgid "Target" 286 622 msgstr "Cíl" 287 623 288 624 #: tmainform.tabsheetbreakpoints.caption 625 msgctxt "tmainform.tabsheetbreakpoints.caption" 289 626 msgid "Breakpoints" 290 627 msgstr "Body zastavení" … … 296 633 297 634 #: tmainform.tabsheetcompiledproject.caption 635 msgctxt "tmainform.tabsheetcompiledproject.caption" 298 636 msgid "Target project" 299 637 msgstr "Cílový projekt" … … 315 653 316 654 #: tmainform.tabsheettarget.caption 655 msgctxt "tmainform.tabsheettarget.caption" 317 656 msgid "Target code" 318 657 msgstr "Cílový kód" … … 324 663 325 664 #: tmessagesform.listview1.columns[0].caption 665 msgctxt "tmessagesform.listview1.columns[0].caption" 326 666 msgid "File" 327 667 msgstr "Soubor" 328 668 329 669 #: tmessagesform.listview1.columns[1].caption 670 msgctxt "tmessagesform.listview1.columns[1].caption" 330 671 msgid "Position" 331 672 msgstr "Pozice" 332 673 333 674 #: tmessagesform.listview1.columns[2].caption 675 msgctxt "tmessagesform.listview1.columns[2].caption" 334 676 msgid "Message" 335 677 msgstr "Zpráva" … … 341 683 342 684 #: uaboutform.sapplicationname 685 msgctxt "uaboutform.sapplicationname" 343 686 msgid "Application name" 344 687 msgstr "Jméno aplikace" 345 688 346 689 #: uaboutform.semail 690 msgctxt "uaboutform.semail" 347 691 msgid "E-mail" 348 692 msgstr "E-mail" 349 693 350 694 #: uaboutform.smanufacturer 695 msgctxt "uaboutform.smanufacturer" 351 696 msgid "Company" 352 697 msgstr "Společnost" 353 698 354 699 #: uaboutform.sreleasedate 700 msgctxt "uaboutform.sreleasedate" 355 701 msgid "Release date" 356 702 msgstr "Datum uvolnění" 357 703 358 704 #: uaboutform.sversion 705 msgctxt "uaboutform.sversion" 359 706 msgid "Version" 360 707 msgstr "Verze" … … 370 717 msgstr "Cesta překladače" 371 718 719 #: uformabout.sapplicationname 720 msgctxt "uformabout.sapplicationname" 721 msgid "Application name" 722 msgstr "Jméno aplikace" 723 724 #: uformabout.semail 725 msgctxt "uformabout.semail" 726 msgid "E-mail" 727 msgstr "E-mail" 728 729 #: uformabout.smanufacturer 730 msgctxt "uformabout.smanufacturer" 731 msgid "Company" 732 msgstr "Společnost" 733 734 #: uformabout.sreleasedate 735 msgctxt "uformabout.sreleasedate" 736 msgid "Release date" 737 msgstr "Datum uvolnění" 738 739 #: uformabout.sversion 740 msgctxt "uformabout.sversion" 741 msgid "Version" 742 msgstr "Verze" 743 744 #: uformmain.snewproject 745 msgctxt "uformmain.snewproject" 746 msgid "New project" 747 msgstr "Nový projekt" 748 372 749 #: uformtargets.scompileroptions 373 750 msgctxt "uformtargets.scompileroptions" … … 381 758 382 759 #: umainform.snewproject 760 msgctxt "umainform.snewproject" 383 761 msgid "New project" 384 762 msgstr "Nový projekt" -
trunk/IDE/Languages/Transpascal.po
r43 r45 3 3 4 4 #: taboutform.caption 5 msgctxt "taboutform.caption" 5 6 msgid "About" 6 7 msgstr "" 7 8 8 9 #: taboutform.okbutton.caption 10 msgctxt "taboutform.okbutton.caption" 9 11 msgid "OK" 10 12 msgstr "" … … 20 22 21 23 #: tcompilersettingsform.button1.caption 24 msgctxt "tcompilersettingsform.button1.caption" 22 25 msgid "Browse" 23 26 msgstr "" … … 39 42 40 43 #: tcompilersettingsform.label1.caption 44 msgctxt "tcompilersettingsform.label1.caption" 41 45 msgid "Compiler path:" 46 msgstr "" 47 48 #: tformabout.caption 49 msgctxt "TFORMABOUT.CAPTION" 50 msgid "About" 51 msgstr "" 52 53 #: tformabout.okbutton.caption 54 msgctxt "TFORMABOUT.OKBUTTON.CAPTION" 55 msgid "OK" 56 msgstr "" 57 58 #: tformcodetree.caption 59 msgctxt "TFORMCODETREE.CAPTION" 60 msgid "Code tree" 42 61 msgstr "" 43 62 … … 56 75 msgstr "" 57 76 77 #: tformcompilersettings.button1.caption 78 msgctxt "TFORMCOMPILERSETTINGS.BUTTON1.CAPTION" 79 msgid "Browse" 80 msgstr "" 81 82 #: tformcompilersettings.buttoncancel.caption 83 msgctxt "TFORMCOMPILERSETTINGS.BUTTONCANCEL.CAPTION" 84 msgid "Cancel" 85 msgstr "" 86 87 #: tformcompilersettings.buttonok.caption 88 msgctxt "TFORMCOMPILERSETTINGS.BUTTONOK.CAPTION" 89 msgid "Ok" 90 msgstr "" 91 92 #: tformcompilersettings.caption 93 msgctxt "TFORMCOMPILERSETTINGS.CAPTION" 94 msgid "Compiler options" 95 msgstr "" 96 97 #: tformcompilersettings.label1.caption 98 msgctxt "TFORMCOMPILERSETTINGS.LABEL1.CAPTION" 99 msgid "Compiler path:" 100 msgstr "" 101 102 #: tformmain.aabout.caption 103 msgctxt "TFORMMAIN.AABOUT.CAPTION" 104 msgid "About..." 105 msgstr "" 106 107 #: tformmain.abuild.caption 108 msgctxt "TFORMMAIN.ABUILD.CAPTION" 109 msgid "Build" 110 msgstr "" 111 112 #: tformmain.aexit.caption 113 msgctxt "TFORMMAIN.AEXIT.CAPTION" 114 msgid "Exit" 115 msgstr "" 116 117 #: tformmain.ahomepage.caption 118 msgctxt "TFORMMAIN.AHOMEPAGE.CAPTION" 119 msgid "Homepage" 120 msgstr "" 121 122 #: tformmain.apause.caption 123 msgctxt "TFORMMAIN.APAUSE.CAPTION" 124 msgid "Pause" 125 msgstr "" 126 127 #: tformmain.aprojectclose.caption 128 msgctxt "TFORMMAIN.APROJECTCLOSE.CAPTION" 129 msgid "Close" 130 msgstr "" 131 132 #: tformmain.aprojectnew.caption 133 msgctxt "TFORMMAIN.APROJECTNEW.CAPTION" 134 msgid "New" 135 msgstr "" 136 137 #: tformmain.aprojectnew.hint 138 msgctxt "TFORMMAIN.APROJECTNEW.HINT" 139 msgid "Create new project" 140 msgstr "" 141 142 #: tformmain.aprojectopen.caption 143 msgctxt "TFORMMAIN.APROJECTOPEN.CAPTION" 144 msgid "Open..." 145 msgstr "" 146 147 #: tformmain.aprojectopen.hint 148 msgctxt "TFORMMAIN.APROJECTOPEN.HINT" 149 msgid "Open project" 150 msgstr "" 151 152 #: tformmain.aprojectsave.caption 153 msgctxt "TFORMMAIN.APROJECTSAVE.CAPTION" 154 msgid "Save" 155 msgstr "" 156 157 #: tformmain.aprojectsave.hint 158 msgctxt "TFORMMAIN.APROJECTSAVE.HINT" 159 msgid "Save project to disk" 160 msgstr "" 161 162 #: tformmain.aprojectsaveas.caption 163 msgctxt "TFORMMAIN.APROJECTSAVEAS.CAPTION" 164 msgid "Save as..." 165 msgstr "" 166 167 #: tformmain.aprojectsaveas.hint 168 msgctxt "TFORMMAIN.APROJECTSAVEAS.HINT" 169 msgid "Save project with custom name" 170 msgstr "" 171 172 #: tformmain.areset.caption 173 msgctxt "TFORMMAIN.ARESET.CAPTION" 174 msgid "Reset" 175 msgstr "" 176 177 #: tformmain.arun.caption 178 msgctxt "TFORMMAIN.ARUN.CAPTION" 179 msgid "Run" 180 msgstr "" 181 182 #: tformmain.aruntocursor.caption 183 msgctxt "TFORMMAIN.ARUNTOCURSOR.CAPTION" 184 msgid "Run to cursor" 185 msgstr "" 186 187 #: tformmain.astepin.caption 188 msgctxt "TFORMMAIN.ASTEPIN.CAPTION" 189 msgid "Step in" 190 msgstr "" 191 192 #: tformmain.astepout.caption 193 msgctxt "TFORMMAIN.ASTEPOUT.CAPTION" 194 msgid "Step out" 195 msgstr "" 196 197 #: tformmain.astepover.caption 198 msgctxt "TFORMMAIN.ASTEPOVER.CAPTION" 199 msgid "Step over" 200 msgstr "" 201 202 #: tformmain.astop.caption 203 msgctxt "TFORMMAIN.ASTOP.CAPTION" 204 msgid "Stop" 205 msgstr "" 206 207 #: tformmain.aviewcodetree.caption 208 msgctxt "TFORMMAIN.AVIEWCODETREE.CAPTION" 209 msgid "Code tree" 210 msgstr "" 211 212 #: tformmain.aviewcompiledsoruce.caption 213 msgctxt "TFORMMAIN.AVIEWCOMPILEDSORUCE.CAPTION" 214 msgid "Compiled source" 215 msgstr "" 216 217 #: tformmain.aviewmessages.caption 218 msgctxt "TFORMMAIN.AVIEWMESSAGES.CAPTION" 219 msgid "Messages" 220 msgstr "" 221 222 #: tformmain.aviewobjectinspector.caption 223 msgctxt "TFORMMAIN.AVIEWOBJECTINSPECTOR.CAPTION" 224 msgid "Object inspector" 225 msgstr "" 226 227 #: tformmain.aviewoptions.caption 228 msgctxt "TFORMMAIN.AVIEWOPTIONS.CAPTION" 229 msgid "Options" 230 msgstr "" 231 232 #: tformmain.aviewproject.caption 233 msgctxt "TFORMMAIN.AVIEWPROJECT.CAPTION" 234 msgid "Project manager" 235 msgstr "" 236 237 #: tformmain.aviewsourceeditor.caption 238 msgctxt "TFORMMAIN.AVIEWSOURCEEDITOR.CAPTION" 239 msgid "Source editor" 240 msgstr "" 241 242 #: tformmain.aviewtargets.caption 243 msgctxt "TFORMMAIN.AVIEWTARGETS.CAPTION" 244 msgid "Targets" 245 msgstr "" 246 247 #: tformmain.caption 248 msgctxt "TFORMMAIN.CAPTION" 249 msgid "Transpascal IDE" 250 msgstr "" 251 252 #: tformmain.menuitem1.caption 253 msgctxt "TFORMMAIN.MENUITEM1.CAPTION" 254 msgid "Project" 255 msgstr "" 256 257 #: tformmain.menuitem12.caption 258 msgctxt "TFORMMAIN.MENUITEM12.CAPTION" 259 msgid "-" 260 msgstr "" 261 262 #: tformmain.menuitem15.caption 263 msgctxt "TFORMMAIN.MENUITEM15.CAPTION" 264 msgid "View" 265 msgstr "" 266 267 #: tformmain.menuitem22.caption 268 msgctxt "TFORMMAIN.MENUITEM22.CAPTION" 269 msgid "-" 270 msgstr "" 271 272 #: tformmain.menuitem27.caption 273 msgctxt "TFORMMAIN.MENUITEM27.CAPTION" 274 msgid "-" 275 msgstr "" 276 277 #: tformmain.menuitem7.caption 278 msgctxt "TFORMMAIN.MENUITEM7.CAPTION" 279 msgid "Run" 280 msgstr "" 281 282 #: tformmain.menuitem9.caption 283 msgctxt "TFORMMAIN.MENUITEM9.CAPTION" 284 msgid "Help" 285 msgstr "" 286 287 #: tformmain.menuitemopenrecent.caption 288 msgctxt "TFORMMAIN.MENUITEMOPENRECENT.CAPTION" 289 msgid "Open recent" 290 msgstr "" 291 292 #: tformmain.menuitemproducer.caption 293 msgctxt "TFORMMAIN.MENUITEMPRODUCER.CAPTION" 294 msgid "Target" 295 msgstr "" 296 297 #: tformmain.tabsheetbreakpoints.caption 298 msgctxt "TFORMMAIN.TABSHEETBREAKPOINTS.CAPTION" 299 msgid "Breakpoints" 300 msgstr "" 301 302 #: tformmain.tabsheetcodetree.caption 303 msgctxt "TFORMMAIN.TABSHEETCODETREE.CAPTION" 304 msgid "Code Tree" 305 msgstr "" 306 307 #: tformmain.tabsheetcompiledproject.caption 308 msgctxt "TFORMMAIN.TABSHEETCOMPILEDPROJECT.CAPTION" 309 msgid "Target project" 310 msgstr "" 311 312 #: tformmain.tabsheetmessages.caption 313 msgctxt "TFORMMAIN.TABSHEETMESSAGES.CAPTION" 314 msgid "Messages" 315 msgstr "" 316 317 #: tformmain.tabsheetproject.caption 318 msgctxt "TFORMMAIN.TABSHEETPROJECT.CAPTION" 319 msgid "Project" 320 msgstr "" 321 322 #: tformmain.tabsheetsource.caption 323 msgctxt "TFORMMAIN.TABSHEETSOURCE.CAPTION" 324 msgid "Source code" 325 msgstr "" 326 327 #: tformmain.tabsheettarget.caption 328 msgctxt "TFORMMAIN.TABSHEETTARGET.CAPTION" 329 msgid "Target code" 330 msgstr "" 331 332 #: tformmessages.caption 333 msgctxt "TFORMMESSAGES.CAPTION" 334 msgid "Messages" 335 msgstr "" 336 337 #: tformmessages.listview1.columns[0].caption 338 msgctxt "TFORMMESSAGES.LISTVIEW1.COLUMNS[0].CAPTION" 339 msgid "File" 340 msgstr "" 341 342 #: tformmessages.listview1.columns[1].caption 343 msgctxt "TFORMMESSAGES.LISTVIEW1.COLUMNS[1].CAPTION" 344 msgid "Position" 345 msgstr "" 346 347 #: tformmessages.listview1.columns[2].caption 348 msgctxt "TFORMMESSAGES.LISTVIEW1.COLUMNS[2].CAPTION" 349 msgid "Message" 350 msgstr "" 351 58 352 #: tformoptions.buttoncancel.caption 59 353 msgctxt "tformoptions.buttoncancel.caption" … … 94 388 msgstr "" 95 389 390 #: tformproject.caption 391 msgctxt "TFORMPROJECT.CAPTION" 392 msgid "Project manager" 393 msgstr "" 394 395 #: tformsourcecode.caption 396 msgctxt "TFORMSOURCECODE.CAPTION" 397 msgid "Source code" 398 msgstr "" 399 400 #: tformtargetcode.caption 401 msgctxt "TFORMTARGETCODE.CAPTION" 402 msgid "Target code" 403 msgstr "" 404 96 405 #: tformtargets.caption 97 406 msgctxt "tformtargets.caption" … … 110 419 111 420 #: tmainform.aabout.caption 421 msgctxt "tmainform.aabout.caption" 112 422 msgid "About..." 113 423 msgstr "" 114 424 115 425 #: tmainform.abuild.caption 426 msgctxt "tmainform.abuild.caption" 116 427 msgid "Build" 117 428 msgstr "" 118 429 119 430 #: tmainform.aexit.caption 431 msgctxt "tmainform.aexit.caption" 120 432 msgid "Exit" 121 433 msgstr "" 122 434 123 435 #: tmainform.ahomepage.caption 436 msgctxt "tmainform.ahomepage.caption" 124 437 msgid "Homepage" 125 438 msgstr "" 126 439 127 440 #: tmainform.apause.caption 441 msgctxt "tmainform.apause.caption" 128 442 msgid "Pause" 129 443 msgstr "" 130 444 131 445 #: tmainform.aprojectclose.caption 446 msgctxt "tmainform.aprojectclose.caption" 132 447 msgid "Close" 133 448 msgstr "" 134 449 135 450 #: tmainform.aprojectnew.caption 451 msgctxt "tmainform.aprojectnew.caption" 136 452 msgid "New" 137 453 msgstr "" 138 454 139 455 #: tmainform.aprojectnew.hint 456 msgctxt "tmainform.aprojectnew.hint" 140 457 msgid "Create new project" 141 458 msgstr "" 142 459 143 460 #: tmainform.aprojectopen.caption 461 msgctxt "tmainform.aprojectopen.caption" 144 462 msgid "Open..." 145 463 msgstr "" 146 464 147 465 #: tmainform.aprojectopen.hint 466 msgctxt "tmainform.aprojectopen.hint" 148 467 msgid "Open project" 149 468 msgstr "" 150 469 151 470 #: tmainform.aprojectsave.caption 471 msgctxt "tmainform.aprojectsave.caption" 152 472 msgid "Save" 153 473 msgstr "" 154 474 155 475 #: tmainform.aprojectsave.hint 476 msgctxt "tmainform.aprojectsave.hint" 156 477 msgid "Save project to disk" 157 478 msgstr "" 158 479 159 480 #: tmainform.aprojectsaveas.caption 481 msgctxt "tmainform.aprojectsaveas.caption" 160 482 msgid "Save as..." 161 483 msgstr "" 162 484 163 485 #: tmainform.aprojectsaveas.hint 486 msgctxt "tmainform.aprojectsaveas.hint" 164 487 msgid "Save project with custom name" 165 488 msgstr "" 166 489 167 490 #: tmainform.areset.caption 491 msgctxt "tmainform.areset.caption" 168 492 msgid "Reset" 169 493 msgstr "" … … 175 499 176 500 #: tmainform.aruntocursor.caption 501 msgctxt "tmainform.aruntocursor.caption" 177 502 msgid "Run to cursor" 178 503 msgstr "" 179 504 180 505 #: tmainform.astepin.caption 506 msgctxt "tmainform.astepin.caption" 181 507 msgid "Step in" 182 508 msgstr "" 183 509 184 510 #: tmainform.astepout.caption 511 msgctxt "tmainform.astepout.caption" 185 512 msgid "Step out" 186 513 msgstr "" 187 514 188 515 #: tmainform.astepover.caption 516 msgctxt "tmainform.astepover.caption" 189 517 msgid "Step over" 190 518 msgstr "" 191 519 192 520 #: tmainform.astop.caption 521 msgctxt "tmainform.astop.caption" 193 522 msgid "Stop" 194 523 msgstr "" 195 524 196 525 #: tmainform.aviewcodetree.caption 526 msgctxt "tmainform.aviewcodetree.caption" 197 527 msgid "Code tree" 198 528 msgstr "" … … 224 554 225 555 #: tmainform.aviewsourceeditor.caption 556 msgctxt "tmainform.aviewsourceeditor.caption" 226 557 msgid "Source editor" 227 558 msgstr "" … … 233 564 234 565 #: tmainform.caption 566 msgctxt "tmainform.caption" 235 567 msgid "Transpascal IDE" 236 568 msgstr "" … … 247 579 248 580 #: tmainform.menuitem15.caption 581 msgctxt "tmainform.menuitem15.caption" 249 582 msgid "View" 250 583 msgstr "" … … 266 599 267 600 #: tmainform.menuitem9.caption 601 msgctxt "tmainform.menuitem9.caption" 268 602 msgid "Help" 269 603 msgstr "" 270 604 271 605 #: tmainform.menuitemopenrecent.caption 606 msgctxt "tmainform.menuitemopenrecent.caption" 272 607 msgid "Open recent" 273 608 msgstr "" 274 609 275 610 #: tmainform.menuitemproducer.caption 611 msgctxt "tmainform.menuitemproducer.caption" 276 612 msgid "Target" 277 613 msgstr "" 278 614 279 615 #: tmainform.tabsheetbreakpoints.caption 616 msgctxt "tmainform.tabsheetbreakpoints.caption" 280 617 msgid "Breakpoints" 281 618 msgstr "" … … 287 624 288 625 #: tmainform.tabsheetcompiledproject.caption 626 msgctxt "tmainform.tabsheetcompiledproject.caption" 289 627 msgid "Target project" 290 628 msgstr "" … … 306 644 307 645 #: tmainform.tabsheettarget.caption 646 msgctxt "tmainform.tabsheettarget.caption" 308 647 msgid "Target code" 309 648 msgstr "" … … 315 654 316 655 #: tmessagesform.listview1.columns[0].caption 656 msgctxt "tmessagesform.listview1.columns[0].caption" 317 657 msgid "File" 318 658 msgstr "" 319 659 320 660 #: tmessagesform.listview1.columns[1].caption 661 msgctxt "tmessagesform.listview1.columns[1].caption" 321 662 msgid "Position" 322 663 msgstr "" 323 664 324 665 #: tmessagesform.listview1.columns[2].caption 666 msgctxt "tmessagesform.listview1.columns[2].caption" 325 667 msgid "Message" 326 668 msgstr "" … … 332 674 333 675 #: uaboutform.sapplicationname 676 msgctxt "uaboutform.sapplicationname" 334 677 msgid "Application name" 335 678 msgstr "" 336 679 337 680 #: uaboutform.semail 681 msgctxt "uaboutform.semail" 338 682 msgid "E-mail" 339 683 msgstr "" 340 684 341 685 #: uaboutform.smanufacturer 686 msgctxt "uaboutform.smanufacturer" 342 687 msgid "Company" 343 688 msgstr "" 344 689 345 690 #: uaboutform.sreleasedate 691 msgctxt "uaboutform.sreleasedate" 346 692 msgid "Release date" 347 693 msgstr "" 348 694 349 695 #: uaboutform.sversion 696 msgctxt "uaboutform.sversion" 350 697 msgid "Version" 351 698 msgstr "" … … 361 708 msgstr "" 362 709 710 #: uformabout.sapplicationname 711 msgctxt "uformabout.sapplicationname" 712 msgid "Application name" 713 msgstr "" 714 715 #: uformabout.semail 716 msgctxt "uformabout.semail" 717 msgid "E-mail" 718 msgstr "" 719 720 #: uformabout.smanufacturer 721 msgctxt "uformabout.smanufacturer" 722 msgid "Company" 723 msgstr "" 724 725 #: uformabout.sreleasedate 726 msgctxt "uformabout.sreleasedate" 727 msgid "Release date" 728 msgstr "" 729 730 #: uformabout.sversion 731 msgctxt "uformabout.sversion" 732 msgid "Version" 733 msgstr "" 734 735 #: uformmain.snewproject 736 msgctxt "uformmain.snewproject" 737 msgid "New project" 738 msgstr "" 739 363 740 #: uformtargets.scompileroptions 364 741 msgctxt "uformtargets.scompileroptions" … … 372 749 373 750 #: umainform.snewproject 751 msgctxt "umainform.snewproject" 374 752 msgid "New project" 375 753 msgstr "" -
trunk/IDE/Transpascal.lpi
r42 r45 116 116 </Unit0> 117 117 <Unit1> 118 <Filename Value="Forms\U MainForm.pas"/>119 <IsPartOfProject Value="True"/> 120 <ComponentName Value=" MainForm"/>121 <HasResources Value="True"/> 122 <ResourceBaseClass Value="Form"/> 123 <UnitName Value="U MainForm"/>118 <Filename Value="Forms\UFormMain.pas"/> 119 <IsPartOfProject Value="True"/> 120 <ComponentName Value="FormMain"/> 121 <HasResources Value="True"/> 122 <ResourceBaseClass Value="Form"/> 123 <UnitName Value="UFormMain"/> 124 124 </Unit1> 125 125 <Unit2> … … 134 134 </Unit3> 135 135 <Unit4> 136 <Filename Value="Forms\U ProjectManager.pas"/>137 <IsPartOfProject Value="True"/> 138 <ComponentName Value=" ProjectManager"/>139 <ResourceBaseClass Value="Form"/> 140 <UnitName Value="U ProjectManager"/>136 <Filename Value="Forms\UFormProject.pas"/> 137 <IsPartOfProject Value="True"/> 138 <ComponentName Value="FormProject"/> 139 <ResourceBaseClass Value="Form"/> 140 <UnitName Value="UFormProject"/> 141 141 </Unit4> 142 142 <Unit5> 143 <Filename Value="Forms\U CodeForm.pas"/>144 <IsPartOfProject Value="True"/> 145 <ComponentName Value=" CodeForm"/>146 <ResourceBaseClass Value="Form"/> 147 <UnitName Value="U CodeForm"/>143 <Filename Value="Forms\UFormSourceCode.pas"/> 144 <IsPartOfProject Value="True"/> 145 <ComponentName Value="FormSourceCode"/> 146 <ResourceBaseClass Value="Form"/> 147 <UnitName Value="UFormSourceCode"/> 148 148 </Unit5> 149 149 <Unit6> 150 <Filename Value="Forms\U MessagesForm.pas"/>151 <IsPartOfProject Value="True"/> 152 <ComponentName Value=" MessagesForm"/>153 <ResourceBaseClass Value="Form"/> 154 <UnitName Value="U MessagesForm"/>150 <Filename Value="Forms\UFormMessages.pas"/> 151 <IsPartOfProject Value="True"/> 152 <ComponentName Value="FormMessages"/> 153 <ResourceBaseClass Value="Form"/> 154 <UnitName Value="UFormMessages"/> 155 155 </Unit6> 156 156 <Unit7> 157 <Filename Value="Forms\U CompiledForm.pas"/>158 <IsPartOfProject Value="True"/> 159 <ComponentName Value=" CompiledForm"/>160 <HasResources Value="True"/> 161 <ResourceBaseClass Value="Form"/> 162 <UnitName Value="U CompiledForm"/>157 <Filename Value="Forms\UFormTargetCode.pas"/> 158 <IsPartOfProject Value="True"/> 159 <ComponentName Value="FormTargetCode"/> 160 <HasResources Value="True"/> 161 <ResourceBaseClass Value="Form"/> 162 <UnitName Value="UFormTargetCode"/> 163 163 </Unit7> 164 164 <Unit8> 165 <Filename Value="Forms\U CodeTreeForm.pas"/>166 <IsPartOfProject Value="True"/> 167 <ComponentName Value=" CodeTreeForm"/>168 <ResourceBaseClass Value="Form"/> 169 <UnitName Value="U CodeTreeForm"/>165 <Filename Value="Forms\UFormCodeTree.pas"/> 166 <IsPartOfProject Value="True"/> 167 <ComponentName Value="FormCodeTree"/> 168 <ResourceBaseClass Value="Form"/> 169 <UnitName Value="UFormCodeTree"/> 170 170 </Unit8> 171 171 <Unit9> … … 175 175 </Unit9> 176 176 <Unit10> 177 <Filename Value="Forms\U AboutForm.pas"/>178 <IsPartOfProject Value="True"/> 179 <ComponentName Value=" AboutForm"/>180 <HasResources Value="True"/> 181 <ResourceBaseClass Value="Form"/> 182 <UnitName Value="U AboutForm"/>177 <Filename Value="Forms\UFormAbout.pas"/> 178 <IsPartOfProject Value="True"/> 179 <ComponentName Value="FormAbout"/> 180 <HasResources Value="True"/> 181 <ResourceBaseClass Value="Form"/> 182 <UnitName Value="UFormAbout"/> 183 183 </Unit10> 184 184 <Unit11> … … 198 198 </Unit12> 199 199 <Unit13> 200 <Filename Value="Forms\U CompilerSettingsForm.pas"/>201 <IsPartOfProject Value="True"/> 202 <ComponentName Value=" CompilerSettingsForm"/>203 <ResourceBaseClass Value="Form"/> 204 <UnitName Value="U CompilerSettingsForm"/>200 <Filename Value="Forms\UFormCompilerSettings.pas"/> 201 <IsPartOfProject Value="True"/> 202 <ComponentName Value="FormCompilerSettings"/> 203 <ResourceBaseClass Value="Form"/> 204 <UnitName Value="UFormCompilerSettings"/> 205 205 </Unit13> 206 206 </Units> -
trunk/IDE/Transpascal.lpr
r42 r45 8 8 {$ENDIF}{$ENDIF} 9 9 Forms, Interfaces, SysUtils, 10 UMainForm in 'UMainForm.pas' {MainForm}, 11 UTextSource, UProject, UApplicationInfo, TranspascalCompiler, UProjectManager, UCodeForm, UMessagesForm, 12 UCompiledForm, UCodeTreeForm, TemplateGenerics, CoolTranslator, Common, 13 UAboutForm, UFormOptions, UFormTargets, UCompilerSettingsForm; 10 UFormMain {MainForm}, 11 UTextSource, UProject, UApplicationInfo, TranspascalCompiler, UFormProject, 12 UFormSourceCode, UFormMessages, 13 UFormTargetCode, UFormCodeTree, TemplateGenerics, CoolTranslator, Common, 14 UFormAbout, UFormOptions, UFormTargets, UFormCompilerSettings; 14 15 15 16 {$R *.res} … … 29 30 30 31 Application.Initialize; 31 Application.CreateForm(T MainForm, MainForm);32 Application.CreateForm(T ProjectManager, ProjectManager);33 Application.CreateForm(T CodeForm, CodeForm);34 Application.CreateForm(T MessagesForm, MessagesForm);35 Application.CreateForm(T CompiledForm, CompiledForm);36 Application.CreateForm(T CodeTreeForm, CodeTreeForm);37 Application.CreateForm(T AboutForm, AboutForm);32 Application.CreateForm(TFormMain, FormMain); 33 Application.CreateForm(TFormProject, FormProject); 34 Application.CreateForm(TFormSourceCode, FormSourceCode); 35 Application.CreateForm(TFormMessages, FormMessages); 36 Application.CreateForm(TFormTargetCode, FormTargetCode); 37 Application.CreateForm(TFormCodeTree, FormCodeTree); 38 Application.CreateForm(TFormAbout, FormAbout); 38 39 Application.CreateForm(TFormOptions, FormOptions); 39 Application.CreateForm(T CompilerSettingsForm, CompilerSettingsForm);40 Application.CreateForm(TFormCompilerSettings, FormCompilerSettings); 40 41 Application.CreateForm(TFormTargets, FormTargets); 41 42 Application.Run; -
trunk/IDE/UApplicationInfo.pas
r43 r45 53 53 Name := 'Transpascal IDE'; 54 54 Identification := 1; 55 ReleaseDate := EncodeDate(2012, 2, 29);55 ReleaseDate := EncodeDate(2012, 3, 4); 56 56 MajorVersion := 0; 57 57 MinorVersion := 1;
Note:
See TracChangeset
for help on using the changeset viewer.