String cleanup.

This commit is contained in:
Bill Dengler
2015-05-14 10:14:42 -04:00
parent aa7145f5b3
commit 4a025caa69
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ class accountPanel(wx.Panel):
sizer = wx.BoxSizer(wx.VERTICAL)
self.login = wx.Button(self, -1, _(u"Login"))
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)
self.SetSizer(sizer)