Commit 91b19b166486ac97d5c36492e4f3c775c39bfdef
1 parent
490289b9
Exists in
master
and in
67 other branches
ENH: Updated about
Showing
3 changed files
with
8 additions
and
5 deletions
Show diff stats
invesalius/gui/dialogs.py
... | ... | @@ -631,8 +631,8 @@ def ShowAboutDialog(parent): |
631 | 631 | info = wx.AboutDialogInfo() |
632 | 632 | info.Name = "InVesalius" |
633 | 633 | info.Version = "3.0 - Beta 3" |
634 | - info.Copyright = _("(c) 2007-2010 Renato Archer Information Technology Centre") | |
635 | - info.Description = wordwrap(_("InVesalius is a medical imaging program for 3D reconstruction. It uses a sequence of 2D DICOM image files acquired with CT or MRI scanners. InVesalius allows for the export of 3D volumes or surfaces as STL files for creating physical models of a patient's anatomy using rapid prototyping technologies."), 350, wx.ClientDC(parent)) | |
634 | + info.Copyright = _("(c) 2007-2012 Renato Archer Information Technology Centre - CTI") | |
635 | + info.Description = wordwrap(_("InVesalius is a medical imaging program for 3D reconstruction. It uses a sequence of 2D DICOM image files acquired with CT or MRI scanners. InVesalius allows for the export of 3D volumes or surfaces as STL files for creating physical models of a patient's anatomy using rapid prototyping technologies. The software has the support of the CTI, CNPq and Ministry of Health"), 350, wx.ClientDC(parent)) | |
636 | 636 | |
637 | 637 | # _("InVesalius is a software for medical imaging 3D reconstruction. ")+\ |
638 | 638 | # _("Its input is a sequency of DICOM 2D image files acquired with CT or MR.\n\n")+\ |
... | ... | @@ -644,7 +644,8 @@ def ShowAboutDialog(parent): |
644 | 644 | |
645 | 645 | info.Developers = ["Tatiana Al-Chueyr", |
646 | 646 | "Paulo Henrique Junqueira Amorim", |
647 | - "Thiago Franco de Moraes"] | |
647 | + "Thiago Franco de Moraes", | |
648 | + "Jorge Vicente Lopes da Silva"] | |
648 | 649 | |
649 | 650 | info.Translators = ["Alex P. Natsios", |
650 | 651 | "Andreas Loupasakis", |
... | ... | @@ -659,7 +660,7 @@ def ShowAboutDialog(parent): |
659 | 660 | "Sebastian Hilbert", |
660 | 661 | "Semarang Pari"] |
661 | 662 | |
662 | - info.DocWriters = ["Fabio Francisco da Silva (PT)"] | |
663 | + #info.DocWriters = ["Fabio Francisco da Silva (PT)"] | |
663 | 664 | |
664 | 665 | info.Artists = ["Otavio Henrique Junqueira Amorim"] |
665 | 666 | ... | ... |
invesalius/gui/frame.py
... | ... | @@ -467,7 +467,7 @@ class MenuBar(wx.MenuBar): |
467 | 467 | file_menu = wx.Menu() |
468 | 468 | app = file_menu.Append |
469 | 469 | app(const.ID_DICOM_IMPORT, _("Import DICOM...\tCtrl+I")) |
470 | - #####app(const.ID_DICOM_NETWORK, _("Retrieve DICOM from PACS")) | |
470 | + #app(const.ID_DICOM_NETWORK, _("Retrieve DICOM from PACS")) | |
471 | 471 | file_menu.AppendMenu(const.ID_IMPORT_OTHERS_FILES, _("Import Others Files"), others_file_menu) |
472 | 472 | app(const.ID_PROJECT_OPEN, _("Open Project...\tCtrl+O")) |
473 | 473 | app(const.ID_PROJECT_SAVE, _("Save Project\tCtrl+S")) | ... | ... |