Commit 03b444c98f951760ea9bca500bb4424ce262530e
1 parent
3b526c22
Exists in
master
and in
37 other branches
Updated some GUI strings
Showing
2 changed files
with
5 additions
and
5 deletions
Show diff stats
invesalius/gui/dialogs.py
... | ... | @@ -762,8 +762,8 @@ def ShowAboutDialog(parent): |
762 | 762 | |
763 | 763 | info = wx.AboutDialogInfo() |
764 | 764 | info.Name = "InVesalius" |
765 | - info.Version = "3.0 - Beta 5" | |
766 | - info.Copyright = _("(c) 2007-2013 Renato Archer Information Technology Center - CTI") | |
765 | + info.Version = "3.0" | |
766 | + info.Copyright = _("(c) 2007-2015 Renato Archer Information Technology Center - CTI") | |
767 | 767 | 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 exporting 3D volumes or surfaces as STL files for creating physical models of a patient's anatomy using rapid prototyping technologies. The software is supported by CTI, CNPq and the Brazilian Ministry of Health.\n\n Contact: invesalius@cti.gov.br"), 350, wx.ClientDC(parent)) |
768 | 768 | |
769 | 769 | # _("InVesalius is a software for medical imaging 3D reconstruction. ")+\ |
... | ... | @@ -1402,7 +1402,7 @@ class WatershedOptionsPanel(wx.Panel): |
1402 | 1402 | self._init_gui() |
1403 | 1403 | |
1404 | 1404 | def _init_gui(self): |
1405 | - self.choice_algorithm = wx.RadioBox(self, -1, "Algorithm", | |
1405 | + self.choice_algorithm = wx.RadioBox(self, -1, _(u"Method"), | |
1406 | 1406 | choices=self.algorithms, |
1407 | 1407 | style=wx.NO_BORDER | wx.HORIZONTAL) |
1408 | 1408 | self.choice_algorithm.SetSelection(self.algorithms.index(self.config.algorithm)) |
... | ... | @@ -1425,7 +1425,7 @@ class WatershedOptionsPanel(wx.Panel): |
1425 | 1425 | box_sizer.Add(self.choice_3dcon, 0, wx.ALIGN_CENTER_VERTICAL,2) |
1426 | 1426 | |
1427 | 1427 | g_sizer = wx.BoxSizer(wx.HORIZONTAL) |
1428 | - g_sizer.Add(wx.StaticText(self, -1, "Gaussian size"), 0, wx.ALIGN_RIGHT | wx.ALL, 5) | |
1428 | + g_sizer.Add(wx.StaticText(self, -1, _("Gaussian sigma")), 0, wx.ALIGN_RIGHT | wx.ALL, 5) | |
1429 | 1429 | g_sizer.Add(self.gaussian_size, 0, wx.ALIGN_LEFT | wx.ALL, 5) |
1430 | 1430 | |
1431 | 1431 | sizer = wx.BoxSizer(wx.VERTICAL) | ... | ... |
invesalius/gui/task_slice.py
... | ... | @@ -271,7 +271,7 @@ class InnerFoldPanel(wx.Panel): |
271 | 271 | leftSpacing=0, rightSpacing=0) |
272 | 272 | |
273 | 273 | # Fold 2 - Advanced edition tools |
274 | - item = fold_panel.AddFoldPanel(_("Advanced editing tools"), collapsed=True) | |
274 | + item = fold_panel.AddFoldPanel(_("Manual edition"), collapsed=True) | |
275 | 275 | etw = EditionTools(item) |
276 | 276 | |
277 | 277 | fold_panel.ApplyCaptionStyle(item, style) | ... | ... |