SessionManager.WXUI: now the dialog title is translatable

This commit is contained in:
Jose Manuel Delicado 2016-02-20 13:51:12 +01:00
parent 7b22c7d0f8
commit 6a6bec880c

View File

@ -4,7 +4,7 @@ from multiplatform_widgets import widgets
import application
class sessionManagerWindow(wx.Dialog):
def __init__(self):
super(sessionManagerWindow, self).__init__(parent=None, title="Session manager", size=wx.DefaultSize)
super(sessionManagerWindow, self).__init__(parent=None, title=_(u"Session manager"), size=wx.DefaultSize)
panel = wx.Panel(self)
sizer = wx.BoxSizer(wx.VERTICAL)
label = wx.StaticText(panel, -1, _(u"Accounts list"), size=wx.DefaultSize)