mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-23 03:38:08 -06:00
String cleanup.
This commit is contained in:
parent
aa7145f5b3
commit
4a025caa69
@ -9,7 +9,7 @@ class accountPanel(Gtk.VBox):
|
|||||||
self.type = "account"
|
self.type = "account"
|
||||||
self.login = Gtk.Button(_(u"Login"))
|
self.login = Gtk.Button(_(u"Login"))
|
||||||
self.add(self.login)
|
self.add(self.login)
|
||||||
self.autostart_account = Gtk.ToggleButton(_(u"Start account automatically"))
|
self.autostart_account = Gtk.ToggleButton(_(u"Log in automatically"))
|
||||||
self.add(self.autostart_account)
|
self.add(self.autostart_account)
|
||||||
|
|
||||||
def change_login(self, login=True):
|
def change_login(self, login=True):
|
||||||
|
@ -10,7 +10,7 @@ class accountPanel(wx.Panel):
|
|||||||
sizer = wx.BoxSizer(wx.VERTICAL)
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
||||||
self.login = wx.Button(self, -1, _(u"Login"))
|
self.login = wx.Button(self, -1, _(u"Login"))
|
||||||
sizer.Add(self.login, 0, wx.ALL, 5)
|
sizer.Add(self.login, 0, wx.ALL, 5)
|
||||||
self.autostart_account = wx.CheckBox(self, -1, _(u"Start account automatically"))
|
self.autostart_account = wx.CheckBox(self, -1, _(u"Log in automatically"))
|
||||||
sizer.Add(self.autostart_account, 0, wx.ALL, 5)
|
sizer.Add(self.autostart_account, 0, wx.ALL, 5)
|
||||||
self.SetSizer(sizer)
|
self.SetSizer(sizer)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user