Commit 7e4d8035244756ff94426e4a0c890848f4737534

Authored by fabioaz
1 parent bf17dc68

ENH: Updating/correcting translations to Brazilian Portuguese (pt_BR).

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
invesalius/gui/default_tasks.py
@@ -207,12 +207,12 @@ class UpperTaskPanel(wx.Panel): @@ -207,12 +207,12 @@ class UpperTaskPanel(wx.Panel):
207 session = ses.Session() 207 session = ses.Session()
208 print "session mode: ", session.mode 208 print "session mode: ", session.mode
209 if int(session.mode) == const.MODE_RP: 209 if int(session.mode) == const.MODE_RP:
210 - tasks = [(_("InVesalius start"), importer.TaskPanel), 210 + tasks = [(_("Load data"), importer.TaskPanel),
211 (_("Select region of interest"), slice_.TaskPanel), 211 (_("Select region of interest"), slice_.TaskPanel),
212 (_("Configure 3D surface"), surface.TaskPanel), 212 (_("Configure 3D surface"), surface.TaskPanel),
213 (_("Export data"), exporter.TaskPanel)] 213 (_("Export data"), exporter.TaskPanel)]
214 elif int(session.mode) == const.MODE_NAVIGATOR: 214 elif int(session.mode) == const.MODE_NAVIGATOR:
215 - tasks = [(_("InVesalius start"), importer.TaskPanel), 215 + tasks = [(_("Load data"), importer.TaskPanel),
216 (_("Select region of interest"), slice_.TaskPanel), 216 (_("Select region of interest"), slice_.TaskPanel),
217 (_("Configure 3D surface"), surface.TaskPanel), 217 (_("Configure 3D surface"), surface.TaskPanel),
218 (_("Utilize navigation system"), navigator.TaskPanel)] 218 (_("Utilize navigation system"), navigator.TaskPanel)]