From dd0fc29422df718cffd345b111d9df4d74a92360 Mon Sep 17 00:00:00 2001 From: Pierre Ratinaud Date: Sun, 14 Dec 2014 18:29:00 +0100 Subject: [PATCH] ... --- tree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tree.py b/tree.py index 61114b0..83f7d6e 100644 --- a/tree.py +++ b/tree.py @@ -686,7 +686,7 @@ class LeftTree(CT.CustomTreeCtrl): corpus = self.page.corpus tgenpath = os.path.join(self.page.parametres['pathout'], 'tgen.csv') if not os.path.exists(tgenpath) : - message = wx.MessageDialog(self.parent, _(u"No TGen yet !"), style = wx.ICON_EXCLAMATION | wx.OK) + message = wx.MessageDialog(self.parent, _(u"No TGen yet !").decode('utf8'), style = wx.ICON_EXCLAMATION | wx.OK) message.ShowModal() message.Destroy() else : @@ -726,7 +726,7 @@ class LeftTree(CT.CustomTreeCtrl): else : name = 'name' oldname = pydata[name] - dlg = wx.TextEntryDialog(self, "Please Enter The New Item Name", 'Item Naming', oldname) + dlg = wx.TextEntryDialog(self, _("New Name").decode('utf8'), _(u'Rename').decode('utf8'), oldname) if dlg.ShowModal() == wx.ID_OK: newname = dlg.GetValue() dlg.Destroy() -- 2.7.4