From 49f90395c98aaf7f9610195bdb8bb90a179f64f6 Mon Sep 17 00:00:00 2001 From: Guillaume Seguin Date: Wed, 8 Aug 2012 08:40:22 +0200 Subject: [PATCH] Mark a "Connect" string as translatable to have it translated --- pronterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pronterface.py b/pronterface.py index 8e0e20c3c..3fb73d2a5 100755 --- a/pronterface.py +++ b/pronterface.py @@ -1744,7 +1744,7 @@ def disconnect(self,event): self.status_thread.join() self.status_thread = None - self.connectbtn.SetLabel("Connect") + self.connectbtn.SetLabel(_("Connect")) self.connectbtn.SetToolTip(wx.ToolTip("Connect to the printer")) self.connectbtn.Bind(wx.EVT_BUTTON,self.connect)